Amoy Testnet

Token

TopacioNFTs (TNFT)
ERC-721

Overview

Max Total Supply

128 TNFT

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
2 TNFT
0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TopacioNFTsv2

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at amoy.polygonscan.com on 2024-04-30
*/

// Sources flattened with hardhat v2.22.3 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 ERC721
     * 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 caller.
     *
     * 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 @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.0;


/// @title EIP-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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return 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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev 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^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                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^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv 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.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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^256 / 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^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            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^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // 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^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, 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;
        }
    }

    /**
     * @notice 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) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return 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 {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


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

    /**
     * @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;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        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 Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @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 virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being 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`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(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 abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

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

        emit MetadataUpdate(tokenId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

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


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File contracts/TopacioNFTsv2Meta.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.18;






interface ITokenContract
{
    function register(uint tokenId) external;
    function setIntervalClaim(uint timeInterval) external;
}

/**
 * Topacio Trade Project
 * @vertion: v1.0.23
 * Author Julio Vinachi
 * 
 * Network: Polygon
 */

/// @custom:security-contact [email protected]
contract TopacioNFTsv2 is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    ITokenContract tokenContract;
    uint public maxWalletAmount=8;
    string public _baseURI_ipfs = "https://ipfs.io/ipfs/";
    mapping(address => bool) public isMaxTxExempt;
    mapping(address => uint256) private _administradores;
    mapping(uint256 => uint256) public _metadata;
    // A mapping of token owners Holders
    mapping(uint => address[]) public ownersHolders;

    struct Holder {
        uint a;  
        address h;
        uint256[] tks;  
    }

    struct Burned {
        uint a;  
        address w;
    }

    mapping(uint => Holder[]) public holders;
    mapping(uint => Burned[]) public burned;
    mapping(address => uint) private holderList;
    uint private holderCtr;
    uint public burnedCtr;

    // address, tokenId
    event NftBurnned(address, uint);

    // Type Gragment | Gem
    // Generation 0 1 ....
    // Luck: percentage
    // Staking: percentage
    uint256 constant REF_TYPE_OFFSET = 192; // 64 Bits
    uint256 constant REF_GENERATION_OFFSET = 80; // 112 Bits
    uint256 constant REF_LUCK_OFFSET = 40; // 40 Bits
    uint256 constant REF_STAKING_OFFSET = 0; // 40 Bits

    event NewMint(address,uint256);

    modifier onlyAdministrator() {
         require(_administradores[msg.sender]!=0,"you are not administrator");
        _;
    }

    constructor() ERC721("TopacioNFTs", "TNFT") {
        _administradores[msg.sender] = 1;
        isMaxTxExempt[msg.sender] = true;
        isMaxTxExempt[address(0)] = true;
    }

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

    function updateBaseURI(string memory _uri_base_ipfs ) public onlyOwner {
        _baseURI_ipfs = _uri_base_ipfs;
    }

    function safeMint(address to, string memory uri, uint256 tipo, uint256 generation, uint256 luck, uint256 staking) public onlyAdministrator {

        require(
            tipo <= 18446744073709551615,
            "Error: tipo"
        );

        require(
            generation <= 5192296858534827628530496329220095,
            "Error: generation"
        );

        require(
            luck <= 1099511627775 && staking <= 1099511627775,
            "Error: luck"
        );

        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);

        uint256 _tipo =  tipo << REF_TYPE_OFFSET;
        uint256 _generation =  generation << REF_GENERATION_OFFSET;
        uint256 _luck =  luck << REF_LUCK_OFFSET;
        _metadata[tokenId] = _tipo + _generation + _luck + staking;
        tokenContract.register(tokenId);
        emit NewMint(to,tokenId);
    }

    function getTipo(uint256 _tokenId) public view returns(uint256) {
        require(_metadata[_tokenId]!=0,"Metadata no exist");
        uint256 mask =  0xFFFFFFFFFFFFFFFF << REF_TYPE_OFFSET;
        uint256 tipo = ((_metadata[_tokenId] & mask) >> REF_TYPE_OFFSET);
        
        return tipo;
    }

    function getGeneration(uint256 _tokenId) public view returns(uint256) {
        require(_metadata[_tokenId]!=0,"Metadata no exist");
        uint256 mask = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF << REF_GENERATION_OFFSET;
        uint256 generation = ((_metadata[_tokenId] & mask) >> REF_GENERATION_OFFSET);
        
        return generation;
    }

    function getLuck(uint256 _tokenId) public view returns(uint256) {
        require(_metadata[_tokenId]!=0,"Metadata no exist");
        uint256 mask =  0xFFFFFFFFFF << REF_LUCK_OFFSET;
        uint256 luck = ((_metadata[_tokenId] & mask) >> REF_LUCK_OFFSET);
        
        return luck;
    }

    function getStaking(uint256 _tokenId) public view returns(uint256) {
        require(_metadata[_tokenId]!=0,"Metadata no exist");
        uint256 mask =  0xFFFFFFFFFF << REF_STAKING_OFFSET;
        uint256 staking = ((_metadata[_tokenId] & mask) >> REF_STAKING_OFFSET);
        
        return staking;
    }

    function getHoldersCount() public view returns(uint){
       return  holderCtr;
    }

    function getHolders() public view returns (address[] memory) {
        address[] memory holders_w = new address[](holderCtr);
        uint pp=0;
        for(uint zz=0; zz < ownersHolders[0].length ;zz++){
            if(ownersHolders[0][zz]!=address(0)){
                holders_w[pp]=(ownersHolders[0][zz]);
                pp++;
            }
        }

        return holders_w;

    }

    function getTokensHolder( address _wallet) public view returns (uint[] memory) {
        require(_wallet != address(0),"wallet can't be zero");
        uint balanceW = balanceOf(_wallet);
 
        uint[] memory tkns_w = new uint[](balanceW);
        if(balanceW>0){
            for(uint x = 0; x < balanceW; x++){
                uint tId = tokenOfOwnerByIndex(_wallet, x);
                tkns_w[x]=(tId);
            }
        }

        return tkns_w;
    }

    function removeOfHolders(address _w) internal {
        for(uint z=0; z < ownersHolders[0].length ;z++){
            if(ownersHolders[0][z]==_w){
                delete(ownersHolders[0][z]);
                if(holderCtr>0){
                    holderCtr--;
                }
            }
        }
    }


    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    { 
        require(isMaxTxExempt[to] || balanceOf(to) + 1 <= maxWalletAmount, "Max Wallet Limit Exceeds!");

        bool isZero = (to == address(0));

        if(from!=address(0) && from!=address(this) && balanceOf(from)==1 ){
            removeOfHolders(from);
        }

        // nuevo Holder
        if(!isZero && balanceOf(to)==0){
            ownersHolders[0].push(to);
            holderCtr++;
        }
        
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
        burnedCtr++;
        burned[burnedCtr].push(Burned(burnedCtr,msg.sender));
        emit NftBurnned(msg.sender, tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function setIntervalClaim(uint timeLockClaim) public onlyOwner {
        tokenContract.setIntervalClaim(timeLockClaim);
    }

    function updateTokenURI(
        uint256 tokenId, 
        string memory _tokenURI
    ) external onlyAdministrator {
        super._setTokenURI(tokenId, _tokenURI);
    }

    function checkAdmin(address admin) public view onlyAdministrator returns (uint256){
        return _administradores[admin];
    }

    function addAdmin(address admin) public onlyOwner{
        _administradores[admin]=1;
    }

    function removeAdmin(address admin) public onlyOwner {
        delete(_administradores[admin]);
    }

    function lastToken() public view returns (uint256) {
        require(_tokenIdCounter.current() > 0,"no exist nfts until now");
        return _tokenIdCounter.current() - 1;
    }

    function setMaxWallet(uint256 amountLimit) public onlyAdministrator {
        maxWalletAmount = amountLimit;
    }

    function setMaxWalletPercentage(uint256 percentage) public onlyAdministrator {
        maxWalletAmount = (totalSupply() * percentage) / 10000;
    }

    function setMaxTxExempt(address account, bool value) external onlyAdministrator {
        isMaxTxExempt[account] = value;
    }

    function setTokenContract(address tokenContractAddress) public onlyOwner {
        tokenContract = ITokenContract(tokenContractAddress);
    }

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

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"NewMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"NftBurnned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURI_ipfs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_metadata","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"burned","outputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"address","name":"w","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedCtr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"checkAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getGeneration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHolders","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHoldersCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getLuck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getStaking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTipo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getTokensHolder","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"holders","outputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"address","name":"h","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMaxTxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownersHolders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"tipo","type":"uint256"},{"internalType":"uint256","name":"generation","type":"uint256"},{"internalType":"uint256","name":"luck","type":"uint256"},{"internalType":"uint256","name":"staking","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timeLockClaim","type":"uint256"}],"name":"setIntervalClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMaxTxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountLimit","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContractAddress","type":"address"}],"name":"setTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri_base_ipfs","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008600e5560c0604052601560809081527f68747470733a2f2f697066732e696f2f697066732f000000000000000000000060a052600f9062000043908262000229565b503480156200005157600080fd5b506040518060400160405280600b81526020016a546f706163696f4e46547360a81b815250604051806040016040528060048152602001631513919560e21b8152508160009081620000a4919062000229565b506001620000b3828262000229565b505050620000d0620000ca6200012e60201b60201c565b62000132565b33600090815260116020908152604080832060019081905560109092528220805460ff1990811683179091559180527f6e0956cda88cad152e89927e53611735b61a5c762d1428573c6931b0a5efcb018054909216179055620002f5565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001af57607f821691505b602082108103620001d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022457600081815260208120601f850160051c81016020861015620001ff5750805b601f850160051c820191505b8181101562000220578281556001016200020b565b5050505b505050565b81516001600160401b0381111562000245576200024562000184565b6200025d816200025684546200019a565b84620001d6565b602080601f8311600181146200029557600084156200027c5750858301515b600019600386901b1c1916600185901b17855562000220565b600085815260208120601f198616915b82811015620002c657888601518255948401946001909101908401620002a5565b5085821015620002e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6130b380620003056000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c8063715018a611610167578063aed6176e116100ce578063d97e6caf11610087578063d97e6caf146105d5578063e985e9c5146105e8578063e9fb358914610624578063ea2a934b14610637578063f2fde38b1461064a578063ffaf47c81461065d57600080fd5b8063aed6176e14610536578063b88d4fde14610566578063bbcd5bbe14610579578063c1ec8d4b1461058c578063c7511545146105af578063c87b56dd146105c257600080fd5b80639026dee8116101205780639026dee8146104e4578063931688cb146104f757806395d89b411461050a578063a22cb46514610512578063aa4bde2814610525578063ad0662a01461052e57600080fd5b8063715018a61461047d57806373889f4a146104855780637a845ece1461048d5780637d7d3aaf146104a05780637dedccd9146104b35780638da5cb5b146104d357600080fd5b80632f796f501161020b57806356e3df97116101c457806356e3df97146104095780635d0044ca1461041c5780635fe8e7cc1461042f5780636352211e14610444578063704802751461045757806370a082311461046a57600080fd5b80632f796f50146103a257806331eb3f37146103aa57806342842e0e146103bd57806342966c68146103d05780634f6ccce7146103e35780635462ad57146103f657600080fd5b80631785f53c1161025d5780631785f53c1461034557806318160ddd1461035857806318e97fd11461036057806323b872dd146103735780632a6d3512146103865780632f745c591461038f57600080fd5b806301ffc9a71461029a57806306fdde03146102c2578063081812fc146102d7578063095ea7b31461030257806313859f4614610317575b600080fd5b6102ad6102a8366004612819565b610670565b60405190151581526020015b60405180910390f35b6102ca610681565b6040516102b99190612886565b6102ea6102e5366004612899565b610713565b6040516001600160a01b0390911681526020016102b9565b6103156103103660046128c9565b61073a565b005b610337610325366004612899565b60126020526000908152604090205481565b6040519081526020016102b9565b6103156103533660046128f3565b610854565b600854610337565b61031561036e3660046129ba565b610876565b610315610381366004612a01565b6108b2565b61033760185481565b61033761039d3660046128c9565b6108e4565b61033761097a565b6103376103b8366004612899565b6109ed565b6103156103cb366004612a01565b610a34565b6103156103de366004612899565b610a4f565b6103376103f1366004612899565b610a80565b610315610404366004612a3d565b610b13565b610337610417366004612899565b610d44565b61031561042a366004612899565b610d90565b610437610dc3565b6040516102b99190612aae565b6102ea610452366004612899565b610f11565b6103156104653660046128f3565b610f71565b6103376104783660046128f3565b610f96565b61031561101c565b601754610337565b61031561049b366004612899565b611030565b6103156104ae366004612afb565b611085565b6104c66104c13660046128f3565b6110de565b6040516102b99190612b37565b600b546001600160a01b03166102ea565b6103376104f23660046128f3565b6111da565b610315610505366004612b6f565b611228565b6102ca61123c565b610315610520366004612afb565b61124b565b610337600e5481565b6102ca611256565b610549610544366004612ba4565b6112e4565b604080519283526001600160a01b039091166020830152016102b9565b610315610574366004612bc6565b611329565b6103156105873660046128f3565b611361565b6102ad61059a3660046128f3565b60106020526000908152604090205460ff1681565b6103376105bd366004612899565b61138b565b6102ca6105d0366004612899565b6113d5565b6102ea6105e3366004612ba4565b6113e0565b6102ad6105f6366004612c42565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610549610632366004612ba4565b611418565b610315610645366004612899565b61145d565b6103156106583660046128f3565b6114c6565b61033761066b366004612899565b61153c565b600061067b8261157f565b92915050565b60606000805461069090612c75565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc90612c75565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b600061071e826115a4565b506000908152600460205260409020546001600160a01b031690565b600061074582610f11565b9050806001600160a01b0316836001600160a01b0316036107b75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107d357506107d381336105f6565b6108455760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ae565b61084f8383611603565b505050565b61085c611671565b6001600160a01b0316600090815260116020526040812055565b3360009081526011602052604081205490036108a45760405162461bcd60e51b81526004016107ae90612caf565b6108ae82826116cb565b5050565b6108bd335b82611796565b6108d95760405162461bcd60e51b81526004016107ae90612ce6565b61084f838383611815565b60006108ef83610f96565b82106109515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600080610986600c5490565b116109d35760405162461bcd60e51b815260206004820152601760248201527f6e6f206578697374206e66747320756e74696c206e6f7700000000000000000060448201526064016107ae565b60016109de600c5490565b6109e89190612d49565b905090565b6000818152601260205260408120548103610a1a5760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205464ffffffffff1690565b61084f83838360405180602001604052806000815250611329565b610a58336108b7565b610a745760405162461bcd60e51b81526004016107ae90612ce6565b610a7d81611986565b50565b6000610a8b60085490565b8210610aee5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ae565b60088281548110610b0157610b01612d87565b90600052602060002001549050919050565b336000908152601160205260408120549003610b415760405162461bcd60e51b81526004016107ae90612caf565b67ffffffffffffffff841115610b875760405162461bcd60e51b815260206004820152600b60248201526a4572726f723a207469706f60a81b60448201526064016107ae565b6001600160701b03831115610bd25760405162461bcd60e51b815260206004820152601160248201527022b93937b91d1033b2b732b930ba34b7b760791b60448201526064016107ae565b64ffffffffff8211158015610bec575064ffffffffff8111155b610c265760405162461bcd60e51b815260206004820152600b60248201526a4572726f723a206c75636b60a81b60448201526064016107ae565b6000610c31600c5490565b9050610c41600c80546001019055565b610c4b8782611a40565b610c5581876116cb565b60c085901b605085901b602885901b8481610c708486612d9d565b610c7a9190612d9d565b610c849190612d9d565b6000858152601260205260409081902091909155600d549051637903ab2760e11b8152600481018690526001600160a01b039091169063f207564e90602401600060405180830381600087803b158015610cdd57600080fd5b505af1158015610cf1573d6000803e3d6000fd5b5050604080516001600160a01b038e168152602081018890527f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec6024935001905060405180910390a150505050505050505050565b6000818152601260205260408120548103610d715760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460501c6001600160701b031690565b336000908152601160205260408120549003610dbe5760405162461bcd60e51b81526004016107ae90612caf565b600e55565b6060600060175467ffffffffffffffff811115610de257610de261290e565b604051908082528060200260200182016040528015610e0b578160200160208202803683370190505b5090506000805b60008052601360205260008051602061305e83398151915254811015610f09576000808052601360205260008051602061305e833981519152805483908110610e5d57610e5d612d87565b6000918252602090912001546001600160a01b031614610ef75760008052601360205260008051602061305e833981519152805482908110610ea157610ea1612d87565b9060005260206000200160009054906101000a90046001600160a01b0316838381518110610ed157610ed1612d87565b6001600160a01b039092166020928302919091019091015281610ef381612db0565b9250505b80610f0181612db0565b915050610e12565b509092915050565b6000818152600260205260408120546001600160a01b03168061067b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107ae565b610f79611671565b6001600160a01b0316600090815260116020526040902060019055565b60006001600160a01b0382166110005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ae565b506001600160a01b031660009081526003602052604090205490565b611024611671565b61102e6000611a5a565b565b33600090815260116020526040812054900361105e5760405162461bcd60e51b81526004016107ae90612caf565b6127108161106b60085490565b6110759190612dc9565b61107f9190612de0565b600e5550565b3360009081526011602052604081205490036110b35760405162461bcd60e51b81526004016107ae90612caf565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60606001600160a01b03821661112d5760405162461bcd60e51b815260206004820152601460248201527377616c6c65742063616e2774206265207a65726f60601b60448201526064016107ae565b600061113883610f96565b905060008167ffffffffffffffff8111156111555761115561290e565b60405190808252806020026020018201604052801561117e578160200160208202803683370190505b50905081156111d35760005b828110156111d157600061119e86836108e4565b9050808383815181106111b3576111b3612d87565b602090810291909101015250806111c981612db0565b91505061118a565b505b9392505050565b3360009081526011602052604081205481036112085760405162461bcd60e51b81526004016107ae90612caf565b506001600160a01b0381166000908152601160205260409020545b919050565b611230611671565b600f6108ae8282612e50565b60606001805461069090612c75565b6108ae338383611aac565b600f805461126390612c75565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90612c75565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b505050505081565b6014602052816000526040600020818154811061130057600080fd5b6000918252602090912060039091020180546001909101549092506001600160a01b0316905082565b6113333383611796565b61134f5760405162461bcd60e51b81526004016107ae90612ce6565b61135b84848484611b7a565b50505050565b611369611671565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60008181526012602052604081205481036113b85760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460281c64ffffffffff1690565b606061067b82611bad565b601360205281600052604060002081815481106113fc57600080fd5b6000918252602090912001546001600160a01b03169150829050565b6015602052816000526040600020818154811061143457600080fd5b6000918252602090912060029091020180546001909101549092506001600160a01b0316905082565b611465611671565b600d5460405163ea2a934b60e01b8152600481018390526001600160a01b039091169063ea2a934b90602401600060405180830381600087803b1580156114ab57600080fd5b505af11580156114bf573d6000803e3d6000fd5b5050505050565b6114ce611671565b6001600160a01b0381166115335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610a7d81611a5a565b60008181526012602052604081205481036115695760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460c01c90565b60006001600160e01b03198216632483248360e11b148061067b575061067b82611ca8565b6000818152600260205260409020546001600160a01b0316610a7d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107ae565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061163882610f11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0316331461102e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ae565b6000828152600260205260409020546001600160a01b03166117465760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016107ae565b6000828152600a6020526040902061175e8282612e50565b506040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b6000806117a283610f11565b9050806001600160a01b0316846001600160a01b031614806117e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061180d5750836001600160a01b031661180284610713565b6001600160a01b0316145b949350505050565b826001600160a01b031661182882610f11565b6001600160a01b03161461184e5760405162461bcd60e51b81526004016107ae90612f10565b6001600160a01b0382166118b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ae565b6118bd8383836001611ccd565b826001600160a01b03166118d082610f11565b6001600160a01b0316146118f65760405162461bcd60e51b81526004016107ae90612f10565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61198f81611e32565b6018805490600061199f83612db0565b90915550506018546000818152601560209081526040808320815180830183529485523385840181815282546001808201855593875295859020965160029096029096019485559451930180546001600160a01b0319166001600160a01b0390941693909317909255815192835282018390527fa5a4c5d42de5aad210a79fc06ecf92447b92e4e88bd4de09bb6fc3a945141581910160405180910390a150565b6108ae828260405180602001604052806000815250611e72565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ae565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b85848484611815565b611b9184848484611ea5565b61135b5760405162461bcd60e51b81526004016107ae90612f55565b6060611bb8826115a4565b6000828152600a602052604081208054611bd190612c75565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfd90612c75565b8015611c4a5780601f10611c1f57610100808354040283529160200191611c4a565b820191906000526020600020905b815481529060010190602001808311611c2d57829003601f168201915b505050505090506000611c5b611fa6565b90508051600003611c6d575092915050565b815115611c9f578082604051602001611c87929190612fa7565b60405160208183030381529060405292505050919050565b61180d84611fb5565b60006001600160e01b0319821663780e9d6360e01b148061067b575061067b8261201b565b6001600160a01b03831660009081526010602052604090205460ff1680611d095750600e54611cfb84610f96565b611d06906001612d9d565b11155b611d555760405162461bcd60e51b815260206004820152601960248201527f4d61782057616c6c6574204c696d69742045786365656473210000000000000060448201526064016107ae565b6001600160a01b038381161590851615801590611d7b57506001600160a01b0385163014155b8015611d8f5750611d8b85610f96565b6001145b15611d9d57611d9d8561206b565b80158015611db15750611daf84610f96565b155b15611e2657601360205260008051602061305e833981519152805460018101825560009182527ffdad409e641dc7bad299410a553e45a22a0e8938c35e57d79a499ceca456678a0180546001600160a01b0319166001600160a01b0387161790556017805491611e2083612db0565b91905055505b6114bf85858585612151565b611e3b8161227e565b6000818152600a602052604090208054611e5490612c75565b159050610a7d576000818152600a60205260408120610a7d916127b5565b611e7c8383612321565b611e896000848484611ea5565b61084f5760405162461bcd60e51b81526004016107ae90612f55565b60006001600160a01b0384163b15611f9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee9903390899088908890600401612fd6565b6020604051808303816000875af1925050508015611f24575060408051601f3d908101601f19168201909252611f2191810190613013565b60015b611f81573d808015611f52576040519150601f19603f3d011682016040523d82523d6000602084013e611f57565b606091505b508051600003611f795760405162461bcd60e51b81526004016107ae90612f55565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180d565b506001949350505050565b6060600f805461069090612c75565b6060611fc0826115a4565b6000611fca611fa6565b90506000815111611fea57604051806020016040528060008152506111d3565b80611ff4846124ba565b604051602001612005929190612fa7565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b148061204c57506001600160e01b03198216635b5e139f60e01b145b8061067b57506301ffc9a760e01b6001600160e01b031983161461067b565b60005b60008052601360205260008051602061305e833981519152548110156108ae5760008052601360205260008051602061305e83398151915280546001600160a01b0384169190839081106120c4576120c4612d87565b6000918252602090912001546001600160a01b03160361213f5760008052601360205260008051602061305e83398151915280548290811061210857612108612d87565b600091825260209091200180546001600160a01b03191690556017541561213f576017805490600061213983613030565b91905055505b8061214981612db0565b91505061206e565b60018111156121c05760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016107ae565b816001600160a01b03851661221c5761221781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61223f565b836001600160a01b0316856001600160a01b03161461223f5761223f858261254d565b6001600160a01b03841661225b57612256816125ea565b6114bf565b846001600160a01b0316846001600160a01b0316146114bf576114bf8482612699565b600061228982610f11565b9050612299816000846001611ccd565b6122a282610f11565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166123775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ae565b6000818152600260205260409020546001600160a01b0316156123dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ae565b6123ea600083836001611ccd565b6000818152600260205260409020546001600160a01b03161561244f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ae565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606060006124c7836126dd565b600101905060008167ffffffffffffffff8111156124e7576124e761290e565b6040519080825280601f01601f191660200182016040528015612511576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461251b57509392505050565b6000600161255a84610f96565b6125649190612d49565b6000838152600760205260409020549091508082146125b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125fc90600190612d49565b6000838152600960205260408120546008805493945090928490811061262457612624612d87565b90600052602060002001549050806008838154811061264557612645612d87565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061267d5761267d613047565b6001900381819060005260206000200160009055905550505050565b60006126a483610f96565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061271c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612748576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061276657662386f26fc10000830492506010015b6305f5e100831061277e576305f5e100830492506008015b612710831061279257612710830492506004015b606483106127a4576064830492506002015b600a831061067b5760010192915050565b5080546127c190612c75565b6000825580601f106127d1575050565b601f016020900490600052602060002090810190610a7d91905b808211156127ff57600081556001016127eb565b5090565b6001600160e01b031981168114610a7d57600080fd5b60006020828403121561282b57600080fd5b81356111d381612803565b60005b83811015612851578181015183820152602001612839565b50506000910152565b60008151808452612872816020860160208601612836565b601f01601f19169290920160200192915050565b6020815260006111d3602083018461285a565b6000602082840312156128ab57600080fd5b5035919050565b80356001600160a01b038116811461122357600080fd5b600080604083850312156128dc57600080fd5b6128e5836128b2565b946020939093013593505050565b60006020828403121561290557600080fd5b6111d3826128b2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561293f5761293f61290e565b604051601f8501601f19908116603f011681019082821181831017156129675761296761290e565b8160405280935085815286868601111561298057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126129ab57600080fd5b6111d383833560208501612924565b600080604083850312156129cd57600080fd5b82359150602083013567ffffffffffffffff8111156129eb57600080fd5b6129f78582860161299a565b9150509250929050565b600080600060608486031215612a1657600080fd5b612a1f846128b2565b9250612a2d602085016128b2565b9150604084013590509250925092565b60008060008060008060c08789031215612a5657600080fd5b612a5f876128b2565b9550602087013567ffffffffffffffff811115612a7b57600080fd5b612a8789828a0161299a565b96999698505050506040850135946060810135946080820135945060a09091013592509050565b6020808252825182820181905260009190848201906040850190845b81811015612aef5783516001600160a01b031683529284019291840191600101612aca565b50909695505050505050565b60008060408385031215612b0e57600080fd5b612b17836128b2565b915060208301358015158114612b2c57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015612aef57835183529284019291840191600101612b53565b600060208284031215612b8157600080fd5b813567ffffffffffffffff811115612b9857600080fd5b61180d8482850161299a565b60008060408385031215612bb757600080fd5b50508035926020909101359150565b60008060008060808587031215612bdc57600080fd5b612be5856128b2565b9350612bf3602086016128b2565b925060408501359150606085013567ffffffffffffffff811115612c1657600080fd5b8501601f81018713612c2757600080fd5b612c3687823560208401612924565b91505092959194509250565b60008060408385031215612c5557600080fd5b612c5e836128b2565b9150612c6c602084016128b2565b90509250929050565b600181811c90821680612c8957607f821691505b602082108103612ca957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526019908201527f796f7520617265206e6f742061646d696e6973747261746f7200000000000000604082015260600190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561067b5761067b612d33565b60208082526011908201527013595d1859185d18481b9bc8195e1a5cdd607a1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b8082018082111561067b5761067b612d33565b600060018201612dc257612dc2612d33565b5060010190565b808202811582820484141761067b5761067b612d33565b600082612dfd57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561084f57600081815260208120601f850160051c81016020861015612e295750805b601f850160051c820191505b81811015612e4857828155600101612e35565b505050505050565b815167ffffffffffffffff811115612e6a57612e6a61290e565b612e7e81612e788454612c75565b84612e02565b602080601f831160018114612eb35760008415612e9b5750858301515b600019600386901b1c1916600185901b178555612e48565b600085815260208120601f198616915b82811015612ee257888601518255948401946001909101908401612ec3565b5085821015612f005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612fb9818460208801612836565b835190830190612fcd818360208801612836565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130099083018461285a565b9695505050505050565b60006020828403121561302557600080fd5b81516111d381612803565b60008161303f5761303f612d33565b506000190190565b634e487b7160e01b600052603160045260246000fdfe8fa6efc3be94b5b348b21fea823fe8d100408cee9b7f90524494500445d8ff6ca26469706673582212205a2a39b715a5fd4d32d27a3255dfe90e9de3d18cc7f70556b97eed2867606c9164736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c8063715018a611610167578063aed6176e116100ce578063d97e6caf11610087578063d97e6caf146105d5578063e985e9c5146105e8578063e9fb358914610624578063ea2a934b14610637578063f2fde38b1461064a578063ffaf47c81461065d57600080fd5b8063aed6176e14610536578063b88d4fde14610566578063bbcd5bbe14610579578063c1ec8d4b1461058c578063c7511545146105af578063c87b56dd146105c257600080fd5b80639026dee8116101205780639026dee8146104e4578063931688cb146104f757806395d89b411461050a578063a22cb46514610512578063aa4bde2814610525578063ad0662a01461052e57600080fd5b8063715018a61461047d57806373889f4a146104855780637a845ece1461048d5780637d7d3aaf146104a05780637dedccd9146104b35780638da5cb5b146104d357600080fd5b80632f796f501161020b57806356e3df97116101c457806356e3df97146104095780635d0044ca1461041c5780635fe8e7cc1461042f5780636352211e14610444578063704802751461045757806370a082311461046a57600080fd5b80632f796f50146103a257806331eb3f37146103aa57806342842e0e146103bd57806342966c68146103d05780634f6ccce7146103e35780635462ad57146103f657600080fd5b80631785f53c1161025d5780631785f53c1461034557806318160ddd1461035857806318e97fd11461036057806323b872dd146103735780632a6d3512146103865780632f745c591461038f57600080fd5b806301ffc9a71461029a57806306fdde03146102c2578063081812fc146102d7578063095ea7b31461030257806313859f4614610317575b600080fd5b6102ad6102a8366004612819565b610670565b60405190151581526020015b60405180910390f35b6102ca610681565b6040516102b99190612886565b6102ea6102e5366004612899565b610713565b6040516001600160a01b0390911681526020016102b9565b6103156103103660046128c9565b61073a565b005b610337610325366004612899565b60126020526000908152604090205481565b6040519081526020016102b9565b6103156103533660046128f3565b610854565b600854610337565b61031561036e3660046129ba565b610876565b610315610381366004612a01565b6108b2565b61033760185481565b61033761039d3660046128c9565b6108e4565b61033761097a565b6103376103b8366004612899565b6109ed565b6103156103cb366004612a01565b610a34565b6103156103de366004612899565b610a4f565b6103376103f1366004612899565b610a80565b610315610404366004612a3d565b610b13565b610337610417366004612899565b610d44565b61031561042a366004612899565b610d90565b610437610dc3565b6040516102b99190612aae565b6102ea610452366004612899565b610f11565b6103156104653660046128f3565b610f71565b6103376104783660046128f3565b610f96565b61031561101c565b601754610337565b61031561049b366004612899565b611030565b6103156104ae366004612afb565b611085565b6104c66104c13660046128f3565b6110de565b6040516102b99190612b37565b600b546001600160a01b03166102ea565b6103376104f23660046128f3565b6111da565b610315610505366004612b6f565b611228565b6102ca61123c565b610315610520366004612afb565b61124b565b610337600e5481565b6102ca611256565b610549610544366004612ba4565b6112e4565b604080519283526001600160a01b039091166020830152016102b9565b610315610574366004612bc6565b611329565b6103156105873660046128f3565b611361565b6102ad61059a3660046128f3565b60106020526000908152604090205460ff1681565b6103376105bd366004612899565b61138b565b6102ca6105d0366004612899565b6113d5565b6102ea6105e3366004612ba4565b6113e0565b6102ad6105f6366004612c42565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610549610632366004612ba4565b611418565b610315610645366004612899565b61145d565b6103156106583660046128f3565b6114c6565b61033761066b366004612899565b61153c565b600061067b8261157f565b92915050565b60606000805461069090612c75565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc90612c75565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b600061071e826115a4565b506000908152600460205260409020546001600160a01b031690565b600061074582610f11565b9050806001600160a01b0316836001600160a01b0316036107b75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107d357506107d381336105f6565b6108455760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107ae565b61084f8383611603565b505050565b61085c611671565b6001600160a01b0316600090815260116020526040812055565b3360009081526011602052604081205490036108a45760405162461bcd60e51b81526004016107ae90612caf565b6108ae82826116cb565b5050565b6108bd335b82611796565b6108d95760405162461bcd60e51b81526004016107ae90612ce6565b61084f838383611815565b60006108ef83610f96565b82106109515760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600080610986600c5490565b116109d35760405162461bcd60e51b815260206004820152601760248201527f6e6f206578697374206e66747320756e74696c206e6f7700000000000000000060448201526064016107ae565b60016109de600c5490565b6109e89190612d49565b905090565b6000818152601260205260408120548103610a1a5760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205464ffffffffff1690565b61084f83838360405180602001604052806000815250611329565b610a58336108b7565b610a745760405162461bcd60e51b81526004016107ae90612ce6565b610a7d81611986565b50565b6000610a8b60085490565b8210610aee5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ae565b60088281548110610b0157610b01612d87565b90600052602060002001549050919050565b336000908152601160205260408120549003610b415760405162461bcd60e51b81526004016107ae90612caf565b67ffffffffffffffff841115610b875760405162461bcd60e51b815260206004820152600b60248201526a4572726f723a207469706f60a81b60448201526064016107ae565b6001600160701b03831115610bd25760405162461bcd60e51b815260206004820152601160248201527022b93937b91d1033b2b732b930ba34b7b760791b60448201526064016107ae565b64ffffffffff8211158015610bec575064ffffffffff8111155b610c265760405162461bcd60e51b815260206004820152600b60248201526a4572726f723a206c75636b60a81b60448201526064016107ae565b6000610c31600c5490565b9050610c41600c80546001019055565b610c4b8782611a40565b610c5581876116cb565b60c085901b605085901b602885901b8481610c708486612d9d565b610c7a9190612d9d565b610c849190612d9d565b6000858152601260205260409081902091909155600d549051637903ab2760e11b8152600481018690526001600160a01b039091169063f207564e90602401600060405180830381600087803b158015610cdd57600080fd5b505af1158015610cf1573d6000803e3d6000fd5b5050604080516001600160a01b038e168152602081018890527f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec6024935001905060405180910390a150505050505050505050565b6000818152601260205260408120548103610d715760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460501c6001600160701b031690565b336000908152601160205260408120549003610dbe5760405162461bcd60e51b81526004016107ae90612caf565b600e55565b6060600060175467ffffffffffffffff811115610de257610de261290e565b604051908082528060200260200182016040528015610e0b578160200160208202803683370190505b5090506000805b60008052601360205260008051602061305e83398151915254811015610f09576000808052601360205260008051602061305e833981519152805483908110610e5d57610e5d612d87565b6000918252602090912001546001600160a01b031614610ef75760008052601360205260008051602061305e833981519152805482908110610ea157610ea1612d87565b9060005260206000200160009054906101000a90046001600160a01b0316838381518110610ed157610ed1612d87565b6001600160a01b039092166020928302919091019091015281610ef381612db0565b9250505b80610f0181612db0565b915050610e12565b509092915050565b6000818152600260205260408120546001600160a01b03168061067b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107ae565b610f79611671565b6001600160a01b0316600090815260116020526040902060019055565b60006001600160a01b0382166110005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107ae565b506001600160a01b031660009081526003602052604090205490565b611024611671565b61102e6000611a5a565b565b33600090815260116020526040812054900361105e5760405162461bcd60e51b81526004016107ae90612caf565b6127108161106b60085490565b6110759190612dc9565b61107f9190612de0565b600e5550565b3360009081526011602052604081205490036110b35760405162461bcd60e51b81526004016107ae90612caf565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60606001600160a01b03821661112d5760405162461bcd60e51b815260206004820152601460248201527377616c6c65742063616e2774206265207a65726f60601b60448201526064016107ae565b600061113883610f96565b905060008167ffffffffffffffff8111156111555761115561290e565b60405190808252806020026020018201604052801561117e578160200160208202803683370190505b50905081156111d35760005b828110156111d157600061119e86836108e4565b9050808383815181106111b3576111b3612d87565b602090810291909101015250806111c981612db0565b91505061118a565b505b9392505050565b3360009081526011602052604081205481036112085760405162461bcd60e51b81526004016107ae90612caf565b506001600160a01b0381166000908152601160205260409020545b919050565b611230611671565b600f6108ae8282612e50565b60606001805461069090612c75565b6108ae338383611aac565b600f805461126390612c75565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90612c75565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b505050505081565b6014602052816000526040600020818154811061130057600080fd5b6000918252602090912060039091020180546001909101549092506001600160a01b0316905082565b6113333383611796565b61134f5760405162461bcd60e51b81526004016107ae90612ce6565b61135b84848484611b7a565b50505050565b611369611671565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60008181526012602052604081205481036113b85760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460281c64ffffffffff1690565b606061067b82611bad565b601360205281600052604060002081815481106113fc57600080fd5b6000918252602090912001546001600160a01b03169150829050565b6015602052816000526040600020818154811061143457600080fd5b6000918252602090912060029091020180546001909101549092506001600160a01b0316905082565b611465611671565b600d5460405163ea2a934b60e01b8152600481018390526001600160a01b039091169063ea2a934b90602401600060405180830381600087803b1580156114ab57600080fd5b505af11580156114bf573d6000803e3d6000fd5b5050505050565b6114ce611671565b6001600160a01b0381166115335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610a7d81611a5a565b60008181526012602052604081205481036115695760405162461bcd60e51b81526004016107ae90612d5c565b5060009081526012602052604090205460c01c90565b60006001600160e01b03198216632483248360e11b148061067b575061067b82611ca8565b6000818152600260205260409020546001600160a01b0316610a7d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107ae565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061163882610f11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0316331461102e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ae565b6000828152600260205260409020546001600160a01b03166117465760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016107ae565b6000828152600a6020526040902061175e8282612e50565b506040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a15050565b6000806117a283610f11565b9050806001600160a01b0316846001600160a01b031614806117e957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061180d5750836001600160a01b031661180284610713565b6001600160a01b0316145b949350505050565b826001600160a01b031661182882610f11565b6001600160a01b03161461184e5760405162461bcd60e51b81526004016107ae90612f10565b6001600160a01b0382166118b05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ae565b6118bd8383836001611ccd565b826001600160a01b03166118d082610f11565b6001600160a01b0316146118f65760405162461bcd60e51b81526004016107ae90612f10565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61198f81611e32565b6018805490600061199f83612db0565b90915550506018546000818152601560209081526040808320815180830183529485523385840181815282546001808201855593875295859020965160029096029096019485559451930180546001600160a01b0319166001600160a01b0390941693909317909255815192835282018390527fa5a4c5d42de5aad210a79fc06ecf92447b92e4e88bd4de09bb6fc3a945141581910160405180910390a150565b6108ae828260405180602001604052806000815250611e72565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611b0d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ae565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b85848484611815565b611b9184848484611ea5565b61135b5760405162461bcd60e51b81526004016107ae90612f55565b6060611bb8826115a4565b6000828152600a602052604081208054611bd190612c75565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfd90612c75565b8015611c4a5780601f10611c1f57610100808354040283529160200191611c4a565b820191906000526020600020905b815481529060010190602001808311611c2d57829003601f168201915b505050505090506000611c5b611fa6565b90508051600003611c6d575092915050565b815115611c9f578082604051602001611c87929190612fa7565b60405160208183030381529060405292505050919050565b61180d84611fb5565b60006001600160e01b0319821663780e9d6360e01b148061067b575061067b8261201b565b6001600160a01b03831660009081526010602052604090205460ff1680611d095750600e54611cfb84610f96565b611d06906001612d9d565b11155b611d555760405162461bcd60e51b815260206004820152601960248201527f4d61782057616c6c6574204c696d69742045786365656473210000000000000060448201526064016107ae565b6001600160a01b038381161590851615801590611d7b57506001600160a01b0385163014155b8015611d8f5750611d8b85610f96565b6001145b15611d9d57611d9d8561206b565b80158015611db15750611daf84610f96565b155b15611e2657601360205260008051602061305e833981519152805460018101825560009182527ffdad409e641dc7bad299410a553e45a22a0e8938c35e57d79a499ceca456678a0180546001600160a01b0319166001600160a01b0387161790556017805491611e2083612db0565b91905055505b6114bf85858585612151565b611e3b8161227e565b6000818152600a602052604090208054611e5490612c75565b159050610a7d576000818152600a60205260408120610a7d916127b5565b611e7c8383612321565b611e896000848484611ea5565b61084f5760405162461bcd60e51b81526004016107ae90612f55565b60006001600160a01b0384163b15611f9b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee9903390899088908890600401612fd6565b6020604051808303816000875af1925050508015611f24575060408051601f3d908101601f19168201909252611f2191810190613013565b60015b611f81573d808015611f52576040519150601f19603f3d011682016040523d82523d6000602084013e611f57565b606091505b508051600003611f795760405162461bcd60e51b81526004016107ae90612f55565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061180d565b506001949350505050565b6060600f805461069090612c75565b6060611fc0826115a4565b6000611fca611fa6565b90506000815111611fea57604051806020016040528060008152506111d3565b80611ff4846124ba565b604051602001612005929190612fa7565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b148061204c57506001600160e01b03198216635b5e139f60e01b145b8061067b57506301ffc9a760e01b6001600160e01b031983161461067b565b60005b60008052601360205260008051602061305e833981519152548110156108ae5760008052601360205260008051602061305e83398151915280546001600160a01b0384169190839081106120c4576120c4612d87565b6000918252602090912001546001600160a01b03160361213f5760008052601360205260008051602061305e83398151915280548290811061210857612108612d87565b600091825260209091200180546001600160a01b03191690556017541561213f576017805490600061213983613030565b91905055505b8061214981612db0565b91505061206e565b60018111156121c05760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016107ae565b816001600160a01b03851661221c5761221781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61223f565b836001600160a01b0316856001600160a01b03161461223f5761223f858261254d565b6001600160a01b03841661225b57612256816125ea565b6114bf565b846001600160a01b0316846001600160a01b0316146114bf576114bf8482612699565b600061228982610f11565b9050612299816000846001611ccd565b6122a282610f11565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166123775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ae565b6000818152600260205260409020546001600160a01b0316156123dc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ae565b6123ea600083836001611ccd565b6000818152600260205260409020546001600160a01b03161561244f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ae565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606060006124c7836126dd565b600101905060008167ffffffffffffffff8111156124e7576124e761290e565b6040519080825280601f01601f191660200182016040528015612511576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461251b57509392505050565b6000600161255a84610f96565b6125649190612d49565b6000838152600760205260409020549091508082146125b7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125fc90600190612d49565b6000838152600960205260408120546008805493945090928490811061262457612624612d87565b90600052602060002001549050806008838154811061264557612645612d87565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061267d5761267d613047565b6001900381819060005260206000200160009055905550505050565b60006126a483610f96565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061271c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612748576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061276657662386f26fc10000830492506010015b6305f5e100831061277e576305f5e100830492506008015b612710831061279257612710830492506004015b606483106127a4576064830492506002015b600a831061067b5760010192915050565b5080546127c190612c75565b6000825580601f106127d1575050565b601f016020900490600052602060002090810190610a7d91905b808211156127ff57600081556001016127eb565b5090565b6001600160e01b031981168114610a7d57600080fd5b60006020828403121561282b57600080fd5b81356111d381612803565b60005b83811015612851578181015183820152602001612839565b50506000910152565b60008151808452612872816020860160208601612836565b601f01601f19169290920160200192915050565b6020815260006111d3602083018461285a565b6000602082840312156128ab57600080fd5b5035919050565b80356001600160a01b038116811461122357600080fd5b600080604083850312156128dc57600080fd5b6128e5836128b2565b946020939093013593505050565b60006020828403121561290557600080fd5b6111d3826128b2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561293f5761293f61290e565b604051601f8501601f19908116603f011681019082821181831017156129675761296761290e565b8160405280935085815286868601111561298057600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126129ab57600080fd5b6111d383833560208501612924565b600080604083850312156129cd57600080fd5b82359150602083013567ffffffffffffffff8111156129eb57600080fd5b6129f78582860161299a565b9150509250929050565b600080600060608486031215612a1657600080fd5b612a1f846128b2565b9250612a2d602085016128b2565b9150604084013590509250925092565b60008060008060008060c08789031215612a5657600080fd5b612a5f876128b2565b9550602087013567ffffffffffffffff811115612a7b57600080fd5b612a8789828a0161299a565b96999698505050506040850135946060810135946080820135945060a09091013592509050565b6020808252825182820181905260009190848201906040850190845b81811015612aef5783516001600160a01b031683529284019291840191600101612aca565b50909695505050505050565b60008060408385031215612b0e57600080fd5b612b17836128b2565b915060208301358015158114612b2c57600080fd5b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015612aef57835183529284019291840191600101612b53565b600060208284031215612b8157600080fd5b813567ffffffffffffffff811115612b9857600080fd5b61180d8482850161299a565b60008060408385031215612bb757600080fd5b50508035926020909101359150565b60008060008060808587031215612bdc57600080fd5b612be5856128b2565b9350612bf3602086016128b2565b925060408501359150606085013567ffffffffffffffff811115612c1657600080fd5b8501601f81018713612c2757600080fd5b612c3687823560208401612924565b91505092959194509250565b60008060408385031215612c5557600080fd5b612c5e836128b2565b9150612c6c602084016128b2565b90509250929050565b600181811c90821680612c8957607f821691505b602082108103612ca957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526019908201527f796f7520617265206e6f742061646d696e6973747261746f7200000000000000604082015260600190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561067b5761067b612d33565b60208082526011908201527013595d1859185d18481b9bc8195e1a5cdd607a1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b8082018082111561067b5761067b612d33565b600060018201612dc257612dc2612d33565b5060010190565b808202811582820484141761067b5761067b612d33565b600082612dfd57634e487b7160e01b600052601260045260246000fd5b500490565b601f82111561084f57600081815260208120601f850160051c81016020861015612e295750805b601f850160051c820191505b81811015612e4857828155600101612e35565b505050505050565b815167ffffffffffffffff811115612e6a57612e6a61290e565b612e7e81612e788454612c75565b84612e02565b602080601f831160018114612eb35760008415612e9b5750858301515b600019600386901b1c1916600185901b178555612e48565b600085815260208120601f198616915b82811015612ee257888601518255948401946001909101908401612ec3565b5085821015612f005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612fb9818460208801612836565b835190830190612fcd818360208801612836565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130099083018461285a565b9695505050505050565b60006020828403121561302557600080fd5b81516111d381612803565b60008161303f5761303f612d33565b506000190190565b634e487b7160e01b600052603160045260246000fdfe8fa6efc3be94b5b348b21fea823fe8d100408cee9b7f90524494500445d8ff6ca26469706673582212205a2a39b715a5fd4d32d27a3255dfe90e9de3d18cc7f70556b97eed2867606c9164736f6c63430008120033

Deployed Bytecode Sourcemap

72113:8431:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80311:230;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;80311:230:0;;;;;;;;43853:100;;;:::i;:::-;;;;;;;:::i;45365:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;45365:171:0;1533:203:1;44883:416:0;;;;;;:::i;:::-;;:::i;:::-;;72545:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;72545:44:0;2178:177:1;79440:103:0;;;;;;:::i;:::-;;:::i;62476:113::-;62564:10;:17;62476:113;;79016:176;;;;;;:::i;:::-;;:::i;46065:301::-;;;;;;:::i;:::-;;:::i;73030:21::-;;;;;;62144:256;;;;;;:::i;:::-;;:::i;79551:181::-;;;:::i;76046:314::-;;;;;;:::i;:::-;;:::i;46437:151::-;;;;;;:::i;:::-;;:::i;59371:242::-;;;;;;:::i;:::-;;:::i;62666:233::-;;;;;;:::i;:::-;;:::i;74081:983::-;;;;;;:::i;:::-;;:::i;75385:346::-;;;;;;:::i;:::-;;:::i;79740:116::-;;;;;;:::i;:::-;;:::i;76463:400::-;;;:::i;:::-;;;;;;;:::i;43563:223::-;;;;;;:::i;:::-;;:::i;79339:93::-;;;;;;:::i;:::-;;:::i;43294:207::-;;;;;;:::i;:::-;;:::i;3101:103::-;;;:::i;76368:87::-;76438:9;;76368:87;;79864:150;;;;;;:::i;:::-;;:::i;80022:129::-;;;;;;:::i;:::-;;:::i;76871:474::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2460:87::-;2533:6;;-1:-1:-1;;;;;2533:6:0;2460:87;;79200:131;;;;;;:::i;:::-;;:::i;73953:120::-;;;;;;:::i;:::-;;:::i;44022:104::-;;;:::i;45608:155::-;;;;;;:::i;:::-;;:::i;72338:29::-;;;;;;72374:53;;;:::i;72858:40::-;;;;;;:::i;:::-;;:::i;:::-;;;;7357:25:1;;;-1:-1:-1;;;;;7418:32:1;;;7413:2;7398:18;;7391:60;7330:18;72858:40:0;7183:274:1;46659:279:0;;;;;;:::i;:::-;;:::i;80159:144::-;;;;;;:::i;:::-;;:::i;72434:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;75739:299;;;;;;:::i;:::-;;:::i;78677:196::-;;;;;;:::i;:::-;;:::i;72638:47::-;;;;;;:::i;:::-;;:::i;45834:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;45955:25:0;;;45931:4;45955:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45834:164;72905:39;;;;;;:::i;:::-;;:::i;78881:127::-;;;;;;:::i;:::-;;:::i;3359:201::-;;;;;;:::i;:::-;;:::i;75072:305::-;;;;;;:::i;:::-;;:::i;80311:230::-;80468:4;80497:36;80521:11;80497:23;:36::i;:::-;80490:43;80311:230;-1:-1:-1;;80311:230:0:o;43853:100::-;43907:13;43940:5;43933:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43853:100;:::o;45365:171::-;45441:7;45461:23;45476:7;45461:14;:23::i;:::-;-1:-1:-1;45504:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45504:24:0;;45365:171::o;44883:416::-;44964:13;44980:23;44995:7;44980:14;:23::i;:::-;44964:39;;45028:5;-1:-1:-1;;;;;45022:11:0;:2;-1:-1:-1;;;;;45022:11:0;;45014:57;;;;-1:-1:-1;;;45014:57:0;;8986:2:1;45014:57:0;;;8968:21:1;9025:2;9005:18;;;8998:30;9064:34;9044:18;;;9037:62;-1:-1:-1;;;9115:18:1;;;9108:31;9156:19;;45014:57:0;;;;;;;;;929:10;-1:-1:-1;;;;;45106:21:0;;;;:62;;-1:-1:-1;45131:37:0;45148:5;929:10;45834:164;:::i;45131:37::-;45084:173;;;;-1:-1:-1;;;45084:173:0;;9388:2:1;45084:173:0;;;9370:21:1;9427:2;9407:18;;;9400:30;9466:34;9446:18;;;9439:62;9537:31;9517:18;;;9510:59;9586:19;;45084:173:0;9186:425:1;45084:173:0;45270:21;45279:2;45283:7;45270:8;:21::i;:::-;44953:346;44883:416;;:::o;79440:103::-;2346:13;:11;:13::i;:::-;-1:-1:-1;;;;;79511:23:0::1;;::::0;;;:16:::1;:23;::::0;;;;79504:31;79440:103::o;79016:176::-;73571:10;73554:28;;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;79146:38:::1;79165:7;79174:9;79146:18;:38::i;:::-;79016:176:::0;;:::o;46065:301::-;46226:41;929:10;46245:12;46259:7;46226:18;:41::i;:::-;46218:99;;;;-1:-1:-1;;;46218:99:0;;;;;;;:::i;:::-;46330:28;46340:4;46346:2;46350:7;46330:9;:28::i;62144:256::-;62241:7;62277:23;62294:5;62277:16;:23::i;:::-;62269:5;:31;62261:87;;;;-1:-1:-1;;;62261:87:0;;10586:2:1;62261:87:0;;;10568:21:1;10625:2;10605:18;;;10598:30;10664:34;10644:18;;;10637:62;-1:-1:-1;;;10715:18:1;;;10708:41;10766:19;;62261:87:0;10384:407:1;62261:87:0;-1:-1:-1;;;;;;62366:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;62144:256::o;79551:181::-;79593:7;79649:1;79621:25;:15;71179:14;;71087:114;79621:25;:29;79613:64;;;;-1:-1:-1;;;79613:64:0;;10998:2:1;79613:64:0;;;10980:21:1;11037:2;11017:18;;;11010:30;11076:25;11056:18;;;11049:53;11119:18;;79613:64:0;10796:347:1;79613:64:0;79723:1;79695:25;:15;71179:14;;71087:114;79695:25;:29;;;;:::i;:::-;79688:36;;79551:181;:::o;76046:314::-;76104:7;76132:19;;;:9;:19;;;;;;:22;;76124:51;;;;-1:-1:-1;;;76124:51:0;;;;;;;:::i;:::-;-1:-1:-1;76186:12:0;76267:19;;;:9;:19;;;;;;76202:12;76267:26;;76046:314::o;46437:151::-;46541:39;46558:4;46564:2;46568:7;46541:39;;;;;;;;;;;;:16;:39::i;59371:242::-;59489:41;929:10;59508:12;849:98;59489:41;59481:99;;;;-1:-1:-1;;;59481:99:0;;;;;;;:::i;:::-;59591:14;59597:7;59591:5;:14::i;:::-;59371:242;:::o;62666:233::-;62741:7;62777:30;62564:10;:17;;62476:113;62777:30;62769:5;:38;62761:95;;;;-1:-1:-1;;;62761:95:0;;11961:2:1;62761:95:0;;;11943:21:1;12000:2;11980:18;;;11973:30;12039:34;12019:18;;;12012:62;-1:-1:-1;;;12090:18:1;;;12083:42;12142:19;;62761:95:0;11759:408:1;62761:95:0;62874:10;62885:5;62874:17;;;;;;;;:::i;:::-;;;;;;;;;62867:24;;62666:233;;;:::o;74081:983::-;73571:10;73554:28;;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;74263:20:::1;74255:4;:28;;74233:89;;;::::0;-1:-1:-1;;;74233:89:0;;12506:2:1;74233:89:0::1;::::0;::::1;12488:21:1::0;12545:2;12525:18;;;12518:30;-1:-1:-1;;;12564:18:1;;;12557:41;12615:18;;74233:89:0::1;12304:335:1::0;74233:89:0::1;-1:-1:-1::0;;;;;74357:10:0::1;:48;;74335:115;;;::::0;-1:-1:-1;;;74335:115:0;;12846:2:1;74335:115:0::1;::::0;::::1;12828:21:1::0;12885:2;12865:18;;;12858:30;-1:-1:-1;;;12904:18:1;;;12897:47;12961:18;;74335:115:0::1;12644:341:1::0;74335:115:0::1;74493:13;74485:4;:21;;:49;;;;;74521:13;74510:7;:24;;74485:49;74463:110;;;::::0;-1:-1:-1;;;74463:110:0;;13192:2:1;74463:110:0::1;::::0;::::1;13174:21:1::0;13231:2;13211:18;;;13204:30;-1:-1:-1;;;13250:18:1;;;13243:41;13301:18;;74463:110:0::1;12990:335:1::0;74463:110:0::1;74586:15;74604:25;:15;71179:14:::0;;71087:114;74604:25:::1;74586:43;;74640:27;:15;71298:19:::0;;71316:1;71298:19;;;71209:127;74640:27:::1;74678:22;74688:2;74692:7;74678:9;:22::i;:::-;74711:26;74724:7;74733:3;74711:12;:26::i;:::-;73269:3;74767:23:::0;;::::1;73331:2;74824:35:::0;;::::1;73387:2;74887:23:::0;;::::1;74972:7:::0;74887:23;74942:19:::1;74824:35:::0;74767:23;74942:19:::1;:::i;:::-;:27;;;;:::i;:::-;:37;;;;:::i;:::-;74921:18;::::0;;;:9:::1;:18;::::0;;;;;;:58;;;;74990:13:::1;::::0;:31;;-1:-1:-1;;;74990:31:0;;::::1;::::0;::::1;2324:25:1::0;;;-1:-1:-1;;;;;74990:13:0;;::::1;::::0;:22:::1;::::0;2297:18:1;;74990:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;75037:19:0::1;::::0;;-1:-1:-1;;;;;13652:32:1;;13634:51;;13716:2;13701:18;;13694:34;;;75037:19:0::1;::::0;-1:-1:-1;13607:18:1;;-1:-1:-1;75037:19:0::1;;;;;;;74220:844;;;;74081:983:::0;;;;;;:::o;75385:346::-;75446:7;75474:19;;;:9;:19;;;;;;:22;;75466:51;;;;-1:-1:-1;;;75466:51:0;;;;;;;:::i;:::-;-1:-1:-1;75528:12:0;75632:19;;;:9;:19;;;;;;73331:2;75631:53;-1:-1:-1;;;;;75631:53:0;;75385:346::o;79740:116::-;73571:10;73554:28;;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;79819:15:::1;:29:::0;79740:116::o;76463:400::-;76506:16;76535:26;76578:9;;76564:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76564:24:0;;76535:53;;76599:7;76623;76619:206;76639:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;76639:23:0;76634:28;;76619:206;;;76717:1;76687:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;76687:20:0;;76704:2;;76687:20;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;76687:20:0;:32;76684:130;;76754:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;76754:20:0;;76771:2;;76754:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;76754:20:0;76739:9;76749:2;76739:13;;;;;;;;:::i;:::-;-1:-1:-1;;;;;76739:36:0;;;:13;;;;;;;;;;;:36;76794:4;;;;:::i;:::-;;;;76684:130;76664:4;;;;:::i;:::-;;;;76619:206;;;-1:-1:-1;76844:9:0;;76463:400;-1:-1:-1;;76463:400:0:o;43563:223::-;43635:7;48296:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48296:16:0;;43699:56;;;;-1:-1:-1;;;43699:56:0;;14081:2:1;43699:56:0;;;14063:21:1;14120:2;14100:18;;;14093:30;-1:-1:-1;;;14139:18:1;;;14132:54;14203:18;;43699:56:0;13879:348:1;79339:93:0;2346:13;:11;:13::i;:::-;-1:-1:-1;;;;;79399:23:0::1;;::::0;;;:16:::1;:23;::::0;;;;79423:1:::1;79399:25:::0;;79339:93::o;43294:207::-;43366:7;-1:-1:-1;;;;;43394:19:0;;43386:73;;;;-1:-1:-1;;;43386:73:0;;14434:2:1;43386:73:0;;;14416:21:1;14473:2;14453:18;;;14446:30;14512:34;14492:18;;;14485:62;-1:-1:-1;;;14563:18:1;;;14556:39;14612:19;;43386:73:0;14232:405:1;43386:73:0;-1:-1:-1;;;;;;43477:16:0;;;;;:9;:16;;;;;;;43294:207::o;3101:103::-;2346:13;:11;:13::i;:::-;3166:30:::1;3193:1;3166:18;:30::i;:::-;3101:103::o:0;79864:150::-;73571:10;73554:28;;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;80001:5:::1;79987:10;79971:13;62564:10:::0;:17;;62476:113;79971:13:::1;:26;;;;:::i;:::-;79970:36;;;;:::i;:::-;79952:15;:54:::0;-1:-1:-1;79864:150:0:o;80022:129::-;73571:10;73554:28;;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80113:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;80113:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;80022:129::o;76871:474::-;76935:13;-1:-1:-1;;;;;76969:21:0;;76961:53;;;;-1:-1:-1;;;76961:53:0;;15371:2:1;76961:53:0;;;15353:21:1;15410:2;15390:18;;;15383:30;-1:-1:-1;;;15429:18:1;;;15422:50;15489:18;;76961:53:0;15169:344:1;76961:53:0;77025:13;77041:18;77051:7;77041:9;:18::i;:::-;77025:34;;77073:20;77107:8;77096:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77096:20:0;-1:-1:-1;77073:43:0;-1:-1:-1;77130:10:0;;77127:185;;77160:6;77156:145;77176:8;77172:1;:12;77156:145;;;77209:8;77220:31;77240:7;77249:1;77220:19;:31::i;:::-;77209:42;;77281:3;77270:6;77277:1;77270:9;;;;;;;;:::i;:::-;;;;;;;;;;:15;-1:-1:-1;77186:3:0;;;;:::i;:::-;;;;77156:145;;;;77127:185;77331:6;76871:474;-1:-1:-1;;;76871:474:0:o;79200:131::-;73571:10;79274:7;73554:28;;;:16;:28;;;;;;:31;;73546:68;;;;-1:-1:-1;;;73546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;79300:23:0;::::1;;::::0;;;:16:::1;:23;::::0;;;;;73625:1:::1;79200:131:::0;;;:::o;73953:120::-;2346:13;:11;:13::i;:::-;74035::::1;:30;74051:14:::0;74035:13;:30:::1;:::i;44022:104::-:0;44078:13;44111:7;44104:14;;;;;:::i;45608:155::-;45703:52;929:10;45736:8;45746;45703:18;:52::i;72374:53::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72858:40::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;72858:40:0;;-1:-1:-1;72858:40:0;:::o;46659:279::-;46790:41;929:10;46823:7;46790:18;:41::i;:::-;46782:99;;;;-1:-1:-1;;;46782:99:0;;;;;;;:::i;:::-;46892:38;46906:4;46912:2;46916:7;46925:4;46892:13;:38::i;:::-;46659:279;;;;:::o;80159:144::-;2346:13;:11;:13::i;:::-;80243::::1;:52:::0;;-1:-1:-1;;;;;;80243:52:0::1;-1:-1:-1::0;;;;;80243:52:0;;;::::1;::::0;;;::::1;::::0;;80159:144::o;75739:299::-;75794:7;75822:19;;;:9;:19;;;;;;:22;;75814:51;;;;-1:-1:-1;;;75814:51:0;;;;;;;:::i;:::-;-1:-1:-1;75876:12:0;75951:19;;;:9;:19;;;;;;73387:2;75950:47;75892:12;75950:47;;75739:299::o;78677:196::-;78804:13;78842:23;78857:7;78842:14;:23::i;72638:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;72638:47:0;;-1:-1:-1;72638:47:0;;-1:-1:-1;72638:47:0:o;72905:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;72905:39:0;;-1:-1:-1;72905:39:0;:::o;78881:127::-;2346:13;:11;:13::i;:::-;78955::::1;::::0;:45:::1;::::0;-1:-1:-1;;;78955:45:0;;::::1;::::0;::::1;2324:25:1::0;;;-1:-1:-1;;;;;78955:13:0;;::::1;::::0;:30:::1;::::0;2297:18:1;;78955:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;78881:127:::0;:::o;3359:201::-;2346:13;:11;:13::i;:::-;-1:-1:-1;;;;;3448:22:0;::::1;3440:73;;;::::0;-1:-1:-1;;;3440:73:0;;17924:2:1;3440:73:0::1;::::0;::::1;17906:21:1::0;17963:2;17943:18;;;17936:30;18002:34;17982:18;;;17975:62;-1:-1:-1;;;18053:18:1;;;18046:36;18099:19;;3440:73:0::1;17722:402:1::0;3440:73:0::1;3524:28;3543:8;3524:18;:28::i;75072:305::-:0;75127:7;75155:19;;;:9;:19;;;;;;:22;;75147:51;;;;-1:-1:-1;;;75147:51:0;;;;;;;:::i;:::-;-1:-1:-1;75209:12:0;75290:19;;;:9;:19;;;;;;73269:3;75289:47;;75072:305::o;68364:207::-;68466:4;-1:-1:-1;;;;;;68490:33:0;;-1:-1:-1;;;68490:33:0;;:73;;;68527:36;68551:11;68527:23;:36::i;54928:135::-;48698:4;48296:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48296:16:0;55002:53;;;;-1:-1:-1;;;55002:53:0;;14081:2:1;55002:53:0;;;14063:21:1;14120:2;14100:18;;;14093:30;-1:-1:-1;;;14139:18:1;;;14132:54;14203:18;;55002:53:0;13879:348:1;54241:174:0;54316:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;54316:29:0;-1:-1:-1;;;;;54316:29:0;;;;;;;;:24;;54370:23;54316:24;54370:14;:23::i;:::-;-1:-1:-1;;;;;54361:46:0;;;;;;;;;;;54241:174;;:::o;2625:132::-;2533:6;;-1:-1:-1;;;;;2533:6:0;929:10;2689:23;2681:68;;;;-1:-1:-1;;;2681:68:0;;18331:2:1;2681:68:0;;;18313:21:1;;;18350:18;;;18343:30;18409:34;18389:18;;;18382:62;18461:18;;2681:68:0;18129:356:1;69462:258:0;48698:4;48296:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48296:16:0;69554:75;;;;-1:-1:-1;;;69554:75:0;;18692:2:1;69554:75:0;;;18674:21:1;18731:2;18711:18;;;18704:30;18770:34;18750:18;;;18743:62;-1:-1:-1;;;18821:18:1;;;18814:44;18875:19;;69554:75:0;18490:410:1;69554:75:0;69640:19;;;;:10;:19;;;;;:31;69662:9;69640:19;:31;:::i;:::-;-1:-1:-1;69689:23:0;;2324:25:1;;;69689:23:0;;2312:2:1;2297:18;69689:23:0;;;;;;;69462:258;;:::o;48928:264::-;49021:4;49038:13;49054:23;49069:7;49054:14;:23::i;:::-;49038:39;;49107:5;-1:-1:-1;;;;;49096:16:0;:7;-1:-1:-1;;;;;49096:16:0;;:52;;;-1:-1:-1;;;;;;45955:25:0;;;45931:4;45955:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49116:32;49096:87;;;;49176:7;-1:-1:-1;;;;;49152:31:0;:20;49164:7;49152:11;:20::i;:::-;-1:-1:-1;;;;;49152:31:0;;49096:87;49088:96;48928:264;-1:-1:-1;;;;48928:264:0:o;52893:1229::-;53018:4;-1:-1:-1;;;;;52991:31:0;:23;53006:7;52991:14;:23::i;:::-;-1:-1:-1;;;;;52991:31:0;;52983:81;;;;-1:-1:-1;;;52983:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53083:16:0;;53075:65;;;;-1:-1:-1;;;53075:65:0;;19513:2:1;53075:65:0;;;19495:21:1;19552:2;19532:18;;;19525:30;19591:34;19571:18;;;19564:62;-1:-1:-1;;;19642:18:1;;;19635:34;19686:19;;53075:65:0;19311:400:1;53075:65:0;53153:42;53174:4;53180:2;53184:7;53193:1;53153:20;:42::i;:::-;53325:4;-1:-1:-1;;;;;53298:31:0;:23;53313:7;53298:14;:23::i;:::-;-1:-1:-1;;;;;53298:31:0;;53290:81;;;;-1:-1:-1;;;53290:81:0;;;;;;;:::i;:::-;53443:24;;;;:15;:24;;;;;;;;53436:31;;-1:-1:-1;;;;;;53436:31:0;;;;;;-1:-1:-1;;;;;53919:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;53919:20:0;;;53954:13;;;;;;;;;:18;;53436:31;53954:18;;;53994:16;;;:7;:16;;;;;;:21;;;;;;;;;;54033:27;;53459:7;;54033:27;;;44953:346;44883:416;;:::o;78422:247::-;78509:20;78521:7;78509:11;:20::i;:::-;78540:9;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;;78569:9:0;;78562:17;;;;:6;:17;;;;;;;;78585:28;;;;;;;;;;78602:10;78585:28;;;;;;78562:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;78562:52:0;-1:-1:-1;;;;;78562:52:0;;;;;;;;;;78630:31;;13634:51:1;;;13701:18;;13694:34;;;78630:31:0;;13607:18:1;78630:31:0;;;;;;;78422:247;:::o;49534:110::-;49610:26;49620:2;49624:7;49610:26;;;;;;;;;;;;:9;:26::i;3720:191::-;3813:6;;;-1:-1:-1;;;;;3830:17:0;;;-1:-1:-1;;;;;;3830:17:0;;;;;;;3863:40;;3813:6;;;3830:17;3813:6;;3863:40;;3794:16;;3863:40;3783:128;3720:191;:::o;54558:281::-;54679:8;-1:-1:-1;;;;;54670:17:0;:5;-1:-1:-1;;;;;54670:17:0;;54662:55;;;;-1:-1:-1;;;54662:55:0;;19918:2:1;54662:55:0;;;19900:21:1;19957:2;19937:18;;;19930:30;19996:27;19976:18;;;19969:55;20041:18;;54662:55:0;19716:349:1;54662:55:0;-1:-1:-1;;;;;54728:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;54728:46:0;;;;;;;;;;54790:41;;540::1;;;54790::0;;513:18:1;54790:41:0;;;;;;;54558:281;;;:::o;47819:270::-;47932:28;47942:4;47948:2;47952:7;47932:9;:28::i;:::-;47979:47;48002:4;48008:2;48012:7;48021:4;47979:22;:47::i;:::-;47971:110;;;;-1:-1:-1;;;47971:110:0;;;;;;;:::i;68642:624::-;68715:13;68741:23;68756:7;68741:14;:23::i;:::-;68777;68803:19;;;:10;:19;;;;;68777:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68833:18;68854:10;:8;:10::i;:::-;68833:31;;68946:4;68940:18;68962:1;68940:23;68936:72;;-1:-1:-1;68987:9:0;68642:624;-1:-1:-1;;68642:624:0:o;68936:72::-;69112:23;;:27;69108:108;;69187:4;69193:9;69170:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69156:48;;;;68642:624;;;:::o;69108:108::-;69235:23;69250:7;69235:14;:23::i;61836:224::-;61938:4;-1:-1:-1;;;;;;61962:50:0;;-1:-1:-1;;;61962:50:0;;:90;;;62016:36;62040:11;62016:23;:36::i;77746:668::-;-1:-1:-1;;;;;77925:17:0;;;;;;:13;:17;;;;;;;;;:57;;;77967:15;;77946:13;77956:2;77946:9;:13::i;:::-;:17;;77962:1;77946:17;:::i;:::-;:36;;77925:57;77917:95;;;;-1:-1:-1;;;77917:95:0;;21192:2:1;77917:95:0;;;21174:21:1;21231:2;21211:18;;;21204:30;21270:27;21250:18;;;21243:55;21315:18;;77917:95:0;20990:349:1;77917:95:0;-1:-1:-1;;;;;78040:16:0;;;;;78073;;;;;;:39;;-1:-1:-1;;;;;;78093:19:0;;78107:4;78093:19;;78073:39;:61;;;;;78116:15;78126:4;78116:9;:15::i;:::-;78133:1;78116:18;78073:61;78070:114;;;78151:21;78167:4;78151:15;:21::i;:::-;78225:6;78224:7;:27;;;;;78235:13;78245:2;78235:9;:13::i;:::-;:16;78224:27;78221:109;;;78267:13;:16;;-1:-1:-1;;;;;;;;;;;78267:25:0;;;;;;;-1:-1:-1;78267:25:0;;;;;;;-1:-1:-1;;;;;;78267:25:0;-1:-1:-1;;;;;78267:25:0;;;;;78307:9;:11;;;;;;:::i;:::-;;;;;;78221:109;78350:56;78377:4;78383:2;78387:7;78396:9;78350:26;:56::i;69945:206::-;70014:20;70026:7;70014:11;:20::i;:::-;70057:19;;;;:10;:19;;;;;70051:33;;;;;:::i;:::-;:38;;-1:-1:-1;70047:97:0;;70113:19;;;;:10;:19;;;;;70106:26;;;:::i;49871:285::-;49966:18;49972:2;49976:7;49966:5;:18::i;:::-;50017:53;50048:1;50052:2;50056:7;50065:4;50017:22;:53::i;:::-;49995:153;;;;-1:-1:-1;;;49995:153:0;;;;;;;:::i;55627:853::-;55781:4;-1:-1:-1;;;;;55802:13:0;;15024:19;:23;55798:675;;55838:71;;-1:-1:-1;;;55838:71:0;;-1:-1:-1;;;;;55838:36:0;;;;;:71;;929:10;;55889:4;;55895:7;;55904:4;;55838:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55838:71:0;;;;;;;;-1:-1:-1;;55838:71:0;;;;;;;;;;;;:::i;:::-;;;55834:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56079:6;:13;56096:1;56079:18;56075:328;;56122:60;;-1:-1:-1;;;56122:60:0;;;;;;;:::i;56075:328::-;56353:6;56347:13;56338:6;56334:2;56330:15;56323:38;55834:584;-1:-1:-1;;;;;;55960:51:0;-1:-1:-1;;;55960:51:0;;-1:-1:-1;55953:58:0;;55798:675;-1:-1:-1;56457:4:0;55627:853;;;;;;:::o;73831:114::-;73891:13;73924;73917:20;;;;;:::i;44197:281::-;44270:13;44296:23;44311:7;44296:14;:23::i;:::-;44332:21;44356:10;:8;:10::i;:::-;44332:34;;44408:1;44390:7;44384:21;:25;:86;;;;;;;;;;;;;;;;;44436:7;44445:18;:7;:16;:18::i;:::-;44419:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44377:93;44197:281;-1:-1:-1;;;44197:281:0:o;42925:305::-;43027:4;-1:-1:-1;;;;;;43064:40:0;;-1:-1:-1;;;43064:40:0;;:105;;-1:-1:-1;;;;;;;43121:48:0;;-1:-1:-1;;;43121:48:0;43064:105;:158;;;-1:-1:-1;;;;;;;;;;23917:40:0;;;43186:36;23808:157;77353:313;77414:6;77410:249;77428:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;77428:23:0;77424:27;;77410:249;;;77475:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;77475:19:0;;-1:-1:-1;;;;;77475:23:0;;;:16;77492:1;;77475:19;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;77475:19:0;:23;77472:176;;77525:16;;;:13;:16;;-1:-1:-1;;;;;;;;;;;77525:19:0;;77542:1;;77525:19;;;;;;:::i;:::-;;;;;;;;;;77518:27;;-1:-1:-1;;;;;;77518:27:0;;;77567:9;;:11;77564:69;;77602:9;:11;;;:9;:11;;;:::i;:::-;;;;;;77564:69;77453:3;;;;:::i;:::-;;;;77410:249;;62973:915;63240:1;63228:9;:13;63224:222;;;63371:63;;-1:-1:-1;;;63371:63:0;;22435:2:1;63371:63:0;;;22417:21:1;22474:2;22454:18;;;22447:30;22513:34;22493:18;;;22486:62;-1:-1:-1;;;22564:18:1;;;22557:51;22625:19;;63371:63:0;22233:417:1;63224:222:0;63476:12;-1:-1:-1;;;;;63505:18:0;;63501:187;;63540:40;63572:7;64715:10;:17;;64688:24;;;;:15;:24;;;;;:44;;;64743:24;;;;;;;;;;;;64611:164;63540:40;63501:187;;;63610:2;-1:-1:-1;;;;;63602:10:0;:4;-1:-1:-1;;;;;63602:10:0;;63598:90;;63629:47;63662:4;63668:7;63629:32;:47::i;:::-;-1:-1:-1;;;;;63702:16:0;;63698:183;;63735:45;63772:7;63735:36;:45::i;:::-;63698:183;;;63808:4;-1:-1:-1;;;;;63802:10:0;:2;-1:-1:-1;;;;;63802:10:0;;63798:83;;63829:40;63857:2;63861:7;63829:27;:40::i;51773:783::-;51833:13;51849:23;51864:7;51849:14;:23::i;:::-;51833:39;;51885:51;51906:5;51921:1;51925:7;51934:1;51885:20;:51::i;:::-;52049:23;52064:7;52049:14;:23::i;:::-;52120:24;;;;:15;:24;;;;;;;;52113:31;;-1:-1:-1;;;;;;52113:31:0;;;;;;-1:-1:-1;;;;;52365:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;52365:21:0;;;52415:16;;;:7;:16;;;;;;52408:23;;;;;;;52449:36;52041:31;;-1:-1:-1;52136:7:0;;52449:36;;52120:24;;52449:36;79016:176;;:::o;50492:942::-;-1:-1:-1;;;;;50572:16:0;;50564:61;;;;-1:-1:-1;;;50564:61:0;;22857:2:1;50564:61:0;;;22839:21:1;;;22876:18;;;22869:30;22935:34;22915:18;;;22908:62;22987:18;;50564:61:0;22655:356:1;50564:61:0;48698:4;48296:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48296:16:0;48722:31;50636:58;;;;-1:-1:-1;;;50636:58:0;;23218:2:1;50636:58:0;;;23200:21:1;23257:2;23237:18;;;23230:30;23296;23276:18;;;23269:58;23344:18;;50636:58:0;23016:352:1;50636:58:0;50707:48;50736:1;50740:2;50744:7;50753:1;50707:20;:48::i;:::-;48698:4;48296:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48296:16:0;48722:31;50845:58;;;;-1:-1:-1;;;50845:58:0;;23218:2:1;50845:58:0;;;23200:21:1;23257:2;23237:18;;;23230:30;23296;23276:18;;;23269:58;23344:18;;50845:58:0;23016:352:1;50845:58:0;-1:-1:-1;;;;;51252:13:0;;;;;;:9;:13;;;;;;;;:18;;51269:1;51252:18;;;51294:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51294:21:0;;;;;51333:33;51302:7;;51252:13;;51333:33;;51252:13;;51333:33;79016:176;;:::o;39061:716::-;39117:13;39168:14;39185:17;39196:5;39185:10;:17::i;:::-;39205:1;39185:21;39168:38;;39221:20;39255:6;39244:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39244:18:0;-1:-1:-1;39221:41:0;-1:-1:-1;39386:28:0;;;39402:2;39386:28;39443:288;-1:-1:-1;;39475:5:0;-1:-1:-1;;;39612:2:0;39601:14;;39596:30;39475:5;39583:44;39673:2;39664:11;;;-1:-1:-1;39694:21:0;39443:288;39694:21;-1:-1:-1;39752:6:0;39061:716;-1:-1:-1;;;39061:716:0:o;65402:988::-;65668:22;65718:1;65693:22;65710:4;65693:16;:22::i;:::-;:26;;;;:::i;:::-;65730:18;65751:26;;;:17;:26;;;;;;65668:51;;-1:-1:-1;65884:28:0;;;65880:328;;-1:-1:-1;;;;;65951:18:0;;65929:19;65951:18;;;:12;:18;;;;;;;;:34;;;;;;;;;66002:30;;;;;;:44;;;66119:30;;:17;:30;;;;;:43;;;65880:328;-1:-1:-1;66304:26:0;;;;:17;:26;;;;;;;;66297:33;;;-1:-1:-1;;;;;66348:18:0;;;;;:12;:18;;;;;:34;;;;;;;66341:41;65402:988::o;66685:1079::-;66963:10;:17;66938:22;;66963:21;;66983:1;;66963:21;:::i;:::-;66995:18;67016:24;;;:15;:24;;;;;;67389:10;:26;;66938:46;;-1:-1:-1;67016:24:0;;66938:46;;67389:26;;;;;;:::i;:::-;;;;;;;;;67367:48;;67453:11;67428:10;67439;67428:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;67533:28;;;:15;:28;;;;;;;:41;;;67705:24;;;;;67698:31;67740:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;66756:1008;;;66685:1079;:::o;64189:221::-;64274:14;64291:20;64308:2;64291:16;:20::i;:::-;-1:-1:-1;;;;;64322:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;64367:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;64189:221:0:o;34444:948::-;34497:7;;-1:-1:-1;;;34575:17:0;;34571:106;;-1:-1:-1;;;34613:17:0;;;-1:-1:-1;34659:2:0;34649:12;34571:106;34704:8;34695:5;:17;34691:106;;34742:8;34733:17;;;-1:-1:-1;34779:2:0;34769:12;34691:106;34824:8;34815:5;:17;34811:106;;34862:8;34853:17;;;-1:-1:-1;34899:2:0;34889:12;34811:106;34944:7;34935:5;:16;34931:103;;34981:7;34972:16;;;-1:-1:-1;35017:1:0;35007:11;34931:103;35061:7;35052:5;:16;35048:103;;35098:7;35089:16;;;-1:-1:-1;35134:1:0;35124:11;35048:103;35178:7;35169:5;:16;35165:103;;35215:7;35206:16;;;-1:-1:-1;35251:1:0;35241:11;35165:103;35295:7;35286:5;:16;35282:68;;35333:1;35323:11;35378:6;34444:948;-1:-1:-1;;34444:948:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:127::-;2612:10;2607:3;2603:20;2600:1;2593:31;2643:4;2640:1;2633:15;2667:4;2664:1;2657:15;2683:632;2748:5;2778:18;2819:2;2811:6;2808:14;2805:40;;;2825:18;;:::i;:::-;2900:2;2894:9;2868:2;2954:15;;-1:-1:-1;;2950:24:1;;;2976:2;2946:33;2942:42;2930:55;;;3000:18;;;3020:22;;;2997:46;2994:72;;;3046:18;;:::i;:::-;3086:10;3082:2;3075:22;3115:6;3106:15;;3145:6;3137;3130:22;3185:3;3176:6;3171:3;3167:16;3164:25;3161:45;;;3202:1;3199;3192:12;3161:45;3252:6;3247:3;3240:4;3232:6;3228:17;3215:44;3307:1;3300:4;3291:6;3283;3279:19;3275:30;3268:41;;;;2683:632;;;;;:::o;3320:222::-;3363:5;3416:3;3409:4;3401:6;3397:17;3393:27;3383:55;;3434:1;3431;3424:12;3383:55;3456:80;3532:3;3523:6;3510:20;3503:4;3495:6;3491:17;3456:80;:::i;3547:390::-;3625:6;3633;3686:2;3674:9;3665:7;3661:23;3657:32;3654:52;;;3702:1;3699;3692:12;3654:52;3738:9;3725:23;3715:33;;3799:2;3788:9;3784:18;3771:32;3826:18;3818:6;3815:30;3812:50;;;3858:1;3855;3848:12;3812:50;3881;3923:7;3914:6;3903:9;3899:22;3881:50;:::i;:::-;3871:60;;;3547:390;;;;;:::o;3942:328::-;4019:6;4027;4035;4088:2;4076:9;4067:7;4063:23;4059:32;4056:52;;;4104:1;4101;4094:12;4056:52;4127:29;4146:9;4127:29;:::i;:::-;4117:39;;4175:38;4209:2;4198:9;4194:18;4175:38;:::i;:::-;4165:48;;4260:2;4249:9;4245:18;4232:32;4222:42;;3942:328;;;;;:::o;4275:671::-;4389:6;4397;4405;4413;4421;4429;4482:3;4470:9;4461:7;4457:23;4453:33;4450:53;;;4499:1;4496;4489:12;4450:53;4522:29;4541:9;4522:29;:::i;:::-;4512:39;;4602:2;4591:9;4587:18;4574:32;4629:18;4621:6;4618:30;4615:50;;;4661:1;4658;4651:12;4615:50;4684;4726:7;4717:6;4706:9;4702:22;4684:50;:::i;:::-;4275:671;;4674:60;;-1:-1:-1;;;;4781:2:1;4766:18;;4753:32;;4832:2;4817:18;;4804:32;;4883:3;4868:19;;4855:33;;-1:-1:-1;4935:3:1;4920:19;;;4907:33;;-1:-1:-1;4275:671:1;-1:-1:-1;4275:671:1:o;4951:658::-;5122:2;5174:21;;;5244:13;;5147:18;;;5266:22;;;5093:4;;5122:2;5345:15;;;;5319:2;5304:18;;;5093:4;5388:195;5402:6;5399:1;5396:13;5388:195;;;5467:13;;-1:-1:-1;;;;;5463:39:1;5451:52;;5558:15;;;;5523:12;;;;5499:1;5417:9;5388:195;;;-1:-1:-1;5600:3:1;;4951:658;-1:-1:-1;;;;;;4951:658:1:o;5614:347::-;5679:6;5687;5740:2;5728:9;5719:7;5715:23;5711:32;5708:52;;;5756:1;5753;5746:12;5708:52;5779:29;5798:9;5779:29;:::i;:::-;5769:39;;5858:2;5847:9;5843:18;5830:32;5905:5;5898:13;5891:21;5884:5;5881:32;5871:60;;5927:1;5924;5917:12;5871:60;5950:5;5940:15;;;5614:347;;;;;:::o;5966:632::-;6137:2;6189:21;;;6259:13;;6162:18;;;6281:22;;;6108:4;;6137:2;6360:15;;;;6334:2;6319:18;;;6108:4;6403:169;6417:6;6414:1;6411:13;6403:169;;;6478:13;;6466:26;;6547:15;;;;6512:12;;;;6439:1;6432:9;6403:169;;6603:322;6672:6;6725:2;6713:9;6704:7;6700:23;6696:32;6693:52;;;6741:1;6738;6731:12;6693:52;6781:9;6768:23;6814:18;6806:6;6803:30;6800:50;;;6846:1;6843;6836:12;6800:50;6869;6911:7;6902:6;6891:9;6887:22;6869:50;:::i;6930:248::-;6998:6;7006;7059:2;7047:9;7038:7;7034:23;7030:32;7027:52;;;7075:1;7072;7065:12;7027:52;-1:-1:-1;;7098:23:1;;;7168:2;7153:18;;;7140:32;;-1:-1:-1;6930:248:1:o;7462:667::-;7557:6;7565;7573;7581;7634:3;7622:9;7613:7;7609:23;7605:33;7602:53;;;7651:1;7648;7641:12;7602:53;7674:29;7693:9;7674:29;:::i;:::-;7664:39;;7722:38;7756:2;7745:9;7741:18;7722:38;:::i;:::-;7712:48;;7807:2;7796:9;7792:18;7779:32;7769:42;;7862:2;7851:9;7847:18;7834:32;7889:18;7881:6;7878:30;7875:50;;;7921:1;7918;7911:12;7875:50;7944:22;;7997:4;7989:13;;7985:27;-1:-1:-1;7975:55:1;;8026:1;8023;8016:12;7975:55;8049:74;8115:7;8110:2;8097:16;8092:2;8088;8084:11;8049:74;:::i;:::-;8039:84;;;7462:667;;;;;;;:::o;8134:260::-;8202:6;8210;8263:2;8251:9;8242:7;8238:23;8234:32;8231:52;;;8279:1;8276;8269:12;8231:52;8302:29;8321:9;8302:29;:::i;:::-;8292:39;;8350:38;8384:2;8373:9;8369:18;8350:38;:::i;:::-;8340:48;;8134:260;;;;;:::o;8399:380::-;8478:1;8474:12;;;;8521;;;8542:61;;8596:4;8588:6;8584:17;8574:27;;8542:61;8649:2;8641:6;8638:14;8618:18;8615:38;8612:161;;8695:10;8690:3;8686:20;8683:1;8676:31;8730:4;8727:1;8720:15;8758:4;8755:1;8748:15;8612:161;;8399:380;;;:::o;9616:349::-;9818:2;9800:21;;;9857:2;9837:18;;;9830:30;9896:27;9891:2;9876:18;;9869:55;9956:2;9941:18;;9616:349::o;9970:409::-;10172:2;10154:21;;;10211:2;10191:18;;;10184:30;10250:34;10245:2;10230:18;;10223:62;-1:-1:-1;;;10316:2:1;10301:18;;10294:43;10369:3;10354:19;;9970:409::o;11148:127::-;11209:10;11204:3;11200:20;11197:1;11190:31;11240:4;11237:1;11230:15;11264:4;11261:1;11254:15;11280:128;11347:9;;;11368:11;;;11365:37;;;11382:18;;:::i;11413:341::-;11615:2;11597:21;;;11654:2;11634:18;;;11627:30;-1:-1:-1;;;11688:2:1;11673:18;;11666:47;11745:2;11730:18;;11413:341::o;12172:127::-;12233:10;12228:3;12224:20;12221:1;12214:31;12264:4;12261:1;12254:15;12288:4;12285:1;12278:15;13330:125;13395:9;;;13416:10;;;13413:36;;;13429:18;;:::i;13739:135::-;13778:3;13799:17;;;13796:43;;13819:18;;:::i;:::-;-1:-1:-1;13866:1:1;13855:13;;13739:135::o;14642:168::-;14715:9;;;14746;;14763:15;;;14757:22;;14743:37;14733:71;;14784:18;;:::i;14947:217::-;14987:1;15013;15003:132;;15057:10;15052:3;15048:20;15045:1;15038:31;15092:4;15089:1;15082:15;15120:4;15117:1;15110:15;15003:132;-1:-1:-1;15149:9:1;;14947:217::o;15644:545::-;15746:2;15741:3;15738:11;15735:448;;;15782:1;15807:5;15803:2;15796:17;15852:4;15848:2;15838:19;15922:2;15910:10;15906:19;15903:1;15899:27;15893:4;15889:38;15958:4;15946:10;15943:20;15940:47;;;-1:-1:-1;15981:4:1;15940:47;16036:2;16031:3;16027:12;16024:1;16020:20;16014:4;16010:31;16000:41;;16091:82;16109:2;16102:5;16099:13;16091:82;;;16154:17;;;16135:1;16124:13;16091:82;;;16095:3;;;15644:545;;;:::o;16365:1352::-;16491:3;16485:10;16518:18;16510:6;16507:30;16504:56;;;16540:18;;:::i;:::-;16569:97;16659:6;16619:38;16651:4;16645:11;16619:38;:::i;:::-;16613:4;16569:97;:::i;:::-;16721:4;;16785:2;16774:14;;16802:1;16797:663;;;;17504:1;17521:6;17518:89;;;-1:-1:-1;17573:19:1;;;17567:26;17518:89;-1:-1:-1;;16322:1:1;16318:11;;;16314:24;16310:29;16300:40;16346:1;16342:11;;;16297:57;17620:81;;16767:944;;16797:663;15591:1;15584:14;;;15628:4;15615:18;;-1:-1:-1;;16833:20:1;;;16951:236;16965:7;16962:1;16959:14;16951:236;;;17054:19;;;17048:26;17033:42;;17146:27;;;;17114:1;17102:14;;;;16981:19;;16951:236;;;16955:3;17215:6;17206:7;17203:19;17200:201;;;17276:19;;;17270:26;-1:-1:-1;;17359:1:1;17355:14;;;17371:3;17351:24;17347:37;17343:42;17328:58;17313:74;;17200:201;-1:-1:-1;;;;;17447:1:1;17431:14;;;17427:22;17414:36;;-1:-1:-1;16365:1352:1:o;18905:401::-;19107:2;19089:21;;;19146:2;19126:18;;;19119:30;19185:34;19180:2;19165:18;;19158:62;-1:-1:-1;;;19251:2:1;19236:18;;19229:35;19296:3;19281:19;;18905:401::o;20070:414::-;20272:2;20254:21;;;20311:2;20291:18;;;20284:30;20350:34;20345:2;20330:18;;20323:62;-1:-1:-1;;;20416:2:1;20401:18;;20394:48;20474:3;20459:19;;20070:414::o;20489:496::-;20668:3;20706:6;20700:13;20722:66;20781:6;20776:3;20769:4;20761:6;20757:17;20722:66;:::i;:::-;20851:13;;20810:16;;;;20873:70;20851:13;20810:16;20920:4;20908:17;;20873:70;:::i;:::-;20959:20;;20489:496;-1:-1:-1;;;;20489:496:1:o;21344:489::-;-1:-1:-1;;;;;21613:15:1;;;21595:34;;21665:15;;21660:2;21645:18;;21638:43;21712:2;21697:18;;21690:34;;;21760:3;21755:2;21740:18;;21733:31;;;21538:4;;21781:46;;21807:19;;21799:6;21781:46;:::i;:::-;21773:54;21344:489;-1:-1:-1;;;;;;21344:489:1:o;21838:249::-;21907:6;21960:2;21948:9;21939:7;21935:23;21931:32;21928:52;;;21976:1;21973;21966:12;21928:52;22008:9;22002:16;22027:30;22051:5;22027:30;:::i;22092:136::-;22131:3;22159:5;22149:39;;22168:18;;:::i;:::-;-1:-1:-1;;;22204:18:1;;22092:136::o;23373:127::-;23434:10;23429:3;23425:20;23422:1;23415:31;23465:4;23462:1;23455:15;23489:4;23486:1;23479:15

Swarm Source

ipfs://5a2a39b715a5fd4d32d27a3255dfe90e9de3d18cc7f70556b97eed2867606c91
[ 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.