ERC-721
Overview
Max Total Supply
36 DSS
Holders
34
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DSSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DJeneratesSuperstar
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-07 */ // _____ _ ______ _ _ ______ _____ _______ ______ _____ // | __ \ | | | ____| | \ | | | ____| | __ \ /\ |__ __| | ____| / ____| // | | | | | | | |__ | \| | | |__ | |__) | / \ | | | |__ | (___ // | | | | _ | | | __| | . ` | | __| | _ / / /\ \ | | | __| \___ \ // | |__| | | |__| | | |____ | |\ | | |____ | | \ \ / ____ \ | | | |____ ____) | // |_____/ \____/ |______| |_| \_| |______| |_| \_\ /_/ \_\ |_| |______| |_____/ // // SPDX-License-Identifier: MIT 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; } } 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 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); } } /** * @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); } } } } /** * @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); } } /** * @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); } /** * @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; } } /** * @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; } /** * @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); } /** * @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); } contract ERC721 is Ownable, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } contract DJeneratesSuperstar is ERC721 { uint256 private totalMintedTokens = 0; string private baseURI = "http://superstardjens.djenerates.com/"; constructor() ERC721("DJENERATES SUPERSTARS", "DSS") { for (uint256 i; i < 31; i++) { ++totalMintedTokens; _mint(msg.sender, totalMintedTokens); } } /** * @dev See {ERC721}. */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * @dev Returns the base URI for the tokens API. */ function baseTokenURI() external view returns (string memory) { return baseURI; } /** * @dev Sets the base URI for the API that provides the NFT data. */ function setBaseTokenURI(string memory _uri) external onlyOwner { baseURI = _uri; } /** * @dev Returns the total supply */ function totalSupply() external view virtual returns (uint256) { return totalMintedTokens; } function mint(uint256 amount) external onlyOwner { for (uint256 i; i < amount; i++) { ++totalMintedTokens; _mint(msg.sender, totalMintedTokens); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","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":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600060075560e0604052602560808181529062001af760a03980516200002e91600891602090910190620002c5565b503480156200003c57600080fd5b506040518060400160405280601581526020017f444a454e455241544553205355504552535441525300000000000000000000008152506040518060400160405280600381526020016244535360e81b815250620000a9620000a36200012560201b60201c565b62000129565b8151620000be906001906020850190620002c5565b508051620000d4906002906020840190620002c5565b50505060005b601f8110156200011e57600760008154620000f590620003c3565b909155506007546200010990339062000179565b806200011581620003c3565b915050620000da565b50620003f7565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600360205260409020546001600160a01b0316156200023c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001cc565b6001600160a01b0382166000908152600460205260408120805460019290620002679084906200036b565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620002d39062000386565b90600052602060002090601f016020900481019282620002f7576000855562000342565b82601f106200031257805160ff191683800117855562000342565b8280016001018555821562000342579182015b828111156200034257825182559160200191906001019062000325565b506200035092915062000354565b5090565b5b8082111562000350576000815560010162000355565b60008219821115620003815762000381620003e1565b500190565b600181811c908216806200039b57607f821691505b60208210811415620003bd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620003da57620003da620003e1565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6116f080620004076000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610253578063c87b56dd14610266578063d547cfb714610279578063e985e9c514610281578063f2fde38b146102bd57600080fd5b806370a08231146102015780638da5cb5b1461021457806395d89b4114610225578063a0712d681461022d578063a22cb4651461024057600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101b557806330176e13146101c857806342842e0e146101db5780636352211e146101ee57600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611354565b6102d0565b60405190151581526020015b60405180910390f35b610156610322565b6040516101459190611488565b6101766101713660046113d7565b6103b4565b6040516001600160a01b039091168152602001610145565b6101a161019c36600461132a565b61044e565b005b6007545b604051908152602001610145565b6101a16101c3366004611236565b610564565b6101a16101d636600461138e565b610595565b6101a16101e9366004611236565b6105d6565b6101766101fc3660046113d7565b6105f1565b6101a761020f3660046111e8565b610668565b6000546001600160a01b0316610176565b6101566106ef565b6101a161023b3660046113d7565b6106fe565b6101a161024e3660046112ee565b610766565b6101a1610261366004611272565b61082b565b6101566102743660046113d7565b610863565b61015661093e565b61013961028f366004611203565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101a16102cb3660046111e8565b61094d565b60006001600160e01b031982166380ac58cd60e01b148061030157506001600160e01b03198216635b5e139f60e01b145b8061031c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610331906115e2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906115e2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610459826105f1565b9050806001600160a01b0316836001600160a01b031614156104c75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610429565b336001600160a01b03821614806104e357506104e3813361028f565b6105555760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610429565b61055f83836109e8565b505050565b61056e3382610a56565b61058a5760405162461bcd60e51b815260040161042990611522565b61055f838383610b4d565b6000546001600160a01b031633146105bf5760405162461bcd60e51b8152600401610429906114ed565b80516105d29060089060208401906110bd565b5050565b61055f8383836040518060200160405280600081525061082b565b6000818152600360205260408120546001600160a01b03168061031c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610429565b60006001600160a01b0382166106d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610429565b506001600160a01b031660009081526004602052604090205490565b606060028054610331906115e2565b6000546001600160a01b031633146107285760405162461bcd60e51b8152600401610429906114ed565b60005b818110156105d2576007600081546107429061161d565b90915550600754610754903390610ced565b8061075e8161161d565b91505061072b565b6001600160a01b0382163314156107bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610429565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108353383610a56565b6108515760405162461bcd60e51b815260040161042990611522565b61085d84848484610e2f565b50505050565b6000818152600360205260409020546060906001600160a01b03166108e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610429565b60006108ec61093e565b9050600081511161090c5760405180602001604052806000815250610937565b8061091684610e62565b60405160200161092792919061141c565b6040516020818303038152906040525b9392505050565b606060088054610331906115e2565b6000546001600160a01b031633146109775760405162461bcd60e51b8152600401610429906114ed565b6001600160a01b0381166109dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b6109e581610f60565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a1d826105f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610acf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610429565b6000610ada836105f1565b9050806001600160a01b0316846001600160a01b03161480610b155750836001600160a01b0316610b0a846103b4565b6001600160a01b0316145b80610b4557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b60826105f1565b6001600160a01b031614610bc85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610429565b6001600160a01b038216610c2a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b610c356000826109e8565b6001600160a01b0383166000908152600460205260408120805460019290610c5e90849061159f565b90915550506001600160a01b0382166000908152600460205260408120805460019290610c8c908490611573565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610d435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610429565b6000818152600360205260409020546001600160a01b031615610da85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610429565b6001600160a01b0382166000908152600460205260408120805460019290610dd1908490611573565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e3a848484610b4d565b610e4684848484610fb0565b61085d5760405162461bcd60e51b81526004016104299061149b565b606081610e865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610eb05780610e9a8161161d565b9150610ea99050600a8361158b565b9150610e8a565b60008167ffffffffffffffff811115610ecb57610ecb61168e565b6040519080825280601f01601f191660200182016040528015610ef5576020820181803683370190505b5090505b8415610b4557610f0a60018361159f565b9150610f17600a86611638565b610f22906030611573565b60f81b818381518110610f3757610f37611678565b60200101906001600160f81b031916908160001a905350610f59600a8661158b565b9450610ef9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156110b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610ff490339089908890889060040161144b565b602060405180830381600087803b15801561100e57600080fd5b505af192505050801561103e575060408051601f3d908101601f1916820190925261103b91810190611371565b60015b611098573d80801561106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b5080516110905760405162461bcd60e51b81526004016104299061149b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b45565b506001949350505050565b8280546110c9906115e2565b90600052602060002090601f0160209004810192826110eb5760008555611131565b82601f1061110457805160ff1916838001178555611131565b82800160010185558215611131579182015b82811115611131578251825591602001919060010190611116565b5061113d929150611141565b5090565b5b8082111561113d5760008155600101611142565b600067ffffffffffffffff808411156111715761117161168e565b604051601f8501601f19908116603f011681019082821181831017156111995761119961168e565b816040528093508581528686860111156111b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111e357600080fd5b919050565b6000602082840312156111fa57600080fd5b610937826111cc565b6000806040838503121561121657600080fd5b61121f836111cc565b915061122d602084016111cc565b90509250929050565b60008060006060848603121561124b57600080fd5b611254846111cc565b9250611262602085016111cc565b9150604084013590509250925092565b6000806000806080858703121561128857600080fd5b611291856111cc565b935061129f602086016111cc565b925060408501359150606085013567ffffffffffffffff8111156112c257600080fd5b8501601f810187136112d357600080fd5b6112e287823560208401611156565b91505092959194509250565b6000806040838503121561130157600080fd5b61130a836111cc565b91506020830135801515811461131f57600080fd5b809150509250929050565b6000806040838503121561133d57600080fd5b611346836111cc565b946020939093013593505050565b60006020828403121561136657600080fd5b8135610937816116a4565b60006020828403121561138357600080fd5b8151610937816116a4565b6000602082840312156113a057600080fd5b813567ffffffffffffffff8111156113b757600080fd5b8201601f810184136113c857600080fd5b610b4584823560208401611156565b6000602082840312156113e957600080fd5b5035919050565b600081518084526114088160208601602086016115b6565b601f01601f19169290920160200192915050565b6000835161142e8184602088016115b6565b8351908301906114428183602088016115b6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061147e908301846113f0565b9695505050505050565b60208152600061093760208301846113f0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156115865761158661164c565b500190565b60008261159a5761159a611662565b500490565b6000828210156115b1576115b161164c565b500390565b60005b838110156115d15781810151838201526020016115b9565b8381111561085d5750506000910152565b600181811c908216806115f657607f821691505b6020821081141561161757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156116315761163161164c565b5060010190565b60008261164757611647611662565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e557600080fdfea26469706673582212202950bd189142857548bf415e26c92cfe5ca368c12f0faafb92cb3f4b47e3520064736f6c63430008070033687474703a2f2f737570657273746172646a656e732e646a656e6572617465732e636f6d2f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610253578063c87b56dd14610266578063d547cfb714610279578063e985e9c514610281578063f2fde38b146102bd57600080fd5b806370a08231146102015780638da5cb5b1461021457806395d89b4114610225578063a0712d681461022d578063a22cb4651461024057600080fd5b806318160ddd116100f457806318160ddd146101a357806323b872dd146101b557806330176e13146101c857806342842e0e146101db5780636352211e146101ee57600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611354565b6102d0565b60405190151581526020015b60405180910390f35b610156610322565b6040516101459190611488565b6101766101713660046113d7565b6103b4565b6040516001600160a01b039091168152602001610145565b6101a161019c36600461132a565b61044e565b005b6007545b604051908152602001610145565b6101a16101c3366004611236565b610564565b6101a16101d636600461138e565b610595565b6101a16101e9366004611236565b6105d6565b6101766101fc3660046113d7565b6105f1565b6101a761020f3660046111e8565b610668565b6000546001600160a01b0316610176565b6101566106ef565b6101a161023b3660046113d7565b6106fe565b6101a161024e3660046112ee565b610766565b6101a1610261366004611272565b61082b565b6101566102743660046113d7565b610863565b61015661093e565b61013961028f366004611203565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101a16102cb3660046111e8565b61094d565b60006001600160e01b031982166380ac58cd60e01b148061030157506001600160e01b03198216635b5e139f60e01b145b8061031c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610331906115e2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906115e2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166104325760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610459826105f1565b9050806001600160a01b0316836001600160a01b031614156104c75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610429565b336001600160a01b03821614806104e357506104e3813361028f565b6105555760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610429565b61055f83836109e8565b505050565b61056e3382610a56565b61058a5760405162461bcd60e51b815260040161042990611522565b61055f838383610b4d565b6000546001600160a01b031633146105bf5760405162461bcd60e51b8152600401610429906114ed565b80516105d29060089060208401906110bd565b5050565b61055f8383836040518060200160405280600081525061082b565b6000818152600360205260408120546001600160a01b03168061031c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610429565b60006001600160a01b0382166106d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610429565b506001600160a01b031660009081526004602052604090205490565b606060028054610331906115e2565b6000546001600160a01b031633146107285760405162461bcd60e51b8152600401610429906114ed565b60005b818110156105d2576007600081546107429061161d565b90915550600754610754903390610ced565b8061075e8161161d565b91505061072b565b6001600160a01b0382163314156107bf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610429565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108353383610a56565b6108515760405162461bcd60e51b815260040161042990611522565b61085d84848484610e2f565b50505050565b6000818152600360205260409020546060906001600160a01b03166108e25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610429565b60006108ec61093e565b9050600081511161090c5760405180602001604052806000815250610937565b8061091684610e62565b60405160200161092792919061141c565b6040516020818303038152906040525b9392505050565b606060088054610331906115e2565b6000546001600160a01b031633146109775760405162461bcd60e51b8152600401610429906114ed565b6001600160a01b0381166109dc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610429565b6109e581610f60565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a1d826105f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316610acf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610429565b6000610ada836105f1565b9050806001600160a01b0316846001600160a01b03161480610b155750836001600160a01b0316610b0a846103b4565b6001600160a01b0316145b80610b4557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b60826105f1565b6001600160a01b031614610bc85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610429565b6001600160a01b038216610c2a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b610c356000826109e8565b6001600160a01b0383166000908152600460205260408120805460019290610c5e90849061159f565b90915550506001600160a01b0382166000908152600460205260408120805460019290610c8c908490611573565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216610d435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610429565b6000818152600360205260409020546001600160a01b031615610da85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610429565b6001600160a01b0382166000908152600460205260408120805460019290610dd1908490611573565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e3a848484610b4d565b610e4684848484610fb0565b61085d5760405162461bcd60e51b81526004016104299061149b565b606081610e865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610eb05780610e9a8161161d565b9150610ea99050600a8361158b565b9150610e8a565b60008167ffffffffffffffff811115610ecb57610ecb61168e565b6040519080825280601f01601f191660200182016040528015610ef5576020820181803683370190505b5090505b8415610b4557610f0a60018361159f565b9150610f17600a86611638565b610f22906030611573565b60f81b818381518110610f3757610f37611678565b60200101906001600160f81b031916908160001a905350610f59600a8661158b565b9450610ef9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156110b257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610ff490339089908890889060040161144b565b602060405180830381600087803b15801561100e57600080fd5b505af192505050801561103e575060408051601f3d908101601f1916820190925261103b91810190611371565b60015b611098573d80801561106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b5080516110905760405162461bcd60e51b81526004016104299061149b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b45565b506001949350505050565b8280546110c9906115e2565b90600052602060002090601f0160209004810192826110eb5760008555611131565b82601f1061110457805160ff1916838001178555611131565b82800160010185558215611131579182015b82811115611131578251825591602001919060010190611116565b5061113d929150611141565b5090565b5b8082111561113d5760008155600101611142565b600067ffffffffffffffff808411156111715761117161168e565b604051601f8501601f19908116603f011681019082821181831017156111995761119961168e565b816040528093508581528686860111156111b257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111e357600080fd5b919050565b6000602082840312156111fa57600080fd5b610937826111cc565b6000806040838503121561121657600080fd5b61121f836111cc565b915061122d602084016111cc565b90509250929050565b60008060006060848603121561124b57600080fd5b611254846111cc565b9250611262602085016111cc565b9150604084013590509250925092565b6000806000806080858703121561128857600080fd5b611291856111cc565b935061129f602086016111cc565b925060408501359150606085013567ffffffffffffffff8111156112c257600080fd5b8501601f810187136112d357600080fd5b6112e287823560208401611156565b91505092959194509250565b6000806040838503121561130157600080fd5b61130a836111cc565b91506020830135801515811461131f57600080fd5b809150509250929050565b6000806040838503121561133d57600080fd5b611346836111cc565b946020939093013593505050565b60006020828403121561136657600080fd5b8135610937816116a4565b60006020828403121561138357600080fd5b8151610937816116a4565b6000602082840312156113a057600080fd5b813567ffffffffffffffff8111156113b757600080fd5b8201601f810184136113c857600080fd5b610b4584823560208401611156565b6000602082840312156113e957600080fd5b5035919050565b600081518084526114088160208601602086016115b6565b601f01601f19169290920160200192915050565b6000835161142e8184602088016115b6565b8351908301906114428183602088016115b6565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061147e908301846113f0565b9695505050505050565b60208152600061093760208301846113f0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156115865761158661164c565b500190565b60008261159a5761159a611662565b500490565b6000828210156115b1576115b161164c565b500390565b60005b838110156115d15781810151838201526020016115b9565b8381111561085d5750506000910152565b600181811c908216806115f657607f821691505b6020821081141561161757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156116315761163161164c565b5060010190565b60008261164757611647611662565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109e557600080fdfea26469706673582212202950bd189142857548bf415e26c92cfe5ca368c12f0faafb92cb3f4b47e3520064736f6c63430008070033
Deployed Bytecode Sourcemap
33717:1313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21594:305;;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;21594:305:0;;;;;;;;22539:100;;;:::i;:::-;;;;;;;:::i;24098:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;24098:221:0;4780:203:1;23621:411:0;;;;;;:::i;:::-;;:::i;:::-;;34686:106;34767:17;;34686:106;;;12425:25:1;;;12413:2;12398:18;34686:106:0;12279:177:1;24988:339:0;;;;;;:::i;:::-;;:::i;34525:97::-;;;;;;:::i;:::-;;:::i;25398:185::-;;;;;;:::i;:::-;;:::i;22233:239::-;;;;;;:::i;:::-;;:::i;21963:208::-;;;;;;:::i;:::-;;:::i;1811:87::-;1857:7;1884:6;-1:-1:-1;;;;;1884:6:0;1811:87;;22708:104;;;:::i;34800:227::-;;;;;;:::i;:::-;;:::i;24391:295::-;;;;;;:::i;:::-;;:::i;25654:328::-;;;;;;:::i;:::-;;:::i;22883:334::-;;;;;;:::i;:::-;;:::i;34333:95::-;;;:::i;24757:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24878:25:0;;;24854:4;24878:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24757:164;2266:201;;;;;;:::i;:::-;;:::i;21594:305::-;21696:4;-1:-1:-1;;;;;;21733:40:0;;-1:-1:-1;;;21733:40:0;;:105;;-1:-1:-1;;;;;;;21790:48:0;;-1:-1:-1;;;21790:48:0;21733:105;:158;;;-1:-1:-1;;;;;;;;;;14381:40:0;;;21855:36;21713:178;21594:305;-1:-1:-1;;21594:305:0:o;22539:100::-;22593:13;22626:5;22619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22539:100;:::o;24098:221::-;24174:7;27581:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27581:16:0;24194:73;;;;-1:-1:-1;;;24194:73:0;;10061:2:1;24194:73:0;;;10043:21:1;10100:2;10080:18;;;10073:30;10139:34;10119:18;;;10112:62;-1:-1:-1;;;10190:18:1;;;10183:42;10242:19;;24194:73:0;;;;;;;;;-1:-1:-1;24287:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24287:24:0;;24098:221::o;23621:411::-;23702:13;23718:23;23733:7;23718:14;:23::i;:::-;23702:39;;23766:5;-1:-1:-1;;;;;23760:11:0;:2;-1:-1:-1;;;;;23760:11:0;;;23752:57;;;;-1:-1:-1;;;23752:57:0;;11661:2:1;23752:57:0;;;11643:21:1;11700:2;11680:18;;;11673:30;11739:34;11719:18;;;11712:62;-1:-1:-1;;;11790:18:1;;;11783:31;11831:19;;23752:57:0;11459:397:1;23752:57:0;1263:10;-1:-1:-1;;;;;23844:21:0;;;;:62;;-1:-1:-1;23869:37:0;23886:5;1263:10;24757:164;:::i;23869:37::-;23822:168;;;;-1:-1:-1;;;23822:168:0;;8454:2:1;23822:168:0;;;8436:21:1;8493:2;8473:18;;;8466:30;8532:34;8512:18;;;8505:62;8603:26;8583:18;;;8576:54;8647:19;;23822:168:0;8252:420:1;23822:168:0;24003:21;24012:2;24016:7;24003:8;:21::i;:::-;23691:341;23621:411;;:::o;24988:339::-;25183:41;1263:10;25216:7;25183:18;:41::i;:::-;25175:103;;;;-1:-1:-1;;;25175:103:0;;;;;;;:::i;:::-;25291:28;25301:4;25307:2;25311:7;25291:9;:28::i;34525:97::-;1857:7;1884:6;-1:-1:-1;;;;;1884:6:0;1263:10;2031:23;2023:68;;;;-1:-1:-1;;;2023:68:0;;;;;;;:::i;:::-;34600:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;34525:97:::0;:::o;25398:185::-;25536:39;25553:4;25559:2;25563:7;25536:39;;;;;;;;;;;;:16;:39::i;22233:239::-;22305:7;22341:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22341:16:0;22376:19;22368:73;;;;-1:-1:-1;;;22368:73:0;;9290:2:1;22368:73:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:39;9468:19;;22368:73:0;9088:405:1;21963:208:0;22035:7;-1:-1:-1;;;;;22063:19:0;;22055:74;;;;-1:-1:-1;;;22055:74:0;;8879:2:1;22055:74:0;;;8861:21:1;8918:2;8898:18;;;8891:30;8957:34;8937:18;;;8930:62;-1:-1:-1;;;9008:18:1;;;9001:40;9058:19;;22055:74:0;8677:406:1;22055:74:0;-1:-1:-1;;;;;;22147:16:0;;;;;:9;:16;;;;;;;21963:208::o;22708:104::-;22764:13;22797:7;22790:14;;;;;:::i;34800:227::-;1857:7;1884:6;-1:-1:-1;;;;;1884:6:0;1263:10;2031:23;2023:68;;;;-1:-1:-1;;;2023:68:0;;;;;;;:::i;:::-;34891:9:::1;34886:134;34906:6;34902:1;:10;34886:134;;;34936:17;;34934:19;;;;;:::i;:::-;::::0;;;-1:-1:-1;34986:17:0::1;::::0;34968:36:::1;::::0;34974:10:::1;::::0;34968:5:::1;:36::i;:::-;34914:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34886:134;;24391:295:::0;-1:-1:-1;;;;;24494:24:0;;1263:10;24494:24;;24486:62;;;;-1:-1:-1;;;24486:62:0;;7687:2:1;24486:62:0;;;7669:21:1;7726:2;7706:18;;;7699:30;7765:27;7745:18;;;7738:55;7810:18;;24486:62:0;7485:349:1;24486:62:0;1263:10;24561:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24561:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24561:53:0;;;;;;;;;;24630:48;;5621:41:1;;;24561:42:0;;1263:10;24630:48;;5594:18:1;24630:48:0;;;;;;;24391:295;;:::o;25654:328::-;25829:41;1263:10;25862:7;25829:18;:41::i;:::-;25821:103;;;;-1:-1:-1;;;25821:103:0;;;;;;;:::i;:::-;25935:39;25949:4;25955:2;25959:7;25968:5;25935:13;:39::i;:::-;25654:328;;;;:::o;22883:334::-;27557:4;27581:16;;;:7;:16;;;;;;22956:13;;-1:-1:-1;;;;;27581:16:0;22982:76;;;;-1:-1:-1;;;22982:76:0;;11245:2:1;22982:76:0;;;11227:21:1;11284:2;11264:18;;;11257:30;11323:34;11303:18;;;11296:62;-1:-1:-1;;;11374:18:1;;;11367:45;11429:19;;22982:76:0;11043:411:1;22982:76:0;23071:21;23095:10;:8;:10::i;:::-;23071:34;;23147:1;23129:7;23123:21;:25;:86;;;;;;;;;;;;;;;;;23175:7;23184:18;:7;:16;:18::i;:::-;23158:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23123:86;23116:93;22883:334;-1:-1:-1;;;22883:334:0:o;34333:95::-;34380:13;34413:7;34406:14;;;;;:::i;2266:201::-;1857:7;1884:6;-1:-1:-1;;;;;1884:6:0;1263:10;2031:23;2023:68;;;;-1:-1:-1;;;2023:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2355:22:0;::::1;2347:73;;;::::0;-1:-1:-1;;;2347:73:0;;6518:2:1;2347:73:0::1;::::0;::::1;6500:21:1::0;6557:2;6537:18;;;6530:30;6596:34;6576:18;;;6569:62;-1:-1:-1;;;6647:18:1;;;6640:36;6693:19;;2347:73:0::1;6316:402:1::0;2347:73:0::1;2431:28;2450:8;2431:18;:28::i;:::-;2266:201:::0;:::o;31474:174::-;31549:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31549:29:0;-1:-1:-1;;;;;31549:29:0;;;;;;;;:24;;31603:23;31549:24;31603:14;:23::i;:::-;-1:-1:-1;;;;;31594:46:0;;;;;;;;;;;31474:174;;:::o;27786:348::-;27879:4;27581:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27581:16:0;27896:73;;;;-1:-1:-1;;;27896:73:0;;8041:2:1;27896:73:0;;;8023:21:1;8080:2;8060:18;;;8053:30;8119:34;8099:18;;;8092:62;-1:-1:-1;;;8170:18:1;;;8163:42;8222:19;;27896:73:0;7839:408:1;27896:73:0;27980:13;27996:23;28011:7;27996:14;:23::i;:::-;27980:39;;28049:5;-1:-1:-1;;;;;28038:16:0;:7;-1:-1:-1;;;;;28038:16:0;;:51;;;;28082:7;-1:-1:-1;;;;;28058:31:0;:20;28070:7;28058:11;:20::i;:::-;-1:-1:-1;;;;;28058:31:0;;28038:51;:87;;;-1:-1:-1;;;;;;24878:25:0;;;24854:4;24878:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28093:32;28030:96;27786:348;-1:-1:-1;;;;27786:348:0:o;30778:578::-;30937:4;-1:-1:-1;;;;;30910:31:0;:23;30925:7;30910:14;:23::i;:::-;-1:-1:-1;;;;;30910:31:0;;30902:85;;;;-1:-1:-1;;;30902:85:0;;10835:2:1;30902:85:0;;;10817:21:1;10874:2;10854:18;;;10847:30;10913:34;10893:18;;;10886:62;-1:-1:-1;;;10964:18:1;;;10957:39;11013:19;;30902:85:0;10633:405:1;30902:85:0;-1:-1:-1;;;;;31006:16:0;;30998:65;;;;-1:-1:-1;;;30998:65:0;;7282:2:1;30998:65:0;;;7264:21:1;7321:2;7301:18;;;7294:30;7360:34;7340:18;;;7333:62;-1:-1:-1;;;7411:18:1;;;7404:34;7455:19;;30998:65:0;7080:400:1;30998:65:0;31180:29;31197:1;31201:7;31180:8;:29::i;:::-;-1:-1:-1;;;;;31222:15:0;;;;;;:9;:15;;;;;:20;;31241:1;;31222:15;:20;;31241:1;;31222:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31253:13:0;;;;;;:9;:13;;;;;:18;;31270:1;;31253:13;:18;;31270:1;;31253:18;:::i;:::-;;;;-1:-1:-1;;31282:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31282:21:0;-1:-1:-1;;;;;31282:21:0;;;;;;;;;31321:27;;31282:16;;31321:27;;;;;;;30778:578;;;:::o;29470:382::-;-1:-1:-1;;;;;29550:16:0;;29542:61;;;;-1:-1:-1;;;29542:61:0;;9700:2:1;29542:61:0;;;9682:21:1;;;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;9830:18;;29542:61:0;9498:356:1;29542:61:0;27557:4;27581:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27581:16:0;:30;29614:58;;;;-1:-1:-1;;;29614:58:0;;6925:2:1;29614:58:0;;;6907:21:1;6964:2;6944:18;;;6937:30;7003;6983:18;;;6976:58;7051:18;;29614:58:0;6723:352:1;29614:58:0;-1:-1:-1;;;;;29743:13:0;;;;;;:9;:13;;;;;:18;;29760:1;;29743:13;:18;;29760:1;;29743:18;:::i;:::-;;;;-1:-1:-1;;29772:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29772:21:0;-1:-1:-1;;;;;29772:21:0;;;;;;;;29811:33;;29772:16;;;29811:33;;29772:16;;29811:33;29470:382;;:::o;26864:315::-;27021:28;27031:4;27037:2;27041:7;27021:9;:28::i;:::-;27068:48;27091:4;27097:2;27101:7;27110:5;27068:22;:48::i;:::-;27060:111;;;;-1:-1:-1;;;27060:111:0;;;;;;;:::i;11065:723::-;11121:13;11342:10;11338:53;;-1:-1:-1;;11369:10:0;;;;;;;;;;;;-1:-1:-1;;;11369:10:0;;;;;11065:723::o;11338:53::-;11416:5;11401:12;11457:78;11464:9;;11457:78;;11490:8;;;;:::i;:::-;;-1:-1:-1;11513:10:0;;-1:-1:-1;11521:2:0;11513:10;;:::i;:::-;;;11457:78;;;11545:19;11577:6;11567:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11567:17:0;;11545:39;;11595:154;11602:10;;11595:154;;11629:11;11639:1;11629:11;;:::i;:::-;;-1:-1:-1;11698:10:0;11706:2;11698:5;:10;:::i;:::-;11685:24;;:2;:24;:::i;:::-;11672:39;;11655:6;11662;11655:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11655:56:0;;;;;;;;-1:-1:-1;11726:11:0;11735:2;11726:11;;:::i;:::-;;;11595:154;;2627:191;2701:16;2720:6;;-1:-1:-1;;;;;2737:17:0;;;-1:-1:-1;;;;;;2737:17:0;;;;;;2770:40;;2720:6;;;;;;;2770:40;;2701:16;2770:40;2690:128;2627:191;:::o;32213:799::-;32368:4;-1:-1:-1;;;;;32389:13:0;;3829:20;3877:8;32385:620;;32425:72;;-1:-1:-1;;;32425:72:0;;-1:-1:-1;;;;;32425:36:0;;;;;:72;;1263:10;;32476:4;;32482:7;;32491:5;;32425:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32425:72:0;;;;;;;;-1:-1:-1;;32425:72:0;;;;;;;;;;;;:::i;:::-;;;32421:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32667:13:0;;32663:272;;32710:60;;-1:-1:-1;;;32710:60:0;;;;;;;:::i;32663:272::-;32885:6;32879:13;32870:6;32866:2;32862:15;32855:38;32421:529;-1:-1:-1;;;;;;32548:51:0;-1:-1:-1;;;32548:51:0;;-1:-1:-1;32541:58:0;;32385:620;-1:-1:-1;32989:4:0;32213:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;5897:414::-;6099:2;6081:21;;;6138:2;6118:18;;;6111:30;6177:34;6172:2;6157:18;;6150:62;-1:-1:-1;;;6243:2:1;6228:18;;6221:48;6301:3;6286:19;;5897:414::o;10272:356::-;10474:2;10456:21;;;10493:18;;;10486:30;10552:34;10547:2;10532:18;;10525:62;10619:2;10604:18;;10272:356::o;11861:413::-;12063:2;12045:21;;;12102:2;12082:18;;;12075:30;12141:34;12136:2;12121:18;;12114:62;-1:-1:-1;;;12207:2:1;12192:18;;12185:47;12264:3;12249:19;;11861:413::o;12461:128::-;12501:3;12532:1;12528:6;12525:1;12522:13;12519:39;;;12538:18;;:::i;:::-;-1:-1:-1;12574:9:1;;12461:128::o;12594:120::-;12634:1;12660;12650:35;;12665:18;;:::i;:::-;-1:-1:-1;12699:9:1;;12594:120::o;12719:125::-;12759:4;12787:1;12784;12781:8;12778:34;;;12792:18;;:::i;:::-;-1:-1:-1;12829:9:1;;12719:125::o;12849:258::-;12921:1;12931:113;12945:6;12942:1;12939:13;12931:113;;;13021:11;;;13015:18;13002:11;;;12995:39;12967:2;12960:10;12931:113;;;13062:6;13059:1;13056:13;13053:48;;;-1:-1:-1;;13097:1:1;13079:16;;13072:27;12849:258::o;13112:380::-;13191:1;13187:12;;;;13234;;;13255:61;;13309:4;13301:6;13297:17;13287:27;;13255:61;13362:2;13354:6;13351:14;13331:18;13328:38;13325:161;;;13408:10;13403:3;13399:20;13396:1;13389:31;13443:4;13440:1;13433:15;13471:4;13468:1;13461:15;13325:161;;13112:380;;;:::o;13497:135::-;13536:3;-1:-1:-1;;13557:17:1;;13554:43;;;13577:18;;:::i;:::-;-1:-1:-1;13624:1:1;13613:13;;13497:135::o;13637:112::-;13669:1;13695;13685:35;;13700:18;;:::i;:::-;-1:-1:-1;13734:9:1;;13637:112::o;13754:127::-;13815:10;13810:3;13806:20;13803:1;13796:31;13846:4;13843:1;13836:15;13870:4;13867:1;13860:15;13886:127;13947:10;13942:3;13938:20;13935:1;13928:31;13978:4;13975:1;13968:15;14002:4;13999:1;13992:15;14018:127;14079:10;14074:3;14070:20;14067:1;14060:31;14110:4;14107:1;14100:15;14134:4;14131:1;14124:15;14150:127;14211:10;14206:3;14202:20;14199:1;14192:31;14242:4;14239:1;14232:15;14266:4;14263:1;14256:15;14282:131;-1:-1:-1;;;;;;14356:32:1;;14346:43;;14336:71;;14403:1;14400;14393:12
Swarm Source
ipfs://2950bd189142857548bf415e26c92cfe5ca368c12f0faafb92cb3f4b47e35200
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.