Overview
TokenID
3936
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Workerigos
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-01 */ // SPDX-License-Identifier: MIT 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.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts 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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) internal { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) internal returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev 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 ) internal 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. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File contracts/OperatorFilter/Workerigos.sol pragma solidity ^0.8.9; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } function _onlyAllowedOperator(address from) private view { if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } _onlyAllowedOperator(from); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } error ERC721RestrictedApprovalAddressRestricted(); contract Workerigos is ERC721A, Ownable, ReentrancyGuard, OperatorFilterer(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true) { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.001 ether; uint256 public maxSupply = 5000; uint256 public freeSupply = 2251; uint256 public maxMintAmountPerTx = 5; bool public paused; bool public revealed = true; uint256 constant royalty=600; // 6.00% // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /* @dev Mapping of restricted operator approvals set by contract Owner * This serves as an optional addition to ERC-721 so * that the contract owner can elect to prevent specific addresses/contracts * from being marked as the approver for a token. The reason for this * is that some projects may want to retain control of where their tokens can/can not be listed * either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace. * By default, there are no restrictions. The contract owner must deliberatly block an address */ mapping(address => bool) public restrictedApprovalAddresses; constructor( string memory _hiddenMetadataUri ) ERC721A("Workerigos", "WORKERIGOS") { setHiddenMetadataUri(_hiddenMetadataUri); } function mint(uint256 _mintAmount) public payable nonReentrant { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if (totalSupply() >= freeSupply) { require(msg.value > 0, "Max free supply exceeded!"); } _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return string(abi.encodePacked(_baseURI(), _tokenId.toString())); } else { return hiddenMetadataUri; } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override onlyAllowedOperatorApproval(to) { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); if(restrictedApprovalAddresses[to]) revert ERC721RestrictedApprovalAddressRestricted(); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { require(operator != _msgSender(), "ERC721A: approve to caller"); if(restrictedApprovalAddresses[operator]) revert ERC721RestrictedApprovalAddressRestricted(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ERC721RestrictedApprovalAddressRestricted","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266038d7ea4c68000600c55611388600d556108cb600e556005600f556010805461ff0019166101001790553480156200003c57600080fd5b5060405162002ba238038062002ba28339810160408190526200005f9162000327565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a815260200169576f726b657269676f7360b01b8152506040518060400160405280600a815260200169574f524b455249474f5360b01b8152508160029081620000cd91906200048b565b506003620000dc82826200048b565b5050600160005550620000ef336200024e565b60016009556daaeb6d7670e522a718067333cd4e3b15620002395780156200018757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200016857600080fd5b505af11580156200017d573d6000803e3d6000fd5b5050505062000239565b6001600160a01b03821615620001d85760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200014d565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021f57600080fd5b505af115801562000234573d6000803e3d6000fd5b505050505b5062000247905081620002a0565b5062000557565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002ff5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600b6200030d82826200048b565b5050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200033b57600080fd5b82516001600160401b03808211156200035357600080fd5b818501915085601f8301126200036857600080fd5b8151818111156200037d576200037d62000311565b604051601f8201601f19908116603f01168101908382118183101715620003a857620003a862000311565b816040528281528886848701011115620003c157600080fd5b600093505b82841015620003e55784840186015181850187015292850192620003c6565b600086848301015280965050505050505092915050565b600181811c908216806200041157607f821691505b6020821081036200043257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200048657600081815260208120601f850160051c81016020861015620004615750805b601f850160051c820191505b8181101562000482578281556001016200046d565b5050505b505050565b81516001600160401b03811115620004a757620004a762000311565b620004bf81620004b88454620003fc565b8462000438565b602080601f831160018114620004f75760008415620004de5750858301515b600019600386901b1c1916600185901b17855562000482565b600085815260208120601f198616915b82811015620005285788860151825594840194600190910190840162000507565b5085821015620005475787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61263b80620005676000396000f3fe60806040526004361061021a5760003560e01c80636f8b44b011610123578063b071401b116100ab578063e0a808531161006f578063e0a80853146105f6578063e985e9c514610616578063efbd73f414610636578063f2fde38b14610656578063f676308a1461067657600080fd5b8063b071401b1461056b578063b88d4fde1461058b578063c87b56dd146105ab578063cfc86f7b146105cb578063d5abeb01146105e057600080fd5b806394354fd0116100f257806394354fd0146104f857806395d89b411461050e578063a0712d6814610523578063a22cb46514610536578063a45ba8e71461055657600080fd5b80636f8b44b01461048557806370a08231146104a5578063715018a6146104c55780638da5cb5b146104da57600080fd5b806324a6ab0c116101a65780634fdd43cb116101755780634fdd43cb146103ec578063518302271461040c57806355f804b31461042b5780635c975abb1461044b5780636352211e1461046557600080fd5b806324a6ab0c146103815780633ccfd60b1461039757806342842e0e146103ac57806344a0d68a146103cc57600080fd5b8063095ea7b3116101ed578063095ea7b3146102de57806313faede61461030057806316c38b3c1461032457806318160ddd1461034457806323b872dd1461036157600080fd5b806301ffc9a71461021f578063043a2a401461025457806306fdde0314610284578063081812fc146102a6575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e62565b610696565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061023f61026f366004611e9d565b60126020526000908152604090205460ff1681565b34801561029057600080fd5b506102996106a7565b60405161024b9190611f08565b3480156102b257600080fd5b506102c66102c1366004611f1b565b610739565b6040516001600160a01b03909116815260200161024b565b3480156102ea57600080fd5b506102fe6102f9366004611f34565b61077d565b005b34801561030c57600080fd5b50610316600c5481565b60405190815260200161024b565b34801561033057600080fd5b506102fe61033f366004611f6c565b6108de565b34801561035057600080fd5b506001546000540360001901610316565b34801561036d57600080fd5b506102fe61037c366004611f89565b61091b565b34801561038d57600080fd5b50610316600e5481565b3480156103a357600080fd5b506102fe610965565b3480156103b857600080fd5b506102fe6103c7366004611f89565b610a5f565b3480156103d857600080fd5b506102fe6103e7366004611f1b565b610ac4565b3480156103f857600080fd5b506102fe610407366004612050565b610af3565b34801561041857600080fd5b5060105461023f90610100900460ff1681565b34801561043757600080fd5b506102fe610446366004612098565b610b2d565b34801561045757600080fd5b5060105461023f9060ff1681565b34801561047157600080fd5b506102c6610480366004611f1b565b610b69565b34801561049157600080fd5b506102fe6104a0366004611f1b565b610b7b565b3480156104b157600080fd5b506103166104c0366004611e9d565b610baa565b3480156104d157600080fd5b506102fe610bf8565b3480156104e657600080fd5b506008546001600160a01b03166102c6565b34801561050457600080fd5b50610316600f5481565b34801561051a57600080fd5b50610299610c2e565b6102fe610531366004611f1b565b610c3d565b34801561054257600080fd5b506102fe610551366004612109565b610e5b565b34801561056257600080fd5b50610299610f64565b34801561057757600080fd5b506102fe610586366004611f1b565b610ff2565b34801561059757600080fd5b506102fe6105a6366004612140565b611021565b3480156105b757600080fd5b506102996105c6366004611f1b565b6110c2565b3480156105d757600080fd5b506102996111ee565b3480156105ec57600080fd5b50610316600d5481565b34801561060257600080fd5b506102fe610611366004611f6c565b6111fb565b34801561062257600080fd5b5061023f6106313660046121bb565b61123f565b34801561064257600080fd5b506102fe6106513660046121ee565b61126d565b34801561066257600080fd5b506102fe610671366004611e9d565b6112a1565b34801561068257600080fd5b506102fe610691366004611f1b565b61133c565b60006106a18261136b565b92915050565b6060600280546106b690612211565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290612211565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000610744826113bb565b610761576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610787816113f4565b600061079283610b69565b9050806001600160a01b0316846001600160a01b0316036108055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084015b60405180910390fd5b6001600160a01b03841660009081526012602052604090205460ff161561083f5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061085b575061085b813361123f565b6108cd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107fc565b6108d88484836114ad565b50505050565b6008546001600160a01b031633146109085760405162461bcd60e51b81526004016107fc9061224b565b6010805460ff1916911515919091179055565b826daaeb6d7670e522a718067333cd4e3b1561095a57336001600160a01b038216036109515761094c848484611509565b6108d8565b61095a816116f4565b6108d8848484611509565b6008546001600160a01b0316331461098f5760405162461bcd60e51b81526004016107fc9061224b565b6002600954036109e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fc565b600260095560006109fa6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a44576040519150601f19603f3d011682016040523d82523d6000602084013e610a49565b606091505b5050905080610a5757600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610aa957336001600160a01b03821603610aa05761094c84848460405180602001604052806000815250611021565b610aa9816116f4565b6108d884848460405180602001604052806000815250611021565b6008546001600160a01b03163314610aee5760405162461bcd60e51b81526004016107fc9061224b565b600c55565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016107fc9061224b565b600b610b2982826122ce565b5050565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016107fc9061224b565b600a610b6482848361238d565b505050565b6000610b7482611809565b5192915050565b6008546001600160a01b03163314610ba55760405162461bcd60e51b81526004016107fc9061224b565b600d55565b60006001600160a01b038216610bd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016107fc9061224b565b610c2c6000611930565b565b6060600380546106b690612211565b600260095403610c8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fc565b60026009558015801590610ca55750600f548111155b610ce85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fc565b600d546001546000548391900360001901610d039190612462565b1115610d485760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107fc565b60105460ff1615610d9b5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107fc565b80600c54610da99190612475565b341015610dee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107fc565b600e54600154600054036000190110610e515760003411610e515760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c79206578636565646564210000000000000060448201526064016107fc565b610a573382611982565b81610e65816113f4565b336001600160a01b03841603610ebd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107fc565b6001600160a01b03831660009081526012602052604090205460ff1615610ef75760405163d947c35f60e01b815260040160405180910390fd5b3360008181526011602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600b8054610f7190612211565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612211565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b6008546001600160a01b0316331461101c5760405162461bcd60e51b81526004016107fc9061224b565b600f55565b836daaeb6d7670e522a718067333cd4e3b1561108857336001600160a01b0382160361107f57611052858585611509565b61105e8585858561199c565b61107a5760405162461bcd60e51b81526004016107fc9061248c565b6110bb565b611088816116f4565b611093858585611509565b61109f8585858561199c565b6110bb5760405162461bcd60e51b81526004016107fc9061248c565b5050505050565b60606110cd826113bb565b61110f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016107fc565b601054610100900460ff161561115757611127611a9e565b61113083611aad565b6040516020016111419291906124df565b6040516020818303038152906040529050919050565b600b805461116490612211565b80601f016020809104026020016040519081016040528092919081815260200182805461119090612211565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b50505050509050919050565b919050565b600a8054610f7190612211565b6008546001600160a01b031633146112255760405162461bcd60e51b81526004016107fc9061224b565b601080549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112975760405162461bcd60e51b81526004016107fc9061224b565b610b298183611982565b6008546001600160a01b031633146112cb5760405162461bcd60e51b81526004016107fc9061224b565b6001600160a01b0381166113305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b61133981611930565b50565b6008546001600160a01b031633146113665760405162461bcd60e51b81526004016107fc9061224b565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061139c57506001600160e01b03198216635b5e139f60e01b145b806106a157506301ffc9a760e01b6001600160e01b03198316146106a1565b6000816001111580156113cf575060005482105b80156106a1575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561133957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611461573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611485919061250e565b61133957604051633b79c77360e21b81526001600160a01b03821660048201526024016107fc565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151482611809565b9050836001600160a01b031681600001516001600160a01b03161461154b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115695750611569853361123f565b8061158457503361157984610739565b6001600160a01b0316145b9050806115a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115cb57604051633a954ecd60e21b815260040160405180910390fd5b6115d7600084876114ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ab5760005482146116ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110bb565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611743573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611767919061250e565b80156117ea5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ea919061250e565b61133957604051633b79c77360e21b81523360048201526024016107fc565b60408051606081018252600080825260208201819052918101919091528180600111158015611839575060005481105b1561191757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119155780516001600160a01b0316156118ac579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611910579392505050565b6118ac565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b29828260405180602001604052806000815250611bad565b60006001600160a01b0384163b15611a9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119e090339089908890889060040161252b565b6020604051808303816000875af1925050508015611a1b575060408051601f3d908101601f19168201909252611a1891810190612568565b60015b611a78573d808015611a49576040519150601f19603f3d011682016040523d82523d6000602084013e611a4e565b606091505b508051600003611a705760405162461bcd60e51b81526004016107fc9061248c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a96565b5060015b949350505050565b6060600a80546106b690612211565b606081600003611ad45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611afe5780611ae881612585565b9150611af79050600a836125b4565b9150611ad8565b6000816001600160401b03811115611b1857611b18611fc5565b6040519080825280601f01601f191660200182016040528015611b42576020820181803683370190505b5090505b8415611a9657611b576001836125c8565b9150611b64600a866125db565b611b6f906030612462565b60f81b818381518110611b8457611b846125ef565b60200101906001600160f81b031916908160001a905350611ba6600a866125b4565b9450611b46565b610b6483838360016000546001600160a01b038516611bde57604051622e076360e81b815260040160405180910390fd5b83600003611bff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611cb057506001600160a01b0387163b15155b15611d38575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d016000888480600101955088611d86565b611d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808203611cb6578260005414611d3357600080fd5b611d7d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d39575b506000556110bb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611dbb90339089908890889060040161252b565b6020604051808303816000875af1925050508015611df6575060408051601f3d908101601f19168201909252611df391810190612568565b60015b611a78573d808015611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b508051600003611a70576040516368d2bf6b60e11b815260040160405180910390fd5b6001600160e01b03198116811461133957600080fd5b600060208284031215611e7457600080fd5b8135611e7f81611e4c565b9392505050565b80356001600160a01b03811681146111e957600080fd5b600060208284031215611eaf57600080fd5b611e7f82611e86565b60005b83811015611ed3578181015183820152602001611ebb565b50506000910152565b60008151808452611ef4816020860160208601611eb8565b601f01601f19169290920160200192915050565b602081526000611e7f6020830184611edc565b600060208284031215611f2d57600080fd5b5035919050565b60008060408385031215611f4757600080fd5b611f5083611e86565b946020939093013593505050565b801515811461133957600080fd5b600060208284031215611f7e57600080fd5b8135611e7f81611f5e565b600080600060608486031215611f9e57600080fd5b611fa784611e86565b9250611fb560208501611e86565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ff557611ff5611fc5565b604051601f8501601f19908116603f0116810190828211818310171561201d5761201d611fc5565b8160405280935085815286868601111561203657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206257600080fd5b81356001600160401b0381111561207857600080fd5b8201601f8101841361208957600080fd5b611a9684823560208401611fdb565b600080602083850312156120ab57600080fd5b82356001600160401b03808211156120c257600080fd5b818501915085601f8301126120d657600080fd5b8135818111156120e557600080fd5b8660208285010111156120f757600080fd5b60209290920196919550909350505050565b6000806040838503121561211c57600080fd5b61212583611e86565b9150602083013561213581611f5e565b809150509250929050565b6000806000806080858703121561215657600080fd5b61215f85611e86565b935061216d60208601611e86565b92506040850135915060608501356001600160401b0381111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401611fdb565b91505092959194509250565b600080604083850312156121ce57600080fd5b6121d783611e86565b91506121e560208401611e86565b90509250929050565b6000806040838503121561220157600080fd5b823591506121e560208401611e86565b600181811c9082168061222557607f821691505b60208210810361224557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610b6457600081815260208120601f850160051c810160208610156122a75750805b601f850160051c820191505b818110156122c6578281556001016122b3565b505050505050565b81516001600160401b038111156122e7576122e7611fc5565b6122fb816122f58454612211565b84612280565b602080601f83116001811461233057600084156123185750858301515b600019600386901b1c1916600185901b1785556122c6565b600085815260208120601f198616915b8281101561235f57888601518255948401946001909101908401612340565b508582101561237d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038311156123a4576123a4611fc5565b6123b8836123b28354612211565b83612280565b6000601f8411600181146123ec57600085156123d45750838201355b600019600387901b1c1916600186901b1783556110bb565b600083815260209020601f19861690835b8281101561241d57868501358255602094850194600190920191016123fd565b508682101561243a5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106a1576106a161244c565b80820281158282048414176106a1576106a161244c565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516124f1818460208801611eb8565b835190830190612505818360208801611eb8565b01949350505050565b60006020828403121561252057600080fd5b8151611e7f81611f5e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255e90830184611edc565b9695505050505050565b60006020828403121561257a57600080fd5b8151611e7f81611e4c565b6000600182016125975761259761244c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125c3576125c361259e565b500490565b818103818111156106a1576106a161244c565b6000826125ea576125ea61259e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202e52482c28a98b787e0736bd08c09087d3c37e9669847a338939d1f4017e849d64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636f8b44b011610123578063b071401b116100ab578063e0a808531161006f578063e0a80853146105f6578063e985e9c514610616578063efbd73f414610636578063f2fde38b14610656578063f676308a1461067657600080fd5b8063b071401b1461056b578063b88d4fde1461058b578063c87b56dd146105ab578063cfc86f7b146105cb578063d5abeb01146105e057600080fd5b806394354fd0116100f257806394354fd0146104f857806395d89b411461050e578063a0712d6814610523578063a22cb46514610536578063a45ba8e71461055657600080fd5b80636f8b44b01461048557806370a08231146104a5578063715018a6146104c55780638da5cb5b146104da57600080fd5b806324a6ab0c116101a65780634fdd43cb116101755780634fdd43cb146103ec578063518302271461040c57806355f804b31461042b5780635c975abb1461044b5780636352211e1461046557600080fd5b806324a6ab0c146103815780633ccfd60b1461039757806342842e0e146103ac57806344a0d68a146103cc57600080fd5b8063095ea7b3116101ed578063095ea7b3146102de57806313faede61461030057806316c38b3c1461032457806318160ddd1461034457806323b872dd1461036157600080fd5b806301ffc9a71461021f578063043a2a401461025457806306fdde0314610284578063081812fc146102a6575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e62565b610696565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061023f61026f366004611e9d565b60126020526000908152604090205460ff1681565b34801561029057600080fd5b506102996106a7565b60405161024b9190611f08565b3480156102b257600080fd5b506102c66102c1366004611f1b565b610739565b6040516001600160a01b03909116815260200161024b565b3480156102ea57600080fd5b506102fe6102f9366004611f34565b61077d565b005b34801561030c57600080fd5b50610316600c5481565b60405190815260200161024b565b34801561033057600080fd5b506102fe61033f366004611f6c565b6108de565b34801561035057600080fd5b506001546000540360001901610316565b34801561036d57600080fd5b506102fe61037c366004611f89565b61091b565b34801561038d57600080fd5b50610316600e5481565b3480156103a357600080fd5b506102fe610965565b3480156103b857600080fd5b506102fe6103c7366004611f89565b610a5f565b3480156103d857600080fd5b506102fe6103e7366004611f1b565b610ac4565b3480156103f857600080fd5b506102fe610407366004612050565b610af3565b34801561041857600080fd5b5060105461023f90610100900460ff1681565b34801561043757600080fd5b506102fe610446366004612098565b610b2d565b34801561045757600080fd5b5060105461023f9060ff1681565b34801561047157600080fd5b506102c6610480366004611f1b565b610b69565b34801561049157600080fd5b506102fe6104a0366004611f1b565b610b7b565b3480156104b157600080fd5b506103166104c0366004611e9d565b610baa565b3480156104d157600080fd5b506102fe610bf8565b3480156104e657600080fd5b506008546001600160a01b03166102c6565b34801561050457600080fd5b50610316600f5481565b34801561051a57600080fd5b50610299610c2e565b6102fe610531366004611f1b565b610c3d565b34801561054257600080fd5b506102fe610551366004612109565b610e5b565b34801561056257600080fd5b50610299610f64565b34801561057757600080fd5b506102fe610586366004611f1b565b610ff2565b34801561059757600080fd5b506102fe6105a6366004612140565b611021565b3480156105b757600080fd5b506102996105c6366004611f1b565b6110c2565b3480156105d757600080fd5b506102996111ee565b3480156105ec57600080fd5b50610316600d5481565b34801561060257600080fd5b506102fe610611366004611f6c565b6111fb565b34801561062257600080fd5b5061023f6106313660046121bb565b61123f565b34801561064257600080fd5b506102fe6106513660046121ee565b61126d565b34801561066257600080fd5b506102fe610671366004611e9d565b6112a1565b34801561068257600080fd5b506102fe610691366004611f1b565b61133c565b60006106a18261136b565b92915050565b6060600280546106b690612211565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290612211565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b6000610744826113bb565b610761576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b81610787816113f4565b600061079283610b69565b9050806001600160a01b0316846001600160a01b0316036108055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084015b60405180910390fd5b6001600160a01b03841660009081526012602052604090205460ff161561083f5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061085b575061085b813361123f565b6108cd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107fc565b6108d88484836114ad565b50505050565b6008546001600160a01b031633146109085760405162461bcd60e51b81526004016107fc9061224b565b6010805460ff1916911515919091179055565b826daaeb6d7670e522a718067333cd4e3b1561095a57336001600160a01b038216036109515761094c848484611509565b6108d8565b61095a816116f4565b6108d8848484611509565b6008546001600160a01b0316331461098f5760405162461bcd60e51b81526004016107fc9061224b565b6002600954036109e15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fc565b600260095560006109fa6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a44576040519150601f19603f3d011682016040523d82523d6000602084013e610a49565b606091505b5050905080610a5757600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610aa957336001600160a01b03821603610aa05761094c84848460405180602001604052806000815250611021565b610aa9816116f4565b6108d884848460405180602001604052806000815250611021565b6008546001600160a01b03163314610aee5760405162461bcd60e51b81526004016107fc9061224b565b600c55565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016107fc9061224b565b600b610b2982826122ce565b5050565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016107fc9061224b565b600a610b6482848361238d565b505050565b6000610b7482611809565b5192915050565b6008546001600160a01b03163314610ba55760405162461bcd60e51b81526004016107fc9061224b565b600d55565b60006001600160a01b038216610bd3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c225760405162461bcd60e51b81526004016107fc9061224b565b610c2c6000611930565b565b6060600380546106b690612211565b600260095403610c8f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fc565b60026009558015801590610ca55750600f548111155b610ce85760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107fc565b600d546001546000548391900360001901610d039190612462565b1115610d485760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016107fc565b60105460ff1615610d9b5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016107fc565b80600c54610da99190612475565b341015610dee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016107fc565b600e54600154600054036000190110610e515760003411610e515760405162461bcd60e51b815260206004820152601960248201527f4d6178206672656520737570706c79206578636565646564210000000000000060448201526064016107fc565b610a573382611982565b81610e65816113f4565b336001600160a01b03841603610ebd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107fc565b6001600160a01b03831660009081526012602052604090205460ff1615610ef75760405163d947c35f60e01b815260040160405180910390fd5b3360008181526011602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600b8054610f7190612211565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9d90612211565b8015610fea5780601f10610fbf57610100808354040283529160200191610fea565b820191906000526020600020905b815481529060010190602001808311610fcd57829003601f168201915b505050505081565b6008546001600160a01b0316331461101c5760405162461bcd60e51b81526004016107fc9061224b565b600f55565b836daaeb6d7670e522a718067333cd4e3b1561108857336001600160a01b0382160361107f57611052858585611509565b61105e8585858561199c565b61107a5760405162461bcd60e51b81526004016107fc9061248c565b6110bb565b611088816116f4565b611093858585611509565b61109f8585858561199c565b6110bb5760405162461bcd60e51b81526004016107fc9061248c565b5050505050565b60606110cd826113bb565b61110f5760405162461bcd60e51b815260206004820152601360248201527255524920646f6573206e6f742065786973742160681b60448201526064016107fc565b601054610100900460ff161561115757611127611a9e565b61113083611aad565b6040516020016111419291906124df565b6040516020818303038152906040529050919050565b600b805461116490612211565b80601f016020809104026020016040519081016040528092919081815260200182805461119090612211565b80156111dd5780601f106111b2576101008083540402835291602001916111dd565b820191906000526020600020905b8154815290600101906020018083116111c057829003601f168201915b50505050509050919050565b919050565b600a8054610f7190612211565b6008546001600160a01b031633146112255760405162461bcd60e51b81526004016107fc9061224b565b601080549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146112975760405162461bcd60e51b81526004016107fc9061224b565b610b298183611982565b6008546001600160a01b031633146112cb5760405162461bcd60e51b81526004016107fc9061224b565b6001600160a01b0381166113305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fc565b61133981611930565b50565b6008546001600160a01b031633146113665760405162461bcd60e51b81526004016107fc9061224b565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061139c57506001600160e01b03198216635b5e139f60e01b145b806106a157506301ffc9a760e01b6001600160e01b03198316146106a1565b6000816001111580156113cf575060005482105b80156106a1575050600090815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561133957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611461573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611485919061250e565b61133957604051633b79c77360e21b81526001600160a01b03821660048201526024016107fc565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061151482611809565b9050836001600160a01b031681600001516001600160a01b03161461154b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115695750611569853361123f565b8061158457503361157984610739565b6001600160a01b0316145b9050806115a457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166115cb57604051633a954ecd60e21b815260040160405180910390fd5b6115d7600084876114ad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ab5760005482146116ab57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110bb565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611743573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611767919061250e565b80156117ea5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ea919061250e565b61133957604051633b79c77360e21b81523360048201526024016107fc565b60408051606081018252600080825260208201819052918101919091528180600111158015611839575060005481105b1561191757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119155780516001600160a01b0316156118ac579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611910579392505050565b6118ac565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b29828260405180602001604052806000815250611bad565b60006001600160a01b0384163b15611a9257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119e090339089908890889060040161252b565b6020604051808303816000875af1925050508015611a1b575060408051601f3d908101601f19168201909252611a1891810190612568565b60015b611a78573d808015611a49576040519150601f19603f3d011682016040523d82523d6000602084013e611a4e565b606091505b508051600003611a705760405162461bcd60e51b81526004016107fc9061248c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a96565b5060015b949350505050565b6060600a80546106b690612211565b606081600003611ad45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611afe5780611ae881612585565b9150611af79050600a836125b4565b9150611ad8565b6000816001600160401b03811115611b1857611b18611fc5565b6040519080825280601f01601f191660200182016040528015611b42576020820181803683370190505b5090505b8415611a9657611b576001836125c8565b9150611b64600a866125db565b611b6f906030612462565b60f81b818381518110611b8457611b846125ef565b60200101906001600160f81b031916908160001a905350611ba6600a866125b4565b9450611b46565b610b6483838360016000546001600160a01b038516611bde57604051622e076360e81b815260040160405180910390fd5b83600003611bff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611cb057506001600160a01b0387163b15155b15611d38575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d016000888480600101955088611d86565b611d1e576040516368d2bf6b60e11b815260040160405180910390fd5b808203611cb6578260005414611d3357600080fd5b611d7d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611d39575b506000556110bb565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611dbb90339089908890889060040161252b565b6020604051808303816000875af1925050508015611df6575060408051601f3d908101601f19168201909252611df391810190612568565b60015b611a78573d808015611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b508051600003611a70576040516368d2bf6b60e11b815260040160405180910390fd5b6001600160e01b03198116811461133957600080fd5b600060208284031215611e7457600080fd5b8135611e7f81611e4c565b9392505050565b80356001600160a01b03811681146111e957600080fd5b600060208284031215611eaf57600080fd5b611e7f82611e86565b60005b83811015611ed3578181015183820152602001611ebb565b50506000910152565b60008151808452611ef4816020860160208601611eb8565b601f01601f19169290920160200192915050565b602081526000611e7f6020830184611edc565b600060208284031215611f2d57600080fd5b5035919050565b60008060408385031215611f4757600080fd5b611f5083611e86565b946020939093013593505050565b801515811461133957600080fd5b600060208284031215611f7e57600080fd5b8135611e7f81611f5e565b600080600060608486031215611f9e57600080fd5b611fa784611e86565b9250611fb560208501611e86565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ff557611ff5611fc5565b604051601f8501601f19908116603f0116810190828211818310171561201d5761201d611fc5565b8160405280935085815286868601111561203657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561206257600080fd5b81356001600160401b0381111561207857600080fd5b8201601f8101841361208957600080fd5b611a9684823560208401611fdb565b600080602083850312156120ab57600080fd5b82356001600160401b03808211156120c257600080fd5b818501915085601f8301126120d657600080fd5b8135818111156120e557600080fd5b8660208285010111156120f757600080fd5b60209290920196919550909350505050565b6000806040838503121561211c57600080fd5b61212583611e86565b9150602083013561213581611f5e565b809150509250929050565b6000806000806080858703121561215657600080fd5b61215f85611e86565b935061216d60208601611e86565b92506040850135915060608501356001600160401b0381111561218f57600080fd5b8501601f810187136121a057600080fd5b6121af87823560208401611fdb565b91505092959194509250565b600080604083850312156121ce57600080fd5b6121d783611e86565b91506121e560208401611e86565b90509250929050565b6000806040838503121561220157600080fd5b823591506121e560208401611e86565b600181811c9082168061222557607f821691505b60208210810361224557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610b6457600081815260208120601f850160051c810160208610156122a75750805b601f850160051c820191505b818110156122c6578281556001016122b3565b505050505050565b81516001600160401b038111156122e7576122e7611fc5565b6122fb816122f58454612211565b84612280565b602080601f83116001811461233057600084156123185750858301515b600019600386901b1c1916600185901b1785556122c6565b600085815260208120601f198616915b8281101561235f57888601518255948401946001909101908401612340565b508582101561237d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b038311156123a4576123a4611fc5565b6123b8836123b28354612211565b83612280565b6000601f8411600181146123ec57600085156123d45750838201355b600019600387901b1c1916600186901b1783556110bb565b600083815260209020601f19861690835b8281101561241d57868501358255602094850194600190920191016123fd565b508682101561243a5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106a1576106a161244c565b80820281158282048414176106a1576106a161244c565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516124f1818460208801611eb8565b835190830190612505818360208801611eb8565b01949350505050565b60006020828403121561252057600080fd5b8151611e7f81611f5e565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255e90830184611edc565b9695505050505050565b60006020828403121561257a57600080fd5b8151611e7f81611e4c565b6000600182016125975761259761244c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826125c3576125c361259e565b500490565b818103818111156106a1576106a161244c565b6000826125ea576125ea61259e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212202e52482c28a98b787e0736bd08c09087d3c37e9669847a338939d1f4017e849d64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
53485:5788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57198:162;;;;;;;;;;-1:-1:-1;57198:162:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;57198:162:0;;;;;;;;54683:59;;;;;;;;;;-1:-1:-1;54683:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34249:204::-;;;;;;;;;;-1:-1:-1;34249:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;34249:204:0;1902:203:1;57420:504:0;;;;;;;;;;-1:-1:-1;57420:504:0;;;;;:::i;:::-;;:::i;:::-;;53720:33;;;;;;;;;;;;;;;;;;;2515:25:1;;;2503:2;2488:18;53720:33:0;2369:177:1;56185:77:0;;;;;;;;;;-1:-1:-1;56185:77:0;;;;;:::i;:::-;;:::i;28883:303::-;;;;;;;;;;-1:-1:-1;55661:1:0;29137:12;28927:7;29121:13;:28;-1:-1:-1;;29121:46:0;28883:303;;58456:168;;;;;;;;;;-1:-1:-1;58456:168:0;;;;;:::i;:::-;;:::i;53794:32::-;;;;;;;;;;;;;;;;56269:150;;;;;;;;;;;;;:::i;58687:183::-;;;;;;;;;;-1:-1:-1;58687:183:0;;;;;:::i;:::-;;:::i;55763:74::-;;;;;;;;;;-1:-1:-1;55763:74:0;;;;;:::i;:::-;;:::i;56453:132::-;;;;;;;;;;-1:-1:-1;56453:132:0;;;;;:::i;:::-;;:::i;53899:27::-;;;;;;;;;;-1:-1:-1;53899:27:0;;;;;;;;;;;56592:98;;;;;;;;;;-1:-1:-1;56592:98:0;;;;;:::i;:::-;;:::i;53876:18::-;;;;;;;;;;-1:-1:-1;53876:18:0;;;;;;;;32555:125;;;;;;;;;;-1:-1:-1;32555:125:0;;;;;:::i;:::-;;:::i;55981:94::-;;;;;;;;;;-1:-1:-1;55981:94:0;;;;;:::i;:::-;;:::i;30003:206::-;;;;;;;;;;-1:-1:-1;30003:206:0;;;;;:::i;:::-;;:::i;7392:103::-;;;;;;;;;;;;;:::i;6741:87::-;;;;;;;;;;-1:-1:-1;6814:6:0;;-1:-1:-1;;;;;6814:6:0;6741:87;;53831:37;;;;;;;;;;;;;;;;32916:104;;;;;;;;;;;;;:::i;54904:528::-;;;;;;:::i;:::-;;:::i;57986:411::-;;;;;;;;;;-1:-1:-1;57986:411:0;;;;;:::i;:::-;;:::i;53681:31::-;;;;;;;;;;;;;:::i;55844:130::-;;;;;;;;;;-1:-1:-1;55844:130:0;;;;;:::i;:::-;;:::i;58933:337::-;;;;;;;;;;-1:-1:-1;58933:337:0;;;;;:::i;:::-;;:::i;56814:318::-;;;;;;;;;;-1:-1:-1;56814:318:0;;;;;:::i;:::-;;:::i;53649:27::-;;;;;;;;;;;;;:::i;53758:31::-;;;;;;;;;;;;;;;;55675:81;;;;;;;;;;-1:-1:-1;55675:81:0;;;;;:::i;:::-;;:::i;34883:164::-;;;;;;;;;;-1:-1:-1;34883:164:0;;;;;:::i;:::-;;:::i;55439:127::-;;;;;;;;;;-1:-1:-1;55439:127:0;;;;;:::i;:::-;;:::i;7650:201::-;;;;;;;;;;-1:-1:-1;7650:201:0;;;;;:::i;:::-;;:::i;56081:98::-;;;;;;;;;;-1:-1:-1;56081:98:0;;;;;:::i;:::-;;:::i;57198:162::-;57292:4;57316:36;57340:11;57316:23;:36::i;:::-;57309:43;57198:162;-1:-1:-1;;57198:162:0:o;32747:100::-;32801:13;32834:5;32827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32747:100;:::o;34249:204::-;34317:7;34342:16;34350:7;34342;:16::i;:::-;34337:64;;34367:34;;-1:-1:-1;;;34367:34:0;;;;;;;;;;;34337:64;-1:-1:-1;34421:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34421:24:0;;34249:204::o;57420:504::-;57510:2;52948:30;52969:8;52948:20;:30::i;:::-;57521:13:::1;57537:24;57553:7;57537:15;:24::i;:::-;57521:40;;57582:5;-1:-1:-1::0;;;;;57576:11:0::1;:2;-1:-1:-1::0;;;;;57576:11:0::1;::::0;57568:58:::1;;;::::0;-1:-1:-1;;;57568:58:0;;7178:2:1;57568:58:0::1;::::0;::::1;7160:21:1::0;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;-1:-1:-1;;;7307:18:1;;;7300:32;7349:19;;57568:58:0::1;;;;;;;;;-1:-1:-1::0;;;;;57636:31:0;::::1;;::::0;;;:27:::1;:31;::::0;;;;;::::1;;57633:86;;;57676:43;;-1:-1:-1::0;;;57676:43:0::1;;;;;;;;;;;57633:86;5545:10:::0;-1:-1:-1;;;;;57744:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;57769:37:0::1;57786:5:::0;5545:10;34883:164;:::i;57769:37::-:1;57728:153;;;::::0;-1:-1:-1;;;57728:153:0;;7581:2:1;57728:153:0::1;::::0;::::1;7563:21:1::0;7620:2;7600:18;;;7593:30;7659:34;7639:18;;;7632:62;7730:27;7710:18;;;7703:55;7775:19;;57728:153:0::1;7379:421:1::0;57728:153:0::1;57890:28;57899:2;57903:7;57912:5;57890:8;:28::i;:::-;57514:410;57420:504:::0;;;:::o;56185:77::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;56241:6:::1;:15:::0;;-1:-1:-1;;56241:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56185:77::o;58456:168::-;58577:4;50950:42;52435:43;:47;52431:416;;52722:10;-1:-1:-1;;;;;52714:18:0;;;52710:85;;58590:28:::1;58600:4;58606:2;58610:7;58590:9;:28::i;:::-;52773:7:::0;;52710:85;52809:26;52830:4;52809:20;:26::i;:::-;58590:28:::1;58600:4;58606:2;58610:7;58590:9;:28::i;56269:150::-:0;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;1715:1:::1;2313:7;;:19:::0;2305:63:::1;;;::::0;-1:-1:-1;;;2305:63:0;;8368:2:1;2305:63:0::1;::::0;::::1;8350:21:1::0;8407:2;8387:18;;;8380:30;8446:33;8426:18;;;8419:61;8497:18;;2305:63:0::1;8166:355:1::0;2305:63:0::1;1715:1;2446:7;:18:::0;56327:7:::2;56348;6814:6:::0;;-1:-1:-1;;;;;6814:6:0;;6741:87;56348:7:::2;-1:-1:-1::0;;;;;56340:21:0::2;56369;56340:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56326:69;;;56410:2;56402:11;;;::::0;::::2;;-1:-1:-1::0;1671:1:0::1;2625:7;:22:::0;56269:150::o;58687:183::-;58812:4;50950:42;52435:43;:47;52431:416;;52722:10;-1:-1:-1;;;;;52714:18:0;;;52710:85;;58825:39:::1;58842:4;58848:2;58852:7;58825:39;;;;;;;;;;;::::0;:16:::1;:39::i;52710:85::-:0;52809:26;52830:4;52809:20;:26::i;:::-;58825:39:::1;58842:4;58848:2;58852:7;58825:39;;;;;;;;;;;::::0;:16:::1;:39::i;55763:74::-:0;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;55819:4:::1;:12:::0;55763:74::o;56453:132::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;56541:17:::1;:38;56561:18:::0;56541:17;:38:::1;:::i;:::-;;56453:132:::0;:::o;56592:98::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;56661:13:::1;:23;56677:7:::0;;56661:13;:23:::1;:::i;:::-;;56592:98:::0;;:::o;32555:125::-;32619:7;32646:21;32659:7;32646:12;:21::i;:::-;:26;;32555:125;-1:-1:-1;;32555:125:0:o;55981:94::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;56047:9:::1;:22:::0;55981:94::o;30003:206::-;30067:7;-1:-1:-1;;;;;30091:19:0;;30087:60;;30119:28;;-1:-1:-1;;;30119:28:0;;;;;;;;;;;30087:60;-1:-1:-1;;;;;;30173:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30173:27:0;;30003:206::o;7392:103::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;7457:30:::1;7484:1;7457:18;:30::i;:::-;7392:103::o:0;32916:104::-;32972:13;33005:7;32998:14;;;;;:::i;54904:528::-;1715:1;2313:7;;:19;2305:63;;;;-1:-1:-1;;;2305:63:0;;8368:2:1;2305:63:0;;;8350:21:1;8407:2;8387:18;;;8380:30;8446:33;8426:18;;;8419:61;8497:18;;2305:63:0;8166:355:1;2305:63:0;1715:1;2446:7;:18;54982:15;;;;;:52:::1;;;55016:18;;55001:11;:33;;54982:52;54974:85;;;::::0;-1:-1:-1;;;54974:85:0;;12353:2:1;54974:85:0::1;::::0;::::1;12335:21:1::0;12392:2;12372:18;;;12365:30;-1:-1:-1;;;12411:18:1;;;12404:50;12471:18;;54974:85:0::1;12151:344:1::0;54974:85:0::1;55105:9;::::0;55661:1;29137:12;28927:7;29121:13;55090:11;;29121:28;;-1:-1:-1;;29121:46:0;55074:27:::1;;;;:::i;:::-;:40;;55066:73;;;::::0;-1:-1:-1;;;55066:73:0;;12964:2:1;55066:73:0::1;::::0;::::1;12946:21:1::0;13003:2;12983:18;;;12976:30;-1:-1:-1;;;13022:18:1;;;13015:50;13082:18;;55066:73:0::1;12762:344:1::0;55066:73:0::1;55155:6;::::0;::::1;;55154:7;55146:43;;;::::0;-1:-1:-1;;;55146:43:0;;13313:2:1;55146:43:0::1;::::0;::::1;13295:21:1::0;13352:2;13332:18;;;13325:30;13391:25;13371:18;;;13364:53;13434:18;;55146:43:0::1;13111:347:1::0;55146:43:0::1;55224:11;55217:4;;:18;;;;:::i;:::-;55204:9;:31;;55196:63;;;::::0;-1:-1:-1;;;55196:63:0;;13838:2:1;55196:63:0::1;::::0;::::1;13820:21:1::0;13877:2;13857:18;;;13850:30;-1:-1:-1;;;13896:18:1;;;13889:49;13955:18;;55196:63:0::1;13636:343:1::0;55196:63:0::1;55289:10;::::0;55661:1;29137:12;28927:7;29121:13;:28;-1:-1:-1;;29121:46:0;55272:27:::1;55268:107;;55334:1;55322:9;:13;55314:51;;;::::0;-1:-1:-1;;;55314:51:0;;14186:2:1;55314:51:0::1;::::0;::::1;14168:21:1::0;14225:2;14205:18;;;14198:30;14264:27;14244:18;;;14237:55;14309:18;;55314:51:0::1;13984:349:1::0;55314:51:0::1;55384:36;5545:10:::0;55408:11:::1;55384:9;:36::i;57986:411::-:0;58090:8;52948:30;52969:8;52948:20;:30::i;:::-;5545:10;-1:-1:-1;;;;;58115:24:0;::::1;::::0;58107:63:::1;;;::::0;-1:-1:-1;;;58107:63:0;;14540:2:1;58107:63:0::1;::::0;::::1;14522:21:1::0;14579:2;14559:18;;;14552:30;14618:28;14598:18;;;14591:56;14664:18;;58107:63:0::1;14338:350:1::0;58107:63:0::1;-1:-1:-1::0;;;;;58180:37:0;::::1;;::::0;;;:27:::1;:37;::::0;;;;;::::1;;58177:92;;;58226:43;;-1:-1:-1::0;;;58226:43:0::1;;;;;;;;;;;58177:92;5545:10:::0;58278:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;-1:-1:-1;;;;;58278:42:0;::::1;::::0;;;;;;;;;;:53;;-1:-1:-1;;58278:53:0::1;::::0;::::1;;::::0;;::::1;::::0;;;58343:48;;540:41:1;;;58278:42:0;;5545:10;58343:48:::1;::::0;513:18:1;58343:48:0::1;;;;;;;57986:411:::0;;;:::o;53681:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55844:130::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;55928:18:::1;:40:::0;55844:130::o;58933:337::-;59083:4;50950:42;52435:43;:47;52431:416;;52722:10;-1:-1:-1;;;;;52714:18:0;;;52710:85;;59096:28:::1;59106:4;59112:2;59116:7;59096:9;:28::i;:::-;59147:48;59170:4;59176:2;59180:7;59189:5;59147:22;:48::i;:::-;59131:133;;;;-1:-1:-1::0;;;59131:133:0::1;;;;;;;:::i;:::-;52773:7:::0;;52710:85;52809:26;52830:4;52809:20;:26::i;:::-;59096:28:::1;59106:4;59112:2;59116:7;59096:9;:28::i;:::-;59147:48;59170:4;59176:2;59180:7;59189:5;59147:22;:48::i;:::-;59131:133;;;;-1:-1:-1::0;;;59131:133:0::1;;;;;;;:::i;:::-;58933:337:::0;;;;;:::o;56814:318::-;56888:13;56920:17;56928:8;56920:7;:17::i;:::-;56912:49;;;;-1:-1:-1;;;56912:49:0;;15315:2:1;56912:49:0;;;15297:21:1;15354:2;15334:18;;;15327:30;-1:-1:-1;;;15373:18:1;;;15366:49;15432:18;;56912:49:0;15113:343:1;56912:49:0;56977:8;;;;;;;56973:154;;;57031:10;:8;:10::i;:::-;57043:19;:8;:17;:19::i;:::-;57014:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57000:64;;56814:318;;;:::o;56973:154::-;57100:17;57093:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56814:318;;;:::o;56973:154::-;56814:318;;;:::o;53649:27::-;;;;;;;:::i;55675:81::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;55733:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;55733:17:0;;::::1;::::0;;;::::1;::::0;;55675:81::o;34883:164::-;-1:-1:-1;;;;;35004:25:0;;;34980:4;35004:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34883:164::o;55439:127::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;55527:33:::1;55537:9;55548:11;55527:9;:33::i;7650:201::-:0;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7739:22:0;::::1;7731:73;;;::::0;-1:-1:-1;;;7731:73:0;;16164:2:1;7731:73:0::1;::::0;::::1;16146:21:1::0;16203:2;16183:18;;;16176:30;16242:34;16222:18;;;16215:62;-1:-1:-1;;;16293:18:1;;;16286:36;16339:19;;7731:73:0::1;15962:402:1::0;7731:73:0::1;7815:28;7834:8;7815:18;:28::i;:::-;7650:201:::0;:::o;56081:98::-;6814:6;;-1:-1:-1;;;;;6814:6:0;5545:10;6961:23;6953:68;;;;-1:-1:-1;;;6953:68:0;;;;;;;:::i;:::-;56149:10:::1;:24:::0;56081:98::o;29634:305::-;29736:4;-1:-1:-1;;;;;;29773:40:0;;-1:-1:-1;;;29773:40:0;;:105;;-1:-1:-1;;;;;;;29830:48:0;;-1:-1:-1;;;29830:48:0;29773:105;:158;;;-1:-1:-1;;;;;;;;;;19634:40:0;;;29895:36;19525:157;36235:174;36292:4;36335:7;55661:1;36316:26;;:53;;;;;36356:13;;36346:7;:23;36316:53;:85;;;;-1:-1:-1;;36374:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36374:27:0;;;;36373:28;;36235:174::o;53006:415::-;50950:42;53197:43;:47;53193:221;;53266:65;;-1:-1:-1;;;53266:65:0;;53315:4;53266:65;;;16581:34:1;-1:-1:-1;;;;;16651:15:1;;16631:18;;;16624:43;50950:42:0;;53266:40;;16516:18:1;;53266:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53261:142;;53359:28;;-1:-1:-1;;;53359:28:0;;-1:-1:-1;;;;;2066:32:1;;53359:28:0;;;2048:51:1;2021:18;;53359:28:0;1902:203:1;44393:197:0;44509:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44509:29:0;-1:-1:-1;;;;;44509:29:0;;;;;;;;;44554:28;;44509:24;;44554:28;;;;;;;44393:197;;;:::o;39335:2131::-;39451:35;39489:21;39502:7;39489:12;:21::i;:::-;39451:59;;39549:4;-1:-1:-1;;;;;39527:26:0;:13;:18;;;-1:-1:-1;;;;;39527:26:0;;39523:67;;39562:28;;-1:-1:-1;;;39562:28:0;;;;;;;;;;;39523:67;39603:22;5545:10;-1:-1:-1;;;;;39629:20:0;;;;:73;;-1:-1:-1;39666:36:0;39683:4;5545:10;34883:164;:::i;39666:36::-;39629:126;;;-1:-1:-1;5545:10:0;39719:20;39731:7;39719:11;:20::i;:::-;-1:-1:-1;;;;;39719:36:0;;39629:126;39603:153;;39774:17;39769:66;;39800:35;;-1:-1:-1;;;39800:35:0;;;;;;;;;;;39769:66;-1:-1:-1;;;;;39850:16:0;;39846:52;;39875:23;;-1:-1:-1;;;39875:23:0;;;;;;;;;;;39846:52;40019:35;40036:1;40040:7;40049:4;40019:8;:35::i;:::-;-1:-1:-1;;;;;40350:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40350:31:0;;;-1:-1:-1;;;;;40350:31:0;;;-1:-1:-1;;40350:31:0;;;;;;;40396:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40396:29:0;;;;;;;;;;;40476:20;;;:11;:20;;;;;;40511:18;;-1:-1:-1;;;;;;40544:49:0;;;;-1:-1:-1;;;40577:15:0;40544:49;;;;;;;;;;40867:11;;40927:24;;;;;40970:13;;40476:20;;40927:24;;40970:13;40966:384;;41180:13;;41165:11;:28;41161:174;;41218:20;;41287:28;;;;-1:-1:-1;;;;;41261:54:0;-1:-1:-1;;;41261:54:0;-1:-1:-1;;;;;;41261:54:0;;;-1:-1:-1;;;;;41218:20:0;;41261:54;;;;41161:174;40325:1036;;;41397:7;41393:2;-1:-1:-1;;;;;41378:27:0;41387:4;-1:-1:-1;;;;;41378:27:0;;;;;;;;;;;41416:42;57420:504;51918:337;52018:67;;-1:-1:-1;;;52018:67:0;;52067:4;52018:67;;;16581:34:1;52074:10:0;16631:18:1;;;16624:43;50950:42:0;;52018:40;;16516:18:1;;52018:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;52104:61:0;;-1:-1:-1;;;52104:61:0;;52153:4;52104:61;;;16581:34:1;-1:-1:-1;;;;;16651:15:1;;16631:18;;;16624:43;50950:42:0;;52104:40;;16516:18:1;;52104:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51984:264;;52208:30;;-1:-1:-1;;;52208:30:0;;52227:10;52208:30;;;2048:51:1;2021:18;;52208:30:0;1902:203:1;31384:1109:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31495:7:0;;55661:1;31544:23;;:47;;;;;31578:13;;31571:4;:20;31544:47;31540:886;;;31612:31;31646:17;;;:11;:17;;;;;;;;;31612:51;;;;;;;;;-1:-1:-1;;;;;31612:51:0;;;;-1:-1:-1;;;31612:51:0;;-1:-1:-1;;;;;31612:51:0;;;;;;;;-1:-1:-1;;;31612:51:0;;;;;;;;;;;;;;31682:729;;31732:14;;-1:-1:-1;;;;;31732:28:0;;31728:101;;31796:9;31384:1109;-1:-1:-1;;;31384:1109:0:o;31728:101::-;-1:-1:-1;;;32171:6:0;32216:17;;;;:11;:17;;;;;;;;;32204:29;;;;;;;;;-1:-1:-1;;;;;32204:29:0;;;;;-1:-1:-1;;;32204:29:0;;-1:-1:-1;;;;;32204:29:0;;;;;;;;-1:-1:-1;;;32204:29:0;;;;;;;;;;;;;32264:28;32260:109;;32332:9;31384:1109;-1:-1:-1;;;31384:1109:0:o;32260:109::-;32131:261;;;31593:833;31540:886;32454:31;;-1:-1:-1;;;32454:31:0;;;;;;;;;;;8011:191;8104:6;;;-1:-1:-1;;;;;8121:17:0;;;-1:-1:-1;;;;;;8121:17:0;;;;;;;8154:40;;8104:6;;;8121:17;8104:6;;8154:40;;8085:16;;8154:40;8074:128;8011:191;:::o;36417:104::-;36486:27;36496:2;36500:8;36486:27;;;;;;;;;;;;:9;:27::i;46293:691::-;46431:4;-1:-1:-1;;;;;46448:13:0;;9737:19;:23;46444:535;;46487:72;;-1:-1:-1;;;46487:72:0;;-1:-1:-1;;;;;46487:36:0;;;;;:72;;5545:10;;46538:4;;46544:7;;46553:5;;46487:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46487:72:0;;;;;;;;-1:-1:-1;;46487:72:0;;;;;;;;;;;;:::i;:::-;;;46474:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46718:6;:13;46735:1;46718:18;46714:215;;46751:61;;-1:-1:-1;;;46751:61:0;;;;;;;:::i;46714:215::-;46897:6;46891:13;46882:6;46878:2;46874:15;46867:38;46474:464;-1:-1:-1;;;;;;46609:55:0;-1:-1:-1;;;46609:55:0;;-1:-1:-1;46602:62:0;;46444:535;-1:-1:-1;46967:4:0;46444:535;46293:691;;;;;;:::o;56697:110::-;56757:13;56788;56781:20;;;;;:::i;3027:723::-;3083:13;3304:5;3313:1;3304:10;3300:53;;-1:-1:-1;;3331:10:0;;;;;;;;;;;;-1:-1:-1;;;3331:10:0;;;;;3027:723::o;3300:53::-;3378:5;3363:12;3419:78;3426:9;;3419:78;;3452:8;;;;:::i;:::-;;-1:-1:-1;3475:10:0;;-1:-1:-1;3483:2:0;3475:10;;:::i;:::-;;;3419:78;;;3507:19;3539:6;-1:-1:-1;;;;;3529:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3529:17:0;;3507:39;;3557:154;3564:10;;3557:154;;3591:11;3601:1;3591:11;;:::i;:::-;;-1:-1:-1;3660:10:0;3668:2;3660:5;:10;:::i;:::-;3647:24;;:2;:24;:::i;:::-;3634:39;;3617:6;3624;3617:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3617:56:0;;;;;;;;-1:-1:-1;3688:11:0;3697:2;3688:11;;:::i;:::-;;;3557:154;;36884:163;37007:32;37013:2;37017:8;37027:5;37034:4;37445:20;37468:13;-1:-1:-1;;;;;37496:16:0;;37492:48;;37521:19;;-1:-1:-1;;;37521:19:0;;;;;;;;;;;37492:48;37555:8;37567:1;37555:13;37551:44;;37577:18;;-1:-1:-1;;;37577:18:0;;;;;;;;;;;37551:44;-1:-1:-1;;;;;37946:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38005:49:0;;-1:-1:-1;;;;;37946:44:0;;;;;;;38005:49;;;;-1:-1:-1;;37946:44:0;;;;;;38005:49;;;;;;;;;;;;;;;;38071:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38121:66:0;;;;-1:-1:-1;;;38171:15:0;38121:66;;;;;;;;;;38071:25;38268:23;;;38312:4;:23;;;;-1:-1:-1;;;;;;38320:13:0;;9737:19;:23;;38320:15;38308:641;;;38356:314;38387:38;;38412:12;;-1:-1:-1;;;;;38387:38:0;;;38404:1;;38387:38;;38404:1;;38387:38;38453:69;38492:1;38496:2;38500:14;;;;;;38516:5;38453:30;:69::i;:::-;38448:174;;38558:40;;-1:-1:-1;;;38558:40:0;;;;;;;;;;;38448:174;38665:3;38649:12;:19;38356:314;;38751:12;38734:13;;:29;38730:43;;38765:8;;;38730:43;38308:641;;;38814:120;38845:40;;38870:14;;;;;-1:-1:-1;;;;;38845:40:0;;;38862:1;;38845:40;;38862:1;;38845:40;38929:3;38913:12;:19;38814:120;;38308:641;-1:-1:-1;38963:13:0;:28;39013:60;57420:504;45082:668;45267:72;;-1:-1:-1;;;45267:72:0;;45246:4;;-1:-1:-1;;;;;45267:36:0;;;;;:72;;5545:10;;45318:4;;45324:7;;45333:5;;45267:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45267:72:0;;;;;;;;-1:-1:-1;;45267:72:0;;;;;;;;;;;;:::i;:::-;;;45263:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45501:6;:13;45518:1;45501:18;45497:235;;45547:40;;-1:-1:-1;;;45547:40:0;;;;;;;;;;;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:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;770:186;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2551:118::-;2637:5;2630:13;2623:21;2616:5;2613:32;2603:60;;2659:1;2656;2649:12;2674:241;2730:6;2783:2;2771:9;2762:7;2758:23;2754:32;2751:52;;;2799:1;2796;2789:12;2751:52;2838:9;2825:23;2857:28;2879:5;2857:28;:::i;2920:328::-;2997:6;3005;3013;3066:2;3054:9;3045:7;3041:23;3037:32;3034:52;;;3082:1;3079;3072:12;3034:52;3105:29;3124:9;3105:29;:::i;:::-;3095:39;;3153:38;3187:2;3176:9;3172:18;3153:38;:::i;:::-;3143:48;;3238:2;3227:9;3223:18;3210:32;3200:42;;2920:328;;;;;:::o;3253:127::-;3314:10;3309:3;3305:20;3302:1;3295:31;3345:4;3342:1;3335:15;3369:4;3366:1;3359:15;3385:632;3450:5;-1:-1:-1;;;;;3521:2:1;3513:6;3510:14;3507:40;;;3527:18;;:::i;:::-;3602:2;3596:9;3570:2;3656:15;;-1:-1:-1;;3652:24:1;;;3678:2;3648:33;3644:42;3632:55;;;3702:18;;;3722:22;;;3699:46;3696:72;;;3748:18;;:::i;:::-;3788:10;3784:2;3777:22;3817:6;3808:15;;3847:6;3839;3832:22;3887:3;3878:6;3873:3;3869:16;3866:25;3863:45;;;3904:1;3901;3894:12;3863:45;3954:6;3949:3;3942:4;3934:6;3930:17;3917:44;4009:1;4002:4;3993:6;3985;3981:19;3977:30;3970:41;;;;3385:632;;;;;:::o;4022:451::-;4091:6;4144:2;4132:9;4123:7;4119:23;4115:32;4112:52;;;4160:1;4157;4150:12;4112:52;4200:9;4187:23;-1:-1:-1;;;;;4225:6:1;4222:30;4219:50;;;4265:1;4262;4255:12;4219:50;4288:22;;4341:4;4333:13;;4329:27;-1:-1:-1;4319:55:1;;4370:1;4367;4360:12;4319:55;4393:74;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4393:74;:::i;4478:592::-;4549:6;4557;4610:2;4598:9;4589:7;4585:23;4581:32;4578:52;;;4626:1;4623;4616:12;4578:52;4666:9;4653:23;-1:-1:-1;;;;;4736:2:1;4728:6;4725:14;4722:34;;;4752:1;4749;4742:12;4722:34;4790:6;4779:9;4775:22;4765:32;;4835:7;4828:4;4824:2;4820:13;4816:27;4806:55;;4857:1;4854;4847:12;4806:55;4897:2;4884:16;4923:2;4915:6;4912:14;4909:34;;;4939:1;4936;4929:12;4909:34;4984:7;4979:2;4970:6;4966:2;4962:15;4958:24;4955:37;4952:57;;;5005:1;5002;4995:12;4952:57;5036:2;5028:11;;;;;5058:6;;-1:-1:-1;4478:592:1;;-1:-1:-1;;;;4478:592:1:o;5075:315::-;5140:6;5148;5201:2;5189:9;5180:7;5176:23;5172:32;5169:52;;;5217:1;5214;5207:12;5169:52;5240:29;5259:9;5240:29;:::i;:::-;5230:39;;5319:2;5308:9;5304:18;5291:32;5332:28;5354:5;5332:28;:::i;:::-;5379:5;5369:15;;;5075:315;;;;;:::o;5395:667::-;5490:6;5498;5506;5514;5567:3;5555:9;5546:7;5542:23;5538:33;5535:53;;;5584:1;5581;5574:12;5535:53;5607:29;5626:9;5607:29;:::i;:::-;5597:39;;5655:38;5689:2;5678:9;5674:18;5655:38;:::i;:::-;5645:48;;5740:2;5729:9;5725:18;5712:32;5702:42;;5795:2;5784:9;5780:18;5767:32;-1:-1:-1;;;;;5814:6:1;5811:30;5808:50;;;5854:1;5851;5844:12;5808:50;5877:22;;5930:4;5922:13;;5918:27;-1:-1:-1;5908:55:1;;5959:1;5956;5949:12;5908:55;5982:74;6048:7;6043:2;6030:16;6025:2;6021;6017:11;5982:74;:::i;:::-;5972:84;;;5395:667;;;;;;;:::o;6067:260::-;6135:6;6143;6196:2;6184:9;6175:7;6171:23;6167:32;6164:52;;;6212:1;6209;6202:12;6164:52;6235:29;6254:9;6235:29;:::i;:::-;6225:39;;6283:38;6317:2;6306:9;6302:18;6283:38;:::i;:::-;6273:48;;6067:260;;;;;:::o;6332:254::-;6400:6;6408;6461:2;6449:9;6440:7;6436:23;6432:32;6429:52;;;6477:1;6474;6467:12;6429:52;6513:9;6500:23;6490:33;;6542:38;6576:2;6565:9;6561:18;6542:38;:::i;6591:380::-;6670:1;6666:12;;;;6713;;;6734:61;;6788:4;6780:6;6776:17;6766:27;;6734:61;6841:2;6833:6;6830:14;6810:18;6807:38;6804:161;;6887:10;6882:3;6878:20;6875:1;6868:31;6922:4;6919:1;6912:15;6950:4;6947:1;6940:15;6804:161;;6591:380;;;:::o;7805:356::-;8007:2;7989:21;;;8026:18;;;8019:30;8085:34;8080:2;8065:18;;8058:62;8152:2;8137:18;;7805:356::o;8862:545::-;8964:2;8959:3;8956:11;8953:448;;;9000:1;9025:5;9021:2;9014:17;9070:4;9066:2;9056:19;9140:2;9128:10;9124:19;9121:1;9117:27;9111:4;9107:38;9176:4;9164:10;9161:20;9158:47;;;-1:-1:-1;9199:4:1;9158:47;9254:2;9249:3;9245:12;9242:1;9238:20;9232:4;9228:31;9218:41;;9309:82;9327:2;9320:5;9317:13;9309:82;;;9372:17;;;9353:1;9342:13;9309:82;;;9313:3;;;8862:545;;;:::o;9583:1352::-;9709:3;9703:10;-1:-1:-1;;;;;9728:6:1;9725:30;9722:56;;;9758:18;;:::i;:::-;9787:97;9877:6;9837:38;9869:4;9863:11;9837:38;:::i;:::-;9831:4;9787:97;:::i;:::-;9939:4;;10003:2;9992:14;;10020:1;10015:663;;;;10722:1;10739:6;10736:89;;;-1:-1:-1;10791:19:1;;;10785:26;10736:89;-1:-1:-1;;9540:1:1;9536:11;;;9532:24;9528:29;9518:40;9564:1;9560:11;;;9515:57;10838:81;;9985:944;;10015:663;8809:1;8802:14;;;8846:4;8833:18;;-1:-1:-1;;10051:20:1;;;10169:236;10183:7;10180:1;10177:14;10169:236;;;10272:19;;;10266:26;10251:42;;10364:27;;;;10332:1;10320:14;;;;10199:19;;10169:236;;;10173:3;10433:6;10424:7;10421:19;10418:201;;;10494:19;;;10488:26;-1:-1:-1;;10577:1:1;10573:14;;;10589:3;10569:24;10565:37;10561:42;10546:58;10531:74;;10418:201;-1:-1:-1;;;;;10665:1:1;10649:14;;;10645:22;10632:36;;-1:-1:-1;9583:1352:1:o;10940:1206::-;-1:-1:-1;;;;;11059:3:1;11056:27;11053:53;;;11086:18;;:::i;:::-;11115:94;11205:3;11165:38;11197:4;11191:11;11165:38;:::i;:::-;11159:4;11115:94;:::i;:::-;11235:1;11260:2;11255:3;11252:11;11277:1;11272:616;;;;11932:1;11949:3;11946:93;;;-1:-1:-1;12005:19:1;;;11992:33;11946:93;-1:-1:-1;;9540:1:1;9536:11;;;9532:24;9528:29;9518:40;9564:1;9560:11;;;9515:57;12052:78;;11245:895;;11272:616;8809:1;8802:14;;;8846:4;8833:18;;-1:-1:-1;;11308:17:1;;;11409:9;11431:229;11445:7;11442:1;11439:14;11431:229;;;11534:19;;;11521:33;11506:49;;11641:4;11626:20;;;;11594:1;11582:14;;;;11461:12;11431:229;;;11435:3;11688;11679:7;11676:16;11673:159;;;11812:1;11808:6;11802:3;11796;11793:1;11789:11;11785:21;11781:34;11777:39;11764:9;11759:3;11755:19;11742:33;11738:79;11730:6;11723:95;11673:159;;;11875:1;11869:3;11866:1;11862:11;11858:19;11852:4;11845:33;11245:895;;10940:1206;;;:::o;12500:127::-;12561:10;12556:3;12552:20;12549:1;12542:31;12592:4;12589:1;12582:15;12616:4;12613:1;12606:15;12632:125;12697:9;;;12718:10;;;12715:36;;;12731:18;;:::i;13463:168::-;13536:9;;;13567;;13584:15;;;13578:22;;13564:37;13554:71;;13605:18;;:::i;14693:415::-;14895:2;14877:21;;;14934:2;14914:18;;;14907:30;14973:34;14968:2;14953:18;;14946:62;-1:-1:-1;;;15039:2:1;15024:18;;15017:49;15098:3;15083:19;;14693:415::o;15461:496::-;15640:3;15678:6;15672:13;15694:66;15753:6;15748:3;15741:4;15733:6;15729:17;15694:66;:::i;:::-;15823:13;;15782:16;;;;15845:70;15823:13;15782:16;15892:4;15880:17;;15845:70;:::i;:::-;15931:20;;15461:496;-1:-1:-1;;;;15461:496:1:o;16678:245::-;16745:6;16798:2;16786:9;16777:7;16773:23;16769:32;16766:52;;;16814:1;16811;16804:12;16766:52;16846:9;16840:16;16865:28;16887:5;16865:28;:::i;16928:489::-;-1:-1:-1;;;;;17197:15:1;;;17179:34;;17249:15;;17244:2;17229:18;;17222:43;17296:2;17281:18;;17274:34;;;17344:3;17339:2;17324:18;;17317:31;;;17122:4;;17365:46;;17391:19;;17383:6;17365:46;:::i;:::-;17357:54;16928:489;-1:-1:-1;;;;;;16928:489:1:o;17422:249::-;17491:6;17544:2;17532:9;17523:7;17519:23;17515:32;17512:52;;;17560:1;17557;17550:12;17512:52;17592:9;17586:16;17611:30;17635:5;17611:30;:::i;17676:135::-;17715:3;17736:17;;;17733:43;;17756:18;;:::i;:::-;-1:-1:-1;17803:1:1;17792:13;;17676:135::o;17816:127::-;17877:10;17872:3;17868:20;17865:1;17858:31;17908:4;17905:1;17898:15;17932:4;17929:1;17922:15;17948:120;17988:1;18014;18004:35;;18019:18;;:::i;:::-;-1:-1:-1;18053:9:1;;17948:120::o;18073:128::-;18140:9;;;18161:11;;;18158:37;;;18175:18;;:::i;18206:112::-;18238:1;18264;18254:35;;18269:18;;:::i;:::-;-1:-1:-1;18303:9:1;;18206:112::o;18323:127::-;18384:10;18379:3;18375:20;18372:1;18365:31;18415:4;18412:1;18405:15;18439:4;18436:1;18429:15
Swarm Source
ipfs://2e52482c28a98b787e0736bd08c09087d3c37e9669847a338939d1f4017e849d
Loading...
Loading
Loading...
Loading
[ 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.