ERC-721
Overview
Max Total Supply
2,222 3LB
Holders
399
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 3LBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ThreeLandBirds
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-28 */ /** *Submitted for verification at Etherscan.io on 2022-04-13 */ // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.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); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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; } } // File contracts/ERC721A.sol // Creator: Chiru Labs /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 0; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721A: balance query for the zero address" ); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); for (uint256 curr = tokenId; ; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require( _exists(tokenId), "ERC721A: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity > 0, "ERC721A: quantity must be greater 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721A: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract ThreeLandBirds is ERC721A, Ownable { string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; string baseURI; uint256 public price = 0.005 ether; uint256 public MAX_SUPPLY = 2222; uint256 public MAX_PER_TX = 5; constructor( string memory _initBaseURI ) ERC721A("3LandBirds", "3LB") { setBaseURI(_initBaseURI); } function mint(uint256 _amount) public payable { require(MAX_SUPPLY >= totalSupply() + _amount, "SOLD OUT"); require(_amount > 0, "No 0 mints"); require(MAX_PER_TX >= _amount, "Exceeds max per transaction"); require(msg.value >= _amount * price, "Invalid funds provided"); _safeMint(msg.sender, _amount); } function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() public onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setMaxSupply(uint256 _newMaxSupply) public onlyOwner { MAX_SUPPLY = _newMaxSupply; } function setBaseURI(string memory baseURI_) public onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600080556611c37937e080006009556108ae600a556005600b553480156200002b57600080fd5b50604051620024c6380380620024c68339810160408190526200004e9162000254565b604080518082018252600a815269334c616e64426972647360b01b60208083019182528351808501909452600384526219a62160e91b9084015281519192916200009b91600191620001ae565b508051620000b1906002906020840190620001ae565b505050620000ce620000c8620000e060201b60201c565b620000e4565b620000d98162000136565b5062000383565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001aa906008906020840190620001ae565b5050565b828054620001bc9062000330565b90600052602060002090601f016020900481019282620001e057600085556200022b565b82601f10620001fb57805160ff19168380011785556200022b565b828001600101855582156200022b579182015b828111156200022b5782518255916020019190600101906200020e565b50620002399291506200023d565b5090565b5b808211156200023957600081556001016200023e565b600060208083850312156200026857600080fd5b82516001600160401b03808211156200028057600080fd5b818501915085601f8301126200029557600080fd5b815181811115620002aa57620002aa6200036d565b604051601f8201601f19908116603f01168101908382118183101715620002d557620002d56200036d565b816040528281528886848701011115620002ee57600080fd5b600093505b82841015620003125784840186015181850187015292850192620002f3565b82841115620003245760008684830101525b98975050505050505050565b600181811c908216806200034557607f821691505b602082108114156200036757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61213380620003936000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c0326146104e4578063e985e9c51461050c578063f2fde38b1461052c578063f43a22dc1461054c57600080fd5b8063a22cb46514610453578063b88d4fde14610473578063c668286214610493578063c87b56dd146104c457600080fd5b806391b7f5ed116100d157806391b7f5ed146103f557806395d89b4114610415578063a035b1fe1461042a578063a0712d681461044057600080fd5b806370a08231146103a2578063715018a6146103c25780638da5cb5b146103d757600080fd5b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce71461032257806355f804b3146103425780636352211e146103625780636f8b44b01461038257600080fd5b806332cb6b0c146102d75780633ccfd60b146102ed57806342842e0e1461030257600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611cc0565b610562565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cf565b6040516101f39190611ea5565b34801561022a57600080fd5b5061023e610239366004611d60565b610661565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611c94565b6106f1565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611ba0565b610809565b3480156102c357600080fd5b506102896102d2366004611c94565b610814565b3480156102e357600080fd5b50610289600a5481565b3480156102f957600080fd5b50610276610982565b34801561030e57600080fd5b5061027661031d366004611ba0565b610a04565b34801561032e57600080fd5b5061028961033d366004611d60565b610a1f565b34801561034e57600080fd5b5061027661035d366004611d17565b610a81565b34801561036e57600080fd5b5061023e61037d366004611d60565b610ac2565b34801561038e57600080fd5b5061027661039d366004611d60565b610ad4565b3480156103ae57600080fd5b506102896103bd366004611b43565b610b03565b3480156103ce57600080fd5b50610276610b94565b3480156103e357600080fd5b506007546001600160a01b031661023e565b34801561040157600080fd5b50610276610410366004611d60565b610bca565b34801561042157600080fd5b50610211610bf9565b34801561043657600080fd5b5061028960095481565b61027661044e366004611d60565b610c08565b34801561045f57600080fd5b5061027661046e366004611c61565b610d46565b34801561047f57600080fd5b5061027661048e366004611be1565b610e0b565b34801561049f57600080fd5b5061021160405180604001604052806005815260200164173539b7b760d91b81525081565b3480156104d057600080fd5b506102116104df366004611d60565b610e44565b3480156104f057600080fd5b5061023e73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561051857600080fd5b506101e7610527366004611b67565b610f10565b34801561053857600080fd5b50610276610547366004611b43565b610fef565b34801561055857600080fd5b50610289600b5481565b60006001600160e01b031982166380ac58cd60e01b148061059357506001600160e01b03198216635b5e139f60e01b145b806105ae57506001600160e01b0319821663780e9d6360e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105de90612010565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90612010565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066e826000541190565b6106d55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106fc82610ac2565b9050806001600160a01b0316836001600160a01b0316141561076b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106cc565b336001600160a01b038216148061078757506107878133610f10565b6107f95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106cc565b610804838383611087565b505050565b6108048383836110e3565b600061081f83610b03565b82106108785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106cc565b600080549080805b83811015610922576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108d357805192505b876001600160a01b0316836001600160a01b0316141561090f5786841415610901575093506105c992505050565b8361090b8161204b565b9450505b508061091a8161204b565b915050610880565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106cc565b6007546001600160a01b031633146109ac5760405162461bcd60e51b81526004016106cc90611eb8565b604051600090339047908381818185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a0157600080fd5b50565b61080483838360405180602001604052806000815250610e0b565b600080548210610a7d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106cc565b5090565b6007546001600160a01b03163314610aab5760405162461bcd60e51b81526004016106cc90611eb8565b8051610abe906008906020840190611a3d565b5050565b6000610acd8261142a565b5192915050565b6007546001600160a01b03163314610afe5760405162461bcd60e51b81526004016106cc90611eb8565b600a55565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106cc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610bbe5760405162461bcd60e51b81526004016106cc90611eb8565b610bc8600061150a565b565b6007546001600160a01b03163314610bf45760405162461bcd60e51b81526004016106cc90611eb8565b600955565b6060600280546105de90612010565b80610c1260005490565b610c1c9190611f6b565b600a541015610c585760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016106cc565b60008111610c955760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106cc565b80600b541015610ce75760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016106cc565b600954610cf49082611f97565b341015610d3c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106cc565b610a01338261155c565b6001600160a01b038216331415610d9f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106cc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e168484846110e3565b610e2284848484611576565b610e3e5760405162461bcd60e51b81526004016106cc90611eed565b50505050565b6060610e51826000541190565b610e955760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106cc565b600060088054610ea490612010565b905011610ec057604051806020016040528060008152506105c9565b6008610ecb83611683565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610efb93929190611dc1565b60405160208183030381529060405292915050565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f6c57600080fd5b505afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190611cfa565b6001600160a01b03161415610fbd5760019150506105c9565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146110195760405162461bcd60e51b81526004016106cc90611eb8565b6001600160a01b03811661107e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cc565b610a018161150a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110ee8261142a565b80519091506000906001600160a01b0316336001600160a01b0316148061112557503361111a84610661565b6001600160a01b0316145b80611137575081516111379033610f10565b9050806111a15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106cc565b846001600160a01b031682600001516001600160a01b0316146112155760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106cc565b6001600160a01b0384166112795760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106cc565b6112896000848460000151611087565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061134e908590611f6b565b6000818152600360205260409020549091506001600160a01b03166113e057611378816000541190565b156113e05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611449826000541190565b6114a85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106cc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114f7579392505050565b508061150281611ff9565b9150506114aa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610abe828260405180602001604052806000815250611781565b60006001600160a01b0384163b1561167857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ba903390899088908890600401611e72565b602060405180830381600087803b1580156115d457600080fd5b505af1925050508015611604575060408051601f3d908101601f1916820190925261160191810190611cdd565b60015b61165e573d808015611632576040519150601f19603f3d011682016040523d82523d6000602084013e611637565b606091505b5080516116565760405162461bcd60e51b81526004016106cc90611eed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe7565b506001949350505050565b6060816116a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d157806116bb8161204b565b91506116ca9050600a83611f83565b91506116ab565b60008167ffffffffffffffff8111156116ec576116ec6120bc565b6040519080825280601f01601f191660200182016040528015611716576020820181803683370190505b5090505b8415610fe75761172b600183611fb6565b9150611738600a86612066565b611743906030611f6b565b60f81b818381518110611758576117586120a6565b60200101906001600160f81b031916908160001a90535061177a600a86611f83565b945061171a565b6000546001600160a01b0384166117e45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106cc565b6117ef816000541190565b1561183c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106cc565b600083116118985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016106cc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118f4908790611f40565b6001600160801b031681526020018583602001516119129190611f40565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611a325760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119f66000888488611576565b611a125760405162461bcd60e51b81526004016106cc90611eed565b81611a1c8161204b565b9250508080611a2a9061204b565b9150506119a9565b506000819055611422565b828054611a4990612010565b90600052602060002090601f016020900481019282611a6b5760008555611ab1565b82601f10611a8457805160ff1916838001178555611ab1565b82800160010185558215611ab1579182015b82811115611ab1578251825591602001919060010190611a96565b50610a7d9291505b80821115610a7d5760008155600101611ab9565b600067ffffffffffffffff80841115611ae857611ae86120bc565b604051601f8501601f19908116603f01168101908282118183101715611b1057611b106120bc565b81604052809350858152868686011115611b2957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b5557600080fd5b8135611b60816120d2565b9392505050565b60008060408385031215611b7a57600080fd5b8235611b85816120d2565b91506020830135611b95816120d2565b809150509250929050565b600080600060608486031215611bb557600080fd5b8335611bc0816120d2565b92506020840135611bd0816120d2565b929592945050506040919091013590565b60008060008060808587031215611bf757600080fd5b8435611c02816120d2565b93506020850135611c12816120d2565b925060408501359150606085013567ffffffffffffffff811115611c3557600080fd5b8501601f81018713611c4657600080fd5b611c5587823560208401611acd565b91505092959194509250565b60008060408385031215611c7457600080fd5b8235611c7f816120d2565b915060208301358015158114611b9557600080fd5b60008060408385031215611ca757600080fd5b8235611cb2816120d2565b946020939093013593505050565b600060208284031215611cd257600080fd5b8135611b60816120e7565b600060208284031215611cef57600080fd5b8151611b60816120e7565b600060208284031215611d0c57600080fd5b8151611b60816120d2565b600060208284031215611d2957600080fd5b813567ffffffffffffffff811115611d4057600080fd5b8201601f81018413611d5157600080fd5b610fe784823560208401611acd565b600060208284031215611d7257600080fd5b5035919050565b60008151808452611d91816020860160208601611fcd565b601f01601f19169290920160200192915050565b60008151611db7818560208601611fcd565b9290920192915050565b600080855481600182811c915080831680611ddd57607f831692505b6020808410821415611dfd57634e487b7160e01b86526022600452602486fd5b818015611e115760018114611e2257611e4f565b60ff19861689528489019650611e4f565b60008c81526020902060005b86811015611e475781548b820152908501908301611e2e565b505084890196505b505050505050611e68611e628287611da5565b85611da5565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6890830184611d79565b602081526000611b606020830184611d79565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611f6257611f6261207a565b01949350505050565b60008219821115611f7e57611f7e61207a565b500190565b600082611f9257611f92612090565b500490565b6000816000190483118215151615611fb157611fb161207a565b500290565b600082821015611fc857611fc861207a565b500390565b60005b83811015611fe8578181015183820152602001611fd0565b83811115610e3e5750506000910152565b6000816120085761200861207a565b506000190190565b600181811c9082168061202457607f821691505b6020821081141561204557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561205f5761205f61207a565b5060010190565b60008261207557612075612090565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a0157600080fd5b6001600160e01b031981168114610a0157600080fdfea2646970667358221220a31a167fae9f7df554ade9f75a549689f8938e0c652ab9c49bf2ae04e3126c7c64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d547356425369704e61417468384e6a5a51766d4658355563686a484e506566675664584a5064737a586e61322f00000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c0326146104e4578063e985e9c51461050c578063f2fde38b1461052c578063f43a22dc1461054c57600080fd5b8063a22cb46514610453578063b88d4fde14610473578063c668286214610493578063c87b56dd146104c457600080fd5b806391b7f5ed116100d157806391b7f5ed146103f557806395d89b4114610415578063a035b1fe1461042a578063a0712d681461044057600080fd5b806370a08231146103a2578063715018a6146103c25780638da5cb5b146103d757600080fd5b806332cb6b0c116101645780634f6ccce71161013e5780634f6ccce71461032257806355f804b3146103425780636352211e146103625780636f8b44b01461038257600080fd5b806332cb6b0c146102d75780633ccfd60b146102ed57806342842e0e1461030257600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611cc0565b610562565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105cf565b6040516101f39190611ea5565b34801561022a57600080fd5b5061023e610239366004611d60565b610661565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611c94565b6106f1565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611ba0565b610809565b3480156102c357600080fd5b506102896102d2366004611c94565b610814565b3480156102e357600080fd5b50610289600a5481565b3480156102f957600080fd5b50610276610982565b34801561030e57600080fd5b5061027661031d366004611ba0565b610a04565b34801561032e57600080fd5b5061028961033d366004611d60565b610a1f565b34801561034e57600080fd5b5061027661035d366004611d17565b610a81565b34801561036e57600080fd5b5061023e61037d366004611d60565b610ac2565b34801561038e57600080fd5b5061027661039d366004611d60565b610ad4565b3480156103ae57600080fd5b506102896103bd366004611b43565b610b03565b3480156103ce57600080fd5b50610276610b94565b3480156103e357600080fd5b506007546001600160a01b031661023e565b34801561040157600080fd5b50610276610410366004611d60565b610bca565b34801561042157600080fd5b50610211610bf9565b34801561043657600080fd5b5061028960095481565b61027661044e366004611d60565b610c08565b34801561045f57600080fd5b5061027661046e366004611c61565b610d46565b34801561047f57600080fd5b5061027661048e366004611be1565b610e0b565b34801561049f57600080fd5b5061021160405180604001604052806005815260200164173539b7b760d91b81525081565b3480156104d057600080fd5b506102116104df366004611d60565b610e44565b3480156104f057600080fd5b5061023e73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561051857600080fd5b506101e7610527366004611b67565b610f10565b34801561053857600080fd5b50610276610547366004611b43565b610fef565b34801561055857600080fd5b50610289600b5481565b60006001600160e01b031982166380ac58cd60e01b148061059357506001600160e01b03198216635b5e139f60e01b145b806105ae57506001600160e01b0319821663780e9d6360e01b145b806105c957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105de90612010565b80601f016020809104026020016040519081016040528092919081815260200182805461060a90612010565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600061066e826000541190565b6106d55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106fc82610ac2565b9050806001600160a01b0316836001600160a01b0316141561076b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106cc565b336001600160a01b038216148061078757506107878133610f10565b6107f95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106cc565b610804838383611087565b505050565b6108048383836110e3565b600061081f83610b03565b82106108785760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106cc565b600080549080805b83811015610922576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108d357805192505b876001600160a01b0316836001600160a01b0316141561090f5786841415610901575093506105c992505050565b8361090b8161204b565b9450505b508061091a8161204b565b915050610880565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106cc565b6007546001600160a01b031633146109ac5760405162461bcd60e51b81526004016106cc90611eb8565b604051600090339047908381818185875af1925050503d80600081146109ee576040519150601f19603f3d011682016040523d82523d6000602084013e6109f3565b606091505b5050905080610a0157600080fd5b50565b61080483838360405180602001604052806000815250610e0b565b600080548210610a7d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106cc565b5090565b6007546001600160a01b03163314610aab5760405162461bcd60e51b81526004016106cc90611eb8565b8051610abe906008906020840190611a3d565b5050565b6000610acd8261142a565b5192915050565b6007546001600160a01b03163314610afe5760405162461bcd60e51b81526004016106cc90611eb8565b600a55565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106cc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610bbe5760405162461bcd60e51b81526004016106cc90611eb8565b610bc8600061150a565b565b6007546001600160a01b03163314610bf45760405162461bcd60e51b81526004016106cc90611eb8565b600955565b6060600280546105de90612010565b80610c1260005490565b610c1c9190611f6b565b600a541015610c585760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b60448201526064016106cc565b60008111610c955760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016106cc565b80600b541015610ce75760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016106cc565b600954610cf49082611f97565b341015610d3c5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106cc565b610a01338261155c565b6001600160a01b038216331415610d9f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106cc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e168484846110e3565b610e2284848484611576565b610e3e5760405162461bcd60e51b81526004016106cc90611eed565b50505050565b6060610e51826000541190565b610e955760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016106cc565b600060088054610ea490612010565b905011610ec057604051806020016040528060008152506105c9565b6008610ecb83611683565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610efb93929190611dc1565b60405160208183030381529060405292915050565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b158015610f6c57600080fd5b505afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190611cfa565b6001600160a01b03161415610fbd5760019150506105c9565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b031633146110195760405162461bcd60e51b81526004016106cc90611eb8565b6001600160a01b03811661107e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cc565b610a018161150a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110ee8261142a565b80519091506000906001600160a01b0316336001600160a01b0316148061112557503361111a84610661565b6001600160a01b0316145b80611137575081516111379033610f10565b9050806111a15760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106cc565b846001600160a01b031682600001516001600160a01b0316146112155760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106cc565b6001600160a01b0384166112795760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106cc565b6112896000848460000151611087565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b9590921694909402179092559061134e908590611f6b565b6000818152600360205260409020549091506001600160a01b03166113e057611378816000541190565b156113e05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611449826000541190565b6114a85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106cc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114f7579392505050565b508061150281611ff9565b9150506114aa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610abe828260405180602001604052806000815250611781565b60006001600160a01b0384163b1561167857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115ba903390899088908890600401611e72565b602060405180830381600087803b1580156115d457600080fd5b505af1925050508015611604575060408051601f3d908101601f1916820190925261160191810190611cdd565b60015b61165e573d808015611632576040519150601f19603f3d011682016040523d82523d6000602084013e611637565b606091505b5080516116565760405162461bcd60e51b81526004016106cc90611eed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe7565b506001949350505050565b6060816116a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116d157806116bb8161204b565b91506116ca9050600a83611f83565b91506116ab565b60008167ffffffffffffffff8111156116ec576116ec6120bc565b6040519080825280601f01601f191660200182016040528015611716576020820181803683370190505b5090505b8415610fe75761172b600183611fb6565b9150611738600a86612066565b611743906030611f6b565b60f81b818381518110611758576117586120a6565b60200101906001600160f81b031916908160001a90535061177a600a86611f83565b945061171a565b6000546001600160a01b0384166117e45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106cc565b6117ef816000541190565b1561183c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106cc565b600083116118985760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016106cc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118f4908790611f40565b6001600160801b031681526020018583602001516119129190611f40565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611a325760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119f66000888488611576565b611a125760405162461bcd60e51b81526004016106cc90611eed565b81611a1c8161204b565b9250508080611a2a9061204b565b9150506119a9565b506000819055611422565b828054611a4990612010565b90600052602060002090601f016020900481019282611a6b5760008555611ab1565b82601f10611a8457805160ff1916838001178555611ab1565b82800160010185558215611ab1579182015b82811115611ab1578251825591602001919060010190611a96565b50610a7d9291505b80821115610a7d5760008155600101611ab9565b600067ffffffffffffffff80841115611ae857611ae86120bc565b604051601f8501601f19908116603f01168101908282118183101715611b1057611b106120bc565b81604052809350858152868686011115611b2957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b5557600080fd5b8135611b60816120d2565b9392505050565b60008060408385031215611b7a57600080fd5b8235611b85816120d2565b91506020830135611b95816120d2565b809150509250929050565b600080600060608486031215611bb557600080fd5b8335611bc0816120d2565b92506020840135611bd0816120d2565b929592945050506040919091013590565b60008060008060808587031215611bf757600080fd5b8435611c02816120d2565b93506020850135611c12816120d2565b925060408501359150606085013567ffffffffffffffff811115611c3557600080fd5b8501601f81018713611c4657600080fd5b611c5587823560208401611acd565b91505092959194509250565b60008060408385031215611c7457600080fd5b8235611c7f816120d2565b915060208301358015158114611b9557600080fd5b60008060408385031215611ca757600080fd5b8235611cb2816120d2565b946020939093013593505050565b600060208284031215611cd257600080fd5b8135611b60816120e7565b600060208284031215611cef57600080fd5b8151611b60816120e7565b600060208284031215611d0c57600080fd5b8151611b60816120d2565b600060208284031215611d2957600080fd5b813567ffffffffffffffff811115611d4057600080fd5b8201601f81018413611d5157600080fd5b610fe784823560208401611acd565b600060208284031215611d7257600080fd5b5035919050565b60008151808452611d91816020860160208601611fcd565b601f01601f19169290920160200192915050565b60008151611db7818560208601611fcd565b9290920192915050565b600080855481600182811c915080831680611ddd57607f831692505b6020808410821415611dfd57634e487b7160e01b86526022600452602486fd5b818015611e115760018114611e2257611e4f565b60ff19861689528489019650611e4f565b60008c81526020902060005b86811015611e475781548b820152908501908301611e2e565b505084890196505b505050505050611e68611e628287611da5565b85611da5565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6890830184611d79565b602081526000611b606020830184611d79565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115611f6257611f6261207a565b01949350505050565b60008219821115611f7e57611f7e61207a565b500190565b600082611f9257611f92612090565b500490565b6000816000190483118215151615611fb157611fb161207a565b500290565b600082821015611fc857611fc861207a565b500390565b60005b83811015611fe8578181015183820152602001611fd0565b83811115610e3e5750506000910152565b6000816120085761200861207a565b506000190190565b600181811c9082168061202457607f821691505b6020821081141561204557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561205f5761205f61207a565b5060010190565b60008261207557612075612090565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a0157600080fd5b6001600160e01b031981168114610a0157600080fdfea2646970667358221220a31a167fae9f7df554ade9f75a549689f8938e0c652ab9c49bf2ae04e3126c7c64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d547356425369704e61417468384e6a5a51766d4658355563686a484e506566675664584a5064737a586e61322f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmTsVBSipNaAth8NjZQvmFX5UchjHNPefgVdXJPdszXna2/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d547356425369704e61417468384e6a5a51766d46583555
Arg [3] : 63686a484e506566675664584a5064737a586e61322f00000000000000000000
Deployed Bytecode Sourcemap
40287:2324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27542:422;;;;;;;;;;-1:-1:-1;27542:422:0;;;;;:::i;:::-;;:::i;:::-;;;7507:14:1;;7500:22;7482:41;;7470:2;7455:18;27542:422:0;;;;;;;;29325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31020:292::-;;;;;;;;;;-1:-1:-1;31020:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6805:32:1;;;6787:51;;6775:2;6760:18;31020:292:0;6641:203:1;30541:413:0;;;;;;;;;;-1:-1:-1;30541:413:0;;;;;:::i;:::-;;:::i;:::-;;25901:100;;;;;;;;;;-1:-1:-1;25954:7:0;25981:12;25901:100;;;17279:25:1;;;17267:2;17252:18;25901:100:0;17133:177:1;32047:162:0;;;;;;;;;;-1:-1:-1;32047:162:0;;;;;:::i;:::-;;:::i;26606:864::-;;;;;;;;;;-1:-1:-1;26606:864:0;;;;;:::i;:::-;;:::i;40560:32::-;;;;;;;;;;;;;;;;41591:184;;;;;;;;;;;;;:::i;32280:177::-;;;;;;;;;;-1:-1:-1;32280:177:0;;;;;:::i;:::-;;:::i;26078:228::-;;;;;;;;;;-1:-1:-1;26078:228:0;;;;;:::i;:::-;;:::i;41996:98::-;;;;;;;;;;-1:-1:-1;41996:98:0;;;;;:::i;:::-;;:::i;29134:124::-;;;;;;;;;;-1:-1:-1;29134:124:0;;;;;:::i;:::-;;:::i;41881:107::-;;;;;;;;;;-1:-1:-1;41881:107:0;;;;;:::i;:::-;;:::i;28028:258::-;;;;;;;;;;-1:-1:-1;28028:258:0;;;;;:::i;:::-;;:::i;2714:103::-;;;;;;;;;;;;;:::i;2063:87::-;;;;;;;;;;-1:-1:-1;2136:6:0;;-1:-1:-1;;;;;2136:6:0;2063:87;;41783:90;;;;;;;;;;-1:-1:-1;41783:90:0;;;;;:::i;:::-;;:::i;29494:104::-;;;;;;;;;;;;;:::i;40519:34::-;;;;;;;;;;;;;;;;40773:357;;;;;;:::i;:::-;;:::i;31384:311::-;;;;;;;;;;-1:-1:-1;31384:311:0;;;;;:::i;:::-;;:::i;32528:355::-;;;;;;;;;;-1:-1:-1;32528:355:0;;;;;:::i;:::-;;:::i;40338:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;40338:46:0;;;;;42102:506;;;;;;;;;;-1:-1:-1;42102:506:0;;;;;:::i;:::-;;:::i;40391:98::-;;;;;;;;;;;;40447:42;40391:98;;41138:445;;;;;;;;;;-1:-1:-1;41138:445:0;;;;;:::i;:::-;;:::i;2972:238::-;;;;;;;;;;-1:-1:-1;2972:238:0;;;;;:::i;:::-;;:::i;40599:29::-;;;;;;;;;;;;;;;;27542:422;27689:4;-1:-1:-1;;;;;;27731:40:0;;-1:-1:-1;;;27731:40:0;;:105;;-1:-1:-1;;;;;;;27788:48:0;;-1:-1:-1;;;27788:48:0;27731:105;:172;;;-1:-1:-1;;;;;;;27853:50:0;;-1:-1:-1;;;27853:50:0;27731:172;:225;;;-1:-1:-1;;;;;;;;;;24053:40:0;;;27920:36;27711:245;27542:422;-1:-1:-1;;27542:422:0:o;29325:100::-;29379:13;29412:5;29405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29325:100;:::o;31020:292::-;31124:7;31171:16;31179:7;33195:4;33229:12;-1:-1:-1;33219:22:0;33138:111;31171:16;31149:111;;;;-1:-1:-1;;;31149:111:0;;16921:2:1;31149:111:0;;;16903:21:1;16960:2;16940:18;;;16933:30;16999:34;16979:18;;;16972:62;-1:-1:-1;;;17050:18:1;;;17043:43;17103:19;;31149:111:0;;;;;;;;;-1:-1:-1;31280:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31280:24:0;;31020:292::o;30541:413::-;30614:13;30630:24;30646:7;30630:15;:24::i;:::-;30614:40;;30679:5;-1:-1:-1;;;;;30673:11:0;:2;-1:-1:-1;;;;;30673:11:0;;;30665:58;;;;-1:-1:-1;;;30665:58:0;;13747:2:1;30665:58:0;;;13729:21:1;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:1;;;13869:32;13918:19;;30665:58:0;13545:398:1;30665:58:0;867:10;-1:-1:-1;;;;;30758:21:0;;;;:62;;-1:-1:-1;30783:37:0;30800:5;867:10;41138:445;:::i;30783:37::-;30736:169;;;;-1:-1:-1;;;30736:169:0;;10666:2:1;30736:169:0;;;10648:21:1;10705:2;10685:18;;;10678:30;10744:34;10724:18;;;10717:62;10815:27;10795:18;;;10788:55;10860:19;;30736:169:0;10464:421:1;30736:169:0;30918:28;30927:2;30931:7;30940:5;30918:8;:28::i;:::-;30603:351;30541:413;;:::o;32047:162::-;32173:28;32183:4;32189:2;32193:7;32173:9;:28::i;26606:864::-;26731:7;26772:16;26782:5;26772:9;:16::i;:::-;26764:5;:24;26756:71;;;;-1:-1:-1;;;26756:71:0;;7960:2:1;26756:71:0;;;7942:21:1;7999:2;7979:18;;;7972:30;8038:34;8018:18;;;8011:62;-1:-1:-1;;;8089:18:1;;;8082:32;8131:19;;26756:71:0;7758:398:1;26756:71:0;26838:22;25981:12;;;26838:22;;26970:426;26994:14;26990:1;:18;26970:426;;;27030:31;27064:14;;;:11;:14;;;;;;;;;27030:48;;;;;;;;;-1:-1:-1;;;;;27030:48:0;;;;;-1:-1:-1;;;27030:48:0;;;;;;;;;;;;27097:28;27093:103;;27166:14;;;-1:-1:-1;27093:103:0;27235:5;-1:-1:-1;;;;;27214:26:0;:17;-1:-1:-1;;;;;27214:26:0;;27210:175;;;27280:5;27265:11;:20;27261:77;;;-1:-1:-1;27317:1:0;-1:-1:-1;27310:8:0;;-1:-1:-1;;;27310:8:0;27261:77;27356:13;;;;:::i;:::-;;;;27210:175;-1:-1:-1;27010:3:0;;;;:::i;:::-;;;;26970:426;;;-1:-1:-1;27406:56:0;;-1:-1:-1;;;27406:56:0;;16090:2:1;27406:56:0;;;16072:21:1;16129:2;16109:18;;;16102:30;16168:34;16148:18;;;16141:62;-1:-1:-1;;;16219:18:1;;;16212:44;16273:19;;27406:56:0;15888:410:1;41591:184:0;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;41658:82:::1;::::0;41640:12:::1;::::0;41666:10:::1;::::0;41704:21:::1;::::0;41640:12;41658:82;41640:12;41658:82;41704:21;41666:10;41658:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41639:101;;;41759:7;41751:16;;;::::0;::::1;;41628:147;41591:184::o:0;32280:177::-;32410:39;32427:4;32433:2;32437:7;32410:39;;;;;;;;;;;;:16;:39::i;26078:228::-;26181:7;25981:12;;26214:5;:21;26206:69;;;;-1:-1:-1;;;26206:69:0;;9856:2:1;26206:69:0;;;9838:21:1;9895:2;9875:18;;;9868:30;9934:34;9914:18;;;9907:62;-1:-1:-1;;;9985:18:1;;;9978:33;10028:19;;26206:69:0;9654:399:1;26206:69:0;-1:-1:-1;26293:5:0;26078:228::o;41996:98::-;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;42068:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41996:98:::0;:::o;29134:124::-;29198:7;29225:20;29237:7;29225:11;:20::i;:::-;:25;;29134:124;-1:-1:-1;;29134:124:0:o;41881:107::-;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;41954:10:::1;:26:::0;41881:107::o;28028:258::-;28092:7;-1:-1:-1;;;;;28134:19:0;;28112:112;;;;-1:-1:-1;;;28112:112:0;;11092:2:1;28112:112:0;;;11074:21:1;11131:2;11111:18;;;11104:30;11170:34;11150:18;;;11143:62;-1:-1:-1;;;11221:18:1;;;11214:41;11272:19;;28112:112:0;10890:407:1;28112:112:0;-1:-1:-1;;;;;;28250:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28250:27:0;;28028:258::o;2714:103::-;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;2779:30:::1;2806:1;2779:18;:30::i;:::-;2714:103::o:0;41783:90::-;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;41848:5:::1;:17:::0;41783:90::o;29494:104::-;29550:13;29583:7;29576:14;;;;;:::i;40773:357::-;40868:7;40852:13;25954:7;25981:12;;25901:100;40852:13;:23;;;;:::i;:::-;40838:10;;:37;;40830:58;;;;-1:-1:-1;;;40830:58:0;;8363:2:1;40830:58:0;;;8345:21:1;8402:1;8382:18;;;8375:29;-1:-1:-1;;;8420:18:1;;;8413:38;8468:18;;40830:58:0;8161:331:1;40830:58:0;40917:1;40907:7;:11;40899:34;;;;-1:-1:-1;;;40899:34:0;;9517:2:1;40899:34:0;;;9499:21:1;9556:2;9536:18;;;9529:30;-1:-1:-1;;;9575:18:1;;;9568:40;9625:18;;40899:34:0;9315:334:1;40899:34:0;40966:7;40952:10;;:21;;40944:61;;;;-1:-1:-1;;;40944:61:0;;14150:2:1;40944:61:0;;;14132:21:1;14189:2;14169:18;;;14162:30;14228:29;14208:18;;;14201:57;14275:18;;40944:61:0;13948:351:1;40944:61:0;41047:5;;41037:15;;:7;:15;:::i;:::-;41024:9;:28;;41016:63;;;;-1:-1:-1;;;41016:63:0;;13396:2:1;41016:63:0;;;13378:21:1;13435:2;13415:18;;;13408:30;-1:-1:-1;;;13454:18:1;;;13447:52;13516:18;;41016:63:0;13194:346:1;41016:63:0;41092:30;41102:10;41114:7;41092:9;:30::i;31384:311::-;-1:-1:-1;;;;;31502:24:0;;867:10;31502:24;;31494:63;;;;-1:-1:-1;;;31494:63:0;;12622:2:1;31494:63:0;;;12604:21:1;12661:2;12641:18;;;12634:30;12700:28;12680:18;;;12673:56;12746:18;;31494:63:0;12420:350:1;31494:63:0;867:10;31570:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31570:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31570:53:0;;;;;;;;;;31639:48;;7482:41:1;;;31570:42:0;;867:10;31639:48;;7455:18:1;31639:48:0;;;;;;;31384:311;;:::o;32528:355::-;32687:28;32697:4;32703:2;32707:7;32687:9;:28::i;:::-;32748:48;32771:4;32777:2;32781:7;32790:5;32748:22;:48::i;:::-;32726:149;;;;-1:-1:-1;;;32726:149:0;;;;;;;:::i;:::-;32528:355;;;;:::o;42102:506::-;42204:13;42243:17;42251:8;33195:4;33229:12;-1:-1:-1;33219:22:0;33138:111;42243:17;42235:51;;;;-1:-1:-1;;;42235:51:0;;11504:2:1;42235:51:0;;;11486:21:1;11543:2;11523:18;;;11516:30;-1:-1:-1;;;11562:18:1;;;11555:51;11623:18;;42235:51:0;11302:345:1;42235:51:0;42343:1;42325:7;42319:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;42436:7;42470:26;42487:8;42470:16;:26::i;:::-;42523:13;;;;;;;;;;;;;-1:-1:-1;;;42523:13:0;;;42393:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42299:301;42102:506;-1:-1:-1;;42102:506:0:o;41138:445::-;41436:28;;-1:-1:-1;;;41436:28:0;;-1:-1:-1;;;;;6805:32:1;;;41436:28:0;;;6787:51:1;41263:4:0;;40447:42;;41428:49;;;40447:42;;41436:21;;6760:18:1;;41436:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41428:49:0;;41424:93;;;41501:4;41494:11;;;;;41424:93;-1:-1:-1;;;;;31937:25:0;;;31908:4;31937:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41536:39;41529:46;41138:445;-1:-1:-1;;;;41138:445:0:o;2972:238::-;2136:6;;-1:-1:-1;;;;;2136:6:0;867:10;2283:23;2275:68;;;;-1:-1:-1;;;2275:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3075:22:0;::::1;3053:110;;;::::0;-1:-1:-1;;;3053:110:0;;8699:2:1;3053:110:0::1;::::0;::::1;8681:21:1::0;8738:2;8718:18;;;8711:30;8777:34;8757:18;;;8750:62;-1:-1:-1;;;8828:18:1;;;8821:36;8874:19;;3053:110:0::1;8497:402:1::0;3053:110:0::1;3174:28;3193:8;3174:18;:28::i;37317:196::-:0;37432:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37432:29:0;-1:-1:-1;;;;;37432:29:0;;;;;;;;;37477:28;;37432:24;;37477:28;;;;;;;37317:196;;;:::o;35281:1918::-;35396:35;35434:20;35446:7;35434:11;:20::i;:::-;35509:18;;35396:58;;-1:-1:-1;35467:22:0;;-1:-1:-1;;;;;35493:34:0;867:10;-1:-1:-1;;;;;35493:34:0;;:87;;;-1:-1:-1;867:10:0;35544:20;35556:7;35544:11;:20::i;:::-;-1:-1:-1;;;;;35544:36:0;;35493:87;:154;;;-1:-1:-1;35614:18:0;;35597:50;;867:10;41138:445;:::i;35597:50::-;35467:181;;35683:17;35661:117;;;;-1:-1:-1;;;35661:117:0;;12977:2:1;35661:117:0;;;12959:21:1;13016:2;12996:18;;;12989:30;13055:34;13035:18;;;13028:62;-1:-1:-1;;;13106:18:1;;;13099:48;13164:19;;35661:117:0;12775:414:1;35661:117:0;35835:4;-1:-1:-1;;;;;35813:26:0;:13;:18;;;-1:-1:-1;;;;;35813:26:0;;35791:114;;;;-1:-1:-1;;;35791:114:0;;11854:2:1;35791:114:0;;;11836:21:1;11893:2;11873:18;;;11866:30;11932:34;11912:18;;;11905:62;-1:-1:-1;;;11983:18:1;;;11976:36;12029:19;;35791:114:0;11652:402:1;35791:114:0;-1:-1:-1;;;;;35924:16:0;;35916:66;;;;-1:-1:-1;;;35916:66:0;;10260:2:1;35916:66:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;-1:-1:-1;;;10389:18:1;;;10382:35;10434:19;;35916:66:0;10058:401:1;35916:66:0;36103:49;36120:1;36124:7;36133:13;:18;;;36103:8;:49::i;:::-;-1:-1:-1;;;;;36357:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36357:31:0;;;-1:-1:-1;;;;;36357:31:0;;;-1:-1:-1;;36357:31:0;;;;;;;36403:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36403:29:0;;;;;;;;;;;;;36479:43;;;;;;;;;;36505:15;36479:43;;;;;;;;;;36456:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;36456:66:0;;;;;;;-1:-1:-1;;;36456:66:0;;;;;;;;;;;;36357:18;36784:11;;36456:20;;36784:11;:::i;:::-;36851:1;36810:24;;;:11;:24;;;;;:29;36762:33;;-1:-1:-1;;;;;;36810:29:0;36806:288;;36874:20;36882:11;33195:4;33229:12;-1:-1:-1;33219:22:0;33138:111;36874:20;36870:213;;;36942:125;;;;;;;;36979:18;;-1:-1:-1;;;;;36942:125:0;;;;;;37020:28;;;;36942:125;;;;;;;;;;-1:-1:-1;36915:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;36915:152:0;-1:-1:-1;;;;;;36915:152:0;;;;;;;;;;;;36870:213;37130:7;37126:2;-1:-1:-1;;;;;37111:27:0;37120:4;-1:-1:-1;;;;;37111:27:0;;;;;;;;;;;37149:42;35385:1814;;;35281:1918;;;:::o;28568:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;28703:16:0;28711:7;33195:4;33229:12;-1:-1:-1;33219:22:0;33138:111;28703:16;28695:71;;;;-1:-1:-1;;;28695:71:0;;9106:2:1;28695:71:0;;;9088:21:1;9145:2;9125:18;;;9118:30;9184:34;9164:18;;;9157:62;-1:-1:-1;;;9235:18:1;;;9228:40;9285:19;;28695:71:0;8904:406:1;28695:71:0;28799:7;28779:216;28833:31;28867:17;;;:11;:17;;;;;;;;;28833:51;;;;;;;;;-1:-1:-1;;;;;28833:51:0;;;;;-1:-1:-1;;;28833:51:0;;;;;;;;;;;;28903:28;28899:85;;28959:9;28568:504;-1:-1:-1;;;28568:504:0:o;28899:85::-;-1:-1:-1;28810:6:0;;;;:::i;:::-;;;;28779:216;;3370:191;3463:6;;;-1:-1:-1;;;;;3480:17:0;;;-1:-1:-1;;;;;;3480:17:0;;;;;;;3513:40;;3463:6;;;3480:17;3463:6;;3513:40;;3444:16;;3513:40;3433:128;3370:191;:::o;33257:104::-;33326:27;33336:2;33340:8;33326:27;;;;;;;;;;;;:9;:27::i;38078:985::-;38233:4;-1:-1:-1;;;;;38254:13:0;;15579:20;15627:8;38250:806;;38307:175;;-1:-1:-1;;;38307:175:0;;-1:-1:-1;;;;;38307:36:0;;;;;:175;;867:10;;38401:4;;38428:7;;38458:5;;38307:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38307:175:0;;;;;;;;-1:-1:-1;;38307:175:0;;;;;;;;;;;;:::i;:::-;;;38286:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38669:13:0;;38665:321;;38712:109;;-1:-1:-1;;;38712:109:0;;;;;;;:::i;38665:321::-;38936:6;38930:13;38921:6;38917:2;38913:15;38906:38;38286:715;-1:-1:-1;;;;;;38546:55:0;-1:-1:-1;;;38546:55:0;;-1:-1:-1;38539:62:0;;38250:806;-1:-1:-1;39040:4:0;38078:985;;;;;;:::o;3910:723::-;3966:13;4187:10;4183:53;;-1:-1:-1;;4214:10:0;;;;;;;;;;;;-1:-1:-1;;;4214:10:0;;;;;3910:723::o;4183:53::-;4261:5;4246:12;4302:78;4309:9;;4302:78;;4335:8;;;;:::i;:::-;;-1:-1:-1;4358:10:0;;-1:-1:-1;4366:2:0;4358:10;;:::i;:::-;;;4302:78;;;4390:19;4422:6;4412:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4412:17:0;;4390:39;;4440:154;4447:10;;4440:154;;4474:11;4484:1;4474:11;;:::i;:::-;;-1:-1:-1;4543:10:0;4551:2;4543:5;:10;:::i;:::-;4530:24;;:2;:24;:::i;:::-;4517:39;;4500:6;4507;4500:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4500:56:0;;;;;;;;-1:-1:-1;4571:11:0;4580:2;4571:11;;:::i;:::-;;;4440:154;;33638:1389;33761:20;33784:12;-1:-1:-1;;;;;33815:16:0;;33807:62;;;;-1:-1:-1;;;33807:62:0;;15688:2:1;33807:62:0;;;15670:21:1;15727:2;15707:18;;;15700:30;15766:34;15746:18;;;15739:62;-1:-1:-1;;;15817:18:1;;;15810:31;15858:19;;33807:62:0;15486:397:1;33807:62:0;34014:21;34022:12;33195:4;33229:12;-1:-1:-1;33219:22:0;33138:111;34014:21;34013:22;34005:64;;;;-1:-1:-1;;;34005:64:0;;15330:2:1;34005:64:0;;;15312:21:1;15369:2;15349:18;;;15342:30;15408:31;15388:18;;;15381:59;15457:18;;34005:64:0;15128:353:1;34005:64:0;34099:1;34088:8;:12;34080:60;;;;-1:-1:-1;;;34080:60:0;;14506:2:1;34080:60:0;;;14488:21:1;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:1;;;14628:33;14678:19;;34080:60:0;14304:399:1;34080:60:0;-1:-1:-1;;;;;34260:16:0;;34227:30;34260:16;;;:12;:16;;;;;;;;;34227:49;;;;;;;;;-1:-1:-1;;;;;34227:49:0;;;;;-1:-1:-1;;;34227:49:0;;;;;;;;;;;34306:135;;;;;;;;34332:19;;34227:49;;34306:135;;;34332:39;;34362:8;;34332:39;:::i;:::-;-1:-1:-1;;;;;34306:135:0;;;;;34421:8;34386:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34306:135:0;;;;;;-1:-1:-1;;;;;34287:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;34287:154:0;;;;;;;;;;;;34480:43;;;;;;;;;;;34506:15;34480:43;;;;;;;;34452:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34452:71:0;-1:-1:-1;;;;;;34452:71:0;;;;;;;;;;;;;;;;;;34464:12;;34584:325;34608:8;34604:1;:12;34584:325;;;34643:38;;34668:12;;-1:-1:-1;;;;;34643:38:0;;;34660:1;;34643:38;;34660:1;;34643:38;34722:59;34753:1;34757:2;34761:12;34775:5;34722:22;:59::i;:::-;34696:172;;;;-1:-1:-1;;;34696:172:0;;;;;;;:::i;:::-;34883:14;;;;:::i;:::-;;;;34618:3;;;;;:::i;:::-;;;;34584:325;;;-1:-1:-1;34921:12:0;:27;;;34959:60;32528:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;:::-;886:5;650:247;-1:-1:-1;;;650:247:1:o;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:180::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;-1:-1:-1;4691:23:1;;4540:180;-1:-1:-1;4540:180:1:o;4725:257::-;4766:3;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:1;4930:39;;;;4971:4;4926:50;;4725:257;-1:-1:-1;;4725:257:1:o;4987:185::-;5029:3;5067:5;5061:12;5082:52;5127:6;5122:3;5115:4;5108:5;5104:16;5082:52;:::i;:::-;5150:16;;;;;4987:185;-1:-1:-1;;4987:185:1:o;5177:1249::-;5401:3;5430:1;5463:6;5457:13;5493:3;5515:1;5543:9;5539:2;5535:18;5525:28;;5603:2;5592:9;5588:18;5625;5615:61;;5669:4;5661:6;5657:17;5647:27;;5615:61;5695:2;5743;5735:6;5732:14;5712:18;5709:38;5706:165;;;-1:-1:-1;;;5770:33:1;;5826:4;5823:1;5816:15;5856:4;5777:3;5844:17;5706:165;5887:18;5914:104;;;;6032:1;6027:320;;;;5880:467;;5914:104;-1:-1:-1;;5947:24:1;;5935:37;;5992:16;;;;-1:-1:-1;5914:104:1;;6027:320;17388:1;17381:14;;;17425:4;17412:18;;6122:1;6136:165;6150:6;6147:1;6144:13;6136:165;;;6228:14;;6215:11;;;6208:35;6271:16;;;;6165:10;;6136:165;;;6140:3;;6330:6;6325:3;6321:16;6314:23;;5880:467;;;;;;;6363:57;6389:30;6415:3;6407:6;6389:30;:::i;:::-;6381:6;6363:57;:::i;:::-;6356:64;5177:1249;-1:-1:-1;;;;;;5177:1249:1:o;6849:488::-;-1:-1:-1;;;;;7118:15:1;;;7100:34;;7170:15;;7165:2;7150:18;;7143:43;7217:2;7202:18;;7195:34;;;7265:3;7260:2;7245:18;;7238:31;;;7043:4;;7286:45;;7311:19;;7303:6;7286:45;:::i;7534:219::-;7683:2;7672:9;7665:21;7646:4;7703:44;7743:2;7732:9;7728:18;7720:6;7703:44;:::i;12059:356::-;12261:2;12243:21;;;12280:18;;;12273:30;12339:34;12334:2;12319:18;;12312:62;12406:2;12391:18;;12059:356::o;14708:415::-;14910:2;14892:21;;;14949:2;14929:18;;;14922:30;14988:34;14983:2;14968:18;;14961:62;-1:-1:-1;;;15054:2:1;15039:18;;15032:49;15113:3;15098:19;;14708:415::o;17441:253::-;17481:3;-1:-1:-1;;;;;17570:2:1;17567:1;17563:10;17600:2;17597:1;17593:10;17631:3;17627:2;17623:12;17618:3;17615:21;17612:47;;;17639:18;;:::i;:::-;17675:13;;17441:253;-1:-1:-1;;;;17441:253:1:o;17699:128::-;17739:3;17770:1;17766:6;17763:1;17760:13;17757:39;;;17776:18;;:::i;:::-;-1:-1:-1;17812:9:1;;17699:128::o;17832:120::-;17872:1;17898;17888:35;;17903:18;;:::i;:::-;-1:-1:-1;17937:9:1;;17832:120::o;17957:168::-;17997:7;18063:1;18059;18055:6;18051:14;18048:1;18045:21;18040:1;18033:9;18026:17;18022:45;18019:71;;;18070:18;;:::i;:::-;-1:-1:-1;18110:9:1;;17957:168::o;18130:125::-;18170:4;18198:1;18195;18192:8;18189:34;;;18203:18;;:::i;:::-;-1:-1:-1;18240:9:1;;18130:125::o;18260:258::-;18332:1;18342:113;18356:6;18353:1;18350:13;18342:113;;;18432:11;;;18426:18;18413:11;;;18406:39;18378:2;18371:10;18342:113;;;18473:6;18470:1;18467:13;18464:48;;;-1:-1:-1;;18508:1:1;18490:16;;18483:27;18260:258::o;18523:136::-;18562:3;18590:5;18580:39;;18599:18;;:::i;:::-;-1:-1:-1;;;18635:18:1;;18523:136::o;18664:380::-;18743:1;18739:12;;;;18786;;;18807:61;;18861:4;18853:6;18849:17;18839:27;;18807:61;18914:2;18906:6;18903:14;18883:18;18880:38;18877:161;;;18960:10;18955:3;18951:20;18948:1;18941:31;18995:4;18992:1;18985:15;19023:4;19020:1;19013:15;18877:161;;18664:380;;;:::o;19049:135::-;19088:3;-1:-1:-1;;19109:17:1;;19106:43;;;19129:18;;:::i;:::-;-1:-1:-1;19176:1:1;19165:13;;19049:135::o;19189:112::-;19221:1;19247;19237:35;;19252:18;;:::i;:::-;-1:-1:-1;19286:9:1;;19189:112::o;19306:127::-;19367:10;19362:3;19358:20;19355:1;19348:31;19398:4;19395:1;19388:15;19422:4;19419:1;19412:15;19438:127;19499:10;19494:3;19490:20;19487:1;19480:31;19530:4;19527:1;19520:15;19554:4;19551:1;19544:15;19570:127;19631:10;19626:3;19622:20;19619:1;19612:31;19662:4;19659:1;19652:15;19686:4;19683:1;19676:15;19702:127;19763:10;19758:3;19754:20;19751:1;19744:31;19794:4;19791:1;19784:15;19818:4;19815:1;19808:15;19834:131;-1:-1:-1;;;;;19909:31:1;;19899:42;;19889:70;;19955:1;19952;19945:12;19970:131;-1:-1:-1;;;;;;20044:32:1;;20034:43;;20024:71;;20091:1;20088;20081:12
Swarm Source
ipfs://a31a167fae9f7df554ade9f75a549689f8938e0c652ab9c49bf2ae04e3126c7c
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.