ETH Price: $2,944.96 (-6.72%)
Gas: 7 Gwei

Token

CyberCityRabbit (CCR)
 

Overview

Max Total Supply

5,204 CCR

Holders

1,156

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CCR
0xe238f1534827a0a4c31c1d95d6375e160e338257
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:
CyberCityRabbit

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-12
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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: CITY.sol



/**
                               .,cccchhhhccc,?""?L
                                ,cb$$$$$$$$$$$$$$$$$$$c,
                             ,r="3$$$$$$$?$$?$$$$$$$$$$$$c           ,,cccc
                            ,$,d$$$$$$$$$c ?c`?$$$$$$$$$$$$$ ,,ccc$$P"',nn,"
                           ,$$$$$$$$$$$$$$$,$h`$$$$$$$$$$$$$$$$$$",nMMMMMMMn
                           $$$??$$$$$$??$$$$$$$$$$$$$$$$$$$$$$$",nMMMMMMMMMM
                           ?$'nn`$$$F,nn ?$$$$$$$$$$$$$$$$$$$P'nMMMMMMMMMMM'
                           `F.MM,?$$ MMML`$$$$$$$$$$$$$$$$$$$.MMMMMMMMMMMMM
                            $:P  J$F{M"  ,$$$$$$$$$$$$$$$$$$$.".,nMMMMMMMP'
                            $_`_ ""F `   J$$$$$$$$$$$$$$$$$$F.MndMMMMMMMP'
                          ,'    ``"4,,,c$$$$$$$$$$$$$$$$$$$$$.TMMMMMMMMf'
                         ;$,       ,$$$$$$$$$$$$$$$$$$$$$$F "?bc,,""""'
                         ?$C`3cccc$$$xc `???$$$$$$$$$$$""
                           ""\,"?$$$P",d$$ccc$$$$$$$$$F
                               "?ccccd$$$$$$$$$$$$$P""
                                 `?$$$$$$$$$c
                                  `$$$$$$$$$'
                                   $$$$$$,cc,
                                  J??$$$P$$$$
                             ,r, ,",cc,"P'$$$$
                            4$ F,F,$$$$bcc,"?$                          ,,ccc
                           zF-  F $$L4,"?$$$$E                      _,d$$$$$$
                          ,?d "JF d"F'$$c`?$$"4c,.               _,d$$$$$$$$'
                              4$$c...J$$$$$eed$$$$$c,      _,ccd$$$$$$$$$$F
                              J$$$$$$$$$$$$$$$$$$$$$$$,`?$$$$$$$$$$$$$$$P"
                              $$$$$$$$$$$$$$$$$$$$$$$$$$ $$$$$$$$$$$$$P"
                              `$$$$$$$$$$$$$$$$$$$$$$$$$,)$$$$$$$$$$$"
                               ?$$$$$$$$$$$$$$$$$$$$$$$$>)$$$$$$$$$F
                                `$$$$$ $$$$$$$$$$$$$$$$$ $$$$$$$P"
    ,cc=                       ,$c,"?F,$$$$$$$$$$$$$$$$'J$$$$P"
  ,$$",$$$$$$$bc.              $$$$$P $$$$$$$$$$$$$$$F',$PF"
 {$$"c$$$$$$",,zcchhc,         $$$$$ d$$$$$$$$$$$$$$  "'
  ?b{$$$$$ ,$",ccccc,$$$bc,    `$$$$ $$$$$$$$$$$$$P'
     `""?" ",J$$$$$$$$$$$$$$cc  ?$$$ ?$$$$$$$$$$$"
            ?$$$$$$$$$$$$$$$$$$c,"$$b`?$$$$$$$$P'
              `""????$$$$$$$$$$$$b,"?b`?$$$$$$$'
                       `""??$$$$$$$$c`?`?$$$$"
                              `"?$$$$$ec.$$$$
                                  `"?$$$$$$$$L


*/





pragma solidity ^0.8.2;




