ETH Price: $3,385.97 (-2.73%)
Gas: 2 Gwei

Token

Basic Rarity (BRR)
 

Overview

Max Total Supply

10,000 BRR

Holders

3,933

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BRR
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Basic_Rarity

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
 
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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
     * ====
     *
     * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: Contract.sol


pragma solidity ^0.8.7;




contract Basic_Rarity is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;

    string public baseURI= "ipfs://bafybeicyeeqh5phqrqzyzfi6u5d2iciig2xigkpecw4c27kg6ebqwpwd5a/";
    string public hiddenMetadataURI="ipfs://QmSm6waviQsR7Vg9VP63r3qu2JVkGKqWv3KqBKoSYkojdx/hidden.json";

    uint256 public publicCost = 0 ether;

    bool public paused = true;
    bool public revealed;

    uint256 public maxPublic = 2;
    uint256 public maxSupply = 2555;

    constructor() ERC721A("Basic Rarity", "BRR") {}

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 quantity) external payable nonReentrant {
        require(!paused, "The contract is paused!");

        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");

        if (msg.sender != owner()) {
            require(
            publicClaimed[msg.sender] + quantity <= maxPublic,
                "You're not allowed to mint this much!"
            );
            require(
                quantity <= maxPublic,
                "You're not allowed to mint more than max Mint Amount!"
            );
            require(msg.value >= publicCost * quantity, "Insufficient Funds!");
        }
        publicClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataURI;
        }

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

    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicCost = _newPublicCost;
    }
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        maxPublic = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

    function setPaused(bool _state) external onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataURI(string memory _URI) external onlyOwner {
        hiddenMetadataURI = _URI;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        _safeMint(_address, quantity);
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280604381526020016200422660439139600b9080519060200190620000359291906200025c565b50604051806080016040528060418152602001620041e560419139600c9080519060200190620000679291906200025c565b506000600d556001600e60006101000a81548160ff0219169083151502179055506002600f556109fb601055348015620000a057600080fd5b506040518060400160405280600c81526020017f42617369632052617269747900000000000000000000000000000000000000008152506040518060400160405280600381526020017f42525200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001259291906200025c565b5080600390805190602001906200013e9291906200025c565b506200014f6200018560201b60201c565b6000819055505050620001776200016b6200018e60201b60201c565b6200019660201b60201c565b600160098190555062000371565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026a906200030c565b90600052602060002090601f0160209004810192826200028e5760008555620002da565b82601f10620002a957805160ff1916838001178555620002da565b82800160010185558215620002da579182015b82811115620002d9578251825591602001919060010190620002bc565b5b509050620002e99190620002ed565b5090565b5b8082111562000308576000816000905550600101620002ee565b5090565b600060028204905060018216806200032557607f821691505b602082108114156200033c576200033b62000342565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e6480620003816000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b5b1cd7c116100a0578063d5abeb011161006f578063d5abeb0114610732578063e0a808531461075d578063e985e9c514610786578063f2fde38b146107c3578063fbdb8494146107ec57610204565b8063b5b1cd7c14610664578063b88d4fde146106a1578063ba9e12f7146106ca578063c87b56dd146106f557610204565b806395d89b41116100e757806395d89b41146105a25780639ec571d5146105cd578063a0712d68146105f6578063a22cb46514610612578063aed380151461063b57610204565b8063715018a61461050a5780637dc42975146105215780638693da201461054c5780638da5cb5b1461057757610204565b806342842e0e1161019b57806355f804b31161016a57806355f804b3146104115780635c975abb1461043a5780636352211e146104655780636c0360eb146104a257806370a08231146104cd57610204565b806342842e0e1461036b57806344a0d68a14610394578063512507c6146103bd57806351830227146103e657610204565b806316c38b3c116101d757806316c38b3c146102d757806318160ddd1461030057806323b872dd1461032b5780633ccfd60b1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061318c565b610815565b60405161023d9190613598565b60405180910390f35b34801561025257600080fd5b5061025b6108f7565b60405161026891906135b3565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061322f565b610989565b6040516102a59190613531565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061311f565b610a05565b005b3480156102e357600080fd5b506102fe60048036038101906102f9919061315f565b610b10565b005b34801561030c57600080fd5b50610315610ba9565b60405161032291906136f5565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613009565b610bc0565b005b34801561036057600080fd5b50610369610bd0565b005b34801561037757600080fd5b50610392600480360381019061038d9190613009565b610ccc565b005b3480156103a057600080fd5b506103bb60048036038101906103b6919061322f565b610cec565b005b3480156103c957600080fd5b506103e460048036038101906103df91906131e6565b610d72565b005b3480156103f257600080fd5b506103fb610e08565b6040516104089190613598565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906131e6565b610e1b565b005b34801561044657600080fd5b5061044f610eb1565b60405161045c9190613598565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061322f565b610ec4565b6040516104999190613531565b60405180910390f35b3480156104ae57600080fd5b506104b7610eda565b6040516104c491906135b3565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612f9c565b610f68565b60405161050191906136f5565b60405180910390f35b34801561051657600080fd5b5061051f611038565b005b34801561052d57600080fd5b506105366110c0565b60405161054391906136f5565b60405180910390f35b34801561055857600080fd5b506105616110c6565b60405161056e91906136f5565b60405180910390f35b34801561058357600080fd5b5061058c6110cc565b6040516105999190613531565b60405180910390f35b3480156105ae57600080fd5b506105b76110f6565b6040516105c491906135b3565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef919061322f565b611188565b005b610610600480360381019061060b919061322f565b61120e565b005b34801561061e57600080fd5b50610639600480360381019061063491906130df565b6114d9565b005b34801561064757600080fd5b50610662600480360381019061065d919061325c565b611651565b005b34801561067057600080fd5b5061068b60048036038101906106869190612f9c565b61173e565b60405161069891906136f5565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061305c565b611756565b005b3480156106d657600080fd5b506106df6117d2565b6040516106ec91906135b3565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061322f565b611860565b60405161072991906135b3565b60405180910390f35b34801561073e57600080fd5b506107476119b6565b60405161075491906136f5565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061315f565b6119bc565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612fc9565b611a55565b6040516107ba9190613598565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612f9c565b611ae9565b005b3480156107f857600080fd5b50610813600480360381019061080e919061322f565b611be1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f057506108ef82611c67565b5b9050919050565b606060028054610906906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906139b0565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099482611cd1565b6109ca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610ec4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a78576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a97611d1f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ac95750610ac781610ac2611d1f565b611a55565b155b15610b00576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0b838383611d27565b505050565b610b18611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610b366110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613655565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610bb3611dd9565b6001546000540303905090565b610bcb838383611de2565b505050565b610bd8611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610bf66110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613655565b60405180910390fd5b6000610c566110cc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c799061351c565b60006040518083038185875af1925050503d8060008114610cb6576040519150601f19603f3d011682016040523d82523d6000602084013e610cbb565b606091505b5050905080610cc957600080fd5b50565b610ce783838360405180602001604052806000815250611756565b505050565b610cf4611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610d126110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90613655565b60405180910390fd5b80600d8190555050565b610d7a611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610d986110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613655565b60405180910390fd5b80600c9080519060200190610e04929190612d6d565b5050565b600e60019054906101000a900460ff1681565b610e23611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610e416110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613655565b60405180910390fd5b80600b9080519060200190610ead929190612d6d565b5050565b600e60009054906101000a900460ff1681565b6000610ecf82612298565b600001519050919050565b600b8054610ee7906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f13906139b0565b8015610f605780601f10610f3557610100808354040283529160200191610f60565b820191906000526020600020905b815481529060010190602001808311610f4357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611040611d1f565b73ffffffffffffffffffffffffffffffffffffffff1661105e6110cc565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613655565b60405180910390fd5b6110be6000612527565b565b600f5481565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611105906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611131906139b0565b801561117e5780601f106111535761010080835404028352916020019161117e565b820191906000526020600020905b81548152906001019060200180831161116157829003601f168201915b5050505050905090565b611190611d1f565b73ffffffffffffffffffffffffffffffffffffffff166111ae6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613655565b60405180910390fd5b8060108190555050565b60026009541415611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906136d5565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390613675565b60405180910390fd5b6000811180156112d05750601054816112c3610ba9565b6112cd91906137e5565b11155b61130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613635565b60405180910390fd5b6113176110cc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146e57600f5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139791906137e5565b11156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf906135f5565b60405180910390fd5b600f5481111561141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906136b5565b60405180910390fd5b80600d5461142b919061386c565b34101561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613615565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114bd91906137e5565b925050819055506114ce33826125ed565b600160098190555050565b6114e1611d1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611546576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611553611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611600611d1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116459190613598565b60405180910390a35050565b611659611d1f565b73ffffffffffffffffffffffffffffffffffffffff166116776110cc565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613655565b60405180910390fd5b6000821180156116f15750601054826116e4610ba9565b6116ee91906137e5565b11155b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613635565b60405180910390fd5b61173a81836125ed565b5050565b600a6020528060005260406000206000915090505481565b611761848484611de2565b6117808373ffffffffffffffffffffffffffffffffffffffff1661260b565b801561179557506117938484848461262e565b155b156117cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c80546117df906139b0565b80601f016020809104026020016040519081016040528092919081815260200182805461180b906139b0565b80156118585780601f1061182d57610100808354040283529160200191611858565b820191906000526020600020905b81548152906001019060200180831161183b57829003601f168201915b505050505081565b606061186b82611cd1565b6118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613695565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561195857600c80546118d3906139b0565b80601f01602080910402602001604051908101604052809291908181526020018280546118ff906139b0565b801561194c5780601f106119215761010080835404028352916020019161194c565b820191906000526020600020905b81548152906001019060200180831161192f57829003601f168201915b505050505090506119b1565b600061196261278e565b9050600081511161198257604051806020016040528060008152506119ad565b8061198c84612820565b60405160200161199d9291906134ed565b6040516020818303038152906040525b9150505b919050565b60105481565b6119c4611d1f565b73ffffffffffffffffffffffffffffffffffffffff166119e26110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613655565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af1611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611b0f6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613655565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906135d5565b60405180910390fd5b611bde81612527565b50565b611be9611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611c076110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613655565b60405180910390fd5b80600f8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cdc611dd9565b11158015611ceb575060005482105b8015611d18575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ded82612298565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e58576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e79611d1f565b73ffffffffffffffffffffffffffffffffffffffff161480611ea85750611ea785611ea2611d1f565b611a55565b5b80611eed5750611eb6611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611ed584610989565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f8d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f9a8585856001612981565b611fa660008487611d27565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561222657600054821461222557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122918585856001612987565b5050505050565b6122a0612df3565b6000829050806122ae611dd9565b111580156122bd575060005481105b156124f0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124ee57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d2578092505050612522565b5b6001156124ed57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e8578092505050612522565b6123d3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260782826040518060200160405280600081525061298d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612654611d1f565b8786866040518563ffffffff1660e01b8152600401612676949392919061354c565b602060405180830381600087803b15801561269057600080fd5b505af19250505080156126c157506040513d601f19601f820116820180604052508101906126be91906131b9565b60015b61273b573d80600081146126f1576040519150601f19603f3d011682016040523d82523d6000602084013e6126f6565b606091505b50600081511415612733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461279d906139b0565b80601f01602080910402602001604051908101604052809291908181526020018280546127c9906139b0565b80156128165780601f106127eb57610100808354040283529160200191612816565b820191906000526020600020905b8154815290600101906020018083116127f957829003601f168201915b5050505050905090565b60606000821415612868576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297c565b600082905060005b6000821461289a57808061288390613a13565b915050600a82612893919061383b565b9150612870565b60008167ffffffffffffffff8111156128b6576128b5613b49565b5b6040519080825280601f01601f1916602001820160405280156128e85781602001600182028036833780820191505090505b5090505b600085146129755760018261290191906138c6565b9150600a856129109190613a5c565b603061291c91906137e5565b60f81b81838151811061293257612931613b1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296e919061383b565b94506128ec565b8093505050505b919050565b50505050565b50505050565b61299a838383600161299f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a0c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a47576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a546000868387612981565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c1e5750612c1d8773ffffffffffffffffffffffffffffffffffffffff1661260b565b5b15612ce4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c93600088848060010195508861262e565b612cc9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c24578260005414612cdf57600080fd5b612d50565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ce5575b816000819055505050612d666000868387612987565b5050505050565b828054612d79906139b0565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612e36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e4f576000816000905550600101612e37565b5090565b6000612e66612e6184613735565b613710565b905082815260208101848484011115612e8257612e81613b7d565b5b612e8d84828561396e565b509392505050565b6000612ea8612ea384613766565b613710565b905082815260208101848484011115612ec457612ec3613b7d565b5b612ecf84828561396e565b509392505050565b600081359050612ee681613dd2565b92915050565b600081359050612efb81613de9565b92915050565b600081359050612f1081613e00565b92915050565b600081519050612f2581613e00565b92915050565b600082601f830112612f4057612f3f613b78565b5b8135612f50848260208601612e53565b91505092915050565b600082601f830112612f6e57612f6d613b78565b5b8135612f7e848260208601612e95565b91505092915050565b600081359050612f9681613e17565b92915050565b600060208284031215612fb257612fb1613b87565b5b6000612fc084828501612ed7565b91505092915050565b60008060408385031215612fe057612fdf613b87565b5b6000612fee85828601612ed7565b9250506020612fff85828601612ed7565b9150509250929050565b60008060006060848603121561302257613021613b87565b5b600061303086828701612ed7565b935050602061304186828701612ed7565b925050604061305286828701612f87565b9150509250925092565b6000806000806080858703121561307657613075613b87565b5b600061308487828801612ed7565b945050602061309587828801612ed7565b93505060406130a687828801612f87565b925050606085013567ffffffffffffffff8111156130c7576130c6613b82565b5b6130d387828801612f2b565b91505092959194509250565b600080604083850312156130f6576130f5613b87565b5b600061310485828601612ed7565b925050602061311585828601612eec565b9150509250929050565b6000806040838503121561313657613135613b87565b5b600061314485828601612ed7565b925050602061315585828601612f87565b9150509250929050565b60006020828403121561317557613174613b87565b5b600061318384828501612eec565b91505092915050565b6000602082840312156131a2576131a1613b87565b5b60006131b084828501612f01565b91505092915050565b6000602082840312156131cf576131ce613b87565b5b60006131dd84828501612f16565b91505092915050565b6000602082840312156131fc576131fb613b87565b5b600082013567ffffffffffffffff81111561321a57613219613b82565b5b61322684828501612f59565b91505092915050565b60006020828403121561324557613244613b87565b5b600061325384828501612f87565b91505092915050565b6000806040838503121561327357613272613b87565b5b600061328185828601612f87565b925050602061329285828601612ed7565b9150509250929050565b6132a5816138fa565b82525050565b6132b48161390c565b82525050565b60006132c582613797565b6132cf81856137ad565b93506132df81856020860161397d565b6132e881613b8c565b840191505092915050565b60006132fe826137a2565b61330881856137c9565b935061331881856020860161397d565b61332181613b8c565b840191505092915050565b6000613337826137a2565b61334181856137da565b935061335181856020860161397d565b80840191505092915050565b600061336a6026836137c9565b915061337582613b9d565b604082019050919050565b600061338d6025836137c9565b915061339882613bec565b604082019050919050565b60006133b06013836137c9565b91506133bb82613c3b565b602082019050919050565b60006133d3600f836137c9565b91506133de82613c64565b602082019050919050565b60006133f66005836137da565b915061340182613c8d565b600582019050919050565b60006134196020836137c9565b915061342482613cb6565b602082019050919050565b600061343c6017836137c9565b915061344782613cdf565b602082019050919050565b600061345f602f836137c9565b915061346a82613d08565b604082019050919050565b60006134826000836137be565b915061348d82613d57565b600082019050919050565b60006134a56035836137c9565b91506134b082613d5a565b604082019050919050565b60006134c8601f836137c9565b91506134d382613da9565b602082019050919050565b6134e781613964565b82525050565b60006134f9828561332c565b9150613505828461332c565b9150613510826133e9565b91508190509392505050565b600061352782613475565b9150819050919050565b6000602082019050613546600083018461329c565b92915050565b6000608082019050613561600083018761329c565b61356e602083018661329c565b61357b60408301856134de565b818103606083015261358d81846132ba565b905095945050505050565b60006020820190506135ad60008301846132ab565b92915050565b600060208201905081810360008301526135cd81846132f3565b905092915050565b600060208201905081810360008301526135ee8161335d565b9050919050565b6000602082019050818103600083015261360e81613380565b9050919050565b6000602082019050818103600083015261362e816133a3565b9050919050565b6000602082019050818103600083015261364e816133c6565b9050919050565b6000602082019050818103600083015261366e8161340c565b9050919050565b6000602082019050818103600083015261368e8161342f565b9050919050565b600060208201905081810360008301526136ae81613452565b9050919050565b600060208201905081810360008301526136ce81613498565b9050919050565b600060208201905081810360008301526136ee816134bb565b9050919050565b600060208201905061370a60008301846134de565b92915050565b600061371a61372b565b905061372682826139e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156137505761374f613b49565b5b61375982613b8c565b9050602081019050919050565b600067ffffffffffffffff82111561378157613780613b49565b5b61378a82613b8c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137f082613964565b91506137fb83613964565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138305761382f613a8d565b5b828201905092915050565b600061384682613964565b915061385183613964565b92508261386157613860613abc565b5b828204905092915050565b600061387782613964565b915061388283613964565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bb576138ba613a8d565b5b828202905092915050565b60006138d182613964565b91506138dc83613964565b9250828210156138ef576138ee613a8d565b5b828203905092915050565b600061390582613944565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399b578082015181840152602081019050613980565b838111156139aa576000848401525b50505050565b600060028204905060018216806139c857607f821691505b602082108114156139dc576139db613aeb565b5b50919050565b6139eb82613b8c565b810181811067ffffffffffffffff82111715613a0a57613a09613b49565b5b80604052505050565b6000613a1e82613964565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5157613a50613a8d565b5b600182019050919050565b6000613a6782613964565b9150613a7283613964565b925082613a8257613a81613abc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f6d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ddb816138fa565b8114613de657600080fd5b50565b613df28161390c565b8114613dfd57600080fd5b50565b613e0981613918565b8114613e1457600080fd5b50565b613e2081613964565b8114613e2b57600080fd5b5056fea2646970667358221220dff332305a996a4d8bb2cf7601b020613428dc107480cb57a779bfffe9de464464736f6c63430008070033697066733a2f2f516d536d3677617669517352375667395650363372337175324a566b474b715776334b71424b6f53596b6f6a64782f68696464656e2e6a736f6e697066733a2f2f626166796265696379656571683570687172717a797a666936753564326963696967327869676b70656377346332376b67366562717770776435612f

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b5b1cd7c116100a0578063d5abeb011161006f578063d5abeb0114610732578063e0a808531461075d578063e985e9c514610786578063f2fde38b146107c3578063fbdb8494146107ec57610204565b8063b5b1cd7c14610664578063b88d4fde146106a1578063ba9e12f7146106ca578063c87b56dd146106f557610204565b806395d89b41116100e757806395d89b41146105a25780639ec571d5146105cd578063a0712d68146105f6578063a22cb46514610612578063aed380151461063b57610204565b8063715018a61461050a5780637dc42975146105215780638693da201461054c5780638da5cb5b1461057757610204565b806342842e0e1161019b57806355f804b31161016a57806355f804b3146104115780635c975abb1461043a5780636352211e146104655780636c0360eb146104a257806370a08231146104cd57610204565b806342842e0e1461036b57806344a0d68a14610394578063512507c6146103bd57806351830227146103e657610204565b806316c38b3c116101d757806316c38b3c146102d757806318160ddd1461030057806323b872dd1461032b5780633ccfd60b1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061318c565b610815565b60405161023d9190613598565b60405180910390f35b34801561025257600080fd5b5061025b6108f7565b60405161026891906135b3565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061322f565b610989565b6040516102a59190613531565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061311f565b610a05565b005b3480156102e357600080fd5b506102fe60048036038101906102f9919061315f565b610b10565b005b34801561030c57600080fd5b50610315610ba9565b60405161032291906136f5565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613009565b610bc0565b005b34801561036057600080fd5b50610369610bd0565b005b34801561037757600080fd5b50610392600480360381019061038d9190613009565b610ccc565b005b3480156103a057600080fd5b506103bb60048036038101906103b6919061322f565b610cec565b005b3480156103c957600080fd5b506103e460048036038101906103df91906131e6565b610d72565b005b3480156103f257600080fd5b506103fb610e08565b6040516104089190613598565b60405180910390f35b34801561041d57600080fd5b50610438600480360381019061043391906131e6565b610e1b565b005b34801561044657600080fd5b5061044f610eb1565b60405161045c9190613598565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061322f565b610ec4565b6040516104999190613531565b60405180910390f35b3480156104ae57600080fd5b506104b7610eda565b6040516104c491906135b3565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612f9c565b610f68565b60405161050191906136f5565b60405180910390f35b34801561051657600080fd5b5061051f611038565b005b34801561052d57600080fd5b506105366110c0565b60405161054391906136f5565b60405180910390f35b34801561055857600080fd5b506105616110c6565b60405161056e91906136f5565b60405180910390f35b34801561058357600080fd5b5061058c6110cc565b6040516105999190613531565b60405180910390f35b3480156105ae57600080fd5b506105b76110f6565b6040516105c491906135b3565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef919061322f565b611188565b005b610610600480360381019061060b919061322f565b61120e565b005b34801561061e57600080fd5b50610639600480360381019061063491906130df565b6114d9565b005b34801561064757600080fd5b50610662600480360381019061065d919061325c565b611651565b005b34801561067057600080fd5b5061068b60048036038101906106869190612f9c565b61173e565b60405161069891906136f5565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c3919061305c565b611756565b005b3480156106d657600080fd5b506106df6117d2565b6040516106ec91906135b3565b60405180910390f35b34801561070157600080fd5b5061071c6004803603810190610717919061322f565b611860565b60405161072991906135b3565b60405180910390f35b34801561073e57600080fd5b506107476119b6565b60405161075491906136f5565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f919061315f565b6119bc565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612fc9565b611a55565b6040516107ba9190613598565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612f9c565b611ae9565b005b3480156107f857600080fd5b50610813600480360381019061080e919061322f565b611be1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f057506108ef82611c67565b5b9050919050565b606060028054610906906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906139b0565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099482611cd1565b6109ca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610ec4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a78576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a97611d1f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ac95750610ac781610ac2611d1f565b611a55565b155b15610b00576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0b838383611d27565b505050565b610b18611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610b366110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390613655565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610bb3611dd9565b6001546000540303905090565b610bcb838383611de2565b505050565b610bd8611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610bf66110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613655565b60405180910390fd5b6000610c566110cc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c799061351c565b60006040518083038185875af1925050503d8060008114610cb6576040519150601f19603f3d011682016040523d82523d6000602084013e610cbb565b606091505b5050905080610cc957600080fd5b50565b610ce783838360405180602001604052806000815250611756565b505050565b610cf4611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610d126110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f90613655565b60405180910390fd5b80600d8190555050565b610d7a611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610d986110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613655565b60405180910390fd5b80600c9080519060200190610e04929190612d6d565b5050565b600e60019054906101000a900460ff1681565b610e23611d1f565b73ffffffffffffffffffffffffffffffffffffffff16610e416110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e90613655565b60405180910390fd5b80600b9080519060200190610ead929190612d6d565b5050565b600e60009054906101000a900460ff1681565b6000610ecf82612298565b600001519050919050565b600b8054610ee7906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f13906139b0565b8015610f605780601f10610f3557610100808354040283529160200191610f60565b820191906000526020600020905b815481529060010190602001808311610f4357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611040611d1f565b73ffffffffffffffffffffffffffffffffffffffff1661105e6110cc565b73ffffffffffffffffffffffffffffffffffffffff16146110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90613655565b60405180910390fd5b6110be6000612527565b565b600f5481565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611105906139b0565b80601f0160208091040260200160405190810160405280929190818152602001828054611131906139b0565b801561117e5780601f106111535761010080835404028352916020019161117e565b820191906000526020600020905b81548152906001019060200180831161116157829003601f168201915b5050505050905090565b611190611d1f565b73ffffffffffffffffffffffffffffffffffffffff166111ae6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613655565b60405180910390fd5b8060108190555050565b60026009541415611254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124b906136d5565b60405180910390fd5b6002600981905550600e60009054906101000a900460ff16156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390613675565b60405180910390fd5b6000811180156112d05750601054816112c3610ba9565b6112cd91906137e5565b11155b61130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690613635565b60405180910390fd5b6113176110cc565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461146e57600f5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461139791906137e5565b11156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf906135f5565b60405180910390fd5b600f5481111561141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906136b5565b60405180910390fd5b80600d5461142b919061386c565b34101561146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490613615565b60405180910390fd5b5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114bd91906137e5565b925050819055506114ce33826125ed565b600160098190555050565b6114e1611d1f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611546576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611553611d1f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611600611d1f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116459190613598565b60405180910390a35050565b611659611d1f565b73ffffffffffffffffffffffffffffffffffffffff166116776110cc565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613655565b60405180910390fd5b6000821180156116f15750601054826116e4610ba9565b6116ee91906137e5565b11155b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790613635565b60405180910390fd5b61173a81836125ed565b5050565b600a6020528060005260406000206000915090505481565b611761848484611de2565b6117808373ffffffffffffffffffffffffffffffffffffffff1661260b565b801561179557506117938484848461262e565b155b156117cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c80546117df906139b0565b80601f016020809104026020016040519081016040528092919081815260200182805461180b906139b0565b80156118585780601f1061182d57610100808354040283529160200191611858565b820191906000526020600020905b81548152906001019060200180831161183b57829003601f168201915b505050505081565b606061186b82611cd1565b6118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190613695565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561195857600c80546118d3906139b0565b80601f01602080910402602001604051908101604052809291908181526020018280546118ff906139b0565b801561194c5780601f106119215761010080835404028352916020019161194c565b820191906000526020600020905b81548152906001019060200180831161192f57829003601f168201915b505050505090506119b1565b600061196261278e565b9050600081511161198257604051806020016040528060008152506119ad565b8061198c84612820565b60405160200161199d9291906134ed565b6040516020818303038152906040525b9150505b919050565b60105481565b6119c4611d1f565b73ffffffffffffffffffffffffffffffffffffffff166119e26110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613655565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af1611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611b0f6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90613655565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc906135d5565b60405180910390fd5b611bde81612527565b50565b611be9611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611c076110cc565b73ffffffffffffffffffffffffffffffffffffffff1614611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490613655565b60405180910390fd5b80600f8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611cdc611dd9565b11158015611ceb575060005482105b8015611d18575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ded82612298565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e58576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e79611d1f565b73ffffffffffffffffffffffffffffffffffffffff161480611ea85750611ea785611ea2611d1f565b611a55565b5b80611eed5750611eb6611d1f565b73ffffffffffffffffffffffffffffffffffffffff16611ed584610989565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f26576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f8d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f9a8585856001612981565b611fa660008487611d27565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561222657600054821461222557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122918585856001612987565b5050505050565b6122a0612df3565b6000829050806122ae611dd9565b111580156122bd575060005481105b156124f0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124ee57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d2578092505050612522565b5b6001156124ed57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124e8578092505050612522565b6123d3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260782826040518060200160405280600081525061298d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612654611d1f565b8786866040518563ffffffff1660e01b8152600401612676949392919061354c565b602060405180830381600087803b15801561269057600080fd5b505af19250505080156126c157506040513d601f19601f820116820180604052508101906126be91906131b9565b60015b61273b573d80600081146126f1576040519150601f19603f3d011682016040523d82523d6000602084013e6126f6565b606091505b50600081511415612733576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461279d906139b0565b80601f01602080910402602001604051908101604052809291908181526020018280546127c9906139b0565b80156128165780601f106127eb57610100808354040283529160200191612816565b820191906000526020600020905b8154815290600101906020018083116127f957829003601f168201915b5050505050905090565b60606000821415612868576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061297c565b600082905060005b6000821461289a57808061288390613a13565b915050600a82612893919061383b565b9150612870565b60008167ffffffffffffffff8111156128b6576128b5613b49565b5b6040519080825280601f01601f1916602001820160405280156128e85781602001600182028036833780820191505090505b5090505b600085146129755760018261290191906138c6565b9150600a856129109190613a5c565b603061291c91906137e5565b60f81b81838151811061293257612931613b1a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561296e919061383b565b94506128ec565b8093505050505b919050565b50505050565b50505050565b61299a838383600161299f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a0c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a47576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a546000868387612981565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612c1e5750612c1d8773ffffffffffffffffffffffffffffffffffffffff1661260b565b5b15612ce4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c93600088848060010195508861262e565b612cc9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612c24578260005414612cdf57600080fd5b612d50565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ce5575b816000819055505050612d666000868387612987565b5050505050565b828054612d79906139b0565b90600052602060002090601f016020900481019282612d9b5760008555612de2565b82601f10612db457805160ff1916838001178555612de2565b82800160010185558215612de2579182015b82811115612de1578251825591602001919060010190612dc6565b5b509050612def9190612e36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e4f576000816000905550600101612e37565b5090565b6000612e66612e6184613735565b613710565b905082815260208101848484011115612e8257612e81613b7d565b5b612e8d84828561396e565b509392505050565b6000612ea8612ea384613766565b613710565b905082815260208101848484011115612ec457612ec3613b7d565b5b612ecf84828561396e565b509392505050565b600081359050612ee681613dd2565b92915050565b600081359050612efb81613de9565b92915050565b600081359050612f1081613e00565b92915050565b600081519050612f2581613e00565b92915050565b600082601f830112612f4057612f3f613b78565b5b8135612f50848260208601612e53565b91505092915050565b600082601f830112612f6e57612f6d613b78565b5b8135612f7e848260208601612e95565b91505092915050565b600081359050612f9681613e17565b92915050565b600060208284031215612fb257612fb1613b87565b5b6000612fc084828501612ed7565b91505092915050565b60008060408385031215612fe057612fdf613b87565b5b6000612fee85828601612ed7565b9250506020612fff85828601612ed7565b9150509250929050565b60008060006060848603121561302257613021613b87565b5b600061303086828701612ed7565b935050602061304186828701612ed7565b925050604061305286828701612f87565b9150509250925092565b6000806000806080858703121561307657613075613b87565b5b600061308487828801612ed7565b945050602061309587828801612ed7565b93505060406130a687828801612f87565b925050606085013567ffffffffffffffff8111156130c7576130c6613b82565b5b6130d387828801612f2b565b91505092959194509250565b600080604083850312156130f6576130f5613b87565b5b600061310485828601612ed7565b925050602061311585828601612eec565b9150509250929050565b6000806040838503121561313657613135613b87565b5b600061314485828601612ed7565b925050602061315585828601612f87565b9150509250929050565b60006020828403121561317557613174613b87565b5b600061318384828501612eec565b91505092915050565b6000602082840312156131a2576131a1613b87565b5b60006131b084828501612f01565b91505092915050565b6000602082840312156131cf576131ce613b87565b5b60006131dd84828501612f16565b91505092915050565b6000602082840312156131fc576131fb613b87565b5b600082013567ffffffffffffffff81111561321a57613219613b82565b5b61322684828501612f59565b91505092915050565b60006020828403121561324557613244613b87565b5b600061325384828501612f87565b91505092915050565b6000806040838503121561327357613272613b87565b5b600061328185828601612f87565b925050602061329285828601612ed7565b9150509250929050565b6132a5816138fa565b82525050565b6132b48161390c565b82525050565b60006132c582613797565b6132cf81856137ad565b93506132df81856020860161397d565b6132e881613b8c565b840191505092915050565b60006132fe826137a2565b61330881856137c9565b935061331881856020860161397d565b61332181613b8c565b840191505092915050565b6000613337826137a2565b61334181856137da565b935061335181856020860161397d565b80840191505092915050565b600061336a6026836137c9565b915061337582613b9d565b604082019050919050565b600061338d6025836137c9565b915061339882613bec565b604082019050919050565b60006133b06013836137c9565b91506133bb82613c3b565b602082019050919050565b60006133d3600f836137c9565b91506133de82613c64565b602082019050919050565b60006133f66005836137da565b915061340182613c8d565b600582019050919050565b60006134196020836137c9565b915061342482613cb6565b602082019050919050565b600061343c6017836137c9565b915061344782613cdf565b602082019050919050565b600061345f602f836137c9565b915061346a82613d08565b604082019050919050565b60006134826000836137be565b915061348d82613d57565b600082019050919050565b60006134a56035836137c9565b91506134b082613d5a565b604082019050919050565b60006134c8601f836137c9565b91506134d382613da9565b602082019050919050565b6134e781613964565b82525050565b60006134f9828561332c565b9150613505828461332c565b9150613510826133e9565b91508190509392505050565b600061352782613475565b9150819050919050565b6000602082019050613546600083018461329c565b92915050565b6000608082019050613561600083018761329c565b61356e602083018661329c565b61357b60408301856134de565b818103606083015261358d81846132ba565b905095945050505050565b60006020820190506135ad60008301846132ab565b92915050565b600060208201905081810360008301526135cd81846132f3565b905092915050565b600060208201905081810360008301526135ee8161335d565b9050919050565b6000602082019050818103600083015261360e81613380565b9050919050565b6000602082019050818103600083015261362e816133a3565b9050919050565b6000602082019050818103600083015261364e816133c6565b9050919050565b6000602082019050818103600083015261366e8161340c565b9050919050565b6000602082019050818103600083015261368e8161342f565b9050919050565b600060208201905081810360008301526136ae81613452565b9050919050565b600060208201905081810360008301526136ce81613498565b9050919050565b600060208201905081810360008301526136ee816134bb565b9050919050565b600060208201905061370a60008301846134de565b92915050565b600061371a61372b565b905061372682826139e2565b919050565b6000604051905090565b600067ffffffffffffffff8211156137505761374f613b49565b5b61375982613b8c565b9050602081019050919050565b600067ffffffffffffffff82111561378157613780613b49565b5b61378a82613b8c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137f082613964565b91506137fb83613964565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138305761382f613a8d565b5b828201905092915050565b600061384682613964565b915061385183613964565b92508261386157613860613abc565b5b828204905092915050565b600061387782613964565b915061388283613964565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138bb576138ba613a8d565b5b828202905092915050565b60006138d182613964565b91506138dc83613964565b9250828210156138ef576138ee613a8d565b5b828203905092915050565b600061390582613944565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561399b578082015181840152602081019050613980565b838111156139aa576000848401525b50505050565b600060028204905060018216806139c857607f821691505b602082108114156139dc576139db613aeb565b5b50919050565b6139eb82613b8c565b810181811067ffffffffffffffff82111715613a0a57613a09613b49565b5b80604052505050565b6000613a1e82613964565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a5157613a50613a8d565b5b600182019050919050565b6000613a6782613964565b9150613a7283613964565b925082613a8257613a81613abc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f6d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64732100000000000000000000000000600082015250565b7f496e76616c696420616d6f756e74210000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e74206d6f72652060008201527f7468616e206d6178204d696e7420416d6f756e74210000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ddb816138fa565b8114613de657600080fd5b50565b613df28161390c565b8114613dfd57600080fd5b50565b613e0981613918565b8114613e1457600080fd5b50565b613e2081613964565b8114613e2b57600080fd5b5056fea2646970667358221220dff332305a996a4d8bb2cf7601b020613428dc107480cb57a779bfffe9de464464736f6c63430008070033

Deployed Bytecode Sourcemap

47688:3723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34501:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34064:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50351:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29134:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35366:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50995:413;;;;;;;;;;;;;:::i;:::-;;35607:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50017:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50541:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48126:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50661:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48094:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47843:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30254:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7623:103;;;;;;;;;;;;;:::i;:::-;;48155:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48050:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6972:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33167:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50248:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48350:750;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34777:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50775:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47786:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35863:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47942:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49287:722;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48190:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50444:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35135:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7881:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50132:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29885:305;29987:4;30039:25;30024:40;;;:11;:40;;;;:105;;;;30096:33;30081:48;;;:11;:48;;;;30024:105;:158;;;;30146:36;30170:11;30146:23;:36::i;:::-;30024:158;30004:178;;29885:305;;;:::o;32998:100::-;33052:13;33085:5;33078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32998:100;:::o;34501:204::-;34569:7;34594:16;34602:7;34594;:16::i;:::-;34589:64;;34619:34;;;;;;;;;;;;;;34589:64;34673:15;:24;34689:7;34673:24;;;;;;;;;;;;;;;;;;;;;34666:31;;34501:204;;;:::o;34064:371::-;34137:13;34153:24;34169:7;34153:15;:24::i;:::-;34137:40;;34198:5;34192:11;;:2;:11;;;34188:48;;;34212:24;;;;;;;;;;;;;;34188:48;34269:5;34253:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34279:37;34296:5;34303:12;:10;:12::i;:::-;34279:16;:37::i;:::-;34278:38;34253:63;34249:138;;;34340:35;;;;;;;;;;;;;;34249:138;34399:28;34408:2;34412:7;34421:5;34399:8;:28::i;:::-;34126:309;34064:371;;:::o;50351:85::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50422:6:::1;50413;;:15;;;;;;;;;;;;;;;;;;50351:85:::0;:::o;29134:303::-;29178:7;29403:15;:13;:15::i;:::-;29388:12;;29372:13;;:28;:46;29365:53;;29134:303;:::o;35366:170::-;35500:28;35510:4;35516:2;35520:7;35500:9;:28::i;:::-;35366:170;;;:::o;50995:413::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51220:7:::1;51241;:5;:7::i;:::-;51233:21;;51262;51233:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51219:69;;;51307:2;51299:11;;;::::0;::::1;;51032:376;50995:413::o:0;35607:185::-;35745:39;35762:4;35768:2;35772:7;35745:39;;;;;;;;;;;;:16;:39::i;:::-;35607:185;;;:::o;50017:106::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50101:14:::1;50088:10;:27;;;;50017:106:::0;:::o;50541:112::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50641:4:::1;50621:17;:24;;;;;;;;;;;;:::i;:::-;;50541:112:::0;:::o;48126:20::-;;;;;;;;;;;;;:::o;50661:106::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50748:11:::1;50738:7;:21;;;;;;;;;;;;:::i;:::-;;50661:106:::0;:::o;48094:25::-;;;;;;;;;;;;;:::o;32806:125::-;32870:7;32897:21;32910:7;32897:12;:21::i;:::-;:26;;;32890:33;;32806:125;;;:::o;47843:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30254:206::-;30318:7;30359:1;30342:19;;:5;:19;;;30338:60;;;30370:28;;;;;;;;;;;;;;30338:60;30424:12;:19;30437:5;30424:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30416:36;;30409:43;;30254:206;;;:::o;7623:103::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7688:30:::1;7715:1;7688:18;:30::i;:::-;7623:103::o:0;48155:28::-;;;;:::o;48050:35::-;;;;:::o;6972:87::-;7018:7;7045:6;;;;;;;;;;;7038:13;;6972:87;:::o;33167:104::-;33223:13;33256:7;33249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33167:104;:::o;50248:95::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50328:7:::1;50316:9;:19;;;;50248:95:::0;:::o;48350:750::-;1785:1;2383:7;;:19;;2375:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1785:1;2516:7;:18;;;;48432:6:::1;;;;;;;;;;;48431:7;48423:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48498:1;48487:8;:12;:53;;;;;48531:9;;48519:8;48503:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;48487:53;48479:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48591:7;:5;:7::i;:::-;48577:21;;:10;:21;;;48573:430;;48677:9;;48665:8;48637:13;:25;48651:10;48637:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:49;;48615:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;48812:9;;48800:8;:21;;48774:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;48959:8;48946:10;;:21;;;;:::i;:::-;48933:9;:34;;48925:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48573:430;49042:8;49013:13;:25;49027:10;49013:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;49061:31;49071:10;49083:8;49061:9;:31::i;:::-;1741:1:::0;2695:7;:22;;;;48350:750;:::o;34777:287::-;34888:12;:10;:12::i;:::-;34876:24;;:8;:24;;;34872:54;;;34909:17;;;;;;;;;;;;;;34872:54;34984:8;34939:18;:32;34958:12;:10;:12::i;:::-;34939:32;;;;;;;;;;;;;;;:42;34972:8;34939:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35037:8;35008:48;;35023:12;:10;:12::i;:::-;35008:48;;;35047:8;35008:48;;;;;;:::i;:::-;;;;;;;;34777:287;;:::o;50775:212::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50877:1:::1;50866:8;:12;:53;;;;;50910:9;;50898:8;50882:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50866:53;50858:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50950:29;50960:8;50970;50950:9;:29::i;:::-;50775:212:::0;;:::o;47786:48::-;;;;;;;;;;;;;;;;;:::o;35863:369::-;36030:28;36040:4;36046:2;36050:7;36030:9;:28::i;:::-;36073:15;:2;:13;;;:15::i;:::-;:76;;;;;36093:56;36124:4;36130:2;36134:7;36143:5;36093:30;:56::i;:::-;36092:57;36073:76;36069:156;;;36173:40;;;;;;;;;;;;;;36069:156;35863:369;;;;:::o;47942:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49287:722::-;49405:13;49458:16;49466:7;49458;:16::i;:::-;49436:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:5;49566:17;;:8;;;;;;;;;;;:17;;;49562:74;;;49607:17;49600:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49562:74;49648:28;49679:10;:8;:10::i;:::-;49648:41;;49751:1;49726:14;49720:28;:32;:281;;;;;;;;;;;;;;;;;49844:14;49885:18;:7;:16;:18::i;:::-;49801:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49720:281;49700:301;;;49287:722;;;;:::o;48190:31::-;;;;:::o;50444:89::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50519:6:::1;50508:8;;:17;;;;;;;;;;;;;;;;;;50444:89:::0;:::o;35135:164::-;35232:4;35256:18;:25;35275:5;35256:25;;;;;;;;;;;;;;;:35;35282:8;35256:35;;;;;;;;;;;;;;;;;;;;;;;;;35249:42;;35135:164;;;;:::o;7881:201::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7990:1:::1;7970:22;;:8;:22;;;;7962:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8046:28;8065:8;8046:18;:28::i;:::-;7881:201:::0;:::o;50132:108::-;7203:12;:10;:12::i;:::-;7192:23;;:7;:5;:7::i;:::-;:23;;;7184:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50219:13:::1;50207:9;:25;;;;50132:108:::0;:::o;19779:157::-;19864:4;19903:25;19888:40;;;:11;:40;;;;19881:47;;19779:157;;;:::o;36487:174::-;36544:4;36587:7;36568:15;:13;:15::i;:::-;:26;;:53;;;;;36608:13;;36598:7;:23;36568:53;:85;;;;;36626:11;:20;36638:7;36626:20;;;;;;;;;;;:27;;;;;;;;;;;;36625:28;36568:85;36561:92;;36487:174;;;:::o;5696:98::-;5749:7;5776:10;5769:17;;5696:98;:::o;44644:196::-;44786:2;44759:15;:24;44775:7;44759:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44824:7;44820:2;44804:28;;44813:5;44804:28;;;;;;;;;;;;44644:196;;;:::o;28908:92::-;28964:7;28991:1;28984:8;;28908:92;:::o;39587:2130::-;39702:35;39740:21;39753:7;39740:12;:21::i;:::-;39702:59;;39800:4;39778:26;;:13;:18;;;:26;;;39774:67;;39813:28;;;;;;;;;;;;;;39774:67;39854:22;39896:4;39880:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39917:36;39934:4;39940:12;:10;:12::i;:::-;39917:16;:36::i;:::-;39880:73;:126;;;;39994:12;:10;:12::i;:::-;39970:36;;:20;39982:7;39970:11;:20::i;:::-;:36;;;39880:126;39854:153;;40025:17;40020:66;;40051:35;;;;;;;;;;;;;;40020:66;40115:1;40101:16;;:2;:16;;;40097:52;;;40126:23;;;;;;;;;;;;;;40097:52;40162:43;40184:4;40190:2;40194:7;40203:1;40162:21;:43::i;:::-;40270:35;40287:1;40291:7;40300:4;40270:8;:35::i;:::-;40631:1;40601:12;:18;40614:4;40601:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40675:1;40647:12;:16;40660:2;40647:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40693:31;40727:11;:20;40739:7;40727:20;;;;;;;;;;;40693:54;;40778:2;40762:8;:13;;;:18;;;;;;;;;;;;;;;;;;40828:15;40795:8;:23;;;:49;;;;;;;;;;;;;;;;;;41096:19;41128:1;41118:7;:11;41096:33;;41144:31;41178:11;:24;41190:11;41178:24;;;;;;;;;;;41144:58;;41246:1;41221:27;;:8;:13;;;;;;;;;;;;:27;;;41217:384;;;41431:13;;41416:11;:28;41412:174;;41485:4;41469:8;:13;;;:20;;;;;;;;;;;;;;;;;;41538:13;:28;;;41512:8;:23;;;:54;;;;;;;;;;;;;;;;;;41412:174;41217:384;40576:1036;;;41648:7;41644:2;41629:27;;41638:4;41629:27;;;;;;;;;;;;41667:42;41688:4;41694:2;41698:7;41707:1;41667:20;:42::i;:::-;39691:2026;;39587:2130;;;:::o;31635:1109::-;31697:21;;:::i;:::-;31731:12;31746:7;31731:22;;31814:4;31795:15;:13;:15::i;:::-;:23;;:47;;;;;31829:13;;31822:4;:20;31795:47;31791:886;;;31863:31;31897:11;:17;31909:4;31897:17;;;;;;;;;;;31863:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31938:9;:16;;;31933:729;;32009:1;31983:28;;:9;:14;;;:28;;;31979:101;;32047:9;32040:16;;;;;;31979:101;32382:261;32389:4;32382:261;;;32422:6;;;;;;;;32467:11;:17;32479:4;32467:17;;;;;;;;;;;32455:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32541:1;32515:28;;:9;:14;;;:28;;;32511:109;;32583:9;32576:16;;;;;;32511:109;32382:261;;;31933:729;31844:833;31791:886;32705:31;;;;;;;;;;;;;;31635:1109;;;;:::o;8242:191::-;8316:16;8335:6;;;;;;;;;;;8316:25;;8361:8;8352:6;;:17;;;;;;;;;;;;;;;;;;8416:8;8385:40;;8406:8;8385:40;;;;;;;;;;;;8305:128;8242:191;:::o;36669:104::-;36738:27;36748:2;36752:8;36738:27;;;;;;;;;;;;:9;:27::i;:::-;36669:104;;:::o;9673:326::-;9733:4;9990:1;9968:7;:19;;;:23;9961:30;;9673:326;;;:::o;45332:667::-;45495:4;45532:2;45516:36;;;45553:12;:10;:12::i;:::-;45567:4;45573:7;45582:5;45516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45512:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45767:1;45750:6;:13;:18;45746:235;;;45796:40;;;;;;;;;;;;;;45746:235;45939:6;45933:13;45924:6;45920:2;45916:15;45909:38;45512:480;45645:45;;;45635:55;;;:6;:55;;;;45628:62;;;45332:667;;;;;;:::o;49108:108::-;49168:13;49201:7;49194:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49108:108;:::o;3258:723::-;3314:13;3544:1;3535:5;:10;3531:53;;;3562:10;;;;;;;;;;;;;;;;;;;;;3531:53;3594:12;3609:5;3594:20;;3625:14;3650:78;3665:1;3657:4;:9;3650:78;;3683:8;;;;;:::i;:::-;;;;3714:2;3706:10;;;;;:::i;:::-;;;3650:78;;;3738:19;3770:6;3760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3738:39;;3788:154;3804:1;3795:5;:10;3788:154;;3832:1;3822:11;;;;;:::i;:::-;;;3899:2;3891:5;:10;;;;:::i;:::-;3878:2;:24;;;;:::i;:::-;3865:39;;3848:6;3855;3848:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3928:2;3919:11;;;;;:::i;:::-;;;3788:154;;;3966:6;3952:21;;;;;3258:723;;;;:::o;46647:159::-;;;;;:::o;47465:158::-;;;;;:::o;37136:163::-;37259:32;37265:2;37269:8;37279:5;37286:4;37259:5;:32::i;:::-;37136:163;;;:::o;37558:1775::-;37697:20;37720:13;;37697:36;;37762:1;37748:16;;:2;:16;;;37744:48;;;37773:19;;;;;;;;;;;;;;37744:48;37819:1;37807:8;:13;37803:44;;;37829:18;;;;;;;;;;;;;;37803:44;37860:61;37890:1;37894:2;37898:12;37912:8;37860:21;:61::i;:::-;38233:8;38198:12;:16;38211:2;38198:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38297:8;38257:12;:16;38270:2;38257:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38356:2;38323:11;:25;38335:12;38323:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38423:15;38373:11;:25;38385:12;38373:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38456:20;38479:12;38456:35;;38506:11;38535:8;38520:12;:23;38506:37;;38564:4;:23;;;;;38572:15;:2;:13;;;:15::i;:::-;38564:23;38560:641;;;38608:314;38664:12;38660:2;38639:38;;38656:1;38639:38;;;;;;;;;;;;38705:69;38744:1;38748:2;38752:14;;;;;;38768:5;38705:30;:69::i;:::-;38700:174;;38810:40;;;;;;;;;;;;;;38700:174;38917:3;38901:12;:19;;38608:314;;39003:12;38986:13;;:29;38982:43;;39017:8;;;38982:43;38560:641;;;39066:120;39122:14;;;;;;39118:2;39097:40;;39114:1;39097:40;;;;;;;;;;;;39181:3;39165:12;:19;;39066:120;;38560:641;39231:12;39215:13;:28;;;;38173:1082;;39265:60;39294:1;39298:2;39302:12;39316:8;39265:20;:60::i;:::-;37686:1647;37558:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9325:366;;;:::o;9697:::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9697:366;;;:::o;10069:::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10069:366;;;:::o;10441:::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10441:366;;;:::o;10813:400::-;10973:3;10994:84;11076:1;11071:3;10994:84;:::i;:::-;10987:91;;11087:93;11176:3;11087:93;:::i;:::-;11205:1;11200:3;11196:11;11189:18;;10813:400;;;:::o;11219:366::-;11361:3;11382:67;11446:2;11441:3;11382:67;:::i;:::-;11375:74;;11458:93;11547:3;11458:93;:::i;:::-;11576:2;11571:3;11567:12;11560:19;;11219:366;;;:::o;11591:::-;11733:3;11754:67;11818:2;11813:3;11754:67;:::i;:::-;11747:74;;11830:93;11919:3;11830:93;:::i;:::-;11948:2;11943:3;11939:12;11932:19;;11591:366;;;:::o;11963:::-;12105:3;12126:67;12190:2;12185:3;12126:67;:::i;:::-;12119:74;;12202:93;12291:3;12202:93;:::i;:::-;12320:2;12315:3;12311:12;12304:19;;11963:366;;;:::o;12335:398::-;12494:3;12515:83;12596:1;12591:3;12515:83;:::i;:::-;12508:90;;12607:93;12696:3;12607:93;:::i;:::-;12725:1;12720:3;12716:11;12709:18;;12335:398;;;:::o;12739:366::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:118::-;13570:24;13588:5;13570:24;:::i;:::-;13565:3;13558:37;13483:118;;:::o;13607:701::-;13888:3;13910:95;14001:3;13992:6;13910:95;:::i;:::-;13903:102;;14022:95;14113:3;14104:6;14022:95;:::i;:::-;14015:102;;14134:148;14278:3;14134:148;:::i;:::-;14127:155;;14299:3;14292:10;;13607:701;;;;;:::o;14314:379::-;14498:3;14520:147;14663:3;14520:147;:::i;:::-;14513:154;;14684:3;14677:10;;14314:379;;;:::o;14699:222::-;14792:4;14830:2;14819:9;14815:18;14807:26;;14843:71;14911:1;14900:9;14896:17;14887:6;14843:71;:::i;:::-;14699:222;;;;:::o;14927:640::-;15122:4;15160:3;15149:9;15145:19;15137:27;;15174:71;15242:1;15231:9;15227:17;15218:6;15174:71;:::i;:::-;15255:72;15323:2;15312:9;15308:18;15299:6;15255:72;:::i;:::-;15337;15405:2;15394:9;15390:18;15381:6;15337:72;:::i;:::-;15456:9;15450:4;15446:20;15441:2;15430:9;15426:18;15419:48;15484:76;15555:4;15546:6;15484:76;:::i;:::-;15476:84;;14927:640;;;;;;;:::o;15573:210::-;15660:4;15698:2;15687:9;15683:18;15675:26;;15711:65;15773:1;15762:9;15758:17;15749:6;15711:65;:::i;:::-;15573:210;;;;:::o;15789:313::-;15902:4;15940:2;15929:9;15925:18;15917:26;;15989:9;15983:4;15979:20;15975:1;15964:9;15960:17;15953:47;16017:78;16090:4;16081:6;16017:78;:::i;:::-;16009:86;;15789:313;;;;:::o;16108:419::-;16274:4;16312:2;16301:9;16297:18;16289:26;;16361:9;16355:4;16351:20;16347:1;16336:9;16332:17;16325:47;16389:131;16515:4;16389:131;:::i;:::-;16381:139;;16108:419;;;:::o;16533:::-;16699:4;16737:2;16726:9;16722:18;16714:26;;16786:9;16780:4;16776:20;16772:1;16761:9;16757:17;16750:47;16814:131;16940:4;16814:131;:::i;:::-;16806:139;;16533:419;;;:::o;16958:::-;17124:4;17162:2;17151:9;17147:18;17139:26;;17211:9;17205:4;17201:20;17197:1;17186:9;17182:17;17175:47;17239:131;17365:4;17239:131;:::i;:::-;17231:139;;16958:419;;;:::o;17383:::-;17549:4;17587:2;17576:9;17572:18;17564:26;;17636:9;17630:4;17626:20;17622:1;17611:9;17607:17;17600:47;17664:131;17790:4;17664:131;:::i;:::-;17656:139;;17383:419;;;:::o;17808:::-;17974:4;18012:2;18001:9;17997:18;17989:26;;18061:9;18055:4;18051:20;18047:1;18036:9;18032:17;18025:47;18089:131;18215:4;18089:131;:::i;:::-;18081:139;;17808:419;;;:::o;18233:::-;18399:4;18437:2;18426:9;18422:18;18414:26;;18486:9;18480:4;18476:20;18472:1;18461:9;18457:17;18450:47;18514:131;18640:4;18514:131;:::i;:::-;18506:139;;18233:419;;;:::o;18658:::-;18824:4;18862:2;18851:9;18847:18;18839:26;;18911:9;18905:4;18901:20;18897:1;18886:9;18882:17;18875:47;18939:131;19065:4;18939:131;:::i;:::-;18931:139;;18658:419;;;:::o;19083:::-;19249:4;19287:2;19276:9;19272:18;19264:26;;19336:9;19330:4;19326:20;19322:1;19311:9;19307:17;19300:47;19364:131;19490:4;19364:131;:::i;:::-;19356:139;;19083:419;;;:::o;19508:::-;19674:4;19712:2;19701:9;19697:18;19689:26;;19761:9;19755:4;19751:20;19747:1;19736:9;19732:17;19725:47;19789:131;19915:4;19789:131;:::i;:::-;19781:139;;19508:419;;;:::o;19933:222::-;20026:4;20064:2;20053:9;20049:18;20041:26;;20077:71;20145:1;20134:9;20130:17;20121:6;20077:71;:::i;:::-;19933:222;;;;:::o;20161:129::-;20195:6;20222:20;;:::i;:::-;20212:30;;20251:33;20279:4;20271:6;20251:33;:::i;:::-;20161:129;;;:::o;20296:75::-;20329:6;20362:2;20356:9;20346:19;;20296:75;:::o;20377:307::-;20438:4;20528:18;20520:6;20517:30;20514:56;;;20550:18;;:::i;:::-;20514:56;20588:29;20610:6;20588:29;:::i;:::-;20580:37;;20672:4;20666;20662:15;20654:23;;20377:307;;;:::o;20690:308::-;20752:4;20842:18;20834:6;20831:30;20828:56;;;20864:18;;:::i;:::-;20828:56;20902:29;20924:6;20902:29;:::i;:::-;20894:37;;20986:4;20980;20976:15;20968:23;;20690:308;;;:::o;21004:98::-;21055:6;21089:5;21083:12;21073:22;;21004:98;;;:::o;21108:99::-;21160:6;21194:5;21188:12;21178:22;;21108:99;;;:::o;21213:168::-;21296:11;21330:6;21325:3;21318:19;21370:4;21365:3;21361:14;21346:29;;21213:168;;;;:::o;21387:147::-;21488:11;21525:3;21510:18;;21387:147;;;;:::o;21540:169::-;21624:11;21658:6;21653:3;21646:19;21698:4;21693:3;21689:14;21674:29;;21540:169;;;;:::o;21715:148::-;21817:11;21854:3;21839:18;;21715:148;;;;:::o;21869:305::-;21909:3;21928:20;21946:1;21928:20;:::i;:::-;21923:25;;21962:20;21980:1;21962:20;:::i;:::-;21957:25;;22116:1;22048:66;22044:74;22041:1;22038:81;22035:107;;;22122:18;;:::i;:::-;22035:107;22166:1;22163;22159:9;22152:16;;21869:305;;;;:::o;22180:185::-;22220:1;22237:20;22255:1;22237:20;:::i;:::-;22232:25;;22271:20;22289:1;22271:20;:::i;:::-;22266:25;;22310:1;22300:35;;22315:18;;:::i;:::-;22300:35;22357:1;22354;22350:9;22345:14;;22180:185;;;;:::o;22371:348::-;22411:7;22434:20;22452:1;22434:20;:::i;:::-;22429:25;;22468:20;22486:1;22468:20;:::i;:::-;22463:25;;22656:1;22588:66;22584:74;22581:1;22578:81;22573:1;22566:9;22559:17;22555:105;22552:131;;;22663:18;;:::i;:::-;22552:131;22711:1;22708;22704:9;22693:20;;22371:348;;;;:::o;22725:191::-;22765:4;22785:20;22803:1;22785:20;:::i;:::-;22780:25;;22819:20;22837:1;22819:20;:::i;:::-;22814:25;;22858:1;22855;22852:8;22849:34;;;22863:18;;:::i;:::-;22849:34;22908:1;22905;22901:9;22893:17;;22725:191;;;;:::o;22922:96::-;22959:7;22988:24;23006:5;22988:24;:::i;:::-;22977:35;;22922:96;;;:::o;23024:90::-;23058:7;23101:5;23094:13;23087:21;23076:32;;23024:90;;;:::o;23120:149::-;23156:7;23196:66;23189:5;23185:78;23174:89;;23120:149;;;:::o;23275:126::-;23312:7;23352:42;23345:5;23341:54;23330:65;;23275:126;;;:::o;23407:77::-;23444:7;23473:5;23462:16;;23407:77;;;:::o;23490:154::-;23574:6;23569:3;23564;23551:30;23636:1;23627:6;23622:3;23618:16;23611:27;23490:154;;;:::o;23650:307::-;23718:1;23728:113;23742:6;23739:1;23736:13;23728:113;;;23827:1;23822:3;23818:11;23812:18;23808:1;23803:3;23799:11;23792:39;23764:2;23761:1;23757:10;23752:15;;23728:113;;;23859:6;23856:1;23853:13;23850:101;;;23939:1;23930:6;23925:3;23921:16;23914:27;23850:101;23699:258;23650:307;;;:::o;23963:320::-;24007:6;24044:1;24038:4;24034:12;24024:22;;24091:1;24085:4;24081:12;24112:18;24102:81;;24168:4;24160:6;24156:17;24146:27;;24102:81;24230:2;24222:6;24219:14;24199:18;24196:38;24193:84;;;24249:18;;:::i;:::-;24193:84;24014:269;23963:320;;;:::o;24289:281::-;24372:27;24394:4;24372:27;:::i;:::-;24364:6;24360:40;24502:6;24490:10;24487:22;24466:18;24454:10;24451:34;24448:62;24445:88;;;24513:18;;:::i;:::-;24445:88;24553:10;24549:2;24542:22;24332:238;24289:281;;:::o;24576:233::-;24615:3;24638:24;24656:5;24638:24;:::i;:::-;24629:33;;24684:66;24677:5;24674:77;24671:103;;;24754:18;;:::i;:::-;24671:103;24801:1;24794:5;24790:13;24783:20;;24576:233;;;:::o;24815:176::-;24847:1;24864:20;24882:1;24864:20;:::i;:::-;24859:25;;24898:20;24916:1;24898:20;:::i;:::-;24893:25;;24937:1;24927:35;;24942:18;;:::i;:::-;24927:35;24983:1;24980;24976:9;24971:14;;24815:176;;;;:::o;24997:180::-;25045:77;25042:1;25035:88;25142:4;25139:1;25132:15;25166:4;25163:1;25156:15;25183:180;25231:77;25228:1;25221:88;25328:4;25325:1;25318:15;25352:4;25349:1;25342:15;25369:180;25417:77;25414:1;25407:88;25514:4;25511:1;25504:15;25538:4;25535:1;25528:15;25555:180;25603:77;25600:1;25593:88;25700:4;25697:1;25690:15;25724:4;25721:1;25714:15;25741:180;25789:77;25786:1;25779:88;25886:4;25883:1;25876:15;25910:4;25907:1;25900:15;25927:117;26036:1;26033;26026:12;26050:117;26159:1;26156;26149:12;26173:117;26282:1;26279;26272:12;26296:117;26405:1;26402;26395:12;26419:102;26460:6;26511:2;26507:7;26502:2;26495:5;26491:14;26487:28;26477:38;;26419:102;;;:::o;26527:225::-;26667:34;26663:1;26655:6;26651:14;26644:58;26736:8;26731:2;26723:6;26719:15;26712:33;26527:225;:::o;26758:224::-;26898:34;26894:1;26886:6;26882:14;26875:58;26967:7;26962:2;26954:6;26950:15;26943:32;26758:224;:::o;26988:169::-;27128:21;27124:1;27116:6;27112:14;27105:45;26988:169;:::o;27163:165::-;27303:17;27299:1;27291:6;27287:14;27280:41;27163:165;:::o;27334:155::-;27474:7;27470:1;27462:6;27458:14;27451:31;27334:155;:::o;27495:182::-;27635:34;27631:1;27623:6;27619:14;27612:58;27495:182;:::o;27683:173::-;27823:25;27819:1;27811:6;27807:14;27800:49;27683:173;:::o;27862:234::-;28002:34;27998:1;27990:6;27986:14;27979:58;28071:17;28066:2;28058:6;28054:15;28047:42;27862:234;:::o;28102:114::-;;:::o;28222:240::-;28362:34;28358:1;28350:6;28346:14;28339:58;28431:23;28426:2;28418:6;28414:15;28407:48;28222:240;:::o;28468:181::-;28608:33;28604:1;28596:6;28592:14;28585:57;28468:181;:::o;28655:122::-;28728:24;28746:5;28728:24;:::i;:::-;28721:5;28718:35;28708:63;;28767:1;28764;28757:12;28708:63;28655:122;:::o;28783:116::-;28853:21;28868:5;28853:21;:::i;:::-;28846:5;28843:32;28833:60;;28889:1;28886;28879:12;28833:60;28783:116;:::o;28905:120::-;28977:23;28994:5;28977:23;:::i;:::-;28970:5;28967:34;28957:62;;29015:1;29012;29005:12;28957:62;28905:120;:::o;29031:122::-;29104:24;29122:5;29104:24;:::i;:::-;29097:5;29094:35;29084:63;;29143:1;29140;29133:12;29084:63;29031:122;:::o

Swarm Source

ipfs://dff332305a996a4d8bb2cf7601b020613428dc107480cb57a779bfffe9de4644
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.