ERC-721
Overview
Max Total Supply
6,710 TTWTF
Holders
676
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 TTWTFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrollsTown
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
// , .. , , ._ // -+-._. _ || __-+- _ . ,._ . ,-+-|, // | [ (_)||_) | (_) \/\/ [ ) * \/\/ | | //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract TrollsTown is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public population = 6969; uint256 public weWillSee = 500; uint256 public upforGrabs = 10; bool public awakening = true; string public baseURI = "ipfs://bafybeifayvtzgfzvljmeja2f2omyvteyflhk4b76uplm77fnvzxzil72ie"; constructor() ERC721A("trollstown.wtf", "TTWTF") {} /* MINT NFT */ function nowWeKnow(address to ,uint256 amount) external onlyOwner{ uint256 supply = totalSupply(); require(supply + amount <= population,"Sold Out"); require(amount <= weWillSee,'No team mints left'); _safeMint(to,amount); weWillSee-=amount; } function hatchEgg(uint256 amount) external payable nonReentrant{ uint256 supply = totalSupply(); uint256 minted = numberMinted(msg.sender); require(awakening,"Public Sale Is Not Active"); require(supply + amount + weWillSee <= population,"Public Mint Sold Out!"); require(minted + amount <= upforGrabs,"You've Maxed Out Your Mints"); _safeMint(msg.sender,amount); } /* END MINT */ //SETTERS function nowYouKnow(uint256 _newSupply) external onlyOwner { require(_newSupply <= weWillSee,"Can't Increase Supply"); weWillSee = _newSupply; } function wakeUp(bool _status) public onlyOwner { awakening = _status; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function feelingGenerous(uint256 _newSupply) external onlyOwner { upforGrabs = _newSupply; } //END SETTERS // GETTERS function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } // END GETTERS // FACTORY function tokenURI(uint256 _tokenId) public view override(ERC721A) returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(baseURI, "/", _tokenId.toString(), ".json")); } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 1 }, "evmVersion": "london", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"awakening","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"feelingGenerous","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"hatchEgg","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"nowWeKnow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"nowYouKnow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"population","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":"upforGrabs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"wakeUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weWillSee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
611b39600a9081556101f4600b55600c55600d805460ff19166001179055610100604052604260808181529062001f5f60a03980516200004891600e916020909101906200012f565b503480156200005657600080fd5b50604080518082018252600e81526d3a3937b63639ba37bbb7173bba3360911b6020808301918252835180850190945260058452642a2a2baa2360d91b908401528151919291620000aa916002916200012f565b508051620000c09060039060208401906200012f565b50506000805550620000d233620000dd565b600160095562000211565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600181811c90821680620001ea57607f821691505b6020821081036200020b57634e487b7160e01b600052602260045260246000fd5b50919050565b611d3e80620002216000396000f3fe60806040526004361061015d5760003560e01c806301ffc9a714610162578063051efe521461019757806306fdde03146101b9578063081812fc146101db578063095ea7b3146102135780630cb03eb71461023357806318160ddd1461025357806320abeaf7146102765780632385554c1461028c57806323b872dd1461029f57806342842e0e146102bf57806355f804b3146102df5780636352211e146102ff5780636c0360eb1461031f57806370a0823114610334578063715018a614610354578063731623771461036957806378880f4a1461037f57806388725e62146103955780638da5cb5b146103af57806395d89b41146103c4578063a22cb465146103d9578063ac446002146103f9578063b88d4fde1461040e578063c87b56dd1461042e578063dc33e6811461044e578063e79709ed1461046e578063e985e9c51461048e578063ec79fec4146104d7578063f2fde38b146104f7575b600080fd5b34801561016e57600080fd5b5061018261017d366004611735565b610517565b60405190151581526020015b60405180910390f35b3480156101a357600080fd5b506101b76101b2366004611775565b610569565b005b3480156101c557600080fd5b506101ce610666565b60405161018e91906117f7565b3480156101e757600080fd5b506101fb6101f636600461180a565b6106f8565b6040516001600160a01b03909116815260200161018e565b34801561021f57600080fd5b506101b761022e366004611775565b61073c565b34801561023f57600080fd5b506101b761024e36600461180a565b6107c2565b34801561025f57600080fd5b50600154600054035b60405190815260200161018e565b34801561028257600080fd5b50610268600c5481565b6101b761029a36600461180a565b610840565b3480156102ab57600080fd5b506101b76102ba366004611823565b6109a1565b3480156102cb57600080fd5b506101b76102da366004611823565b6109ac565b3480156102eb57600080fd5b506101b76102fa3660046118ea565b6109c7565b34801561030b57600080fd5b506101fb61031a36600461180a565b610a0d565b34801561032b57600080fd5b506101ce610a1f565b34801561034057600080fd5b5061026861034f366004611932565b610aad565b34801561036057600080fd5b506101b7610afb565b34801561037557600080fd5b50610268600b5481565b34801561038b57600080fd5b50610268600a5481565b3480156103a157600080fd5b50600d546101829060ff1681565b3480156103bb57600080fd5b506101fb610b36565b3480156103d057600080fd5b506101ce610b45565b3480156103e557600080fd5b506101b76103f436600461195d565b610b54565b34801561040557600080fd5b506101b7610be9565b34801561041a57600080fd5b506101b7610429366004611990565b610cd2565b34801561043a57600080fd5b506101ce61044936600461180a565b610d23565b34801561045a57600080fd5b50610268610469366004611932565b610dc4565b34801561047a57600080fd5b506101b761048936600461180a565b610df2565b34801561049a57600080fd5b506101826104a9366004611a0b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e357600080fd5b506101b76104f2366004611a35565b610e26565b34801561050357600080fd5b506101b7610512366004611932565b610e68565b60006001600160e01b031982166380ac58cd60e01b148061054857506001600160e01b03198216635b5e139f60e01b145b8061056357506301ffc9a760e01b6001600160e01b03198316145b92915050565b33610572610b36565b6001600160a01b0316146105a15760405162461bcd60e51b815260040161059890611a50565b60405180910390fd5b60006105b06001546000540390565b600a549091506105c08383611a9b565b11156105f95760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610598565b600b548211156106405760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610598565b61064a8383610f08565b81600b600082825461065c9190611ab3565b9091555050505050565b60606002805461067590611aca565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190611aca565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600061070382610f22565b610720576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061074782610a0d565b9050806001600160a01b0316836001600160a01b03160361077b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107b25761079581336104a9565b6107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f4d565b505050565b336107cb610b36565b6001600160a01b0316146107f15760405162461bcd60e51b815260040161059890611a50565b600b5481111561083b5760405162461bcd60e51b815260206004820152601560248201527443616e277420496e63726561736520537570706c7960581b6044820152606401610598565b600b55565b6002600954036108625760405162461bcd60e51b815260040161059890611b04565b600260095560006108766001546000540390565b9050600061088333610dc4565b600d5490915060ff166108d45760405162461bcd60e51b81526020600482015260196024820152785075626c69632053616c65204973204e6f742041637469766560381b6044820152606401610598565b600a54600b546108e48585611a9b565b6108ee9190611a9b565b11156109345760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e7420536f6c64204f75742160581b6044820152606401610598565b600c546109418483611a9b565b111561098d5760405162461bcd60e51b815260206004820152601b60248201527a596f75277665204d61786564204f757420596f7572204d696e747360281b6044820152606401610598565b6109973384610f08565b5050600160095550565b6107bd838383610fa9565b6107bd83838360405180602001604052806000815250610cd2565b336109d0610b36565b6001600160a01b0316146109f65760405162461bcd60e51b815260040161059890611a50565b8051610a0990600e906020840190611686565b5050565b6000610a1882611183565b5192915050565b600e8054610a2c90611aca565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5890611aca565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b505050505081565b60006001600160a01b038216610ad6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b33610b04610b36565b6001600160a01b031614610b2a5760405162461bcd60e51b815260040161059890611a50565b610b34600061129d565b565b6008546001600160a01b031690565b60606003805461067590611aca565b336001600160a01b03831603610b7d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33610bf2610b36565b6001600160a01b031614610c185760405162461bcd60e51b815260040161059890611a50565b600260095403610c3a5760405162461bcd60e51b815260040161059890611b04565b6002600955604051600090339047908381818185875af1925050503d8060008114610c81576040519150601f19603f3d011682016040523d82523d6000602084013e610c86565b606091505b5050905080610cca5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610598565b506001600955565b610cdd848484610fa9565b610cef836001600160a01b03166112ef565b15610d1d57610d00848484846112fe565b610d1d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d2e82610f22565b610d925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610598565b600e610d9d836113ea565b604051602001610dae929190611b57565b6040516020818303038152906040529050919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610563565b33610dfb610b36565b6001600160a01b031614610e215760405162461bcd60e51b815260040161059890611a50565b600c55565b33610e2f610b36565b6001600160a01b031614610e555760405162461bcd60e51b815260040161059890611a50565b600d805460ff1916911515919091179055565b33610e71610b36565b6001600160a01b031614610e975760405162461bcd60e51b815260040161059890611a50565b6001600160a01b038116610efc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610598565b610f058161129d565b50565b610a098282604051806020016040528060008152506114ea565b6000805482108015610563575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fb482611183565b9050836001600160a01b031681600001516001600160a01b031614610feb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611009575061100985336104a9565b80611024575033611019846106f8565b6001600160a01b0316145b90508061104457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661106b57604051633a954ecd60e21b815260040160405180910390fd5b61107760008487610f4d565b6001600160a01b03858116600090815260056020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661114a57600054821461114a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611ce983398151915260405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561128457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112825780516001600160a01b031615611219579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561127d579392505050565b611219565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611333903390899088908890600401611c21565b6020604051808303816000875af192505050801561136e575060408051601f3d908101601f1916820190925261136b91810190611c5e565b60015b6113cc573d80801561139c576040519150601f19603f3d011682016040523d82523d6000602084013e6113a1565b606091505b5080516000036113c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561143b578061142581611c7b565b91506114349050600a83611caa565b9150611415565b6000816001600160401b038111156114555761145561185f565b6040519080825280601f01601f19166020018201604052801561147f576020820181803683370190505b5090505b84156113e257611494600183611ab3565b91506114a1600a86611cbe565b6114ac906030611a9b565b60f81b8183815181106114c1576114c1611cd2565b60200101906001600160f81b031916908160001a9053506114e3600a86611caa565b9450611483565b6000546001600160a01b03841661151357604051622e076360e81b815260040160405180910390fd5b826000036115345760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501906115cd906112ef565b15611643575b60405182906001600160a01b03881690600090600080516020611ce9833981519152908290a461160c60008784806001019550876112fe565b611629576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115d357826000541461163e57600080fd5b611676565b5b6040516001830192906001600160a01b03881690600090600080516020611ce9833981519152908290a4808210611644575b506000908155610d1d9085838684565b82805461169290611aca565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b6001600160e01b031981168114610f0557600080fd5b60006020828403121561174757600080fd5b81356117528161171f565b9392505050565b80356001600160a01b038116811461177057600080fd5b919050565b6000806040838503121561178857600080fd5b61179183611759565b946020939093013593505050565b60005b838110156117ba5781810151838201526020016117a2565b83811115610d1d5750506000910152565b600081518084526117e381602086016020860161179f565b601f01601f19169290920160200192915050565b60208152600061175260208301846117cb565b60006020828403121561181c57600080fd5b5035919050565b60008060006060848603121561183857600080fd5b61184184611759565b925061184f60208501611759565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561188f5761188f61185f565b604051601f8501601f19908116603f011681019082821181831017156118b7576118b761185f565b816040528093508581528686860111156118d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118fc57600080fd5b81356001600160401b0381111561191257600080fd5b8201601f8101841361192357600080fd5b6113e284823560208401611875565b60006020828403121561194457600080fd5b61175282611759565b8035801515811461177057600080fd5b6000806040838503121561197057600080fd5b61197983611759565b91506119876020840161194d565b90509250929050565b600080600080608085870312156119a657600080fd5b6119af85611759565b93506119bd60208601611759565b92506040850135915060608501356001600160401b038111156119df57600080fd5b8501601f810187136119f057600080fd5b6119ff87823560208401611875565b91505092959194509250565b60008060408385031215611a1e57600080fd5b611a2783611759565b915061198760208401611759565b600060208284031215611a4757600080fd5b6117528261194d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aae57611aae611a85565b500190565b600082821015611ac557611ac5611a85565b500390565b600181811c90821680611ade57607f821691505b602082108103611afe57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008151611b4d81856020860161179f565b9290920192915050565b600080845481600182811c915080831680611b7357607f831692505b60208084108203611b9257634e487b7160e01b86526022600452602486fd5b818015611ba65760018114611bb757611be4565b60ff19861689528489019650611be4565b60008b81526020902060005b86811015611bdc5781548b820152908501908301611bc3565b505084890196505b505050505050611c18611c07611c0183602f60f81b815260010190565b86611b3b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c54908301846117cb565b9695505050505050565b600060208284031215611c7057600080fd5b81516117528161171f565b600060018201611c8d57611c8d611a85565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cb957611cb9611c94565b500490565b600082611ccd57611ccd611c94565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122034fc7c8f05591b987020b5ed923aa37db2bc57279d392997b58a193c2c5a133064736f6c634300080d0033697066733a2f2f6261667962656966617976747a67667a766c6a6d656a613266326f6d7976746579666c686b3462373675706c6d3737666e767a787a696c37326965
Deployed Bytecode
0x60806040526004361061015d5760003560e01c806301ffc9a714610162578063051efe521461019757806306fdde03146101b9578063081812fc146101db578063095ea7b3146102135780630cb03eb71461023357806318160ddd1461025357806320abeaf7146102765780632385554c1461028c57806323b872dd1461029f57806342842e0e146102bf57806355f804b3146102df5780636352211e146102ff5780636c0360eb1461031f57806370a0823114610334578063715018a614610354578063731623771461036957806378880f4a1461037f57806388725e62146103955780638da5cb5b146103af57806395d89b41146103c4578063a22cb465146103d9578063ac446002146103f9578063b88d4fde1461040e578063c87b56dd1461042e578063dc33e6811461044e578063e79709ed1461046e578063e985e9c51461048e578063ec79fec4146104d7578063f2fde38b146104f7575b600080fd5b34801561016e57600080fd5b5061018261017d366004611735565b610517565b60405190151581526020015b60405180910390f35b3480156101a357600080fd5b506101b76101b2366004611775565b610569565b005b3480156101c557600080fd5b506101ce610666565b60405161018e91906117f7565b3480156101e757600080fd5b506101fb6101f636600461180a565b6106f8565b6040516001600160a01b03909116815260200161018e565b34801561021f57600080fd5b506101b761022e366004611775565b61073c565b34801561023f57600080fd5b506101b761024e36600461180a565b6107c2565b34801561025f57600080fd5b50600154600054035b60405190815260200161018e565b34801561028257600080fd5b50610268600c5481565b6101b761029a36600461180a565b610840565b3480156102ab57600080fd5b506101b76102ba366004611823565b6109a1565b3480156102cb57600080fd5b506101b76102da366004611823565b6109ac565b3480156102eb57600080fd5b506101b76102fa3660046118ea565b6109c7565b34801561030b57600080fd5b506101fb61031a36600461180a565b610a0d565b34801561032b57600080fd5b506101ce610a1f565b34801561034057600080fd5b5061026861034f366004611932565b610aad565b34801561036057600080fd5b506101b7610afb565b34801561037557600080fd5b50610268600b5481565b34801561038b57600080fd5b50610268600a5481565b3480156103a157600080fd5b50600d546101829060ff1681565b3480156103bb57600080fd5b506101fb610b36565b3480156103d057600080fd5b506101ce610b45565b3480156103e557600080fd5b506101b76103f436600461195d565b610b54565b34801561040557600080fd5b506101b7610be9565b34801561041a57600080fd5b506101b7610429366004611990565b610cd2565b34801561043a57600080fd5b506101ce61044936600461180a565b610d23565b34801561045a57600080fd5b50610268610469366004611932565b610dc4565b34801561047a57600080fd5b506101b761048936600461180a565b610df2565b34801561049a57600080fd5b506101826104a9366004611a0b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e357600080fd5b506101b76104f2366004611a35565b610e26565b34801561050357600080fd5b506101b7610512366004611932565b610e68565b60006001600160e01b031982166380ac58cd60e01b148061054857506001600160e01b03198216635b5e139f60e01b145b8061056357506301ffc9a760e01b6001600160e01b03198316145b92915050565b33610572610b36565b6001600160a01b0316146105a15760405162461bcd60e51b815260040161059890611a50565b60405180910390fd5b60006105b06001546000540390565b600a549091506105c08383611a9b565b11156105f95760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610598565b600b548211156106405760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610598565b61064a8383610f08565b81600b600082825461065c9190611ab3565b9091555050505050565b60606002805461067590611aca565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190611aca565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b600061070382610f22565b610720576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061074782610a0d565b9050806001600160a01b0316836001600160a01b03160361077b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107b25761079581336104a9565b6107b2576040516367d9dca160e11b815260040160405180910390fd5b6107bd838383610f4d565b505050565b336107cb610b36565b6001600160a01b0316146107f15760405162461bcd60e51b815260040161059890611a50565b600b5481111561083b5760405162461bcd60e51b815260206004820152601560248201527443616e277420496e63726561736520537570706c7960581b6044820152606401610598565b600b55565b6002600954036108625760405162461bcd60e51b815260040161059890611b04565b600260095560006108766001546000540390565b9050600061088333610dc4565b600d5490915060ff166108d45760405162461bcd60e51b81526020600482015260196024820152785075626c69632053616c65204973204e6f742041637469766560381b6044820152606401610598565b600a54600b546108e48585611a9b565b6108ee9190611a9b565b11156109345760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e7420536f6c64204f75742160581b6044820152606401610598565b600c546109418483611a9b565b111561098d5760405162461bcd60e51b815260206004820152601b60248201527a596f75277665204d61786564204f757420596f7572204d696e747360281b6044820152606401610598565b6109973384610f08565b5050600160095550565b6107bd838383610fa9565b6107bd83838360405180602001604052806000815250610cd2565b336109d0610b36565b6001600160a01b0316146109f65760405162461bcd60e51b815260040161059890611a50565b8051610a0990600e906020840190611686565b5050565b6000610a1882611183565b5192915050565b600e8054610a2c90611aca565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5890611aca565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b505050505081565b60006001600160a01b038216610ad6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b33610b04610b36565b6001600160a01b031614610b2a5760405162461bcd60e51b815260040161059890611a50565b610b34600061129d565b565b6008546001600160a01b031690565b60606003805461067590611aca565b336001600160a01b03831603610b7d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33610bf2610b36565b6001600160a01b031614610c185760405162461bcd60e51b815260040161059890611a50565b600260095403610c3a5760405162461bcd60e51b815260040161059890611b04565b6002600955604051600090339047908381818185875af1925050503d8060008114610c81576040519150601f19603f3d011682016040523d82523d6000602084013e610c86565b606091505b5050905080610cca5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610598565b506001600955565b610cdd848484610fa9565b610cef836001600160a01b03166112ef565b15610d1d57610d00848484846112fe565b610d1d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d2e82610f22565b610d925760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610598565b600e610d9d836113ea565b604051602001610dae929190611b57565b6040516020818303038152906040529050919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610563565b33610dfb610b36565b6001600160a01b031614610e215760405162461bcd60e51b815260040161059890611a50565b600c55565b33610e2f610b36565b6001600160a01b031614610e555760405162461bcd60e51b815260040161059890611a50565b600d805460ff1916911515919091179055565b33610e71610b36565b6001600160a01b031614610e975760405162461bcd60e51b815260040161059890611a50565b6001600160a01b038116610efc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610598565b610f058161129d565b50565b610a098282604051806020016040528060008152506114ea565b6000805482108015610563575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fb482611183565b9050836001600160a01b031681600001516001600160a01b031614610feb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611009575061100985336104a9565b80611024575033611019846106f8565b6001600160a01b0316145b90508061104457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661106b57604051633a954ecd60e21b815260040160405180910390fd5b61107760008487610f4d565b6001600160a01b03858116600090815260056020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661114a57600054821461114a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b0316600080516020611ce983398151915260405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561128457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906112825780516001600160a01b031615611219579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561127d579392505050565b611219565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611333903390899088908890600401611c21565b6020604051808303816000875af192505050801561136e575060408051601f3d908101601f1916820190925261136b91810190611c5e565b60015b6113cc573d80801561139c576040519150601f19603f3d011682016040523d82523d6000602084013e6113a1565b606091505b5080516000036113c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036114115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561143b578061142581611c7b565b91506114349050600a83611caa565b9150611415565b6000816001600160401b038111156114555761145561185f565b6040519080825280601f01601f19166020018201604052801561147f576020820181803683370190505b5090505b84156113e257611494600183611ab3565b91506114a1600a86611cbe565b6114ac906030611a9b565b60f81b8183815181106114c1576114c1611cd2565b60200101906001600160f81b031916908160001a9053506114e3600a86611caa565b9450611483565b6000546001600160a01b03841661151357604051622e076360e81b815260040160405180910390fd5b826000036115345760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501906115cd906112ef565b15611643575b60405182906001600160a01b03881690600090600080516020611ce9833981519152908290a461160c60008784806001019550876112fe565b611629576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115d357826000541461163e57600080fd5b611676565b5b6040516001830192906001600160a01b03881690600090600080516020611ce9833981519152908290a4808210611644575b506000908155610d1d9085838684565b82805461169290611aca565b90600052602060002090601f0160209004810192826116b457600085556116fa565b82601f106116cd57805160ff19168380011785556116fa565b828001600101855582156116fa579182015b828111156116fa5782518255916020019190600101906116df565b5061170692915061170a565b5090565b5b80821115611706576000815560010161170b565b6001600160e01b031981168114610f0557600080fd5b60006020828403121561174757600080fd5b81356117528161171f565b9392505050565b80356001600160a01b038116811461177057600080fd5b919050565b6000806040838503121561178857600080fd5b61179183611759565b946020939093013593505050565b60005b838110156117ba5781810151838201526020016117a2565b83811115610d1d5750506000910152565b600081518084526117e381602086016020860161179f565b601f01601f19169290920160200192915050565b60208152600061175260208301846117cb565b60006020828403121561181c57600080fd5b5035919050565b60008060006060848603121561183857600080fd5b61184184611759565b925061184f60208501611759565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561188f5761188f61185f565b604051601f8501601f19908116603f011681019082821181831017156118b7576118b761185f565b816040528093508581528686860111156118d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118fc57600080fd5b81356001600160401b0381111561191257600080fd5b8201601f8101841361192357600080fd5b6113e284823560208401611875565b60006020828403121561194457600080fd5b61175282611759565b8035801515811461177057600080fd5b6000806040838503121561197057600080fd5b61197983611759565b91506119876020840161194d565b90509250929050565b600080600080608085870312156119a657600080fd5b6119af85611759565b93506119bd60208601611759565b92506040850135915060608501356001600160401b038111156119df57600080fd5b8501601f810187136119f057600080fd5b6119ff87823560208401611875565b91505092959194509250565b60008060408385031215611a1e57600080fd5b611a2783611759565b915061198760208401611759565b600060208284031215611a4757600080fd5b6117528261194d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611aae57611aae611a85565b500190565b600082821015611ac557611ac5611a85565b500390565b600181811c90821680611ade57607f821691505b602082108103611afe57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008151611b4d81856020860161179f565b9290920192915050565b600080845481600182811c915080831680611b7357607f831692505b60208084108203611b9257634e487b7160e01b86526022600452602486fd5b818015611ba65760018114611bb757611be4565b60ff19861689528489019650611be4565b60008b81526020902060005b86811015611bdc5781548b820152908501908301611bc3565b505084890196505b505050505050611c18611c07611c0183602f60f81b815260010190565b86611b3b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c54908301846117cb565b9695505050505050565b600060208284031215611c7057600080fd5b81516117528161171f565b600060018201611c8d57611c8d611a85565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611cb957611cb9611c94565b500490565b600082611ccd57611ccd611c94565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122034fc7c8f05591b987020b5ed923aa37db2bc57279d392997b58a193c2c5a133064736f6c634300080d0033
Deployed Bytecode Sourcemap
362:2341:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:10;;;;;;;;;;-1:-1:-1;3057:300:10;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;3057:300:10;;;;;;;;779:287:12;;;;;;;;;;-1:-1:-1;779:287:12;;;;;:::i;:::-;;:::i;:::-;;6087:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7544:200::-;;;;;;;;;;-1:-1:-1;7544:200:10;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2151:32:13;;;2133:51;;2121:2;2106:18;7544:200:10;1987:203:13;7120:363:10;;;;;;;;;;-1:-1:-1;7120:363:10;;;;;:::i;:::-;;:::i;1533:164:12:-;;;;;;;;;;-1:-1:-1;1533:164:12;;;;;:::i;:::-;;:::i;2319:306:10:-;;;;;;;;;;-1:-1:-1;2578:12:10;;2372:7;2562:13;:28;2319:306;;;2341:25:13;;;2329:2;2314:18;2319:306:10;2195:177:13;531:30:12;;;;;;;;;;;;;;;;1072:420;;;;;;:::i;:::-;;:::i;8383:164:10:-;;;;;;;;;;-1:-1:-1;8383:164:10;;;;;:::i;:::-;;:::i;8613:179::-;;;;;;;;;;-1:-1:-1;8613:179:10;;;;;:::i;:::-;;:::i;1792:102:12:-;;;;;;;;;;-1:-1:-1;1792:102:12;;;;;:::i;:::-;;:::i;5902:123:10:-;;;;;;;;;;-1:-1:-1;5902:123:10;;;;;:::i;:::-;;:::i;603:92:12:-;;;;;;;;;;;;;:::i;3416:203:10:-;;;;;;;;;;-1:-1:-1;3416:203:10;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;495:30:12:-;;;;;;;;;;;;;;;;457:32;;;;;;;;;;;;;;;;568:28;;;;;;;;;;-1:-1:-1;568:28:12;;;;;;;;1036:85:0;;;;;;;;;;;;;:::i;6249:102:10:-;;;;;;;;;;;;;:::i;7811:282::-;;;;;;;;;;-1:-1:-1;7811:282:10;;;;;:::i;:::-;;:::i;2508:188:12:-;;;;;;;;;;;;;:::i;8858:360:10:-;;;;;;;;;;-1:-1:-1;8858:360:10;;;;;:::i;:::-;;:::i;2197:305:12:-;;;;;;;;;;-1:-1:-1;2197:305:12;;;;;:::i;:::-;;:::i;2045:111::-;;;;;;;;;;-1:-1:-1;2045:111:12;;;;;:::i;:::-;;:::i;1900:104::-;;;;;;;;;;-1:-1:-1;1900:104:12;;;;;:::i;:::-;;:::i;8159:162:10:-;;;;;;;;;;-1:-1:-1;8159:162:10;;;;;:::i;:::-;-1:-1:-1;;;;;8279:25:10;;;8256:4;8279:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8159:162;1703:83:12;;;;;;;;;;-1:-1:-1;1703:83:12;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;3057:300:10:-;3159:4;-1:-1:-1;;;;;;3194:40:10;;-1:-1:-1;;;3194:40:10;;:104;;-1:-1:-1;;;;;;;3250:48:10;;-1:-1:-1;;;3250:48:10;3194:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;3314:36:10;3175:175;3057:300;-1:-1:-1;;3057:300:10:o;779:287:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;854:14:12::1;871:13;2578:12:10::0;;2372:7;2562:13;:28;;2319:306;871:13:12::1;921:10;::::0;854:30;;-1:-1:-1;902:15:12::1;911:6:::0;854:30;902:15:::1;:::i;:::-;:29;;894:49;;;::::0;-1:-1:-1;;;894:49:12;;6500:2:13;894:49:12::1;::::0;::::1;6482:21:13::0;6539:1;6519:18;;;6512:29;-1:-1:-1;;;6557:18:13;;;6550:38;6605:18;;894:49:12::1;6298:331:13::0;894:49:12::1;971:9;;961:6;:19;;953:49;;;::::0;-1:-1:-1;;;953:49:12;;6836:2:13;953:49:12::1;::::0;::::1;6818:21:13::0;6875:2;6855:18;;;6848:30;-1:-1:-1;;;6894:18:13;;;6887:48;6952:18;;953:49:12::1;6634:342:13::0;953:49:12::1;1012:20;1022:2;1025:6;1012:9;:20::i;:::-;1053:6;1042:9;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;779:287:12:o;6087:98:10:-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;-1:-1:-1;;;7661:34:10;;;;;;;;;;;7631:64;-1:-1:-1;7713:24:10;;;;:15;:24;;;;;;-1:-1:-1;;;;;7713:24:10;;7544:200::o;7120:363::-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;-1:-1:-1;;;;;7246:11:10;:2;-1:-1:-1;;;;;7246:11:10;;7242:48;;7266:24;;-1:-1:-1;;;7266:24:10;;;;;;;;;;;7242:48;719:10:6;-1:-1:-1;;;;;7305:21:10;;;7301:137;;7332:37;7349:5;719:10:6;8159:162:10;:::i;7332:37::-;7328:110;;7392:35;;-1:-1:-1;;;7392:35:10;;;;;;;;;;;7328:110;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;1533:164:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1624:9:12::1;;1610:10;:23;;1602:56;;;::::0;-1:-1:-1;;;1602:56:12;;7698:2:13;1602:56:12::1;::::0;::::1;7680:21:13::0;7737:2;7717:18;;;7710:30;-1:-1:-1;;;7756:18:13;;;7749:51;7817:18;;1602:56:12::1;7496:345:13::0;1602:56:12::1;1668:9;:22:::0;1533:164::o;1072:420::-;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;;;;;;:::i;:::-;1744:1;2455:7;:18;1146:14:12::1;1163:13;2578:12:10::0;;2372:7;2562:13;:28;;2319:306;1163:13:12::1;1146:30;;1186:14;1203:24;1216:10;1203:12;:24::i;:::-;1246:9;::::0;1186:41;;-1:-1:-1;1246:9:12::1;;1238:46;;;::::0;-1:-1:-1;;;1238:46:12;;8408:2:13;1238:46:12::1;::::0;::::1;8390:21:13::0;8447:2;8427:18;;;8420:30;-1:-1:-1;;;8466:18:13;;;8459:55;8531:18;;1238:46:12::1;8206:349:13::0;1238:46:12::1;1333:10;::::0;1320:9:::1;::::0;1302:15:::1;1311:6:::0;1302;:15:::1;:::i;:::-;:27;;;;:::i;:::-;:41;;1294:74;;;::::0;-1:-1:-1;;;1294:74:12;;8762:2:13;1294:74:12::1;::::0;::::1;8744:21:13::0;8801:2;8781:18;;;8774:30;-1:-1:-1;;;8820:18:13;;;8813:51;8881:18;;1294:74:12::1;8560:345:13::0;1294:74:12::1;1405:10;::::0;1386:15:::1;1395:6:::0;1386;:15:::1;:::i;:::-;:29;;1378:68;;;::::0;-1:-1:-1;;;1378:68:12;;9112:2:13;1378:68:12::1;::::0;::::1;9094:21:13::0;9151:2;9131:18;;;9124:30;-1:-1:-1;;;9170:18:13;;;9163:57;9237:18;;1378:68:12::1;8910:351:13::0;1378:68:12::1;1457:28;1467:10;1478:6;1457:9;:28::i;:::-;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;1072:420:12:o;8383:164:10:-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;8613:179::-;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;1792:102:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1866:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1792:102:::0;:::o;5902:123:10:-;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;5902:123;-1:-1:-1;;5902:123:10:o;603:92:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3416:203:10:-;3480:7;-1:-1:-1;;;;;3503:19:10;;3499:60;;3531:28;;-1:-1:-1;;;3531:28:10;;;;;;;;;;;3499:60;-1:-1:-1;;;;;;3584:19:10;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3584:27:10;;3416:203::o;1668:101:0:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1108:6;;-1:-1:-1;;;;;1108:6:0;;1036:85::o;6249:102:10:-;6305:13;6337:7;6330:14;;;;;:::i;7811:282::-;719:10:6;-1:-1:-1;;;;;7909:24:10;;;7905:54;;7942:17;;-1:-1:-1;;;7942:17:10;;;;;;;;;;;7905:54;719:10:6;7970:32:10;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7970:42:10;;;;;;;;;;;;:53;;-1:-1:-1;;7970:53:10;;;;;;;;;;8038:48;;540:41:13;;;7970:42:10;;719:10:6;8038:48:10;;513:18:13;8038:48:10;;;;;;;7811:282;;:::o;2508:188:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1744:1:1::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:1::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;2594:49:12::2;::::0;2576:12:::2;::::0;2594:10:::2;::::0;2617:21:::2;::::0;2576:12;2594:49;2576:12;2594:49;2617:21;2594:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2575:68;;;2661:7;2653:36;;;::::0;-1:-1:-1;;;2653:36:12;;9678:2:13;2653:36:12::2;::::0;::::2;9660:21:13::0;9717:2;9697:18;;;9690:30;-1:-1:-1;;;9736:18:13;;;9729:46;9792:18;;2653:36:12::2;9476:340:13::0;2653:36:12::2;-1:-1:-1::0;1701:1:1::1;2628:7;:22:::0;2508:188:12:o;8858:360:10:-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;9061:15;:2;-1:-1:-1;;;;;9061:13:10;;:15::i;:::-;9057:155;;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;-1:-1:-1;;;9161:40:10;;;;;;;;;;;9078:134;8858:360;;;;:::o;2197:305:12:-;2304:13;2341:17;2349:8;2341:7;:17::i;:::-;2333:77;;;;-1:-1:-1;;;2333:77:12;;10023:2:13;2333:77:12;;;10005:21:13;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:13;;;10145:45;10207:19;;2333:77:12;9821:411:13;2333:77:12;2451:7;2465:19;:8;:17;:19::i;:::-;2434:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2420:75;;2197:305;;;:::o;2045:111::-;-1:-1:-1;;;;;3791:19:10;;2103:7:12;3791:19:10;;;:12;:19;;;;;:32;-1:-1:-1;;;3791:32:10;;-1:-1:-1;;;;;3791:32:10;2129:20:12;3696:135:10;1900:104:12;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1974:10:12::1;:23:::0;1900:104::o;1703:83::-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1760:9:12::1;:19:::0;;-1:-1:-1;;1760:19:12::1;::::0;::::1;;::::0;;;::::1;::::0;;1703:83::o;1918:198:0:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12430:2:13;1998:73:0::1;::::0;::::1;12412:21:13::0;12469:2;12449:18;;;12442:30;12508:34;12488:18;;;12481:62;-1:-1:-1;;;12559:18:13;;;12552:36;12605:19;;1998:73:0::1;12228:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;9715:102:10:-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;9464:172::-;9521:4;9584:13;;9574:7;:23;9544:85;;;;-1:-1:-1;;9602:20:10;;;;:11;:20;;;;;:27;-1:-1:-1;;;9602:27:10;;;;9601:28;;9464:172::o;18445:189::-;18555:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18555:29:10;-1:-1:-1;;;;;18555:29:10;;;;;;;;;18599:28;;18555:24;;18599:28;;;;;;;18445:189;;;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;-1:-1:-1;;;;;13704:26:10;:13;:18;;;-1:-1:-1;;;;;13704:26:10;;13700:67;;13739:28;;-1:-1:-1;;;13739:28:10;;;;;;;;;;;13700:67;13778:22;719:10:6;-1:-1:-1;;;;;13804:20:10;;;;:72;;-1:-1:-1;13840:36:10;13857:4;719:10:6;8159:162:10;:::i;13840:36::-;13804:124;;;-1:-1:-1;719:10:6;13892:20:10;13904:7;13892:11;:20::i;:::-;-1:-1:-1;;;;;13892:36:10;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;-1:-1:-1;;;13971:35:10;;;;;;;;;;;13940:66;-1:-1:-1;;;;;14020:16:10;;14016:52;;14045:23;;-1:-1:-1;;;14045:23:10;;;;;;;;;;;14016:52;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;-1:-1:-1;;;;;14509:18:10;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;14509:31:10;;;-1:-1:-1;;;;;14509:31:10;;;-1:-1:-1;;14509:31:10;;;;;;;14554:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14554:29:10;;;;;;;;;;;14632:20;;;:11;:20;;;;;;14666:18;;-1:-1:-1;;;;;;14698:49:10;;;;-1:-1:-1;;;14731:15:10;14698:49;;;;;;;;;;15017:11;;15076:24;;;;;15118:13;;14632:20;;15076:24;;15118:13;15114:377;;15325:13;;15310:11;:28;15306:171;;15362:20;;15430:28;;;;-1:-1:-1;;;;;15404:54:10;-1:-1:-1;;;15404:54:10;-1:-1:-1;;;;;;15404:54:10;;;-1:-1:-1;;;;;15362:20:10;;15404:54;;;;15306:171;14485:1016;;;15535:7;15531:2;-1:-1:-1;;;;;15516:27:10;15525:4;-1:-1:-1;;;;;15516:27:10;-1:-1:-1;;;;;;;;;;;15516:27:10;;;;;;;;;13620:1982;;13520:2082;;;:::o;4759:1086::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4869:7:10;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:17;;;:11;:17;;;;;;;;;4984:51;;;;;;;;;-1:-1:-1;;;;;4984:51:10;;;;-1:-1:-1;;;4984:51:10;;-1:-1:-1;;;;;4984:51:10;;;;;;;;-1:-1:-1;;;4984:51:10;;;;;;;;;;;;;;5053:714;;5102:14;;-1:-1:-1;;;;;5102:28:10;;5098:99;;5165:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5098:99::-;-1:-1:-1;;;5533:6:10;5577:17;;;;:11;:17;;;;;;;;;5565:29;;;;;;;;;-1:-1:-1;;;;;5565:29:10;;;;;-1:-1:-1;;;5565:29:10;;-1:-1:-1;;;;;5565:29:10;;;;;;;;-1:-1:-1;;;5565:29:10;;;;;;;;;;;;;5624:28;5620:107;;5691:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5620:107::-;5494:255;;;4966:815;4940:841;5807:31;;-1:-1:-1;;;5807:31:10;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;1175:320:5:-;-1:-1:-1;;;;;1465:19:5;;:23;;;1175:320::o;19115:650:10:-;19293:72;;-1:-1:-1;;;19293:72:10;;19273:4;;-1:-1:-1;;;;;19293:36:10;;;;;:72;;719:10:6;;19344:4:10;;19350:7;;19359:5;;19293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19293:72:10;;;;;;;;-1:-1:-1;;19293:72:10;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19524:6;:13;19541:1;19524:18;19520:229;;19569:40;;-1:-1:-1;;;19569:40:10;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;-1:-1:-1;;;;;;19411:55:10;-1:-1:-1;;;19411:55:10;;-1:-1:-1;19289:470:10;19115:650;;;;;;:::o;328:703:7:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;10177:1708:10;10295:20;10318:13;-1:-1:-1;;;;;10345:16:10;;10341:48;;10370:19;;-1:-1:-1;;;10370:19:10;;;;;;;;;;;10341:48;10403:8;10415:1;10403:13;10399:44;;10425:18;;-1:-1:-1;;;10425:18:10;;;;;;;;;;;10399:44;-1:-1:-1;;;;;10786:16:10;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;10844:49:10;;-1:-1:-1;;;;;10786:44:10;;;;;;;10844:49;;;-1:-1:-1;;;;;;;;;10786:44:10;;;;;;10844:49;;;;;;;;;;;;;;;;10908:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;10957:66:10;;;-1:-1:-1;;;11007:15:10;10957:66;;;;;;;;;;;;;10908:25;;11101:23;;;;11143:15;;:13;:15::i;:::-;11139:618;;;11178:308;11208:38;;11233:12;;-1:-1:-1;;;;;11208:38:10;;;11225:1;;-1:-1:-1;;;;;;;;;;;11208:38:10;11225:1;;11208:38;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;-1:-1:-1;;;11377:40:10;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11656:40;;11681:14;;;;;-1:-1:-1;;;;;11656:40:10;;;11673:1;;-1:-1:-1;;;;;;;;;;;11656:40:10;11673:1;;11656:40;11738:3;11723:12;:18;11626:117;;11139:618;-1:-1:-1;11770:13:10;:28;;;11818:60;;11851:2;11855:12;11869:8;11818:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:13:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:13;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:254::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;1014:2;999:18;;;;986:32;;-1:-1:-1;;;770:254:13:o;1029:258::-;1101:1;1111:113;1125:6;1122:1;1119:13;1111:113;;;1201:11;;;1195:18;1182:11;;;1175:39;1147:2;1140:10;1111:113;;;1242:6;1239:1;1236:13;1233:48;;;-1:-1:-1;;1277:1:13;1259:16;;1252:27;1029:258::o;1292:269::-;1345:3;1383:5;1377:12;1410:6;1405:3;1398:19;1426:63;1482:6;1475:4;1470:3;1466:14;1459:4;1452:5;1448:16;1426:63;:::i;:::-;1543:2;1522:15;-1:-1:-1;;1518:29:13;1509:39;;;;1550:4;1505:50;;1292:269;-1:-1:-1;;1292:269:13:o;1566:231::-;1715:2;1704:9;1697:21;1678:4;1735:56;1787:2;1776:9;1772:18;1764:6;1735:56;:::i;1802:180::-;1861:6;1914:2;1902:9;1893:7;1889:23;1885:32;1882:52;;;1930:1;1927;1920:12;1882:52;-1:-1:-1;1953:23:13;;1802:180;-1:-1:-1;1802:180:13:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;-1:-1:-1;;;;;2967:14:13;;;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:13;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3644:23;;-1:-1:-1;;;;;3679:30:13;;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:13;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:160::-;4191:20;;4247:13;;4240:21;4230:32;;4220:60;;4276:1;4273;4266:12;4291:254;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4456:29;4475:9;4456:29;:::i;:::-;4446:39;;4504:35;4535:2;4524:9;4520:18;4504:35;:::i;:::-;4494:45;;4291:254;;;;;:::o;4550:667::-;4645:6;4653;4661;4669;4722:3;4710:9;4701:7;4697:23;4693:33;4690:53;;;4739:1;4736;4729:12;4690:53;4762:29;4781:9;4762:29;:::i;:::-;4752:39;;4810:38;4844:2;4833:9;4829:18;4810:38;:::i;:::-;4800:48;-1:-1:-1;4895:2:13;4880:18;;4867:32;;-1:-1:-1;4950:2:13;4935:18;;4922:32;-1:-1:-1;;;;;4966:30:13;;4963:50;;;5009:1;5006;4999:12;4963:50;5032:22;;5085:4;5077:13;;5073:27;-1:-1:-1;5063:55:13;;5114:1;5111;5104:12;5063:55;5137:74;5203:7;5198:2;5185:16;5180:2;5176;5172:11;5137:74;:::i;:::-;5127:84;;;4550:667;;;;;;;:::o;5222:260::-;5290:6;5298;5351:2;5339:9;5330:7;5326:23;5322:32;5319:52;;;5367:1;5364;5357:12;5319:52;5390:29;5409:9;5390:29;:::i;:::-;5380:39;;5438:38;5472:2;5461:9;5457:18;5438:38;:::i;5487:180::-;5543:6;5596:2;5584:9;5575:7;5571:23;5567:32;5564:52;;;5612:1;5609;5602:12;5564:52;5635:26;5651:9;5635:26;:::i;5672:356::-;5874:2;5856:21;;;5893:18;;;5886:30;5952:34;5947:2;5932:18;;5925:62;6019:2;6004:18;;5672:356::o;6033:127::-;6094:10;6089:3;6085:20;6082:1;6075:31;6125:4;6122:1;6115:15;6149:4;6146:1;6139:15;6165:128;6205:3;6236:1;6232:6;6229:1;6226:13;6223:39;;;6242:18;;:::i;:::-;-1:-1:-1;6278:9:13;;6165:128::o;6981:125::-;7021:4;7049:1;7046;7043:8;7040:34;;;7054:18;;:::i;:::-;-1:-1:-1;7091:9:13;;6981:125::o;7111:380::-;7190:1;7186:12;;;;7233;;;7254:61;;7308:4;7300:6;7296:17;7286:27;;7254:61;7361:2;7353:6;7350:14;7330:18;7327:38;7324:161;;7407:10;7402:3;7398:20;7395:1;7388:31;7442:4;7439:1;7432:15;7470:4;7467:1;7460:15;7324:161;;7111:380;;;:::o;7846:355::-;8048:2;8030:21;;;8087:2;8067:18;;;8060:30;8126:33;8121:2;8106:18;;8099:61;8192:2;8177:18;;7846:355::o;10482:185::-;10524:3;10562:5;10556:12;10577:52;10622:6;10617:3;10610:4;10603:5;10599:16;10577:52;:::i;:::-;10645:16;;;;;10482:185;-1:-1:-1;;10482:185:13:o;10790:1433::-;11168:3;11197:1;11230:6;11224:13;11260:3;11282:1;11310:9;11306:2;11302:18;11292:28;;11370:2;11359:9;11355:18;11392;11382:61;;11436:4;11428:6;11424:17;11414:27;;11382:61;11462:2;11510;11502:6;11499:14;11479:18;11476:38;11473:165;;-1:-1:-1;;;11537:33:13;;11593:4;11590:1;11583:15;11623:4;11544:3;11611:17;11473:165;11654:18;11681:104;;;;11799:1;11794:320;;;;11647:467;;11681:104;-1:-1:-1;;11714:24:13;;11702:37;;11759:16;;;;-1:-1:-1;11681:104:13;;11794:320;10310:1;10303:14;;;10347:4;10334:18;;11889:1;11903:165;11917:6;11914:1;11911:13;11903:165;;;11995:14;;11982:11;;;11975:35;12038:16;;;;11932:10;;11903:165;;;11907:3;;12097:6;12092:3;12088:16;12081:23;;11647:467;;;;;;;12130:87;12155:61;12181:34;12211:3;-1:-1:-1;;;10428:16:13;;10469:1;10460:11;;10363:114;12181:34;12173:6;12155:61;:::i;:::-;-1:-1:-1;;;10732:20:13;;10777:1;10768:11;;10672:113;12130:87;12123:94;10790:1433;-1:-1:-1;;;;;10790:1433:13:o;12635:500::-;-1:-1:-1;;;;;12904:15:13;;;12886:34;;12956:15;;12951:2;12936:18;;12929:43;13003:2;12988:18;;12981:34;;;13051:3;13046:2;13031:18;;13024:31;;;12829:4;;13072:57;;13109:19;;13101:6;13072:57;:::i;:::-;13064:65;12635:500;-1:-1:-1;;;;;;12635:500:13:o;13140:249::-;13209:6;13262:2;13250:9;13241:7;13237:23;13233:32;13230:52;;;13278:1;13275;13268:12;13230:52;13310:9;13304:16;13329:30;13353:5;13329:30;:::i;13394:135::-;13433:3;13454:17;;;13451:43;;13474:18;;:::i;:::-;-1:-1:-1;13521:1:13;13510:13;;13394:135::o;13534:127::-;13595:10;13590:3;13586:20;13583:1;13576:31;13626:4;13623:1;13616:15;13650:4;13647:1;13640:15;13666:120;13706:1;13732;13722:35;;13737:18;;:::i;:::-;-1:-1:-1;13771:9:13;;13666:120::o;13791:112::-;13823:1;13849;13839:35;;13854:18;;:::i;:::-;-1:-1:-1;13888:9:13;;13791:112::o;13908:127::-;13969:10;13964:3;13960:20;13957:1;13950:31;14000:4;13997:1;13990:15;14024:4;14021:1;14014:15
Swarm Source
ipfs://34fc7c8f05591b987020b5ed923aa37db2bc57279d392997b58a193c2c5a1330
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.