ERC-721
Overview
Max Total Supply
445 WODW
Holders
47
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
11 WODWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WODW
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-29 */ pragma solidity 0.8.11; // Part: OpenZeppelin/[email protected]/Address /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } // Part: OpenZeppelin/[email protected]/Context /** * @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; } } // Part: OpenZeppelin/[email protected]/IERC165 /** * @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); } // Part: OpenZeppelin/[email protected]/IERC721Receiver /** * @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); } // Part: OpenZeppelin/[email protected]/ReentrancyGuard /** * @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; } } // Part: OpenZeppelin/[email protected]/Strings /** * @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); } } // Part: OpenZeppelin/[email protected]/ERC165 /** * @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; } } // Part: OpenZeppelin/[email protected]/IERC721 /** * @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; } // Part: OpenZeppelin/[email protected]/Ownable /** * @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); } } // Part: OpenZeppelin/[email protected]/IERC721Metadata /** * @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); } // Part: ERC721A contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function totalSupply() public view returns (uint256) { return currentIndex; } /** * @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) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received( address(0), to, updatedIndex, _data ), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership .startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: WOWD.sol contract WODW is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public PRICE; uint256 public MAX_SUPPLY; string private BASE_URI; uint256 public FREE_MINT_LIMIT_PER_WALLET; uint256 public MAX_MINT_AMOUNT_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_IS_ALLOWED_UNTIL; mapping(address => uint256) private freeMintCountMap; constructor( uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil ) ERC721A("WODW", "WODW") { PRICE = price; MAX_SUPPLY = maxSupply; BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } /** FREE MINT **/ function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } function freeMintCount(address addr) public view returns (uint256) { return freeMintCountMap[addr]; } /** GETTERS **/ function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } /** SETTERS **/ function setBaseURI(string memory customBaseURI_) external onlyOwner { BASE_URI = customBaseURI_; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } /** MINT **/ modifier mintCompliance(uint256 _mintAmount) { require( _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!" ); require( currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!" ); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } /** PAYOUT **/ address private payoutAddress = 0xf0007f447c416f49b5c21E9502bD3a79d3B80025; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress), balance); } function setPayoutAddress(address addy) external onlyOwner { payoutAddress = addy; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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
6080604052601180546001600160a01b03191673f0007f447c416f49b5c21e9502bd3a79d3b800251790553480156200003757600080fd5b5060405162002348380380620023488339810160408190526200005a9162000243565b604080518082018252600480825263574f445760e01b602080840182815285518087019096529285528401528151919291620000999160019162000171565b508051620000af90600290602084019062000171565b505050620000cc620000c66200011b60201b60201c565b6200011f565b60016008556009879055600a8690558451620000f090600b90602088019062000171565b50600c93909355600d91909155600e805460ff1916911515919091179055600f5550620003a3915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000366565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b634e487b7160e01b600052604160045260246000fd5b805180151581146200023e57600080fd5b919050565b600080600080600080600060e0888a0312156200025f57600080fd5b87516020808a015160408b01519299509750906001600160401b03808211156200028857600080fd5b818b0191508b601f8301126200029d57600080fd5b815181811115620002b257620002b262000217565b604051601f8201601f19908116603f01168101908382118183101715620002dd57620002dd62000217565b816040528281528e86848701011115620002f657600080fd5b600093505b828410156200031a5784840186015181850187015292850192620002fb565b828411156200032c5760008684830101525b809a5050505050505060608801519350608088015192506200035160a089016200022d565b915060c0880151905092959891949750929550565b600181811c908216806200037b57607f821691505b602082108114156200039d57634e487b7160e01b600052602260045260246000fd5b50919050565b611f9580620003b36000396000f3fe6080604052600436106101cd5760003560e01c80635ecf8a80116100f75780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde146104f4578063c87b56dd14610514578063e985e9c514610534578063f2fde38b1461057d57600080fd5b80638da5cb5b1461048e57806395d89b41146104ac578063a0712d68146104c1578063a22cb465146104d457600080fd5b8063715018a6116100d1578063715018a61461042957806376d02b711461043e578063841718a6146104585780638d859f3e1461047857600080fd5b80635ecf8a80146103b35780636352211e146103e957806370a082311461040957600080fd5b806323b872dd1161016f5780634065b85f1161013e5780634065b85f1461033d578063408cbf941461035357806342842e0e1461037357806355f804b31461039357600080fd5b806323b872dd146102d257806332cb6b0c146102f257806333ea51a8146103085780633ccfd60b1461032857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309ef65271461028357806310b0c052146102a757806318160ddd146102bd57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a19565b61059d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ef565b6040516101fe9190611a8e565b34801561023557600080fd5b50610249610244366004611aa1565b610681565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ad6565b610711565b005b34801561028f57600080fd5b50610299600d5481565b6040519081526020016101fe565b3480156102b357600080fd5b50610299600c5481565b3480156102c957600080fd5b50600054610299565b3480156102de57600080fd5b506102816102ed366004611b00565b610829565b3480156102fe57600080fd5b50610299600a5481565b34801561031457600080fd5b50610281610323366004611b3c565b610834565b34801561033457600080fd5b50610281610880565b34801561034957600080fd5b50610299600f5481565b34801561035f57600080fd5b5061028161036e366004611ad6565b610922565b34801561037f57600080fd5b5061028161038e366004611b00565b610a02565b34801561039f57600080fd5b506102816103ae366004611be3565b610a1d565b3480156103bf57600080fd5b506102996103ce366004611b3c565b6001600160a01b031660009081526010602052604090205490565b3480156103f557600080fd5b50610249610404366004611aa1565b610a5e565b34801561041557600080fd5b50610299610424366004611b3c565b610a70565b34801561043557600080fd5b50610281610b01565b34801561044a57600080fd5b50600e546101f29060ff1681565b34801561046457600080fd5b50610281610473366004611c3c565b610b37565b34801561048457600080fd5b5061029960095481565b34801561049a57600080fd5b506007546001600160a01b0316610249565b3480156104b857600080fd5b5061021c610b74565b6102816104cf366004611aa1565b610b83565b3480156104e057600080fd5b506102816104ef366004611c57565b610d5e565b34801561050057600080fd5b5061028161050f366004611c8a565b610e23565b34801561052057600080fd5b5061021c61052f366004611aa1565b610e5c565b34801561054057600080fd5b506101f261054f366004611d06565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058957600080fd5b50610281610598366004611b3c565b610f2a565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105fe90611d30565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611d30565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068e826000541190565b6106f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071c82610a5e565b9050806001600160a01b0316836001600160a01b0316141561078b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806107a757506107a7813361054f565b6108195760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b610824838383610fc5565b505050565b610824838383611021565b6007546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106ec90611d6b565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146108aa5760405162461bcd60e51b81526004016106ec90611d6b565b600260085414156108fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ec565b6002600855601154479061091a906001600160a01b031682611306565b506001600855565b806000811180156109355750600d548111155b6109785760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106ec565b600a54816000546109899190611db6565b11156109ce5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ec565b6007546001600160a01b031633146109f85760405162461bcd60e51b81526004016106ec90611d6b565b610824838361141f565b61082483838360405180602001604052806000815250610e23565b6007546001600160a01b03163314610a475760405162461bcd60e51b81526004016106ec90611d6b565b8051610a5a90600b90602084019061196a565b5050565b6000610a6982611439565b5192915050565b60006001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610b2b5760405162461bcd60e51b81526004016106ec90611d6b565b610b356000611510565b565b6007546001600160a01b03163314610b615760405162461bcd60e51b81526004016106ec90611d6b565b600e805460ff1916911515919091179055565b6060600280546105fe90611d30565b80600081118015610b965750600d548111155b610bd95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106ec565b600a5481600054610bea9190611db6565b1115610c2f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ec565b600e5460ff16610c775760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b60448201526064016106ec565b600082600954610c879190611dce565b9050600f546000541015610d0e5733600090815260106020526040812054600c54610cb29190611ded565b90508015610d0c57808410610ce957600954610cce9082611dce565b610cd89083611ded565b9150610ce43382611562565b610d0c565b600954610cf69085611dce565b610d009083611ded565b9150610d0c3385611562565b505b80341015610d545760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106ec565b610824338461141f565b6001600160a01b038216331415610db75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e2e848484611021565b610e3a84848484611593565b610e565760405162461bcd60e51b81526004016106ec90611e04565b50505050565b6060610e69826000541190565b610ecd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ec565b6000610ed7611692565b9050805160001415610ef85760405180602001604052806000815250610f23565b80610f02846116a1565b604051602001610f13929190611e57565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f545760405162461bcd60e51b81526004016106ec90611d6b565b6001600160a01b038116610fb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610fc281611510565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102c82611439565b80519091506000906001600160a01b0316336001600160a01b0316148061106357503361105884610681565b6001600160a01b0316145b8061107557508151611075903361054f565b9050806110df5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b0316146111535760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166111b75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6111c76000848460000151610fc5565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166112bc5761126f816000541190565b156112bc578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106ec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113a3576040519150601f19603f3d011682016040523d82523d6000602084013e6113a8565b606091505b50509050806108245760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106ec565b610a5a82826040518060200160405280600081525061179f565b6040805180820190915260008082526020820152611458826000541190565b6114b75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611506579392505050565b50600019016114b9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601060205260408120805483929061158a908490611db6565b90915550505050565b60006001600160a01b0384163b1561168657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d7903390899088908890600401611e96565b6020604051808303816000875af1925050508015611612575060408051601f3d908101601f1916820190925261160f91810190611ed3565b60015b61166c573d808015611640576040519150601f19603f3d011682016040523d82523d6000602084013e611645565b606091505b5080516116645760405162461bcd60e51b81526004016106ec90611e04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061168a565b5060015b949350505050565b6060600b80546105fe90611d30565b6060816116c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ef57806116d981611ef0565b91506116e89050600a83611f21565b91506116c9565b60008167ffffffffffffffff81111561170a5761170a611b57565b6040519080825280601f01601f191660200182016040528015611734576020820181803683370190505b5090505b841561168a57611749600183611ded565b9150611756600a86611f35565b611761906030611db6565b60f81b81838151811061177657611776611f49565b60200101906001600160f81b031916908160001a905350611798600a86611f21565b9450611738565b61082483838360016000546001600160a01b03851661180a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b836118685760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106ec565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119615760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611955576119396000888488611593565b6119555760405162461bcd60e51b81526004016106ec90611e04565b600191820191016118e6565b506000556112ff565b82805461197690611d30565b90600052602060002090601f01602090048101928261199857600085556119de565b82601f106119b157805160ff19168380011785556119de565b828001600101855582156119de579182015b828111156119de5782518255916020019190600101906119c3565b506119ea9291506119ee565b5090565b5b808211156119ea57600081556001016119ef565b6001600160e01b031981168114610fc257600080fd5b600060208284031215611a2b57600080fd5b8135610f2381611a03565b60005b83811015611a51578181015183820152602001611a39565b83811115610e565750506000910152565b60008151808452611a7a816020860160208601611a36565b601f01601f19169290920160200192915050565b602081526000610f236020830184611a62565b600060208284031215611ab357600080fd5b5035919050565b80356001600160a01b0381168114611ad157600080fd5b919050565b60008060408385031215611ae957600080fd5b611af283611aba565b946020939093013593505050565b600080600060608486031215611b1557600080fd5b611b1e84611aba565b9250611b2c60208501611aba565b9150604084013590509250925092565b600060208284031215611b4e57600080fd5b610f2382611aba565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b8857611b88611b57565b604051601f8501601f19908116603f01168101908282118183101715611bb057611bb0611b57565b81604052809350858152868686011115611bc957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bf557600080fd5b813567ffffffffffffffff811115611c0c57600080fd5b8201601f81018413611c1d57600080fd5b61168a84823560208401611b6d565b80358015158114611ad157600080fd5b600060208284031215611c4e57600080fd5b610f2382611c2c565b60008060408385031215611c6a57600080fd5b611c7383611aba565b9150611c8160208401611c2c565b90509250929050565b60008060008060808587031215611ca057600080fd5b611ca985611aba565b9350611cb760208601611aba565b925060408501359150606085013567ffffffffffffffff811115611cda57600080fd5b8501601f81018713611ceb57600080fd5b611cfa87823560208401611b6d565b91505092959194509250565b60008060408385031215611d1957600080fd5b611d2283611aba565b9150611c8160208401611aba565b600181811c90821680611d4457607f821691505b60208210811415611d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dc957611dc9611da0565b500190565b6000816000190483118215151615611de857611de8611da0565b500290565b600082821015611dff57611dff611da0565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e69818460208801611a36565b835190830190611e7d818360208801611a36565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec990830184611a62565b9695505050505050565b600060208284031215611ee557600080fd5b8151610f2381611a03565b6000600019821415611f0457611f04611da0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f3057611f30611f0b565b500490565b600082611f4457611f44611f0b565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a919f40fb6ae58c3ec537cbdd11c444b1cafb8a7e61bbbe8c28d4b689e49e3f064736f6c634300080b0033000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000115c00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001bc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6467703367595a6641467165504371454d7667764454374c316a736b51386350684242337a707941786f77692f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80635ecf8a80116100f75780638da5cb5b11610095578063b88d4fde11610064578063b88d4fde146104f4578063c87b56dd14610514578063e985e9c514610534578063f2fde38b1461057d57600080fd5b80638da5cb5b1461048e57806395d89b41146104ac578063a0712d68146104c1578063a22cb465146104d457600080fd5b8063715018a6116100d1578063715018a61461042957806376d02b711461043e578063841718a6146104585780638d859f3e1461047857600080fd5b80635ecf8a80146103b35780636352211e146103e957806370a082311461040957600080fd5b806323b872dd1161016f5780634065b85f1161013e5780634065b85f1461033d578063408cbf941461035357806342842e0e1461037357806355f804b31461039357600080fd5b806323b872dd146102d257806332cb6b0c146102f257806333ea51a8146103085780633ccfd60b1461032857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309ef65271461028357806310b0c052146102a757806318160ddd146102bd57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a19565b61059d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ef565b6040516101fe9190611a8e565b34801561023557600080fd5b50610249610244366004611aa1565b610681565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ad6565b610711565b005b34801561028f57600080fd5b50610299600d5481565b6040519081526020016101fe565b3480156102b357600080fd5b50610299600c5481565b3480156102c957600080fd5b50600054610299565b3480156102de57600080fd5b506102816102ed366004611b00565b610829565b3480156102fe57600080fd5b50610299600a5481565b34801561031457600080fd5b50610281610323366004611b3c565b610834565b34801561033457600080fd5b50610281610880565b34801561034957600080fd5b50610299600f5481565b34801561035f57600080fd5b5061028161036e366004611ad6565b610922565b34801561037f57600080fd5b5061028161038e366004611b00565b610a02565b34801561039f57600080fd5b506102816103ae366004611be3565b610a1d565b3480156103bf57600080fd5b506102996103ce366004611b3c565b6001600160a01b031660009081526010602052604090205490565b3480156103f557600080fd5b50610249610404366004611aa1565b610a5e565b34801561041557600080fd5b50610299610424366004611b3c565b610a70565b34801561043557600080fd5b50610281610b01565b34801561044a57600080fd5b50600e546101f29060ff1681565b34801561046457600080fd5b50610281610473366004611c3c565b610b37565b34801561048457600080fd5b5061029960095481565b34801561049a57600080fd5b506007546001600160a01b0316610249565b3480156104b857600080fd5b5061021c610b74565b6102816104cf366004611aa1565b610b83565b3480156104e057600080fd5b506102816104ef366004611c57565b610d5e565b34801561050057600080fd5b5061028161050f366004611c8a565b610e23565b34801561052057600080fd5b5061021c61052f366004611aa1565b610e5c565b34801561054057600080fd5b506101f261054f366004611d06565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561058957600080fd5b50610281610598366004611b3c565b610f2a565b60006001600160e01b031982166380ac58cd60e01b14806105ce57506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105fe90611d30565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611d30565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068e826000541190565b6106f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071c82610a5e565b9050806001600160a01b0316836001600160a01b0316141561078b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806107a757506107a7813361054f565b6108195760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b610824838383610fc5565b505050565b610824838383611021565b6007546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106ec90611d6b565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146108aa5760405162461bcd60e51b81526004016106ec90611d6b565b600260085414156108fd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106ec565b6002600855601154479061091a906001600160a01b031682611306565b506001600855565b806000811180156109355750600d548111155b6109785760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106ec565b600a54816000546109899190611db6565b11156109ce5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ec565b6007546001600160a01b031633146109f85760405162461bcd60e51b81526004016106ec90611d6b565b610824838361141f565b61082483838360405180602001604052806000815250610e23565b6007546001600160a01b03163314610a475760405162461bcd60e51b81526004016106ec90611d6b565b8051610a5a90600b90602084019061196a565b5050565b6000610a6982611439565b5192915050565b60006001600160a01b038216610adc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610b2b5760405162461bcd60e51b81526004016106ec90611d6b565b610b356000611510565b565b6007546001600160a01b03163314610b615760405162461bcd60e51b81526004016106ec90611d6b565b600e805460ff1916911515919091179055565b6060600280546105fe90611d30565b80600081118015610b965750600d548111155b610bd95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016106ec565b600a5481600054610bea9190611db6565b1115610c2f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016106ec565b600e5460ff16610c775760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b60448201526064016106ec565b600082600954610c879190611dce565b9050600f546000541015610d0e5733600090815260106020526040812054600c54610cb29190611ded565b90508015610d0c57808410610ce957600954610cce9082611dce565b610cd89083611ded565b9150610ce43382611562565b610d0c565b600954610cf69085611dce565b610d009083611ded565b9150610d0c3385611562565b505b80341015610d545760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016106ec565b610824338461141f565b6001600160a01b038216331415610db75760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e2e848484611021565b610e3a84848484611593565b610e565760405162461bcd60e51b81526004016106ec90611e04565b50505050565b6060610e69826000541190565b610ecd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ec565b6000610ed7611692565b9050805160001415610ef85760405180602001604052806000815250610f23565b80610f02846116a1565b604051602001610f13929190611e57565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f545760405162461bcd60e51b81526004016106ec90611d6b565b6001600160a01b038116610fb95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610fc281611510565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061102c82611439565b80519091506000906001600160a01b0316336001600160a01b0316148061106357503361105884610681565b6001600160a01b0316145b8061107557508151611075903361054f565b9050806110df5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b0316146111535760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166111b75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6111c76000848460000151610fc5565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166112bc5761126f816000541190565b156112bc578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156113565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016106ec565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113a3576040519150601f19603f3d011682016040523d82523d6000602084013e6113a8565b606091505b50509050806108245760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106ec565b610a5a82826040518060200160405280600081525061179f565b6040805180820190915260008082526020820152611458826000541190565b6114b75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611506579392505050565b50600019016114b9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152601060205260408120805483929061158a908490611db6565b90915550505050565b60006001600160a01b0384163b1561168657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d7903390899088908890600401611e96565b6020604051808303816000875af1925050508015611612575060408051601f3d908101601f1916820190925261160f91810190611ed3565b60015b61166c573d808015611640576040519150601f19603f3d011682016040523d82523d6000602084013e611645565b606091505b5080516116645760405162461bcd60e51b81526004016106ec90611e04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061168a565b5060015b949350505050565b6060600b80546105fe90611d30565b6060816116c55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ef57806116d981611ef0565b91506116e89050600a83611f21565b91506116c9565b60008167ffffffffffffffff81111561170a5761170a611b57565b6040519080825280601f01601f191660200182016040528015611734576020820181803683370190505b5090505b841561168a57611749600183611ded565b9150611756600a86611f35565b611761906030611db6565b60f81b81838151811061177657611776611f49565b60200101906001600160f81b031916908160001a905350611798600a86611f21565b9450611738565b61082483838360016000546001600160a01b03851661180a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b836118685760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106ec565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119615760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611955576119396000888488611593565b6119555760405162461bcd60e51b81526004016106ec90611e04565b600191820191016118e6565b506000556112ff565b82805461197690611d30565b90600052602060002090601f01602090048101928261199857600085556119de565b82601f106119b157805160ff19168380011785556119de565b828001600101855582156119de579182015b828111156119de5782518255916020019190600101906119c3565b506119ea9291506119ee565b5090565b5b808211156119ea57600081556001016119ef565b6001600160e01b031981168114610fc257600080fd5b600060208284031215611a2b57600080fd5b8135610f2381611a03565b60005b83811015611a51578181015183820152602001611a39565b83811115610e565750506000910152565b60008151808452611a7a816020860160208601611a36565b601f01601f19169290920160200192915050565b602081526000610f236020830184611a62565b600060208284031215611ab357600080fd5b5035919050565b80356001600160a01b0381168114611ad157600080fd5b919050565b60008060408385031215611ae957600080fd5b611af283611aba565b946020939093013593505050565b600080600060608486031215611b1557600080fd5b611b1e84611aba565b9250611b2c60208501611aba565b9150604084013590509250925092565b600060208284031215611b4e57600080fd5b610f2382611aba565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b8857611b88611b57565b604051601f8501601f19908116603f01168101908282118183101715611bb057611bb0611b57565b81604052809350858152868686011115611bc957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611bf557600080fd5b813567ffffffffffffffff811115611c0c57600080fd5b8201601f81018413611c1d57600080fd5b61168a84823560208401611b6d565b80358015158114611ad157600080fd5b600060208284031215611c4e57600080fd5b610f2382611c2c565b60008060408385031215611c6a57600080fd5b611c7383611aba565b9150611c8160208401611c2c565b90509250929050565b60008060008060808587031215611ca057600080fd5b611ca985611aba565b9350611cb760208601611aba565b925060408501359150606085013567ffffffffffffffff811115611cda57600080fd5b8501601f81018713611ceb57600080fd5b611cfa87823560208401611b6d565b91505092959194509250565b60008060408385031215611d1957600080fd5b611d2283611aba565b9150611c8160208401611aba565b600181811c90821680611d4457607f821691505b60208210811415611d6557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dc957611dc9611da0565b500190565b6000816000190483118215151615611de857611de8611da0565b500290565b600082821015611dff57611dff611da0565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e69818460208801611a36565b835190830190611e7d818360208801611a36565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec990830184611a62565b9695505050505050565b600060208284031215611ee557600080fd5b8151610f2381611a03565b6000600019821415611f0457611f04611da0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f3057611f30611f0b565b500490565b600082611f4457611f44611f0b565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220a919f40fb6ae58c3ec537cbdd11c444b1cafb8a7e61bbbe8c28d4b689e49e3f064736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000002386f26fc10000000000000000000000000000000000000000000000000000000000000000115c00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001bc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6467703367595a6641467165504371454d7667764454374c316a736b51386350684242337a707941786f77692f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : price (uint256): 10000000000000000
Arg [1] : maxSupply (uint256): 4444
Arg [2] : baseUri (string): https://gateway.pinata.cloud/ipfs/Qmdgp3gYZfAFqePCqEMvgvDT7L1jskQ8cPhBB3zpyAxowi/
Arg [3] : freeMintAllowance (uint256): 15
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): False
Arg [6] : freeMintIsAllowedUntil (uint256): 444
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001bc
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d6467703367595a6641467165504371454d7667764454374c316a736b
Arg [10] : 51386350684242337a707941786f77692f000000000000000000000000000000
Deployed Bytecode Sourcemap
39511:3520:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25559:355;;;;;;;;;;-1:-1:-1;25559:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25559:355:0;;;;;;;;27534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29239:292::-;;;;;;;;;;-1:-1:-1;29239:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29239:292:0;1528:203:1;28760:413:0;;;;;;;;;;-1:-1:-1;28760:413:0;;;;;:::i;:::-;;:::i;:::-;;39740:37;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;39740:37:0;2173:177:1;39692:41:0;;;;;;;;;;;;;;;;25396:91;;;;;;;;;;-1:-1:-1;25440:7:0;25467:12;25396:91;;30266:162;;;;;;;;;;-1:-1:-1;30266:162:0;;;;;:::i;:::-;;:::i;39630:25::-;;;;;;;;;;;;;;;;42930:98;;;;;;;;;;-1:-1:-1;42930:98:0;;;;;:::i;:::-;;:::i;42753:169::-;;;;;;;;;;;;;:::i;39817:41::-;;;;;;;;;;;;;;;;42464:176;;;;;;;;;;-1:-1:-1;42464:176:0;;;;;:::i;:::-;;:::i;30499:177::-;;;;;;;;;;-1:-1:-1;30499:177:0;;;;;:::i;:::-;;:::i;40939:113::-;;;;;;;;;;-1:-1:-1;40939:113:0;;;;;:::i;:::-;;:::i;40653:115::-;;;;;;;;;;-1:-1:-1;40653:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;40738:22:0;40711:7;40738:22;;;:16;:22;;;;;;;40653:115;27343:124;;;;;;;;;;-1:-1:-1;27343:124:0;;;;;:::i;:::-;;:::i;25978:258::-;;;;;;;;;;-1:-1:-1;25978:258:0;;;;;:::i;:::-;;:::i;22704:103::-;;;;;;;;;;;;;:::i;39784:26::-;;;;;;;;;;-1:-1:-1;39784:26:0;;;;;;;;41060:109;;;;;;;;;;-1:-1:-1;41060:109:0;;;;;:::i;:::-;;:::i;39603:20::-;;;;;;;;;;;;;;;;22053:87;;;;;;;;;;-1:-1:-1;22126:6:0;;-1:-1:-1;;;;;22126:6:0;22053:87;;27703:104;;;;;;;;;;;;;:::i;41528:928::-;;;;;;:::i;:::-;;:::i;29603:311::-;;;;;;;;;;-1:-1:-1;29603:311:0;;;;;:::i;:::-;;:::i;30747:355::-;;;;;;;;;;-1:-1:-1;30747:355:0;;;;;:::i;:::-;;:::i;27878:478::-;;;;;;;;;;-1:-1:-1;27878:478:0;;;;;:::i;:::-;;:::i;29985:214::-;;;;;;;;;;-1:-1:-1;29985:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;30156:25:0;;;30127:4;30156:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29985:214;22962:201;;;;;;;;;;-1:-1:-1;22962:201:0;;;;;:::i;:::-;;:::i;25559:355::-;25706:4;-1:-1:-1;;;;;;25748:40:0;;-1:-1:-1;;;25748:40:0;;:105;;-1:-1:-1;;;;;;;25805:48:0;;-1:-1:-1;;;25805:48:0;25748:105;:158;;;-1:-1:-1;;;;;;;;;;16248:40:0;;;25870:36;25728:178;25559:355;-1:-1:-1;;25559:355:0:o;27534:100::-;27588:13;27621:5;27614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27534:100;:::o;29239:292::-;29343:7;29390:16;29398:7;31414:4;31448:12;-1:-1:-1;31438:22:0;31357:111;29390:16;29368:111;;;;-1:-1:-1;;;29368:111:0;;6237:2:1;29368:111:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:43;6419:19;;29368:111:0;;;;;;;;;-1:-1:-1;29499:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29499:24:0;;29239:292::o;28760:413::-;28833:13;28849:24;28865:7;28849:15;:24::i;:::-;28833:40;;28898:5;-1:-1:-1;;;;;28892:11:0;:2;-1:-1:-1;;;;;28892:11:0;;;28884:58;;;;-1:-1:-1;;;28884:58:0;;6651:2:1;28884:58:0;;;6633:21:1;6690:2;6670:18;;;6663:30;6729:34;6709:18;;;6702:62;-1:-1:-1;;;6780:18:1;;;6773:32;6822:19;;28884:58:0;6449:398:1;28884:58:0;8787:10;-1:-1:-1;;;;;28977:21:0;;;;:62;;-1:-1:-1;29002:37:0;29019:5;8787:10;29985:214;:::i;29002:37::-;28955:169;;;;-1:-1:-1;;;28955:169:0;;7054:2:1;28955:169:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:27;7183:18;;;7176:55;7248:19;;28955:169:0;6852:421:1;28955:169:0;29137:28;29146:2;29150:7;29159:5;29137:8;:28::i;:::-;28822:351;28760:413;;:::o;30266:162::-;30392:28;30402:4;30408:2;30412:7;30392:9;:28::i;42930:98::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;43000:13:::1;:20:::0;;-1:-1:-1;;;;;;43000:20:0::1;-1:-1:-1::0;;;;;43000:20:0;;;::::1;::::0;;;::::1;::::0;;42930:98::o;42753:169::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;12386:1:::1;12984:7;;:19;;12976:63;;;::::0;-1:-1:-1;;;12976:63:0;;7841:2:1;12976:63:0::1;::::0;::::1;7823:21:1::0;7880:2;7860:18;;;7853:30;7919:33;7899:18;;;7892:61;7970:18;;12976:63:0::1;7639:355:1::0;12976:63:0::1;12386:1;13117:7;:18:::0;42890:13:::2;::::0;42832:21:::2;::::0;42864:50:::2;::::0;-1:-1:-1;;;;;42890:13:0::2;42832:21:::0;42864:17:::2;:50::i;:::-;-1:-1:-1::0;12342:1:0::1;13296:7;:22:::0;42753:169::o;42464:176::-;42557:11;41289:1;41275:11;:15;:56;;;;;41309:22;;41294:11;:37;;41275:56;41253:126;;;;-1:-1:-1;;;41253:126:0;;8201:2:1;41253:126:0;;;8183:21:1;8240:2;8220:18;;;8213:30;-1:-1:-1;;;8259:18:1;;;8252:50;8319:18;;41253:126:0;7999:344:1;41253:126:0;41442:10;;41427:11;41412:12;;:26;;;;:::i;:::-;:40;;41390:110;;;;-1:-1:-1;;;41390:110:0;;8815:2:1;41390:110:0;;;8797:21:1;8854:2;8834:18;;;8827:30;-1:-1:-1;;;8873:18:1;;;8866:50;8933:18;;41390:110:0;8613:344:1;41390:110:0;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23:::1;22265:68;;;;-1:-1:-1::0;;;22265:68:0::1;;;;;;;:::i;:::-;42605:27:::2;42615:3;42620:11;42605:9;:27::i;30499:177::-:0;30629:39;30646:4;30652:2;30656:7;30629:39;;;;;;;;;;;;:16;:39::i;40939:113::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;41019:25;;::::1;::::0;:8:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40939:113:::0;:::o;27343:124::-;27407:7;27434:20;27446:7;27434:11;:20::i;:::-;:25;;27343:124;-1:-1:-1;;27343:124:0:o;25978:258::-;26042:7;-1:-1:-1;;;;;26084:19:0;;26062:112;;;;-1:-1:-1;;;26062:112:0;;9164:2:1;26062:112:0;;;9146:21:1;9203:2;9183:18;;;9176:30;9242:34;9222:18;;;9215:62;-1:-1:-1;;;9293:18:1;;;9286:41;9344:19;;26062:112:0;8962:407:1;26062:112:0;-1:-1:-1;;;;;;26200:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26200:27:0;;25978:258::o;22704:103::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;22769:30:::1;22796:1;22769:18;:30::i;:::-;22704:103::o:0;41060:109::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;41132:14:::1;:29:::0;;-1:-1:-1;;41132:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41060:109::o;27703:104::-;27759:13;27792:7;27785:14;;;;;:::i;41528:928::-;41620:11;41289:1;41275:11;:15;:56;;;;;41309:22;;41294:11;:37;;41275:56;41253:126;;;;-1:-1:-1;;;41253:126:0;;8201:2:1;41253:126:0;;;8183:21:1;8240:2;8220:18;;;8213:30;-1:-1:-1;;;8259:18:1;;;8252:50;8319:18;;41253:126:0;7999:344:1;41253:126:0;41442:10;;41427:11;41412:12;;:26;;;;:::i;:::-;:40;;41390:110;;;;-1:-1:-1;;;41390:110:0;;8815:2:1;41390:110:0;;;8797:21:1;8854:2;8834:18;;;8827:30;-1:-1:-1;;;8873:18:1;;;8866:50;8933:18;;41390:110:0;8613:344:1;41390:110:0;41657:14:::1;::::0;::::1;;41649:46;;;::::0;-1:-1:-1;;;41649:46:0;;9576:2:1;41649:46:0::1;::::0;::::1;9558:21:1::0;9615:2;9595:18;;;9588:30;-1:-1:-1;;;9634:18:1;;;9627:49;9693:18;;41649:46:0::1;9374:343:1::0;41649:46:0::1;41708:13;41732:11;41724:5;;:19;;;;:::i;:::-;41708:35;;41775:26;;41760:12;;:41;41756:583;;;41909:10;41818:25;41892:28:::0;;;:16:::1;:28;::::0;;;;;41846:26:::1;::::0;:74:::1;::::0;41892:28;41846:74:::1;:::i;:::-;41818:102:::0;-1:-1:-1;41939:21:0;;41935:393:::1;;42000:17;41985:11;:32;41981:332;;42071:5;::::0;42051:25:::1;::::0;:17;:25:::1;:::i;:::-;42042:34;::::0;;::::1;:::i;:::-;;;42099:50;42119:10;42131:17;42099:19;:50::i;:::-;41981:332;;;42221:5;::::0;42207:19:::1;::::0;:11;:19:::1;:::i;:::-;42198:28;::::0;;::::1;:::i;:::-;;;42249:44;42269:10;42281:11;42249:19;:44::i;:::-;41803:536;41756:583;42372:5;42359:9;:18;;42351:50;;;::::0;-1:-1:-1;;;42351:50:0;;10227:2:1;42351:50:0::1;::::0;::::1;10209:21:1::0;10266:2;10246:18;;;10239:30;-1:-1:-1;;;10285:18:1;;;10278:49;10344:18;;42351:50:0::1;10025:343:1::0;42351:50:0::1;42414:34;42424:10;42436:11;42414:9;:34::i;29603:311::-:0;-1:-1:-1;;;;;29721:24:0;;8787:10;29721:24;;29713:63;;;;-1:-1:-1;;;29713:63:0;;10575:2:1;29713:63:0;;;10557:21:1;10614:2;10594:18;;;10587:30;10653:28;10633:18;;;10626:56;10699:18;;29713:63:0;10373:350:1;29713:63:0;8787:10;29789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29789:53:0;;;;;;;;;;29858:48;;540:41:1;;;29789:42:0;;8787:10;29858:48;;513:18:1;29858:48:0;;;;;;;29603:311;;:::o;30747:355::-;30906:28;30916:4;30922:2;30926:7;30906:9;:28::i;:::-;30967:48;30990:4;30996:2;31000:7;31009:5;30967:22;:48::i;:::-;30945:149;;;;-1:-1:-1;;;30945:149:0;;;;;;;:::i;:::-;30747:355;;;;:::o;27878:478::-;27996:13;28049:16;28057:7;31414:4;31448:12;-1:-1:-1;31438:22:0;31357:111;28049:16;28027:113;;;;-1:-1:-1;;;28027:113:0;;11350:2:1;28027:113:0;;;11332:21:1;11389:2;11369:18;;;11362:30;11428:34;11408:18;;;11401:62;-1:-1:-1;;;11479:18:1;;;11472:45;11534:19;;28027:113:0;11148:411:1;28027:113:0;28153:21;28177:10;:8;:10::i;:::-;28153:34;;28224:7;28218:21;28243:1;28218:26;;:130;;;;;;;;;;;;;;;;;28288:7;28297:18;:7;:16;:18::i;:::-;28271:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28218:130;28198:150;27878:478;-1:-1:-1;;;27878:478:0:o;22962:201::-;22126:6;;-1:-1:-1;;;;;22126:6:0;8787:10;22273:23;22265:68;;;;-1:-1:-1;;;22265:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23051:22:0;::::1;23043:73;;;::::0;-1:-1:-1;;;23043:73:0;;12408:2:1;23043:73:0::1;::::0;::::1;12390:21:1::0;12447:2;12427:18;;;12420:30;12486:34;12466:18;;;12459:62;-1:-1:-1;;;12537:18:1;;;12530:36;12583:19;;23043:73:0::1;12206:402:1::0;23043:73:0::1;23127:28;23146:8;23127:18;:28::i;:::-;22962:201:::0;:::o;36520:196::-;36635:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36635:29:0;-1:-1:-1;;;;;36635:29:0;;;;;;;;;36680:28;;36635:24;;36680:28;;;;;;;36520:196;;;:::o;34300:2102::-;34415:35;34453:20;34465:7;34453:11;:20::i;:::-;34528:18;;34415:58;;-1:-1:-1;34486:22:0;;-1:-1:-1;;;;;34512:34:0;8787:10;-1:-1:-1;;;;;34512:34:0;;:87;;;-1:-1:-1;8787:10:0;34563:20;34575:7;34563:11;:20::i;:::-;-1:-1:-1;;;;;34563:36:0;;34512:87;:154;;;-1:-1:-1;34633:18:0;;34616:50;;8787:10;29985:214;:::i;34616:50::-;34486:181;;34702:17;34680:117;;;;-1:-1:-1;;;34680:117:0;;12815:2:1;34680:117:0;;;12797:21:1;12854:2;12834:18;;;12827:30;12893:34;12873:18;;;12866:62;-1:-1:-1;;;12944:18:1;;;12937:48;13002:19;;34680:117:0;12613:414:1;34680:117:0;34854:4;-1:-1:-1;;;;;34832:26:0;:13;:18;;;-1:-1:-1;;;;;34832:26:0;;34810:114;;;;-1:-1:-1;;;34810:114:0;;13234:2:1;34810:114:0;;;13216:21:1;13273:2;13253:18;;;13246:30;13312:34;13292:18;;;13285:62;-1:-1:-1;;;13363:18:1;;;13356:36;13409:19;;34810:114:0;13032:402:1;34810:114:0;-1:-1:-1;;;;;34943:16:0;;34935:66;;;;-1:-1:-1;;;34935:66:0;;13641:2:1;34935:66:0;;;13623:21:1;13680:2;13660:18;;;13653:30;13719:34;13699:18;;;13692:62;-1:-1:-1;;;13770:18:1;;;13763:35;13815:19;;34935:66:0;13439:401:1;34935:66:0;35122:49;35139:1;35143:7;35152:13;:18;;;35122:8;:49::i;:::-;-1:-1:-1;;;;;35467:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;35467:31:0;;;-1:-1:-1;;;;;35467:31:0;;;-1:-1:-1;;35467:31:0;;;;;;;35513:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35513:29:0;;;;;;;;;;;;;35559:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35604:61:0;;;;-1:-1:-1;;;35649:15:0;35604:61;;;;;;35939:11;;;35969:24;;;;;:29;35939:11;;35969:29;35965:321;;36037:20;36045:11;31414:4;31448:12;-1:-1:-1;31438:22:0;31357:111;36037:20;36033:238;;;36114:18;;;36082:24;;;:11;:24;;;;;;;;:50;;36197:54;;;;36155:96;;-1:-1:-1;;;36155:96:0;-1:-1:-1;;;;;;36155:96:0;;;-1:-1:-1;;;;;36082:50:0;;;36155:96;;;;;;;36033:238;35442:855;36333:7;36329:2;-1:-1:-1;;;;;36314:27:0;36323:4;-1:-1:-1;;;;;36314:27:0;;;;;;;;;;;36352:42;34404:1998;;34300:2102;;;:::o;2096:317::-;2211:6;2186:21;:31;;2178:73;;;;-1:-1:-1;;;2178:73:0;;14047:2:1;2178:73:0;;;14029:21:1;14086:2;14066:18;;;14059:30;14125:31;14105:18;;;14098:59;14174:18;;2178:73:0;13845:353:1;2178:73:0;2265:12;2283:9;-1:-1:-1;;;;;2283:14:0;2305:6;2283:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2264:52;;;2335:7;2327:78;;;;-1:-1:-1;;;2327:78:0;;14615:2:1;2327:78:0;;;14597:21:1;14654:2;14634:18;;;14627:30;14693:34;14673:18;;;14666:62;14764:28;14744:18;;;14737:56;14810:19;;2327:78:0;14413:422:1;31476:104:0;31545:27;31555:2;31559:8;31545:27;;;;;;;;;;;;:9;:27::i;26712:569::-;-1:-1:-1;;;;;;;;;;;;;;;;;26847:16:0;26855:7;31414:4;31448:12;-1:-1:-1;31438:22:0;31357:111;26847:16;26839:71;;;;-1:-1:-1;;;26839:71:0;;15042:2:1;26839:71:0;;;15024:21:1;15081:2;15061:18;;;15054:30;15120:34;15100:18;;;15093:62;-1:-1:-1;;;15171:18:1;;;15164:40;15221:19;;26839:71:0;14840:406:1;26839:71:0;26968:7;26948:245;27015:31;27049:17;;;:11;:17;;;;;;;;;27015:51;;;;;;;;;-1:-1:-1;;;;;27015:51:0;;;;;-1:-1:-1;;;27015:51:0;;;;;;;;;;;;27089:28;27085:93;;27149:9;26712:569;-1:-1:-1;;;26712:569:0:o;27085:93::-;-1:-1:-1;;;26988:6:0;26948:245;;23323:191;23416:6;;;-1:-1:-1;;;;;23433:17:0;;;-1:-1:-1;;;;;;23433:17:0;;;;;;;23466:40;;23416:6;;;23433:17;23416:6;;23466:40;;23397:16;;23466:40;23386:128;23323:191;:::o;40525:120::-;-1:-1:-1;;;;;40604:24:0;;;;;;:16;:24;;;;;:33;;40632:5;;40604:24;:33;;40632:5;;40604:33;:::i;:::-;;;;-1:-1:-1;;;;40525:120:0:o;37281:985::-;37436:4;-1:-1:-1;;;;;37457:13:0;;1097:20;1145:8;37453:806;;37510:175;;-1:-1:-1;;;37510:175:0;;-1:-1:-1;;;;;37510:36:0;;;;;:175;;8787:10;;37604:4;;37631:7;;37661:5;;37510:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37510:175:0;;;;;;;;-1:-1:-1;;37510:175:0;;;;;;;;;;;;:::i;:::-;;;37489:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37872:13:0;;37868:321;;37915:109;;-1:-1:-1;;;37915:109:0;;;;;;;:::i;37868:321::-;38139:6;38133:13;38124:6;38120:2;38116:15;38109:38;37489:715;-1:-1:-1;;;;;;37749:55:0;-1:-1:-1;;;37749:55:0;;-1:-1:-1;37742:62:0;;37453:806;-1:-1:-1;38243:4:0;37453:806;37281:985;;;;;;:::o;40799:109::-;40859:13;40892:8;40885:15;;;;;:::i;13621:723::-;13677:13;13898:10;13894:53;;-1:-1:-1;;13925:10:0;;;;;;;;;;;;-1:-1:-1;;;13925:10:0;;;;;13621:723::o;13894:53::-;13972:5;13957:12;14013:78;14020:9;;14013:78;;14046:8;;;;:::i;:::-;;-1:-1:-1;14069:10:0;;-1:-1:-1;14077:2:0;14069:10;;:::i;:::-;;;14013:78;;;14101:19;14133:6;14123:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14123:17:0;;14101:39;;14151:154;14158:10;;14151:154;;14185:11;14195:1;14185:11;;:::i;:::-;;-1:-1:-1;14254:10:0;14262:2;14254:5;:10;:::i;:::-;14241:24;;:2;:24;:::i;:::-;14228:39;;14211:6;14218;14211:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14211:56:0;;;;;;;;-1:-1:-1;14282:11:0;14291:2;14282:11;;:::i;:::-;;;14151:154;;31943:163;32066:32;32072:2;32076:8;32086:5;32093:4;32504:20;32527:12;-1:-1:-1;;;;;32558:16:0;;32550:62;;;;-1:-1:-1;;;32550:62:0;;17263:2:1;32550:62:0;;;17245:21:1;17302:2;17282:18;;;17275:30;17341:34;17321:18;;;17314:62;-1:-1:-1;;;17392:18:1;;;17385:31;17433:19;;32550:62:0;17061:397:1;32550:62:0;32631:13;32623:66;;;;-1:-1:-1;;;32623:66:0;;17665:2:1;32623:66:0;;;17647:21:1;17704:2;17684:18;;;17677:30;17743:34;17723:18;;;17716:62;-1:-1:-1;;;17794:18:1;;;17787:38;17842:19;;32623:66:0;17463:404:1;32623:66:0;-1:-1:-1;;;;;33041:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33041:45:0;;-1:-1:-1;;;;;33041:45:0;;;;;;;;;;33101:50;;;;;;;;;;;;;;33168:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;33218:66:0;;;;-1:-1:-1;;;33268:15:0;33218:66;;;;;;;33168:25;;33353:558;33373:8;33369:1;:12;33353:558;;;33412:38;;33437:12;;-1:-1:-1;;;;;33412:38:0;;;33429:1;;33412:38;;33429:1;;33412:38;33473:4;33469:392;;;33536:202;33597:1;33630:2;33663:12;33706:5;33536:22;:202::i;:::-;33502:339;;;;-1:-1:-1;;;33502:339:0;;;;;;;:::i;:::-;33881:14;;;;;33383:3;33353:558;;;-1:-1:-1;33927:12:0;:27;33978:60;30747:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;7278:356::-;7480:2;7462:21;;;7499:18;;;7492:30;7558:34;7553:2;7538:18;;7531:62;7625:2;7610:18;;7278:356::o;8348:127::-;8409:10;8404:3;8400:20;8397:1;8390:31;8440:4;8437:1;8430:15;8464:4;8461:1;8454:15;8480:128;8520:3;8551:1;8547:6;8544:1;8541:13;8538:39;;;8557:18;;:::i;:::-;-1:-1:-1;8593:9:1;;8480:128::o;9722:168::-;9762:7;9828:1;9824;9820:6;9816:14;9813:1;9810:21;9805:1;9798:9;9791:17;9787:45;9784:71;;;9835:18;;:::i;:::-;-1:-1:-1;9875:9:1;;9722:168::o;9895:125::-;9935:4;9963:1;9960;9957:8;9954:34;;;9968:18;;:::i;:::-;-1:-1:-1;10005:9:1;;9895:125::o;10728:415::-;10930:2;10912:21;;;10969:2;10949:18;;;10942:30;11008:34;11003:2;10988:18;;10981:62;-1:-1:-1;;;11074:2:1;11059:18;;11052:49;11133:3;11118:19;;10728:415::o;11564:637::-;11844:3;11882:6;11876:13;11898:53;11944:6;11939:3;11932:4;11924:6;11920:17;11898:53;:::i;:::-;12014:13;;11973:16;;;;12036:57;12014:13;11973:16;12070:4;12058:17;;12036:57;:::i;:::-;-1:-1:-1;;;12115:20:1;;12144:22;;;12193:1;12182:13;;11564:637;-1:-1:-1;;;;11564:637:1:o;15667:489::-;-1:-1:-1;;;;;15936:15:1;;;15918:34;;15988:15;;15983:2;15968:18;;15961:43;16035:2;16020:18;;16013:34;;;16083:3;16078:2;16063:18;;16056:31;;;15861:4;;16104:46;;16130:19;;16122:6;16104:46;:::i;:::-;16096:54;15667:489;-1:-1:-1;;;;;;15667:489:1:o;16161:249::-;16230:6;16283:2;16271:9;16262:7;16258:23;16254:32;16251:52;;;16299:1;16296;16289:12;16251:52;16331:9;16325:16;16350:30;16374:5;16350:30;:::i;16415:135::-;16454:3;-1:-1:-1;;16475:17:1;;16472:43;;;16495:18;;:::i;:::-;-1:-1:-1;16542:1:1;16531:13;;16415:135::o;16555:127::-;16616:10;16611:3;16607:20;16604:1;16597:31;16647:4;16644:1;16637:15;16671:4;16668:1;16661:15;16687:120;16727:1;16753;16743:35;;16758:18;;:::i;:::-;-1:-1:-1;16792:9:1;;16687:120::o;16812:112::-;16844:1;16870;16860:35;;16875:18;;:::i;:::-;-1:-1:-1;16909:9:1;;16812:112::o;16929:127::-;16990:10;16985:3;16981:20;16978:1;16971:31;17021:4;17018:1;17011:15;17045:4;17042:1;17035:15
Swarm Source
ipfs://a919f40fb6ae58c3ec537cbdd11c444b1cafb8a7e61bbbe8c28d4b689e49e3f0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.