contract CyberCityRabbit is ERC721A, Ownable, ReentrancyGuard {
    enum Status {
        Waiting,
        Started,
        Finished
    }
    using Strings for uint256;
    Status public status;
    string private baseURI;
    uint256 public constant MAX_MINT_PER_ADDR = 10;
    uint256 public constant MAX_FREE_MINT_PER_ADDR = 1;
    uint256 public PUBLIC_PRICE = 0.003 * 10**18;
    uint256 public constant MAX_SUPPLY = 6666;
    uint256 public constant FREE_MINT_SUPPLY = 5555;
    uint256 public INSTANT_FREE_MINTED = 0;

    event Minted(address minter, uint256 amount);

    constructor(string memory initBaseURI) ERC721A("CyberCityRabbit", "CCR") {
        baseURI = initBaseURI;
        _safeMint(msg.sender, MAX_FREE_MINT_PER_ADDR);
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            string(
                abi.encodePacked(baseURI, "/", _tokenId.toString(), ".json")
            );
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function mint(uint256 quantity) external payable nonReentrant {
        require(status == Status.Started, "-Not started yet-");
        require(tx.origin == msg.sender, "-Contract call not allowed-");
        require(
            numberMinted(msg.sender) + quantity <= MAX_MINT_PER_ADDR,
            "-This is more than allowed-"
        );
        require(
            totalSupply() + quantity <= MAX_SUPPLY,
            "-Not enough quantity-"
        );

        uint256 _cost;
        if (INSTANT_FREE_MINTED < FREE_MINT_SUPPLY) {
            uint256 remainFreeAmont = (numberMinted(msg.sender) <
                MAX_FREE_MINT_PER_ADDR)
                ? (MAX_FREE_MINT_PER_ADDR - numberMinted(msg.sender))
                : 0;

            _cost =
                PUBLIC_PRICE *
                (
                    (quantity <= remainFreeAmont)
                        ? 0
                        : (quantity - remainFreeAmont)
                );

            INSTANT_FREE_MINTED += (
                (quantity <= remainFreeAmont) ? quantity : remainFreeAmont
            );
        } else {
            _cost = PUBLIC_PRICE * quantity;
        }
        require(msg.value >= _cost, "-Not enough ETH-");
        _safeMint(msg.sender, quantity);
        emit Minted(msg.sender, quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
    }

    function withdraw(address payable recipient)
        external
        onlyOwner
        nonReentrant
    {
        uint256 balance = address(this).balance;
        (bool success, ) = recipient.call{value: balance}("");
        require(success, "-Withdraw failed-");
    }

    function updatePrice(uint256 __price) external onlyOwner {
        PUBLIC_PRICE = __price;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"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":"MintedQueryForZeroAddress","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INSTANT_FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ADDR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum CyberCityRabbit.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum CyberCityRabbit.Status","name":"","type":"uint8"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600c556000600d553480156200002157600080fd5b506040516200460a3803806200460a833981810160405281019062000047919062000983565b6040518060400160405280600f81526020017f43796265724369747952616262697400000000000000000000000000000000008152506040518060400160405280600381526020017f43435200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cb9291906200080c565b508060039080519060200190620000e49291906200080c565b50620000f56200015860201b60201c565b60008190555050506200011d620001116200016160201b60201c565b6200016960201b60201c565b600160098190555080600b90805190602001906200013d9291906200080c565b50620001513360016200022f60201b60201c565b5062000caf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002518282604051806020016040528060008152506200025560201b60201c565b5050565b6200026a83838360016200026f60201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620002dd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000319576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032e60008683876200066b60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620005065750620005058773ffffffffffffffffffffffffffffffffffffffff166200067160201b6200147e1760201c565b5b15620005d9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200058460008884806001019550886200069460201b60201c565b620005bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156200050d578260005414620005d357600080fd5b62000646565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415620005da575b8160008190555050506200066460008683876200080660201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006c26200016160201b60201c565b8786866040518563ffffffff1660e01b8152600401620006e6949392919062000a37565b602060405180830381600087803b1580156200070157600080fd5b505af19250505080156200073557506040513d601f19601f8201168201806040525081019062000732919062000951565b60015b620007b3573d806000811462000768576040519150601f19603f3d011682016040523d82523d6000602084013e6200076d565b606091505b50600081511415620007ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b8280546200081a9062000ba6565b90600052602060002090601f0160209004810192826200083e57600085556200088a565b82601f106200085957805160ff19168380011785556200088a565b828001600101855582156200088a579182015b82811115620008895782518255916020019190600101906200086c565b5b5090506200089991906200089d565b5090565b5b80821115620008b85760008160009055506001016200089e565b5090565b6000620008d3620008cd8462000ab4565b62000a8b565b905082815260208101848484011115620008f257620008f162000c75565b5b620008ff84828562000b70565b509392505050565b600081519050620009188162000c95565b92915050565b600082601f83011262000936576200093562000c70565b5b815162000948848260208601620008bc565b91505092915050565b6000602082840312156200096a576200096962000c7f565b5b60006200097a8482850162000907565b91505092915050565b6000602082840312156200099c576200099b62000c7f565b5b600082015167ffffffffffffffff811115620009bd57620009bc62000c7a565b5b620009cb848285016200091e565b91505092915050565b620009df8162000b06565b82525050565b6000620009f28262000aea565b620009fe818562000af5565b935062000a1081856020860162000b70565b62000a1b8162000c84565b840191505092915050565b62000a318162000b66565b82525050565b600060808201905062000a4e6000830187620009d4565b62000a5d6020830186620009d4565b62000a6c604083018562000a26565b818103606083015262000a808184620009e5565b905095945050505050565b600062000a9762000aaa565b905062000aa5828262000bdc565b919050565b6000604051905090565b600067ffffffffffffffff82111562000ad25762000ad162000c41565b5b62000add8262000c84565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000b138262000b46565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b9057808201518184015260208101905062000b73565b8381111562000ba0576000848401525b50505050565b6000600282049050600182168062000bbf57607f821691505b6020821081141562000bd65762000bd562000c12565b5b50919050565b62000be78262000c84565b810181811067ffffffffffffffff8211171562000c095762000c0862000c41565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000ca08162000b1a565b811462000cac57600080fd5b50565b61394b8062000cbf6000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610643578063dc33e68114610680578063e985e9c5146106bd578063f2fde38b146106fa576101cd565b806395d89b41146105aa578063a0712d68146105d5578063a22cb465146105f1578063b88d4fde1461061a576101cd565b8063715018a6116100d1578063715018a61461051457806382481c0e1461052b5780638d6cc56d146105565780638da5cb5b1461057f576101cd565b80636352211e1461046f57806363eb8bb6146104ac57806370a08231146104d7576101cd565b8063200d2ed21161016f57806342842e0e1161013e57806342842e0e146103c957806351cff8d9146103f257806355f804b31461041b578063611f3f1014610444576101cd565b8063200d2ed21461032157806323b872dd1461034c5780632e49d78b1461037557806332cb6b0c1461039e576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806316154862146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d25780630528eb431461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612aaa565b610723565b6040516102069190612faf565b60405180910390f35b34801561021b57600080fd5b50610224610805565b6040516102319190613147565b60405180910390f35b34801561024657600080fd5b5061024f61080a565b60405161025c9190612fe5565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612b7e565b61089c565b6040516102999190612f1f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612a6a565b610918565b005b3480156102d757600080fd5b506102e0610a23565b6040516102ed9190613147565b60405180910390f35b34801561030257600080fd5b5061030b610a28565b6040516103189190613147565b60405180910390f35b34801561032d57600080fd5b50610336610a3f565b6040516103439190612fca565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612954565b610a52565b005b34801561038157600080fd5b5061039c60048036038101906103979190612b04565b610a62565b005b3480156103aa57600080fd5b506103b3610a97565b6040516103c09190613147565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612954565b610a9d565b005b3480156103fe57600080fd5b50610419600480360381019061041491906128e7565b610abd565b005b34801561042757600080fd5b50610442600480360381019061043d9190612b31565b610bd1565b005b34801561045057600080fd5b50610459610bef565b6040516104669190613147565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612b7e565b610bf5565b6040516104a39190612f1f565b60405180910390f35b3480156104b857600080fd5b506104c1610c0b565b6040516104ce9190613147565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906128ba565b610c11565b60405161050b9190613147565b60405180910390f35b34801561052057600080fd5b50610529610ce1565b005b34801561053757600080fd5b50610540610cf5565b60405161054d9190613147565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612b7e565b610cfb565b005b34801561058b57600080fd5b50610594610d0d565b6040516105a19190612f1f565b60405180910390f35b3480156105b657600080fd5b506105bf610d37565b6040516105cc9190612fe5565b60405180910390f35b6105ef60048036038101906105ea9190612b7e565b610dc9565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612a2a565b6110e4565b005b34801561062657600080fd5b50610641600480360381019061063c91906129a7565b61125c565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b7e565b6112d8565b6040516106779190612fe5565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a291906128ba565b611354565b6040516106b49190613147565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612914565b611366565b6040516106f19190612faf565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906128ba565b6113fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fe57506107fd826114a1565b5b9050919050565b600181565b6060600280546108199061341d565b80601f01602080910402602001604051908101604052809291908181526020018280546108459061341d565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a78261150b565b6108dd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109aa611559565b73ffffffffffffffffffffffffffffffffffffffff16141580156109dc57506109da816109d5611559565b611366565b155b15610a13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a1e838383611561565b505050565b600a81565b6000610a32611613565b6001546000540303905090565b600a60009054906101000a900460ff1681565b610a5d83838361161c565b505050565b610a6a611b0d565b80600a60006101000a81548160ff02191690836002811115610a8f57610a8e613558565b5b021790555050565b611a0a81565b610ab88383836040518060200160405280600081525061125c565b505050565b610ac5611b0d565b60026009541415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613107565b60405180910390fd5b6002600981905550600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610b3e90612f0a565b60006040518083038185875af1925050503d8060008114610b7b576040519150601f19603f3d011682016040523d82523d6000602084013e610b80565b606091505b5050905080610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613027565b60405180910390fd5b5050600160098190555050565b610bd9611b0d565b8181600b9190610bea92919061267b565b505050565b600c5481565b6000610c0082611b8b565b600001519050919050565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c79576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ce9611b0d565b610cf36000611e1a565b565b600d5481565b610d03611b0d565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d469061341d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d729061341d565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b60026009541415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613107565b60405180910390fd5b600260098190555060016002811115610e2b57610e2a613558565b5b600a60009054906101000a900460ff166002811115610e4d57610e4c613558565b5b14610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613127565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613047565b60405180910390fd5b600a81610f0733611354565b610f11919061321b565b1115610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f49906130a7565b60405180910390fd5b611a0a81610f5e610a28565b610f68919061321b565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613087565b60405180910390fd5b60006115b3600d5410156110415760006001610fc433611354565b10610fd0576000610fe6565b610fd933611354565b6001610fe591906132fc565b5b905080831115611001578083610ffc91906132fc565b611004565b60005b600c5461101191906132a2565b9150808311156110215780611023565b825b600d6000828254611034919061321b565b9250508190555050611052565b81600c5461104f91906132a2565b90505b80341015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613067565b60405180910390fd5b61109f3383611ee0565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33836040516110d0929190612f86565b60405180910390a150600160098190555050565b6110ec611559565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611151576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115e611559565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120b611559565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112509190612faf565b60405180910390a35050565b61126784848461161c565b6112868373ffffffffffffffffffffffffffffffffffffffff1661147e565b801561129b575061129984848484611efe565b155b156112d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112e38261150b565b611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906130e7565b60405180910390fd5b600b61132d8361205e565b60405160200161133e929190612ed0565b6040516020818303038152906040529050919050565b600061135f826121bf565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611402611b0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613007565b60405180910390fd5b61147b81611e1a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611516611613565b11158015611525575060005482105b8015611552575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061162782611b8b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661164e611559565b73ffffffffffffffffffffffffffffffffffffffff1614806116815750611680826000015161167b611559565b611366565b5b806116c6575061168f611559565b73ffffffffffffffffffffffffffffffffffffffff166116ae8461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116ff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611768576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117dc858585600161228f565b6117ec6000848460000151611561565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a9d57600054811015611a9c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b068585856001612295565b5050505050565b611b15611559565b73ffffffffffffffffffffffffffffffffffffffff16611b33610d0d565b73ffffffffffffffffffffffffffffffffffffffff1614611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b80906130c7565b60405180910390fd5b565b611b93612701565b600082905080611ba1611613565b11158015611bb0575060005481105b15611de3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611de157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc5578092505050611e15565b5b600115611de057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ddb578092505050611e15565b611cc6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611efa82826040518060200160405280600081525061229b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f24611559565b8786866040518563ffffffff1660e01b8152600401611f469493929190612f3a565b602060405180830381600087803b158015611f6057600080fd5b505af1925050508015611f9157506040513d601f19601f82011682018060405250810190611f8e9190612ad7565b60015b61200b573d8060008114611fc1576040519150601f19603f3d011682016040523d82523d6000602084013e611fc6565b606091505b50600081511415612003576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ba565b600082905060005b600082146120d85780806120c190613480565b915050600a826120d19190613271565b91506120ae565b60008167ffffffffffffffff8111156120f4576120f36135e5565b5b6040519080825280601f01601f1916602001820160405280156121265781602001600182028036833780820191505090505b5090505b600085146121b35760018261213f91906132fc565b9150600a8561214e91906134c9565b603061215a919061321b565b60f81b8183815181106121705761216f6135b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ac9190613271565b945061212a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612227576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6122a883838360016122ad565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612355576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612362600086838761228f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561252c575061252b8773ffffffffffffffffffffffffffffffffffffffff1661147e565b5b156125f2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a16000888480600101955088611efe565b6125d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125325782600054146125ed57600080fd5b61265e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125f3575b8160008190555050506126746000868387612295565b5050505050565b8280546126879061341d565b90600052602060002090601f0160209004810192826126a957600085556126f0565b82601f106126c257803560ff19168380011785556126f0565b828001600101855582156126f0579182015b828111156126ef5782358255916020019190600101906126d4565b5b5090506126fd9190612744565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561275d576000816000905550600101612745565b5090565b600061277461276f84613187565b613162565b9050828152602081018484840111156127905761278f613623565b5b61279b8482856133db565b509392505050565b6000813590506127b281613892565b92915050565b6000813590506127c7816138a9565b92915050565b6000813590506127dc816138c0565b92915050565b6000813590506127f1816138d7565b92915050565b600081519050612806816138d7565b92915050565b600082601f83011261282157612820613619565b5b8135612831848260208601612761565b91505092915050565b600081359050612849816138ee565b92915050565b60008083601f84011261286557612864613619565b5b8235905067ffffffffffffffff81111561288257612881613614565b5b60208301915083600182028301111561289e5761289d61361e565b5b9250929050565b6000813590506128b4816138fe565b92915050565b6000602082840312156128d0576128cf61362d565b5b60006128de848285016127a3565b91505092915050565b6000602082840312156128fd576128fc61362d565b5b600061290b848285016127b8565b91505092915050565b6000806040838503121561292b5761292a61362d565b5b6000612939858286016127a3565b925050602061294a858286016127a3565b9150509250929050565b60008060006060848603121561296d5761296c61362d565b5b600061297b868287016127a3565b935050602061298c868287016127a3565b925050604061299d868287016128a5565b9150509250925092565b600080600080608085870312156129c1576129c061362d565b5b60006129cf878288016127a3565b94505060206129e0878288016127a3565b93505060406129f1878288016128a5565b925050606085013567ffffffffffffffff811115612a1257612a11613628565b5b612a1e8782880161280c565b91505092959194509250565b60008060408385031215612a4157612a4061362d565b5b6000612a4f858286016127a3565b9250506020612a60858286016127cd565b9150509250929050565b60008060408385031215612a8157612a8061362d565b5b6000612a8f858286016127a3565b9250506020612aa0858286016128a5565b9150509250929050565b600060208284031215612ac057612abf61362d565b5b6000612ace848285016127e2565b91505092915050565b600060208284031215612aed57612aec61362d565b5b6000612afb848285016127f7565b91505092915050565b600060208284031215612b1a57612b1961362d565b5b6000612b288482850161283a565b91505092915050565b60008060208385031215612b4857612b4761362d565b5b600083013567ffffffffffffffff811115612b6657612b65613628565b5b612b728582860161284f565b92509250509250929050565b600060208284031215612b9457612b9361362d565b5b6000612ba2848285016128a5565b91505092915050565b612bb481613330565b82525050565b612bc381613354565b82525050565b6000612bd4826131cd565b612bde81856131e3565b9350612bee8185602086016133ea565b612bf781613632565b840191505092915050565b612c0b816133c9565b82525050565b6000612c1c826131d8565b612c2681856131ff565b9350612c368185602086016133ea565b612c3f81613632565b840191505092915050565b6000612c55826131d8565b612c5f8185613210565b9350612c6f8185602086016133ea565b80840191505092915050565b60008154612c888161341d565b612c928186613210565b94506001821660008114612cad5760018114612cbe57612cf1565b60ff19831686528186019350612cf1565b612cc7856131b8565b60005b83811015612ce957815481890152600182019150602081019050612cca565b838801955050505b50505092915050565b6000612d076026836131ff565b9150612d1282613643565b604082019050919050565b6000612d2a6011836131ff565b9150612d3582613692565b602082019050919050565b6000612d4d601b836131ff565b9150612d58826136bb565b602082019050919050565b6000612d706010836131ff565b9150612d7b826136e4565b602082019050919050565b6000612d936015836131ff565b9150612d9e8261370d565b602082019050919050565b6000612db6601b836131ff565b9150612dc182613736565b602082019050919050565b6000612dd9600583613210565b9150612de48261375f565b600582019050919050565b6000612dfc6020836131ff565b9150612e0782613788565b602082019050919050565b6000612e1f602f836131ff565b9150612e2a826137b1565b604082019050919050565b6000612e426000836131f4565b9150612e4d82613800565b600082019050919050565b6000612e65601f836131ff565b9150612e7082613803565b602082019050919050565b6000612e886011836131ff565b9150612e938261382c565b602082019050919050565b6000612eab600183613210565b9150612eb682613855565b600182019050919050565b612eca816133bf565b82525050565b6000612edc8285612c7b565b9150612ee782612e9e565b9150612ef38284612c4a565b9150612efe82612dcc565b91508190509392505050565b6000612f1582612e35565b9150819050919050565b6000602082019050612f346000830184612bab565b92915050565b6000608082019050612f4f6000830187612bab565b612f5c6020830186612bab565b612f696040830185612ec1565b8181036060830152612f7b8184612bc9565b905095945050505050565b6000604082019050612f9b6000830185612bab565b612fa86020830184612ec1565b9392505050565b6000602082019050612fc46000830184612bba565b92915050565b6000602082019050612fdf6000830184612c02565b92915050565b60006020820190508181036000830152612fff8184612c11565b905092915050565b6000602082019050818103600083015261302081612cfa565b9050919050565b6000602082019050818103600083015261304081612d1d565b9050919050565b6000602082019050818103600083015261306081612d40565b9050919050565b6000602082019050818103600083015261308081612d63565b9050919050565b600060208201905081810360008301526130a081612d86565b9050919050565b600060208201905081810360008301526130c081612da9565b9050919050565b600060208201905081810360008301526130e081612def565b9050919050565b6000602082019050818103600083015261310081612e12565b9050919050565b6000602082019050818103600083015261312081612e58565b9050919050565b6000602082019050818103600083015261314081612e7b565b9050919050565b600060208201905061315c6000830184612ec1565b92915050565b600061316c61317d565b9050613178828261344f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131a2576131a16135e5565b5b6131ab82613632565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613226826133bf565b9150613231836133bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613266576132656134fa565b5b828201905092915050565b600061327c826133bf565b9150613287836133bf565b92508261329757613296613529565b5b828204905092915050565b60006132ad826133bf565b91506132b8836133bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f1576132f06134fa565b5b828202905092915050565b6000613307826133bf565b9150613312836133bf565b925082821015613325576133246134fa565b5b828203905092915050565b600061333b8261339f565b9050919050565b600061334d8261339f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061339a8261387e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006133d48261338c565b9050919050565b82818337600083830152505050565b60005b838110156134085780820151818401526020810190506133ed565b83811115613417576000848401525b50505050565b6000600282049050600182168061343557607f821691505b6020821081141561344957613448613587565b5b50919050565b61345882613632565b810181811067ffffffffffffffff82111715613477576134766135e5565b5b80604052505050565b600061348b826133bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134be576134bd6134fa565b5b600182019050919050565b60006134d4826133bf565b91506134df836133bf565b9250826134ef576134ee613529565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2d5769746864726177206661696c65642d000000000000000000000000000000600082015250565b7f2d436f6e74726163742063616c6c206e6f7420616c6c6f7765642d0000000000600082015250565b7f2d4e6f7420656e6f756768204554482d00000000000000000000000000000000600082015250565b7f2d4e6f7420656e6f756768207175616e746974792d0000000000000000000000600082015250565b7f2d54686973206973206d6f7265207468616e20616c6c6f7765642d0000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2d4e6f742073746172746564207965742d000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6003811061388f5761388e613558565b5b50565b61389b81613330565b81146138a657600080fd5b50565b6138b281613342565b81146138bd57600080fd5b50565b6138c981613354565b81146138d457600080fd5b50565b6138e081613360565b81146138eb57600080fd5b50565b600381106138fb57600080fd5b50565b613907816133bf565b811461391257600080fd5b5056fea26469706673582212209652c066652f3f6948fd0b8fd1d110d44f8d0ddd6a931dae8cc4281d9387429464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6142736a686a354c59506247587666377552626a3951714a4e37504a433866355869636d376a72554a744c752f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610643578063dc33e68114610680578063e985e9c5146106bd578063f2fde38b146106fa576101cd565b806395d89b41146105aa578063a0712d68146105d5578063a22cb465146105f1578063b88d4fde1461061a576101cd565b8063715018a6116100d1578063715018a61461051457806382481c0e1461052b5780638d6cc56d146105565780638da5cb5b1461057f576101cd565b80636352211e1461046f57806363eb8bb6146104ac57806370a08231146104d7576101cd565b8063200d2ed21161016f57806342842e0e1161013e57806342842e0e146103c957806351cff8d9146103f257806355f804b31461041b578063611f3f1014610444576101cd565b8063200d2ed21461032157806323b872dd1461034c5780632e49d78b1461037557806332cb6b0c1461039e576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a257806316154862146102cb57806318160ddd146102f6576101cd565b806301ffc9a7146101d25780630528eb431461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612aaa565b610723565b6040516102069190612faf565b60405180910390f35b34801561021b57600080fd5b50610224610805565b6040516102319190613147565b60405180910390f35b34801561024657600080fd5b5061024f61080a565b60405161025c9190612fe5565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612b7e565b61089c565b6040516102999190612f1f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612a6a565b610918565b005b3480156102d757600080fd5b506102e0610a23565b6040516102ed9190613147565b60405180910390f35b34801561030257600080fd5b5061030b610a28565b6040516103189190613147565b60405180910390f35b34801561032d57600080fd5b50610336610a3f565b6040516103439190612fca565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190612954565b610a52565b005b34801561038157600080fd5b5061039c60048036038101906103979190612b04565b610a62565b005b3480156103aa57600080fd5b506103b3610a97565b6040516103c09190613147565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612954565b610a9d565b005b3480156103fe57600080fd5b50610419600480360381019061041491906128e7565b610abd565b005b34801561042757600080fd5b50610442600480360381019061043d9190612b31565b610bd1565b005b34801561045057600080fd5b50610459610bef565b6040516104669190613147565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612b7e565b610bf5565b6040516104a39190612f1f565b60405180910390f35b3480156104b857600080fd5b506104c1610c0b565b6040516104ce9190613147565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f991906128ba565b610c11565b60405161050b9190613147565b60405180910390f35b34801561052057600080fd5b50610529610ce1565b005b34801561053757600080fd5b50610540610cf5565b60405161054d9190613147565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612b7e565b610cfb565b005b34801561058b57600080fd5b50610594610d0d565b6040516105a19190612f1f565b60405180910390f35b3480156105b657600080fd5b506105bf610d37565b6040516105cc9190612fe5565b60405180910390f35b6105ef60048036038101906105ea9190612b7e565b610dc9565b005b3480156105fd57600080fd5b5061061860048036038101906106139190612a2a565b6110e4565b005b34801561062657600080fd5b50610641600480360381019061063c91906129a7565b61125c565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612b7e565b6112d8565b6040516106779190612fe5565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a291906128ba565b611354565b6040516106b49190613147565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612914565b611366565b6040516106f19190612faf565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906128ba565b6113fa565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ee57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fe57506107fd826114a1565b5b9050919050565b600181565b6060600280546108199061341d565b80601f01602080910402602001604051908101604052809291908181526020018280546108459061341d565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b60006108a78261150b565b6108dd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382610bf5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109aa611559565b73ffffffffffffffffffffffffffffffffffffffff16141580156109dc57506109da816109d5611559565b611366565b155b15610a13576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a1e838383611561565b505050565b600a81565b6000610a32611613565b6001546000540303905090565b600a60009054906101000a900460ff1681565b610a5d83838361161c565b505050565b610a6a611b0d565b80600a60006101000a81548160ff02191690836002811115610a8f57610a8e613558565b5b021790555050565b611a0a81565b610ab88383836040518060200160405280600081525061125c565b505050565b610ac5611b0d565b60026009541415610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290613107565b60405180910390fd5b6002600981905550600047905060008273ffffffffffffffffffffffffffffffffffffffff1682604051610b3e90612f0a565b60006040518083038185875af1925050503d8060008114610b7b576040519150601f19603f3d011682016040523d82523d6000602084013e610b80565b606091505b5050905080610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613027565b60405180910390fd5b5050600160098190555050565b610bd9611b0d565b8181600b9190610bea92919061267b565b505050565b600c5481565b6000610c0082611b8b565b600001519050919050565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c79576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ce9611b0d565b610cf36000611e1a565b565b600d5481565b610d03611b0d565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d469061341d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d729061341d565b8015610dbf5780601f10610d9457610100808354040283529160200191610dbf565b820191906000526020600020905b815481529060010190602001808311610da257829003601f168201915b5050505050905090565b60026009541415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613107565b60405180910390fd5b600260098190555060016002811115610e2b57610e2a613558565b5b600a60009054906101000a900460ff166002811115610e4d57610e4c613558565b5b14610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490613127565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290613047565b60405180910390fd5b600a81610f0733611354565b610f11919061321b565b1115610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f49906130a7565b60405180910390fd5b611a0a81610f5e610a28565b610f68919061321b565b1115610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090613087565b60405180910390fd5b60006115b3600d5410156110415760006001610fc433611354565b10610fd0576000610fe6565b610fd933611354565b6001610fe591906132fc565b5b905080831115611001578083610ffc91906132fc565b611004565b60005b600c5461101191906132a2565b9150808311156110215780611023565b825b600d6000828254611034919061321b565b9250508190555050611052565b81600c5461104f91906132a2565b90505b80341015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90613067565b60405180910390fd5b61109f3383611ee0565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33836040516110d0929190612f86565b60405180910390a150600160098190555050565b6110ec611559565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611151576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061115e611559565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120b611559565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112509190612faf565b60405180910390a35050565b61126784848461161c565b6112868373ffffffffffffffffffffffffffffffffffffffff1661147e565b801561129b575061129984848484611efe565b155b156112d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112e38261150b565b611322576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611319906130e7565b60405180910390fd5b600b61132d8361205e565b60405160200161133e929190612ed0565b6040516020818303038152906040529050919050565b600061135f826121bf565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611402611b0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146990613007565b60405180910390fd5b61147b81611e1a565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611516611613565b11158015611525575060005482105b8015611552575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061162782611b8b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661164e611559565b73ffffffffffffffffffffffffffffffffffffffff1614806116815750611680826000015161167b611559565b611366565b5b806116c6575061168f611559565b73ffffffffffffffffffffffffffffffffffffffff166116ae8461089c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806116ff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611768576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117dc858585600161228f565b6117ec6000848460000151611561565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a9d57600054811015611a9c5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b068585856001612295565b5050505050565b611b15611559565b73ffffffffffffffffffffffffffffffffffffffff16611b33610d0d565b73ffffffffffffffffffffffffffffffffffffffff1614611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b80906130c7565b60405180910390fd5b565b611b93612701565b600082905080611ba1611613565b11158015611bb0575060005481105b15611de3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611de157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cc5578092505050611e15565b5b600115611de057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ddb578092505050611e15565b611cc6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611efa82826040518060200160405280600081525061229b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f24611559565b8786866040518563ffffffff1660e01b8152600401611f469493929190612f3a565b602060405180830381600087803b158015611f6057600080fd5b505af1925050508015611f9157506040513d601f19601f82011682018060405250810190611f8e9190612ad7565b60015b61200b573d8060008114611fc1576040519150601f19603f3d011682016040523d82523d6000602084013e611fc6565b606091505b50600081511415612003576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120a6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121ba565b600082905060005b600082146120d85780806120c190613480565b915050600a826120d19190613271565b91506120ae565b60008167ffffffffffffffff8111156120f4576120f36135e5565b5b6040519080825280601f01601f1916602001820160405280156121265781602001600182028036833780820191505090505b5090505b600085146121b35760018261213f91906132fc565b9150600a8561214e91906134c9565b603061215a919061321b565b60f81b8183815181106121705761216f6135b6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ac9190613271565b945061212a565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612227576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b6122a883838360016122ad565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561231a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612355576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612362600086838761228f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561252c575061252b8773ffffffffffffffffffffffffffffffffffffffff1661147e565b5b156125f2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a16000888480600101955088611efe565b6125d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125325782600054146125ed57600080fd5b61265e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125f3575b8160008190555050506126746000868387612295565b5050505050565b8280546126879061341d565b90600052602060002090601f0160209004810192826126a957600085556126f0565b82601f106126c257803560ff19168380011785556126f0565b828001600101855582156126f0579182015b828111156126ef5782358255916020019190600101906126d4565b5b5090506126fd9190612744565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561275d576000816000905550600101612745565b5090565b600061277461276f84613187565b613162565b9050828152602081018484840111156127905761278f613623565b5b61279b8482856133db565b509392505050565b6000813590506127b281613892565b92915050565b6000813590506127c7816138a9565b92915050565b6000813590506127dc816138c0565b92915050565b6000813590506127f1816138d7565b92915050565b600081519050612806816138d7565b92915050565b600082601f83011261282157612820613619565b5b8135612831848260208601612761565b91505092915050565b600081359050612849816138ee565b92915050565b60008083601f84011261286557612864613619565b5b8235905067ffffffffffffffff81111561288257612881613614565b5b60208301915083600182028301111561289e5761289d61361e565b5b9250929050565b6000813590506128b4816138fe565b92915050565b6000602082840312156128d0576128cf61362d565b5b60006128de848285016127a3565b91505092915050565b6000602082840312156128fd576128fc61362d565b5b600061290b848285016127b8565b91505092915050565b6000806040838503121561292b5761292a61362d565b5b6000612939858286016127a3565b925050602061294a858286016127a3565b9150509250929050565b60008060006060848603121561296d5761296c61362d565b5b600061297b868287016127a3565b935050602061298c868287016127a3565b925050604061299d868287016128a5565b9150509250925092565b600080600080608085870312156129c1576129c061362d565b5b60006129cf878288016127a3565b94505060206129e0878288016127a3565b93505060406129f1878288016128a5565b925050606085013567ffffffffffffffff811115612a1257612a11613628565b5b612a1e8782880161280c565b91505092959194509250565b60008060408385031215612a4157612a4061362d565b5b6000612a4f858286016127a3565b9250506020612a60858286016127cd565b9150509250929050565b60008060408385031215612a8157612a8061362d565b5b6000612a8f858286016127a3565b9250506020612aa0858286016128a5565b9150509250929050565b600060208284031215612ac057612abf61362d565b5b6000612ace848285016127e2565b91505092915050565b600060208284031215612aed57612aec61362d565b5b6000612afb848285016127f7565b91505092915050565b600060208284031215612b1a57612b1961362d565b5b6000612b288482850161283a565b91505092915050565b60008060208385031215612b4857612b4761362d565b5b600083013567ffffffffffffffff811115612b6657612b65613628565b5b612b728582860161284f565b92509250509250929050565b600060208284031215612b9457612b9361362d565b5b6000612ba2848285016128a5565b91505092915050565b612bb481613330565b82525050565b612bc381613354565b82525050565b6000612bd4826131cd565b612bde81856131e3565b9350612bee8185602086016133ea565b612bf781613632565b840191505092915050565b612c0b816133c9565b82525050565b6000612c1c826131d8565b612c2681856131ff565b9350612c368185602086016133ea565b612c3f81613632565b840191505092915050565b6000612c55826131d8565b612c5f8185613210565b9350612c6f8185602086016133ea565b80840191505092915050565b60008154612c888161341d565b612c928186613210565b94506001821660008114612cad5760018114612cbe57612cf1565b60ff19831686528186019350612cf1565b612cc7856131b8565b60005b83811015612ce957815481890152600182019150602081019050612cca565b838801955050505b50505092915050565b6000612d076026836131ff565b9150612d1282613643565b604082019050919050565b6000612d2a6011836131ff565b9150612d3582613692565b602082019050919050565b6000612d4d601b836131ff565b9150612d58826136bb565b602082019050919050565b6000612d706010836131ff565b9150612d7b826136e4565b602082019050919050565b6000612d936015836131ff565b9150612d9e8261370d565b602082019050919050565b6000612db6601b836131ff565b9150612dc182613736565b602082019050919050565b6000612dd9600583613210565b9150612de48261375f565b600582019050919050565b6000612dfc6020836131ff565b9150612e0782613788565b602082019050919050565b6000612e1f602f836131ff565b9150612e2a826137b1565b604082019050919050565b6000612e426000836131f4565b9150612e4d82613800565b600082019050919050565b6000612e65601f836131ff565b9150612e7082613803565b602082019050919050565b6000612e886011836131ff565b9150612e938261382c565b602082019050919050565b6000612eab600183613210565b9150612eb682613855565b600182019050919050565b612eca816133bf565b82525050565b6000612edc8285612c7b565b9150612ee782612e9e565b9150612ef38284612c4a565b9150612efe82612dcc565b91508190509392505050565b6000612f1582612e35565b9150819050919050565b6000602082019050612f346000830184612bab565b92915050565b6000608082019050612f4f6000830187612bab565b612f5c6020830186612bab565b612f696040830185612ec1565b8181036060830152612f7b8184612bc9565b905095945050505050565b6000604082019050612f9b6000830185612bab565b612fa86020830184612ec1565b9392505050565b6000602082019050612fc46000830184612bba565b92915050565b6000602082019050612fdf6000830184612c02565b92915050565b60006020820190508181036000830152612fff8184612c11565b905092915050565b6000602082019050818103600083015261302081612cfa565b9050919050565b6000602082019050818103600083015261304081612d1d565b9050919050565b6000602082019050818103600083015261306081612d40565b9050919050565b6000602082019050818103600083015261308081612d63565b9050919050565b600060208201905081810360008301526130a081612d86565b9050919050565b600060208201905081810360008301526130c081612da9565b9050919050565b600060208201905081810360008301526130e081612def565b9050919050565b6000602082019050818103600083015261310081612e12565b9050919050565b6000602082019050818103600083015261312081612e58565b9050919050565b6000602082019050818103600083015261314081612e7b565b9050919050565b600060208201905061315c6000830184612ec1565b92915050565b600061316c61317d565b9050613178828261344f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131a2576131a16135e5565b5b6131ab82613632565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613226826133bf565b9150613231836133bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613266576132656134fa565b5b828201905092915050565b600061327c826133bf565b9150613287836133bf565b92508261329757613296613529565b5b828204905092915050565b60006132ad826133bf565b91506132b8836133bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f1576132f06134fa565b5b828202905092915050565b6000613307826133bf565b9150613312836133bf565b925082821015613325576133246134fa565b5b828203905092915050565b600061333b8261339f565b9050919050565b600061334d8261339f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061339a8261387e565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006133d48261338c565b9050919050565b82818337600083830152505050565b60005b838110156134085780820151818401526020810190506133ed565b83811115613417576000848401525b50505050565b6000600282049050600182168061343557607f821691505b6020821081141561344957613448613587565b5b50919050565b61345882613632565b810181811067ffffffffffffffff82111715613477576134766135e5565b5b80604052505050565b600061348b826133bf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134be576134bd6134fa565b5b600182019050919050565b60006134d4826133bf565b91506134df836133bf565b9250826134ef576134ee613529565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2d5769746864726177206661696c65642d000000000000000000000000000000600082015250565b7f2d436f6e74726163742063616c6c206e6f7420616c6c6f7765642d0000000000600082015250565b7f2d4e6f7420656e6f756768204554482d00000000000000000000000000000000600082015250565b7f2d4e6f7420656e6f756768207175616e746974792d0000000000000000000000600082015250565b7f2d54686973206973206d6f7265207468616e20616c6c6f7765642d0000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2d4e6f742073746172746564207965742d000000000000000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6003811061388f5761388e613558565b5b50565b61389b81613330565b81146138a657600080fd5b50565b6138b281613342565b81146138bd57600080fd5b50565b6138c981613354565b81146138d457600080fd5b50565b6138e081613360565b81146138eb57600080fd5b50565b600381106138fb57600080fd5b50565b613907816133bf565b811461391257600080fd5b5056fea26469706673582212209652c066652f3f6948fd0b8fd1d110d44f8d0ddd6a931dae8cc4281d9387429464736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6142736a686a354c59506247587666377552626a3951714a4e37504a433866355869636d376a72554a744c752f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmaBsjhj5LYPbGXvf7uRbj9QqJN7PJC8f5Xicm7jrUJtLu/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6142736a686a354c59506247587666377552626a395171
Arg [3] : 4a4e37504a433866355869636d376a72554a744c752f00000000000000000000


Deployed Bytecode Sourcemap

51677:3469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28941:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51967:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32326:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33829:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33392:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51914:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28190:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51858:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34686:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54661:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52075:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34927:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54758:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53082:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52024:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32135:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52123:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29310:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48285:103;;;;;;;;;;;;;:::i;:::-;;52177:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55045:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47637:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32495:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53196:1336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34105:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35183:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52671:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54540:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34455:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48543:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28941:305;29043:4;29095:25;29080:40;;;:11;:40;;;;:105;;;;29152:33;29137:48;;;:11;:48;;;;29080:105;:158;;;;29202:36;29226:11;29202:23;:36::i;:::-;29080:158;29060:178;;28941:305;;;:::o;51967:50::-;52016:1;51967:50;:::o;32326:100::-;32380:13;32413:5;32406:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32326:100;:::o;33829:204::-;33897:7;33922:16;33930:7;33922;:16::i;:::-;33917:64;;33947:34;;;;;;;;;;;;;;33917:64;34001:15;:24;34017:7;34001:24;;;;;;;;;;;;;;;;;;;;;33994:31;;33829:204;;;:::o;33392:371::-;33465:13;33481:24;33497:7;33481:15;:24::i;:::-;33465:40;;33526:5;33520:11;;:2;:11;;;33516:48;;;33540:24;;;;;;;;;;;;;;33516:48;33597:5;33581:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33607:37;33624:5;33631:12;:10;:12::i;:::-;33607:16;:37::i;:::-;33606:38;33581:63;33577:138;;;33668:35;;;;;;;;;;;;;;33577:138;33727:28;33736:2;33740:7;33749:5;33727:8;:28::i;:::-;33454:309;33392:371;;:::o;51914:46::-;51958:2;51914:46;:::o;28190:303::-;28234:7;28459:15;:13;:15::i;:::-;28444:12;;28428:13;;:28;:46;28421:53;;28190:303;:::o;51858:20::-;;;;;;;;;;;;;:::o;34686:170::-;34820:28;34830:4;34836:2;34840:7;34820:9;:28::i;:::-;34686:170;;;:::o;54661:89::-;47523:13;:11;:13::i;:::-;54735:7:::1;54726:6;;:16;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;54661:89:::0;:::o;52075:41::-;52112:4;52075:41;:::o;34927:185::-;35065:39;35082:4;35088:2;35092:7;35065:39;;;;;;;;;;;;:16;:39::i;:::-;34927:185;;;:::o;54758:279::-;47523:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;54878:15:::2;54896:21;54878:39;;54929:12;54947:9;:14;;54969:7;54947:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54928:53;;;55000:7;54992:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;54867:170;;1768:1:::1;2722:7;:22;;;;54758:279:::0;:::o;53082:106::-;47523:13;:11;:13::i;:::-;53170:10:::1;;53160:7;:20;;;;;;;:::i;:::-;;53082:106:::0;;:::o;52024:44::-;;;;:::o;32135:124::-;32199:7;32226:20;32238:7;32226:11;:20::i;:::-;:25;;;32219:32;;32135:124;;;:::o;52123:47::-;52166:4;52123:47;:::o;29310:206::-;29374:7;29415:1;29398:19;;:5;:19;;;29394:60;;;29426:28;;;;;;;;;;;;;;29394:60;29480:12;:19;29493:5;29480:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29472:36;;29465:43;;29310:206;;;:::o;48285:103::-;47523:13;:11;:13::i;:::-;48350:30:::1;48377:1;48350:18;:30::i;:::-;48285:103::o:0;52177:38::-;;;;:::o;55045:98::-;47523:13;:11;:13::i;:::-;55128:7:::1;55113:12;:22;;;;55045:98:::0;:::o;47637:87::-;47683:7;47710:6;;;;;;;;;;;47703:13;;47637:87;:::o;32495:104::-;32551:13;32584:7;32577:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32495:104;:::o;53196:1336::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;53287:14:::1;53277:24;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;53269:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;53355:10;53342:23;;:9;:23;;;53334:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51958:2;53457:8;53430:24;53443:10;53430:12;:24::i;:::-;:35;;;;:::i;:::-;:56;;53408:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;52112:4;53590:8;53574:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;53552:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;53674:13;52166:4;53702:19;;:38;53698:683;;;53757:23;52016:1;53784:24;53797:10;53784:12;:24::i;:::-;:66;53783:160;;53942:1;53783:160;;;53897:24;53910:10;53897:12;:24::i;:::-;52016:1;53872:49;;;;:::i;:::-;53783:160;53757:186;;54053:15;54041:8;:27;;54040:114;;54138:15;54127:8;:26;;;;:::i;:::-;54040:114;;;54097:1;54040:114;53985:12;;:188;;;;:::i;:::-;53960:213;;54245:15;54233:8;:27;;54232:58;;54275:15;54232:58;;;54264:8;54232:58;54190:19;;:115;;;;;;;:::i;:::-;;;;;;;;53742:575;53698:683;;;54361:8;54346:12;;:23;;;;:::i;:::-;54338:31;;53698:683;54412:5;54399:9;:18;;54391:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;54449:31;54459:10;54471:8;54449:9;:31::i;:::-;54496:28;54503:10;54515:8;54496:28;;;;;;;:::i;:::-;;;;;;;;53258:1274;1768:1:::0;2722:7;:22;;;;53196:1336;:::o;34105:279::-;34208:12;:10;:12::i;:::-;34196:24;;:8;:24;;;34192:54;;;34229:17;;;;;;;;;;;;;;34192:54;34304:8;34259:18;:32;34278:12;:10;:12::i;:::-;34259:32;;;;;;;;;;;;;;;:42;34292:8;34259:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34357:8;34328:48;;34343:12;:10;:12::i;:::-;34328:48;;;34367:8;34328:48;;;;;;:::i;:::-;;;;;;;;34105:279;;:::o;35183:369::-;35350:28;35360:4;35366:2;35370:7;35350:9;:28::i;:::-;35393:15;:2;:13;;;:15::i;:::-;:76;;;;;35413:56;35444:4;35450:2;35454:7;35463:5;35413:30;:56::i;:::-;35412:57;35393:76;35389:156;;;35493:40;;;;;;;;;;;;;;35389:156;35183:369;;;;:::o;52671:403::-;52790:13;52843:17;52851:8;52843:7;:17::i;:::-;52821:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;53008:7;53022:19;:8;:17;:19::i;:::-;52991:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52946:120;;52671:403;;;:::o;54540:113::-;54598:7;54625:20;54639:5;54625:13;:20::i;:::-;54618:27;;54540:113;;;:::o;34455:164::-;34552:4;34576:18;:25;34595:5;34576:25;;;;;;;;;;;;;;;:35;34602:8;34576:35;;;;;;;;;;;;;;;;;;;;;;;;;34569:42;;34455:164;;;;:::o;48543:201::-;47523:13;:11;:13::i;:::-;48652:1:::1;48632:22;;:8;:22;;;;48624:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48708:28;48727:8;48708:18;:28::i;:::-;48543:201:::0;:::o;6489:326::-;6549:4;6806:1;6784:7;:19;;;:23;6777:30;;6489:326;;;:::o;16645:157::-;16730:4;16769:25;16754:40;;;:11;:40;;;;16747:47;;16645:157;;;:::o;35807:187::-;35864:4;35907:7;35888:15;:13;:15::i;:::-;:26;;:53;;;;;35928:13;;35918:7;:23;35888:53;:98;;;;;35959:11;:20;35971:7;35959:20;;;;;;;;;;;:27;;;;;;;;;;;;35958:28;35888:98;35881:105;;35807:187;;;:::o;24255:98::-;24308:7;24335:10;24328:17;;24255:98;:::o;43418:196::-;43560:2;43533:15;:24;43549:7;43533:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43598:7;43594:2;43578:28;;43587:5;43578:28;;;;;;;;;;;;43418:196;;;:::o;52562:101::-;52627:7;52654:1;52647:8;;52562:101;:::o;38920:2112::-;39035:35;39073:20;39085:7;39073:11;:20::i;:::-;39035:58;;39106:22;39148:13;:18;;;39132:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39183:50;39200:13;:18;;;39220:12;:10;:12::i;:::-;39183:16;:50::i;:::-;39132:101;:154;;;;39274:12;:10;:12::i;:::-;39250:36;;:20;39262:7;39250:11;:20::i;:::-;:36;;;39132:154;39106:181;;39305:17;39300:66;;39331:35;;;;;;;;;;;;;;39300:66;39403:4;39381:26;;:13;:18;;;:26;;;39377:67;;39416:28;;;;;;;;;;;;;;39377:67;39473:1;39459:16;;:2;:16;;;39455:52;;;39484:23;;;;;;;;;;;;;;39455:52;39520:43;39542:4;39548:2;39552:7;39561:1;39520:21;:43::i;:::-;39628:49;39645:1;39649:7;39658:13;:18;;;39628:8;:49::i;:::-;40003:1;39973:12;:18;39986:4;39973:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40047:1;40019:12;:16;40032:2;40019:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40093:2;40065:11;:20;40077:7;40065:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40155:15;40110:11;:20;40122:7;40110:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40423:19;40455:1;40445:7;:11;40423:33;;40516:1;40475:43;;:11;:24;40487:11;40475:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40471:445;;;40700:13;;40686:11;:27;40682:219;;;40770:13;:18;;;40738:11;:24;40750:11;40738:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40853:13;:28;;;40811:11;:24;40823:11;40811:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40682:219;40471:445;39948:979;40963:7;40959:2;40944:27;;40953:4;40944:27;;;;;;;;;;;;40982:42;41003:4;41009:2;41013:7;41022:1;40982:20;:42::i;:::-;39024:2008;;38920:2112;;;:::o;47802:132::-;47877:12;:10;:12::i;:::-;47866:23;;:7;:5;:7::i;:::-;:23;;;47858:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47802:132::o;30965:1108::-;31026:21;;:::i;:::-;31060:12;31075:7;31060:22;;31143:4;31124:15;:13;:15::i;:::-;:23;;:47;;;;;31158:13;;31151:4;:20;31124:47;31120:886;;;31192:31;31226:11;:17;31238:4;31226:17;;;;;;;;;;;31192:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31267:9;:16;;;31262:729;;31338:1;31312:28;;:9;:14;;;:28;;;31308:101;;31376:9;31369:16;;;;;;31308:101;31711:261;31718:4;31711:261;;;31751:6;;;;;;;;31796:11;:17;31808:4;31796:17;;;;;;;;;;;31784:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31870:1;31844:28;;:9;:14;;;:28;;;31840:109;;31912:9;31905:16;;;;;;31840:109;31711:261;;;31262:729;31173:833;31120:886;32034:31;;;;;;;;;;;;;;30965:1108;;;;:::o;48904:191::-;48978:16;48997:6;;;;;;;;;;;48978:25;;49023:8;49014:6;;:17;;;;;;;;;;;;;;;;;;49078:8;49047:40;;49068:8;49047:40;;;;;;;;;;;;48967:128;48904:191;:::o;36002:104::-;36071:27;36081:2;36085:8;36071:27;;;;;;;;;;;;:9;:27::i;:::-;36002:104;;:::o;44106:667::-;44269:4;44306:2;44290:36;;;44327:12;:10;:12::i;:::-;44341:4;44347:7;44356:5;44290:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44286:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44541:1;44524:6;:13;:18;44520:235;;;44570:40;;;;;;;;;;;;;;44520:235;44713:6;44707:13;44698:6;44694:2;44690:15;44683:38;44286:480;44419:45;;;44409:55;;;:6;:55;;;;44402:62;;;44106:667;;;;;;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;29598:207::-;29659:7;29700:1;29683:19;;:5;:19;;;29679:59;;;29711:27;;;;;;;;;;;;;;29679:59;29764:12;:19;29777:5;29764:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29756:41;;29749:48;;29598:207;;;:::o;45421:159::-;;;;;:::o;46239:158::-;;;;;:::o;36469:163::-;36592:32;36598:2;36602:8;36612:5;36619:4;36592:5;:32::i;:::-;36469:163;;;:::o;36891:1775::-;37030:20;37053:13;;37030:36;;37095:1;37081:16;;:2;:16;;;37077:48;;;37106:19;;;;;;;;;;;;;;37077:48;37152:1;37140:8;:13;37136:44;;;37162:18;;;;;;;;;;;;;;37136:44;37193:61;37223:1;37227:2;37231:12;37245:8;37193:21;:61::i;:::-;37566:8;37531:12;:16;37544:2;37531:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37630:8;37590:12;:16;37603:2;37590:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37689:2;37656:11;:25;37668:12;37656:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37756:15;37706:11;:25;37718:12;37706:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37789:20;37812:12;37789:35;;37839:11;37868:8;37853:12;:23;37839:37;;37897:4;:23;;;;;37905:15;:2;:13;;;:15::i;:::-;37897:23;37893:641;;;37941:314;37997:12;37993:2;37972:38;;37989:1;37972:38;;;;;;;;;;;;38038:69;38077:1;38081:2;38085:14;;;;;;38101:5;38038:30;:69::i;:::-;38033:174;;38143:40;;;;;;;;;;;;;;38033:174;38250:3;38234:12;:19;;37941:314;;38336:12;38319:13;;:29;38315:43;;38350:8;;;38315:43;37893:641;;;38399:120;38455:14;;;;;;38451:2;38430:40;;38447:1;38430:40;;;;;;;;;;;;38514:3;38498:12;:19;;38399:120;;37893:641;38564:12;38548:13;:28;;;;37506:1082;;38598:60;38627:1;38631:2;38635:12;38649:8;38598:20;:60::i;:::-;37019:1647;36891: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;729:133::-;772:5;810:6;797:20;788:29;;826:30;850:5;826:30;:::i;:::-;729:133;;;;:::o;868:137::-;913:5;951:6;938:20;929:29;;967:32;993:5;967:32;:::i;:::-;868:137;;;;:::o;1011:141::-;1067:5;1098:6;1092:13;1083:22;;1114:32;1140:5;1114:32;:::i;:::-;1011:141;;;;:::o;1171:338::-;1226:5;1275:3;1268:4;1260:6;1256:17;1252:27;1242:122;;1283:79;;:::i;:::-;1242:122;1400:6;1387:20;1425:78;1499:3;1491:6;1484:4;1476:6;1472:17;1425:78;:::i;:::-;1416:87;;1232:277;1171:338;;;;:::o;1515:161::-;1572:5;1610:6;1597:20;1588:29;;1626:44;1664:5;1626:44;:::i;:::-;1515:161;;;;:::o;1696:553::-;1754:8;1764:6;1814:3;1807:4;1799:6;1795:17;1791:27;1781:122;;1822:79;;:::i;:::-;1781:122;1935:6;1922:20;1912:30;;1965:18;1957:6;1954:30;1951:117;;;1987:79;;:::i;:::-;1951:117;2101:4;2093:6;2089:17;2077:29;;2155:3;2147:4;2139:6;2135:17;2125:8;2121:32;2118:41;2115:128;;;2162:79;;:::i;:::-;2115:128;1696:553;;;;;:::o;2255:139::-;2301:5;2339:6;2326:20;2317:29;;2355:33;2382:5;2355:33;:::i;:::-;2255:139;;;;:::o;2400:329::-;2459:6;2508:2;2496:9;2487:7;2483:23;2479:32;2476:119;;;2514:79;;:::i;:::-;2476:119;2634:1;2659:53;2704:7;2695:6;2684:9;2680:22;2659:53;:::i;:::-;2649:63;;2605:117;2400:329;;;;:::o;2735:345::-;2802:6;2851:2;2839:9;2830:7;2826:23;2822:32;2819:119;;;2857:79;;:::i;:::-;2819:119;2977:1;3002:61;3055:7;3046:6;3035:9;3031:22;3002:61;:::i;:::-;2992:71;;2948:125;2735:345;;;;:::o;3086:474::-;3154:6;3162;3211:2;3199:9;3190:7;3186:23;3182:32;3179:119;;;3217:79;;:::i;:::-;3179:119;3337:1;3362:53;3407:7;3398:6;3387:9;3383:22;3362:53;:::i;:::-;3352:63;;3308:117;3464:2;3490:53;3535:7;3526:6;3515:9;3511:22;3490:53;:::i;:::-;3480:63;;3435:118;3086:474;;;;;:::o;3566:619::-;3643:6;3651;3659;3708:2;3696:9;3687:7;3683:23;3679:32;3676:119;;;3714:79;;:::i;:::-;3676:119;3834:1;3859:53;3904:7;3895:6;3884:9;3880:22;3859:53;:::i;:::-;3849:63;;3805:117;3961:2;3987:53;4032:7;4023:6;4012:9;4008:22;3987:53;:::i;:::-;3977:63;;3932:118;4089:2;4115:53;4160:7;4151:6;4140:9;4136:22;4115:53;:::i;:::-;4105:63;;4060:118;3566:619;;;;;:::o;4191:943::-;4286:6;4294;4302;4310;4359:3;4347:9;4338:7;4334:23;4330:33;4327:120;;;4366:79;;:::i;:::-;4327:120;4486:1;4511:53;4556:7;4547:6;4536:9;4532:22;4511:53;:::i;:::-;4501:63;;4457:117;4613:2;4639:53;4684:7;4675:6;4664:9;4660:22;4639:53;:::i;:::-;4629:63;;4584:118;4741:2;4767:53;4812:7;4803:6;4792:9;4788:22;4767:53;:::i;:::-;4757:63;;4712:118;4897:2;4886:9;4882:18;4869:32;4928:18;4920:6;4917:30;4914:117;;;4950:79;;:::i;:::-;4914:117;5055:62;5109:7;5100:6;5089:9;5085:22;5055:62;:::i;:::-;5045:72;;4840:287;4191:943;;;;;;;:::o;5140:468::-;5205:6;5213;5262:2;5250:9;5241:7;5237:23;5233:32;5230:119;;;5268:79;;:::i;:::-;5230:119;5388:1;5413:53;5458:7;5449:6;5438:9;5434:22;5413:53;:::i;:::-;5403:63;;5359:117;5515:2;5541:50;5583:7;5574:6;5563:9;5559:22;5541:50;:::i;:::-;5531:60;;5486:115;5140:468;;;;;:::o;5614:474::-;5682:6;5690;5739:2;5727:9;5718:7;5714:23;5710:32;5707:119;;;5745:79;;:::i;:::-;5707:119;5865:1;5890:53;5935:7;5926:6;5915:9;5911:22;5890:53;:::i;:::-;5880:63;;5836:117;5992:2;6018:53;6063:7;6054:6;6043:9;6039:22;6018:53;:::i;:::-;6008:63;;5963:118;5614:474;;;;;:::o;6094:327::-;6152:6;6201:2;6189:9;6180:7;6176:23;6172:32;6169:119;;;6207:79;;:::i;:::-;6169:119;6327:1;6352:52;6396:7;6387:6;6376:9;6372:22;6352:52;:::i;:::-;6342:62;;6298:116;6094:327;;;;:::o;6427:349::-;6496:6;6545:2;6533:9;6524:7;6520:23;6516:32;6513:119;;;6551:79;;:::i;:::-;6513:119;6671:1;6696:63;6751:7;6742:6;6731:9;6727:22;6696:63;:::i;:::-;6686:73;;6642:127;6427:349;;;;:::o;6782:351::-;6852:6;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:64;7108:7;7099:6;7088:9;7084:22;7052:64;:::i;:::-;7042:74;;6998:128;6782:351;;;;:::o;7139:529::-;7210:6;7218;7267:2;7255:9;7246:7;7242:23;7238:32;7235:119;;;7273:79;;:::i;:::-;7235:119;7421:1;7410:9;7406:17;7393:31;7451:18;7443:6;7440:30;7437:117;;;7473:79;;:::i;:::-;7437:117;7586:65;7643:7;7634:6;7623:9;7619:22;7586:65;:::i;:::-;7568:83;;;;7364:297;7139:529;;;;;:::o;7674:329::-;7733:6;7782:2;7770:9;7761:7;7757:23;7753:32;7750:119;;;7788:79;;:::i;:::-;7750:119;7908:1;7933:53;7978:7;7969:6;7958:9;7954:22;7933:53;:::i;:::-;7923:63;;7879:117;7674:329;;;;:::o;8009:118::-;8096:24;8114:5;8096:24;:::i;:::-;8091:3;8084:37;8009:118;;:::o;8133:109::-;8214:21;8229:5;8214:21;:::i;:::-;8209:3;8202:34;8133:109;;:::o;8248:360::-;8334:3;8362:38;8394:5;8362:38;:::i;:::-;8416:70;8479:6;8474:3;8416:70;:::i;:::-;8409:77;;8495:52;8540:6;8535:3;8528:4;8521:5;8517:16;8495:52;:::i;:::-;8572:29;8594:6;8572:29;:::i;:::-;8567:3;8563:39;8556:46;;8338:270;8248:360;;;;:::o;8614:149::-;8710:46;8750:5;8710:46;:::i;:::-;8705:3;8698:59;8614:149;;:::o;8769:364::-;8857:3;8885:39;8918:5;8885:39;:::i;:::-;8940:71;9004:6;8999:3;8940:71;:::i;:::-;8933:78;;9020:52;9065:6;9060:3;9053:4;9046:5;9042:16;9020:52;:::i;:::-;9097:29;9119:6;9097:29;:::i;:::-;9092:3;9088:39;9081:46;;8861:272;8769:364;;;;:::o;9139:377::-;9245:3;9273:39;9306:5;9273:39;:::i;:::-;9328:89;9410:6;9405:3;9328:89;:::i;:::-;9321:96;;9426:52;9471:6;9466:3;9459:4;9452:5;9448:16;9426:52;:::i;:::-;9503:6;9498:3;9494:16;9487:23;;9249:267;9139:377;;;;:::o;9546:845::-;9649:3;9686:5;9680:12;9715:36;9741:9;9715:36;:::i;:::-;9767:89;9849:6;9844:3;9767:89;:::i;:::-;9760:96;;9887:1;9876:9;9872:17;9903:1;9898:137;;;;10049:1;10044:341;;;;9865:520;;9898:137;9982:4;9978:9;9967;9963:25;9958:3;9951:38;10018:6;10013:3;10009:16;10002:23;;9898:137;;10044:341;10111:38;10143:5;10111:38;:::i;:::-;10171:1;10185:154;10199:6;10196:1;10193:13;10185:154;;;10273:7;10267:14;10263:1;10258:3;10254:11;10247:35;10323:1;10314:7;10310:15;10299:26;;10221:4;10218:1;10214:12;10209:17;;10185:154;;;10368:6;10363:3;10359:16;10352:23;;10051:334;;9865:520;;9653:738;;9546:845;;;;:::o;10397:366::-;10539:3;10560:67;10624:2;10619:3;10560:67;:::i;:::-;10553:74;;10636:93;10725:3;10636:93;:::i;:::-;10754:2;10749:3;10745:12;10738:19;;10397:366;;;:::o;10769:::-;10911:3;10932:67;10996:2;10991:3;10932:67;:::i;:::-;10925:74;;11008:93;11097:3;11008:93;:::i;:::-;11126:2;11121:3;11117:12;11110:19;;10769:366;;;:::o;11141:::-;11283:3;11304:67;11368:2;11363:3;11304:67;:::i;:::-;11297:74;;11380:93;11469:3;11380:93;:::i;:::-;11498:2;11493:3;11489:12;11482:19;;11141:366;;;:::o;11513:::-;11655:3;11676:67;11740:2;11735:3;11676:67;:::i;:::-;11669:74;;11752:93;11841:3;11752:93;:::i;:::-;11870:2;11865:3;11861:12;11854:19;;11513:366;;;:::o;11885:::-;12027:3;12048:67;12112:2;12107:3;12048:67;:::i;:::-;12041:74;;12124:93;12213:3;12124:93;:::i;:::-;12242:2;12237:3;12233:12;12226:19;;11885:366;;;:::o;12257:::-;12399:3;12420:67;12484:2;12479:3;12420:67;:::i;:::-;12413:74;;12496:93;12585:3;12496:93;:::i;:::-;12614:2;12609:3;12605:12;12598:19;;12257:366;;;:::o;12629:400::-;12789:3;12810:84;12892:1;12887:3;12810:84;:::i;:::-;12803:91;;12903:93;12992:3;12903:93;:::i;:::-;13021:1;13016:3;13012:11;13005:18;;12629:400;;;:::o;13035:366::-;13177:3;13198:67;13262:2;13257:3;13198:67;:::i;:::-;13191:74;;13274:93;13363:3;13274:93;:::i;:::-;13392:2;13387:3;13383:12;13376:19;;13035:366;;;:::o;13407:::-;13549:3;13570:67;13634:2;13629:3;13570:67;:::i;:::-;13563:74;;13646:93;13735:3;13646:93;:::i;:::-;13764:2;13759:3;13755:12;13748:19;;13407:366;;;:::o;13779:398::-;13938:3;13959:83;14040:1;14035:3;13959:83;:::i;:::-;13952:90;;14051:93;14140:3;14051:93;:::i;:::-;14169:1;14164:3;14160:11;14153:18;;13779:398;;;:::o;14183:366::-;14325:3;14346:67;14410:2;14405:3;14346:67;:::i;:::-;14339:74;;14422:93;14511:3;14422:93;:::i;:::-;14540:2;14535:3;14531:12;14524:19;;14183:366;;;:::o;14555:::-;14697:3;14718:67;14782:2;14777:3;14718:67;:::i;:::-;14711:74;;14794:93;14883:3;14794:93;:::i;:::-;14912:2;14907:3;14903:12;14896:19;;14555:366;;;:::o;14927:400::-;15087:3;15108:84;15190:1;15185:3;15108:84;:::i;:::-;15101:91;;15201:93;15290:3;15201:93;:::i;:::-;15319:1;15314:3;15310:11;15303:18;;14927:400;;;:::o;15333:118::-;15420:24;15438:5;15420:24;:::i;:::-;15415:3;15408:37;15333:118;;:::o;15457:961::-;15836:3;15858:92;15946:3;15937:6;15858:92;:::i;:::-;15851:99;;15967:148;16111:3;15967:148;:::i;:::-;15960:155;;16132:95;16223:3;16214:6;16132:95;:::i;:::-;16125:102;;16244:148;16388:3;16244:148;:::i;:::-;16237:155;;16409:3;16402:10;;15457:961;;;;;:::o;16424:379::-;16608:3;16630:147;16773:3;16630:147;:::i;:::-;16623:154;;16794:3;16787:10;;16424:379;;;:::o;16809:222::-;16902:4;16940:2;16929:9;16925:18;16917:26;;16953:71;17021:1;17010:9;17006:17;16997:6;16953:71;:::i;:::-;16809:222;;;;:::o;17037:640::-;17232:4;17270:3;17259:9;17255:19;17247:27;;17284:71;17352:1;17341:9;17337:17;17328:6;17284:71;:::i;:::-;17365:72;17433:2;17422:9;17418:18;17409:6;17365:72;:::i;:::-;17447;17515:2;17504:9;17500:18;17491:6;17447:72;:::i;:::-;17566:9;17560:4;17556:20;17551:2;17540:9;17536:18;17529:48;17594:76;17665:4;17656:6;17594:76;:::i;:::-;17586:84;;17037:640;;;;;;;:::o;17683:332::-;17804:4;17842:2;17831:9;17827:18;17819:26;;17855:71;17923:1;17912:9;17908:17;17899:6;17855:71;:::i;:::-;17936:72;18004:2;17993:9;17989:18;17980:6;17936:72;:::i;:::-;17683:332;;;;;:::o;18021:210::-;18108:4;18146:2;18135:9;18131:18;18123:26;;18159:65;18221:1;18210:9;18206:17;18197:6;18159:65;:::i;:::-;18021:210;;;;:::o;18237:240::-;18339:4;18377:2;18366:9;18362:18;18354:26;;18390:80;18467:1;18456:9;18452:17;18443:6;18390:80;:::i;:::-;18237:240;;;;:::o;18483:313::-;18596:4;18634:2;18623:9;18619:18;18611:26;;18683:9;18677:4;18673:20;18669:1;18658:9;18654:17;18647:47;18711:78;18784:4;18775:6;18711:78;:::i;:::-;18703:86;;18483:313;;;;:::o;18802:419::-;18968:4;19006:2;18995:9;18991:18;18983:26;;19055:9;19049:4;19045:20;19041:1;19030:9;19026:17;19019:47;19083:131;19209:4;19083:131;:::i;:::-;19075:139;;18802:419;;;:::o;19227:::-;19393:4;19431:2;19420:9;19416:18;19408:26;;19480:9;19474:4;19470:20;19466:1;19455:9;19451:17;19444:47;19508:131;19634:4;19508:131;:::i;:::-;19500:139;;19227:419;;;:::o;19652:::-;19818:4;19856:2;19845:9;19841:18;19833:26;;19905:9;19899:4;19895:20;19891:1;19880:9;19876:17;19869:47;19933:131;20059:4;19933:131;:::i;:::-;19925:139;;19652:419;;;:::o;20077:::-;20243:4;20281:2;20270:9;20266:18;20258:26;;20330:9;20324:4;20320:20;20316:1;20305:9;20301:17;20294:47;20358:131;20484:4;20358:131;:::i;:::-;20350:139;;20077:419;;;:::o;20502:::-;20668:4;20706:2;20695:9;20691:18;20683:26;;20755:9;20749:4;20745:20;20741:1;20730:9;20726:17;20719:47;20783:131;20909:4;20783:131;:::i;:::-;20775:139;;20502:419;;;:::o;20927:::-;21093:4;21131:2;21120:9;21116:18;21108:26;;21180:9;21174:4;21170:20;21166:1;21155:9;21151:17;21144:47;21208:131;21334:4;21208:131;:::i;:::-;21200:139;;20927:419;;;:::o;21352:::-;21518:4;21556:2;21545:9;21541:18;21533:26;;21605:9;21599:4;21595:20;21591:1;21580:9;21576:17;21569:47;21633:131;21759:4;21633:131;:::i;:::-;21625:139;;21352:419;;;:::o;21777:::-;21943:4;21981:2;21970:9;21966:18;21958:26;;22030:9;22024:4;22020:20;22016:1;22005:9;22001:17;21994:47;22058:131;22184:4;22058:131;:::i;:::-;22050:139;;21777:419;;;:::o;22202:::-;22368:4;22406:2;22395:9;22391:18;22383:26;;22455:9;22449:4;22445:20;22441:1;22430:9;22426:17;22419:47;22483:131;22609:4;22483:131;:::i;:::-;22475:139;;22202:419;;;:::o;22627:::-;22793:4;22831:2;22820:9;22816:18;22808:26;;22880:9;22874:4;22870:20;22866:1;22855:9;22851:17;22844:47;22908:131;23034:4;22908:131;:::i;:::-;22900:139;;22627:419;;;:::o;23052:222::-;23145:4;23183:2;23172:9;23168:18;23160:26;;23196:71;23264:1;23253:9;23249:17;23240:6;23196:71;:::i;:::-;23052:222;;;;:::o;23280:129::-;23314:6;23341:20;;:::i;:::-;23331:30;;23370:33;23398:4;23390:6;23370:33;:::i;:::-;23280:129;;;:::o;23415:75::-;23448:6;23481:2;23475:9;23465:19;;23415:75;:::o;23496:307::-;23557:4;23647:18;23639:6;23636:30;23633:56;;;23669:18;;:::i;:::-;23633:56;23707:29;23729:6;23707:29;:::i;:::-;23699:37;;23791:4;23785;23781:15;23773:23;;23496:307;;;:::o;23809:141::-;23858:4;23881:3;23873:11;;23904:3;23901:1;23894:14;23938:4;23935:1;23925:18;23917:26;;23809:141;;;:::o;23956:98::-;24007:6;24041:5;24035:12;24025:22;;23956:98;;;:::o;24060:99::-;24112:6;24146:5;24140:12;24130:22;;24060:99;;;:::o;24165:168::-;24248:11;24282:6;24277:3;24270:19;24322:4;24317:3;24313:14;24298:29;;24165:168;;;;:::o;24339:147::-;24440:11;24477:3;24462:18;;24339:147;;;;:::o;24492:169::-;24576:11;24610:6;24605:3;24598:19;24650:4;24645:3;24641:14;24626:29;;24492:169;;;;:::o;24667:148::-;24769:11;24806:3;24791:18;;24667:148;;;;:::o;24821:305::-;24861:3;24880:20;24898:1;24880:20;:::i;:::-;24875:25;;24914:20;24932:1;24914:20;:::i;:::-;24909:25;;25068:1;25000:66;24996:74;24993:1;24990:81;24987:107;;;25074:18;;:::i;:::-;24987:107;25118:1;25115;25111:9;25104:16;;24821:305;;;;:::o;25132:185::-;25172:1;25189:20;25207:1;25189:20;:::i;:::-;25184:25;;25223:20;25241:1;25223:20;:::i;:::-;25218:25;;25262:1;25252:35;;25267:18;;:::i;:::-;25252:35;25309:1;25306;25302:9;25297:14;;25132:185;;;;:::o;25323:348::-;25363:7;25386:20;25404:1;25386:20;:::i;:::-;25381:25;;25420:20;25438:1;25420:20;:::i;:::-;25415:25;;25608:1;25540:66;25536:74;25533:1;25530:81;25525:1;25518:9;25511:17;25507:105;25504:131;;;25615:18;;:::i;:::-;25504:131;25663:1;25660;25656:9;25645:20;;25323:348;;;;:::o;25677:191::-;25717:4;25737:20;25755:1;25737:20;:::i;:::-;25732:25;;25771:20;25789:1;25771:20;:::i;:::-;25766:25;;25810:1;25807;25804:8;25801:34;;;25815:18;;:::i;:::-;25801:34;25860:1;25857;25853:9;25845:17;;25677:191;;;;:::o;25874:96::-;25911:7;25940:24;25958:5;25940:24;:::i;:::-;25929:35;;25874:96;;;:::o;25976:104::-;26021:7;26050:24;26068:5;26050:24;:::i;:::-;26039:35;;25976:104;;;:::o;26086:90::-;26120:7;26163:5;26156:13;26149:21;26138:32;;26086:90;;;:::o;26182:149::-;26218:7;26258:66;26251:5;26247:78;26236:89;;26182:149;;;:::o;26337:133::-;26385:7;26414:5;26403:16;;26420:44;26458:5;26420:44;:::i;:::-;26337:133;;;:::o;26476:126::-;26513:7;26553:42;26546:5;26542:54;26531:65;;26476:126;;;:::o;26608:77::-;26645:7;26674:5;26663:16;;26608:77;;;:::o;26691:133::-;26750:9;26783:35;26812:5;26783:35;:::i;:::-;26770:48;;26691:133;;;:::o;26830:154::-;26914:6;26909:3;26904;26891:30;26976:1;26967:6;26962:3;26958:16;26951:27;26830:154;;;:::o;26990:307::-;27058:1;27068:113;27082:6;27079:1;27076:13;27068:113;;;27167:1;27162:3;27158:11;27152:18;27148:1;27143:3;27139:11;27132:39;27104:2;27101:1;27097:10;27092:15;;27068:113;;;27199:6;27196:1;27193:13;27190:101;;;27279:1;27270:6;27265:3;27261:16;27254:27;27190:101;27039:258;26990:307;;;:::o;27303:320::-;27347:6;27384:1;27378:4;27374:12;27364:22;;27431:1;27425:4;27421:12;27452:18;27442:81;;27508:4;27500:6;27496:17;27486:27;;27442:81;27570:2;27562:6;27559:14;27539:18;27536:38;27533:84;;;27589:18;;:::i;:::-;27533:84;27354:269;27303:320;;;:::o;27629:281::-;27712:27;27734:4;27712:27;:::i;:::-;27704:6;27700:40;27842:6;27830:10;27827:22;27806:18;27794:10;27791:34;27788:62;27785:88;;;27853:18;;:::i;:::-;27785:88;27893:10;27889:2;27882:22;27672:238;27629:281;;:::o;27916:233::-;27955:3;27978:24;27996:5;27978:24;:::i;:::-;27969:33;;28024:66;28017:5;28014:77;28011:103;;;28094:18;;:::i;:::-;28011:103;28141:1;28134:5;28130:13;28123:20;;27916:233;;;:::o;28155:176::-;28187:1;28204:20;28222:1;28204:20;:::i;:::-;28199:25;;28238:20;28256:1;28238:20;:::i;:::-;28233:25;;28277:1;28267:35;;28282:18;;:::i;:::-;28267:35;28323:1;28320;28316:9;28311:14;;28155:176;;;;:::o;28337:180::-;28385:77;28382:1;28375:88;28482:4;28479:1;28472:15;28506:4;28503:1;28496:15;28523:180;28571:77;28568:1;28561:88;28668:4;28665:1;28658:15;28692:4;28689:1;28682:15;28709:180;28757:77;28754:1;28747:88;28854:4;28851:1;28844:15;28878:4;28875:1;28868:15;28895:180;28943:77;28940:1;28933:88;29040:4;29037:1;29030:15;29064:4;29061:1;29054:15;29081:180;29129:77;29126:1;29119:88;29226:4;29223:1;29216:15;29250:4;29247:1;29240:15;29267:180;29315:77;29312:1;29305:88;29412:4;29409:1;29402:15;29436:4;29433:1;29426:15;29453:117;29562:1;29559;29552:12;29576:117;29685:1;29682;29675:12;29699:117;29808:1;29805;29798:12;29822:117;29931:1;29928;29921:12;29945:117;30054:1;30051;30044:12;30068:117;30177:1;30174;30167:12;30191:102;30232:6;30283:2;30279:7;30274:2;30267:5;30263:14;30259:28;30249:38;;30191:102;;;:::o;30299:225::-;30439:34;30435:1;30427:6;30423:14;30416:58;30508:8;30503:2;30495:6;30491:15;30484:33;30299:225;:::o;30530:167::-;30670:19;30666:1;30658:6;30654:14;30647:43;30530:167;:::o;30703:177::-;30843:29;30839:1;30831:6;30827:14;30820:53;30703:177;:::o;30886:166::-;31026:18;31022:1;31014:6;31010:14;31003:42;30886:166;:::o;31058:171::-;31198:23;31194:1;31186:6;31182:14;31175:47;31058:171;:::o;31235:177::-;31375:29;31371:1;31363:6;31359:14;31352:53;31235:177;:::o;31418:155::-;31558:7;31554:1;31546:6;31542:14;31535:31;31418:155;:::o;31579:182::-;31719:34;31715:1;31707:6;31703:14;31696:58;31579:182;:::o;31767:234::-;31907:34;31903:1;31895:6;31891:14;31884:58;31976:17;31971:2;31963:6;31959:15;31952:42;31767:234;:::o;32007:114::-;;:::o;32127:181::-;32267:33;32263:1;32255:6;32251:14;32244:57;32127:181;:::o;32314:167::-;32454:19;32450:1;32442:6;32438:14;32431:43;32314:167;:::o;32487:151::-;32627:3;32623:1;32615:6;32611:14;32604:27;32487:151;:::o;32644:116::-;32728:1;32721:5;32718:12;32708:46;;32734:18;;:::i;:::-;32708:46;32644:116;:::o;32766:122::-;32839:24;32857:5;32839:24;:::i;:::-;32832:5;32829:35;32819:63;;32878:1;32875;32868:12;32819:63;32766:122;:::o;32894:138::-;32975:32;33001:5;32975:32;:::i;:::-;32968:5;32965:43;32955:71;;33022:1;33019;33012:12;32955:71;32894:138;:::o;33038:116::-;33108:21;33123:5;33108:21;:::i;:::-;33101:5;33098:32;33088:60;;33144:1;33141;33134:12;33088:60;33038:116;:::o;33160:120::-;33232:23;33249:5;33232:23;:::i;:::-;33225:5;33222:34;33212:62;;33270:1;33267;33260:12;33212:62;33160:120;:::o;33286:110::-;33370:1;33363:5;33360:12;33350:40;;33386:1;33383;33376:12;33350:40;33286:110;:::o;33402:122::-;33475:24;33493:5;33475:24;:::i;:::-;33468:5;33465:35;33455:63;;33514:1;33511;33504:12;33455:63;33402:122;:::o

Swarm Source

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