Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 478 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24577212 | 2 days ago | IN | 0 ETH | 0.00000526 | ||||
| Set Approval For... | 24577193 | 2 days ago | IN | 0 ETH | 0.00000624 | ||||
| Set Approval For... | 24198825 | 55 days ago | IN | 0 ETH | 0.00000507 | ||||
| Set Approval For... | 24198804 | 55 days ago | IN | 0 ETH | 0.00000507 | ||||
| Set Approval For... | 24181493 | 57 days ago | IN | 0 ETH | 0.00000433 | ||||
| Set Approval For... | 24122787 | 65 days ago | IN | 0 ETH | 0.00001077 | ||||
| Set Approval For... | 23970500 | 86 days ago | IN | 0 ETH | 0.00003065 | ||||
| Set Approval For... | 23930627 | 92 days ago | IN | 0 ETH | 0.00000147 | ||||
| Set Approval For... | 23764513 | 115 days ago | IN | 0 ETH | 0.00000991 | ||||
| Set Approval For... | 23764504 | 115 days ago | IN | 0 ETH | 0.00000794 | ||||
| Set Approval For... | 23708079 | 123 days ago | IN | 0 ETH | 0.00007293 | ||||
| Set Approval For... | 23704309 | 124 days ago | IN | 0 ETH | 0.00005506 | ||||
| Set Approval For... | 23704309 | 124 days ago | IN | 0 ETH | 0.00005506 | ||||
| Set Approval For... | 23704306 | 124 days ago | IN | 0 ETH | 0.00009675 | ||||
| Set Approval For... | 23691002 | 126 days ago | IN | 0 ETH | 0.00004434 | ||||
| Set Approval For... | 23679909 | 127 days ago | IN | 0 ETH | 0.00004522 | ||||
| Set Approval For... | 23654264 | 131 days ago | IN | 0 ETH | 0.00001665 | ||||
| Set Approval For... | 23654263 | 131 days ago | IN | 0 ETH | 0.00001675 | ||||
| Set Approval For... | 23629782 | 134 days ago | IN | 0 ETH | 0.00007393 | ||||
| Set Approval For... | 23592549 | 140 days ago | IN | 0 ETH | 0.00003856 | ||||
| Set Approval For... | 23584856 | 141 days ago | IN | 0 ETH | 0.00008572 | ||||
| Set Approval For... | 23546988 | 146 days ago | IN | 0 ETH | 0.00003385 | ||||
| Set Approval For... | 23533211 | 148 days ago | IN | 0 ETH | 0.00001187 | ||||
| Set Approval For... | 23508942 | 151 days ago | IN | 0 ETH | 0.00092779 | ||||
| Set Approval For... | 23493472 | 153 days ago | IN | 0 ETH | 0.00008044 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
OvO
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Multiple files format)
//SPDX-License-Identifier: MIT
// OvO
// OvO NFT, Produced by dLab.
pragma solidity ^0.8.12;
import "./ERC721.sol";
import "./Ownable.sol";
contract OvO is ERC721, Ownable
{
string private baseURI;
uint256 public tokenId = 0;
uint256 public total = 5000;
constructor(
string memory baseURI_
) ERC721("OvO", "OvO") {
baseURI = baseURI_;
}
function mint(address recipient) external onlyOwner {
require(tokenId + 1 <= total, "Max supply exceed");
tokenId += 1;
_safeMint(recipient, tokenId);
}
function batchMint(address recipient, uint256 num) external onlyOwner{
require(tokenId + num <= total, "Max supply exceed");
for (uint256 index = 0; index < num; index++) {
tokenId += 1;
_safeMint(recipient, tokenId);
}
}
function setBaseURI(string memory _URI) external onlyOwner {
baseURI = _URI;
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, 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: address zero is not a valid owner");
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: invalid token ID");
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) {
_requireMinted(tokenId);
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 overridden 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 token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
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 {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI_","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"recipient","type":"address"}],"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":[],"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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","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":"total","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
608060405260006008556113886009553480156200001c57600080fd5b5060405162001a1638038062001a168339810160408190526200003f91620001df565b6040805180820182526003808252624f764f60e81b6020808401828152855180870190965292855284015281519192916200007d9160009162000123565b5080516200009390600190602084019062000123565b505050620000b0620000aa620000cd60201b60201c565b620000d1565b8051620000c590600790602084019062000123565b5050620002f8565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013190620002bb565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001f357600080fd5b82516001600160401b03808211156200020b57600080fd5b818501915085601f8301126200022057600080fd5b815181811115620002355762000235620001c9565b604051601f8201601f19908116603f01168101908382118183101715620002605762000260620001c9565b8160405282815288868487010111156200027957600080fd5b600093505b828410156200029d57848401860151818501870152928501926200027e565b82841115620002af5760008684830101525b98975050505050505050565b600181811c90821680620002d057607f821691505b60208210811415620002f257634e487b7160e01b600052602260045260246000fd5b50919050565b61170e80620003086000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b4114610277578063a22cb4651461027f578063b88d4fde14610292578063c87b56dd146102a5578063e985e9c5146102b8578063f2fde38b146102f457600080fd5b80636352211e146102255780636a6278421461023857806370a082311461024b578063715018a61461025e5780638da5cb5b1461026657600080fd5b806323b872dd116100ff57806323b872dd146101d05780632ddbd13a146101e357806342842e0e146101ec57806343508b05146101ff57806355f804b31461021257600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806317d70f7c146101b9575b600080fd5b61014f61014a3660046111c2565b610307565b60405190151581526020015b60405180910390f35b61016c610359565b60405161015b9190611237565b61018c61018736600461124a565b6103eb565b6040516001600160a01b03909116815260200161015b565b6101b76101b236600461127f565b610412565b005b6101c260085481565b60405190815260200161015b565b6101b76101de3660046112a9565b61052d565b6101c260095481565b6101b76101fa3660046112a9565b61055e565b6101b761020d36600461127f565b610579565b6101b7610220366004611371565b610617565b61018c61023336600461124a565b610636565b6101b76102463660046113ba565b610696565b6101c26102593660046113ba565b61071a565b6101b76107a0565b6006546001600160a01b031661018c565b61016c6107b4565b6101b761028d3660046113d5565b6107c3565b6101b76102a0366004611411565b6107ce565b61016c6102b336600461124a565b610806565b61014f6102c636600461148d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101b76103023660046113ba565b61086d565b60006001600160e01b031982166380ac58cd60e01b148061033857506001600160e01b03198216635b5e139f60e01b145b8061035357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610368906114c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610394906114c0565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b60006103f6826108e3565b506000908152600460205260409020546001600160a01b031690565b600061041d82610636565b9050806001600160a01b0316836001600160a01b031614156104905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104ac57506104ac81336102c6565b61051e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610487565b6105288383610942565b505050565b61053733826109b0565b6105535760405162461bcd60e51b8152600401610487906114fb565b610528838383610a2f565b610528838383604051806020016040528060008152506107ce565b610581610bcb565b60095481600854610592919061155f565b11156105d45760405162461bcd60e51b815260206004820152601160248201527013585e081cdd5c1c1b1e48195e18d95959607a1b6044820152606401610487565b60005b81811015610528576001600860008282546105f2919061155f565b9250508190555061060583600854610c25565b8061060f81611577565b9150506105d7565b61061f610bcb565b8051610632906007906020840190611113565b5050565b6000818152600260205260408120546001600160a01b0316806103535760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610487565b61069e610bcb565b6009546008546106af90600161155f565b11156106f15760405162461bcd60e51b815260206004820152601160248201527013585e081cdd5c1c1b1e48195e18d95959607a1b6044820152606401610487565b600160086000828254610704919061155f565b9250508190555061071781600854610c25565b50565b60006001600160a01b0382166107845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610487565b506001600160a01b031660009081526003602052604090205490565b6107a8610bcb565b6107b26000610c3f565b565b606060018054610368906114c0565b610632338383610c91565b6107d833836109b0565b6107f45760405162461bcd60e51b8152600401610487906114fb565b61080084848484610d60565b50505050565b6060610811826108e3565b600061081b610d93565b9050600081511161083b5760405180602001604052806000815250610866565b8061084584610da2565b604051602001610856929190611592565b6040516020818303038152906040525b9392505050565b610875610bcb565b6001600160a01b0381166108da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610487565b61071781610c3f565b6000818152600260205260409020546001600160a01b03166107175760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610487565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061097782610636565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806109bc83610636565b9050806001600160a01b0316846001600160a01b03161480610a0357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a275750836001600160a01b0316610a1c846103eb565b6001600160a01b0316145b949350505050565b826001600160a01b0316610a4282610636565b6001600160a01b031614610aa65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610487565b6001600160a01b038216610b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610487565b610b13600082610942565b6001600160a01b0383166000908152600360205260408120805460019290610b3c9084906115c1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b6a90849061155f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146107b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610487565b610632828260405180602001604052806000815250610ea0565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cf35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610487565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610d6b848484610a2f565b610d7784848484610ed3565b6108005760405162461bcd60e51b8152600401610487906115d8565b606060078054610368906114c0565b606081610dc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610df05780610dda81611577565b9150610de99050600a83611640565b9150610dca565b60008167ffffffffffffffff811115610e0b57610e0b6112e5565b6040519080825280601f01601f191660200182016040528015610e35576020820181803683370190505b5090505b8415610a2757610e4a6001836115c1565b9150610e57600a86611654565b610e6290603061155f565b60f81b818381518110610e7757610e77611668565b60200101906001600160f81b031916908160001a905350610e99600a86611640565b9450610e39565b610eaa8383610fd1565b610eb76000848484610ed3565b6105285760405162461bcd60e51b8152600401610487906115d8565b60006001600160a01b0384163b15610fc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f1790339089908890889060040161167e565b6020604051808303816000875af1925050508015610f52575060408051601f3d908101601f19168201909252610f4f918101906116bb565b60015b610fac573d808015610f80576040519150601f19603f3d011682016040523d82523d6000602084013e610f85565b606091505b508051610fa45760405162461bcd60e51b8152600401610487906115d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a27565b506001949350505050565b6001600160a01b0382166110275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610487565b6000818152600260205260409020546001600160a01b03161561108c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610487565b6001600160a01b03821660009081526003602052604081208054600192906110b590849061155f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461111f906114c0565b90600052602060002090601f0160209004810192826111415760008555611187565b82601f1061115a57805160ff1916838001178555611187565b82800160010185558215611187579182015b8281111561118757825182559160200191906001019061116c565b50611193929150611197565b5090565b5b808211156111935760008155600101611198565b6001600160e01b03198116811461071757600080fd5b6000602082840312156111d457600080fd5b8135610866816111ac565b60005b838110156111fa5781810151838201526020016111e2565b838111156108005750506000910152565b600081518084526112238160208601602086016111df565b601f01601f19169290920160200192915050565b602081526000610866602083018461120b565b60006020828403121561125c57600080fd5b5035919050565b80356001600160a01b038116811461127a57600080fd5b919050565b6000806040838503121561129257600080fd5b61129b83611263565b946020939093013593505050565b6000806000606084860312156112be57600080fd5b6112c784611263565b92506112d560208501611263565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611316576113166112e5565b604051601f8501601f19908116603f0116810190828211818310171561133e5761133e6112e5565b8160405280935085815286868601111561135757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561138357600080fd5b813567ffffffffffffffff81111561139a57600080fd5b8201601f810184136113ab57600080fd5b610a27848235602084016112fb565b6000602082840312156113cc57600080fd5b61086682611263565b600080604083850312156113e857600080fd5b6113f183611263565b91506020830135801515811461140657600080fd5b809150509250929050565b6000806000806080858703121561142757600080fd5b61143085611263565b935061143e60208601611263565b925060408501359150606085013567ffffffffffffffff81111561146157600080fd5b8501601f8101871361147257600080fd5b611481878235602084016112fb565b91505092959194509250565b600080604083850312156114a057600080fd5b6114a983611263565b91506114b760208401611263565b90509250929050565b600181811c908216806114d457607f821691505b602082108114156114f557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561157257611572611549565b500190565b600060001982141561158b5761158b611549565b5060010190565b600083516115a48184602088016111df565b8351908301906115b88183602088016111df565b01949350505050565b6000828210156115d3576115d3611549565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261164f5761164f61162a565b500490565b6000826116635761166361162a565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b19083018461120b565b9695505050505050565b6000602082840312156116cd57600080fd5b8151610866816111ac56fea2646970667358221220195ad68dc37c85cf06f022a6c16401452d1d98181169baf734f637860d517dff64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b4114610277578063a22cb4651461027f578063b88d4fde14610292578063c87b56dd146102a5578063e985e9c5146102b8578063f2fde38b146102f457600080fd5b80636352211e146102255780636a6278421461023857806370a082311461024b578063715018a61461025e5780638da5cb5b1461026657600080fd5b806323b872dd116100ff57806323b872dd146101d05780632ddbd13a146101e357806342842e0e146101ec57806343508b05146101ff57806355f804b31461021257600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806317d70f7c146101b9575b600080fd5b61014f61014a3660046111c2565b610307565b60405190151581526020015b60405180910390f35b61016c610359565b60405161015b9190611237565b61018c61018736600461124a565b6103eb565b6040516001600160a01b03909116815260200161015b565b6101b76101b236600461127f565b610412565b005b6101c260085481565b60405190815260200161015b565b6101b76101de3660046112a9565b61052d565b6101c260095481565b6101b76101fa3660046112a9565b61055e565b6101b761020d36600461127f565b610579565b6101b7610220366004611371565b610617565b61018c61023336600461124a565b610636565b6101b76102463660046113ba565b610696565b6101c26102593660046113ba565b61071a565b6101b76107a0565b6006546001600160a01b031661018c565b61016c6107b4565b6101b761028d3660046113d5565b6107c3565b6101b76102a0366004611411565b6107ce565b61016c6102b336600461124a565b610806565b61014f6102c636600461148d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101b76103023660046113ba565b61086d565b60006001600160e01b031982166380ac58cd60e01b148061033857506001600160e01b03198216635b5e139f60e01b145b8061035357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610368906114c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610394906114c0565b80156103e15780601f106103b6576101008083540402835291602001916103e1565b820191906000526020600020905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b60006103f6826108e3565b506000908152600460205260409020546001600160a01b031690565b600061041d82610636565b9050806001600160a01b0316836001600160a01b031614156104905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104ac57506104ac81336102c6565b61051e5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610487565b6105288383610942565b505050565b61053733826109b0565b6105535760405162461bcd60e51b8152600401610487906114fb565b610528838383610a2f565b610528838383604051806020016040528060008152506107ce565b610581610bcb565b60095481600854610592919061155f565b11156105d45760405162461bcd60e51b815260206004820152601160248201527013585e081cdd5c1c1b1e48195e18d95959607a1b6044820152606401610487565b60005b81811015610528576001600860008282546105f2919061155f565b9250508190555061060583600854610c25565b8061060f81611577565b9150506105d7565b61061f610bcb565b8051610632906007906020840190611113565b5050565b6000818152600260205260408120546001600160a01b0316806103535760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610487565b61069e610bcb565b6009546008546106af90600161155f565b11156106f15760405162461bcd60e51b815260206004820152601160248201527013585e081cdd5c1c1b1e48195e18d95959607a1b6044820152606401610487565b600160086000828254610704919061155f565b9250508190555061071781600854610c25565b50565b60006001600160a01b0382166107845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610487565b506001600160a01b031660009081526003602052604090205490565b6107a8610bcb565b6107b26000610c3f565b565b606060018054610368906114c0565b610632338383610c91565b6107d833836109b0565b6107f45760405162461bcd60e51b8152600401610487906114fb565b61080084848484610d60565b50505050565b6060610811826108e3565b600061081b610d93565b9050600081511161083b5760405180602001604052806000815250610866565b8061084584610da2565b604051602001610856929190611592565b6040516020818303038152906040525b9392505050565b610875610bcb565b6001600160a01b0381166108da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610487565b61071781610c3f565b6000818152600260205260409020546001600160a01b03166107175760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610487565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061097782610636565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806109bc83610636565b9050806001600160a01b0316846001600160a01b03161480610a0357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610a275750836001600160a01b0316610a1c846103eb565b6001600160a01b0316145b949350505050565b826001600160a01b0316610a4282610636565b6001600160a01b031614610aa65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610487565b6001600160a01b038216610b085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610487565b610b13600082610942565b6001600160a01b0383166000908152600360205260408120805460019290610b3c9084906115c1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b6a90849061155f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146107b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610487565b610632828260405180602001604052806000815250610ea0565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610cf35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610487565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610d6b848484610a2f565b610d7784848484610ed3565b6108005760405162461bcd60e51b8152600401610487906115d8565b606060078054610368906114c0565b606081610dc65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610df05780610dda81611577565b9150610de99050600a83611640565b9150610dca565b60008167ffffffffffffffff811115610e0b57610e0b6112e5565b6040519080825280601f01601f191660200182016040528015610e35576020820181803683370190505b5090505b8415610a2757610e4a6001836115c1565b9150610e57600a86611654565b610e6290603061155f565b60f81b818381518110610e7757610e77611668565b60200101906001600160f81b031916908160001a905350610e99600a86611640565b9450610e39565b610eaa8383610fd1565b610eb76000848484610ed3565b6105285760405162461bcd60e51b8152600401610487906115d8565b60006001600160a01b0384163b15610fc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610f1790339089908890889060040161167e565b6020604051808303816000875af1925050508015610f52575060408051601f3d908101601f19168201909252610f4f918101906116bb565b60015b610fac573d808015610f80576040519150601f19603f3d011682016040523d82523d6000602084013e610f85565b606091505b508051610fa45760405162461bcd60e51b8152600401610487906115d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a27565b506001949350505050565b6001600160a01b0382166110275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610487565b6000818152600260205260409020546001600160a01b03161561108c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610487565b6001600160a01b03821660009081526003602052604081208054600192906110b590849061155f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461111f906114c0565b90600052602060002090601f0160209004810192826111415760008555611187565b82601f1061115a57805160ff1916838001178555611187565b82800160010185558215611187579182015b8281111561118757825182559160200191906001019061116c565b50611193929150611197565b5090565b5b808211156111935760008155600101611198565b6001600160e01b03198116811461071757600080fd5b6000602082840312156111d457600080fd5b8135610866816111ac565b60005b838110156111fa5781810151838201526020016111e2565b838111156108005750506000910152565b600081518084526112238160208601602086016111df565b601f01601f19169290920160200192915050565b602081526000610866602083018461120b565b60006020828403121561125c57600080fd5b5035919050565b80356001600160a01b038116811461127a57600080fd5b919050565b6000806040838503121561129257600080fd5b61129b83611263565b946020939093013593505050565b6000806000606084860312156112be57600080fd5b6112c784611263565b92506112d560208501611263565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611316576113166112e5565b604051601f8501601f19908116603f0116810190828211818310171561133e5761133e6112e5565b8160405280935085815286868601111561135757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561138357600080fd5b813567ffffffffffffffff81111561139a57600080fd5b8201601f810184136113ab57600080fd5b610a27848235602084016112fb565b6000602082840312156113cc57600080fd5b61086682611263565b600080604083850312156113e857600080fd5b6113f183611263565b91506020830135801515811461140657600080fd5b809150509250929050565b6000806000806080858703121561142757600080fd5b61143085611263565b935061143e60208601611263565b925060408501359150606085013567ffffffffffffffff81111561146157600080fd5b8501601f8101871361147257600080fd5b611481878235602084016112fb565b91505092959194509250565b600080604083850312156114a057600080fd5b6114a983611263565b91506114b760208401611263565b90509250929050565b600181811c908216806114d457607f821691505b602082108114156114f557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561157257611572611549565b500190565b600060001982141561158b5761158b611549565b5060010190565b600083516115a48184602088016111df565b8351908301906115b88183602088016111df565b01949350505050565b6000828210156115d3576115d3611549565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261164f5761164f61162a565b500490565b6000826116635761166361162a565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116b19083018461120b565b9695505050505050565b6000602082840312156116cd57600080fd5b8151610866816111ac56fea2646970667358221220195ad68dc37c85cf06f022a6c16401452d1d98181169baf734f637860d517dff64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
141:905:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1505:300:3;;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;1505:300:3;;;;;;;;2405:98;;;:::i;:::-;;;;;;;:::i;3870:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:11;;;1674:51;;1662:2;1647:18;3870:167:3;1528:203:11;3402:407:3;;;;;;:::i;:::-;;:::i;:::-;;207:26:8;;;;;;;;;2319:25:11;;;2307:2;2292:18;207:26:8;2173:177:11;4547:327:3;;;;;;:::i;:::-;;:::i;239:27:8:-;;;;;;4940:179:3;;;;;;:::i;:::-;;:::i;571:273:8:-;;;;;;:::i;:::-;;:::i;850:90::-;;;;;;:::i;:::-;;:::i;2125:218:3:-;;;;;;:::i;:::-;;:::i;385:180:8:-;;;;;;:::i;:::-;;:::i;1864:204:3:-;;;;;;:::i;:::-;;:::i;1824:101:9:-;;;:::i;1194:85::-;1266:6;;-1:-1:-1;;;;;1266:6:9;1194:85;;2567:102:3;;;:::i;4104:153::-;;;;;;:::i;:::-;;:::i;5185:315::-;;;;;;:::i;:::-;;:::i;2735:276::-;;;;;;:::i;:::-;;:::i;4323:162::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4443:25:3;;;4420:4;4443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4323:162;2074:198:9;;;;;;:::i;:::-;;:::i;1505:300:3:-;1607:4;-1:-1:-1;;;;;;1642:40:3;;-1:-1:-1;;;1642:40:3;;:104;;-1:-1:-1;;;;;;;1698:48:3;;-1:-1:-1;;;1698:48:3;1642:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:2;;;1762:36:3;1623:175;1505:300;-1:-1:-1;;1505:300:3:o;2405:98::-;2459:13;2491:5;2484:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2405:98;:::o;3870:167::-;3946:7;3965:23;3980:7;3965:14;:23::i;:::-;-1:-1:-1;4006:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4006:24:3;;3870:167::o;3402:407::-;3482:13;3498:23;3513:7;3498:14;:23::i;:::-;3482:39;;3545:5;-1:-1:-1;;;;;3539:11:3;:2;-1:-1:-1;;;;;3539:11:3;;;3531:57;;;;-1:-1:-1;;;3531:57:3;;5980:2:11;3531:57:3;;;5962:21:11;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:11;;;6102:31;6150:19;;3531:57:3;;;;;;;;;719:10:1;-1:-1:-1;;;;;3620:21:3;;;;:62;;-1:-1:-1;3645:37:3;3662:5;719:10:1;4323:162:3;:::i;3645:37::-;3599:171;;;;-1:-1:-1;;;3599:171:3;;6382:2:11;3599:171:3;;;6364:21:11;6421:2;6401:18;;;6394:30;6460:34;6440:18;;;6433:62;6531:32;6511:18;;;6504:60;6581:19;;3599:171:3;6180:426:11;3599:171:3;3781:21;3790:2;3794:7;3781:8;:21::i;:::-;3472:337;3402:407;;:::o;4547:327::-;4736:41;719:10:1;4769:7:3;4736:18;:41::i;:::-;4728:100;;;;-1:-1:-1;;;4728:100:3;;;;;;;:::i;:::-;4839:28;4849:4;4855:2;4859:7;4839:9;:28::i;4940:179::-;5073:39;5090:4;5096:2;5100:7;5073:39;;;;;;;;;;;;:16;:39::i;571:273:8:-;1087:13:9;:11;:13::i;:::-;675:5:8::1;;668:3;658:7;;:13;;;;:::i;:::-;:22;;650:52;;;::::0;-1:-1:-1;;;650:52:8;;7493:2:11;650:52:8::1;::::0;::::1;7475:21:11::0;7532:2;7512:18;;;7505:30;-1:-1:-1;;;7551:18:11;;;7544:47;7608:18;;650:52:8::1;7291:341:11::0;650:52:8::1;717:13;712:126;744:3;736:5;:11;712:126;;;783:1;772:7;;:12;;;;;;;:::i;:::-;;;;;;;;798:29;808:9;819:7;;798:9;:29::i;:::-;749:7:::0;::::1;::::0;::::1;:::i;:::-;;;;712:126;;850:90:::0;1087:13:9;:11;:13::i;:::-;919:14:8;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;850:90:::0;:::o;2125:218:3:-;2197:7;2232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2232:16:3;2266:19;2258:56;;;;-1:-1:-1;;;2258:56:3;;7979:2:11;2258:56:3;;;7961:21:11;8018:2;7998:18;;;7991:30;-1:-1:-1;;;8037:18:11;;;8030:54;8101:18;;2258:56:3;7777:348:11;385:180:8;1087:13:9;:11;:13::i;:::-;470:5:8::1;::::0;455:7:::1;::::0;:11:::1;::::0;465:1:::1;455:11;:::i;:::-;:20;;447:50;;;::::0;-1:-1:-1;;;447:50:8;;7493:2:11;447:50:8::1;::::0;::::1;7475:21:11::0;7532:2;7512:18;;;7505:30;-1:-1:-1;;;7551:18:11;;;7544:47;7608:18;;447:50:8::1;7291:341:11::0;447:50:8::1;518:1;507:7;;:12;;;;;;;:::i;:::-;;;;;;;;529:29;539:9;550:7;;529:9;:29::i;:::-;385:180:::0;:::o;1864:204:3:-;1936:7;-1:-1:-1;;;;;1963:19:3;;1955:73;;;;-1:-1:-1;;;1955:73:3;;8332:2:11;1955:73:3;;;8314:21:11;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;-1:-1:-1;;;8461:18:11;;;8454:39;8510:19;;1955:73:3;8130:405:11;1955:73:3;-1:-1:-1;;;;;;2045:16:3;;;;;:9;:16;;;;;;;1864:204::o;1824:101:9:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2567:102:3:-;2623:13;2655:7;2648:14;;;;;:::i;4104:153::-;4198:52;719:10:1;4231:8:3;4241;4198:18;:52::i;5185:315::-;5353:41;719:10:1;5386:7:3;5353:18;:41::i;:::-;5345:100;;;;-1:-1:-1;;;5345:100:3;;;;;;;:::i;:::-;5455:38;5469:4;5475:2;5479:7;5488:4;5455:13;:38::i;:::-;5185:315;;;;:::o;2735:276::-;2808:13;2833:23;2848:7;2833:14;:23::i;:::-;2867:21;2891:10;:8;:10::i;:::-;2867:34;;2942:1;2924:7;2918:21;:25;:86;;;;;;;;;;;;;;;;;2970:7;2979:18;:7;:16;:18::i;:::-;2953:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2918:86;2911:93;2735:276;-1:-1:-1;;;2735:276:3:o;2074:198:9:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:9;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:9;;9217:2:11;2154:73:9::1;::::0;::::1;9199:21:11::0;9256:2;9236:18;;;9229:30;9295:34;9275:18;;;9268:62;-1:-1:-1;;;9346:18:11;;;9339:36;9392:19;;2154:73:9::1;9015:402:11::0;2154:73:9::1;2237:28;2256:8;2237:18;:28::i;11592:133:3:-:0;7034:4;7057:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7057:16:3;11665:53;;;;-1:-1:-1;;;11665:53:3;;7979:2:11;11665:53:3;;;7961:21:11;8018:2;7998:18;;;7991:30;-1:-1:-1;;;8037:18:11;;;8030:54;8101:18;;11665:53:3;7777:348:11;10894:171:3;10968:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10968:29:3;-1:-1:-1;;;;;10968:29:3;;;;;;;;:24;;11021:23;10968:24;11021:14;:23::i;:::-;-1:-1:-1;;;;;11012:46:3;;;;;;;;;;;10894:171;;:::o;7252:261::-;7345:4;7361:13;7377:23;7392:7;7377:14;:23::i;:::-;7361:39;;7429:5;-1:-1:-1;;;;;7418:16:3;:7;-1:-1:-1;;;;;7418:16:3;;:52;;;-1:-1:-1;;;;;;4443:25:3;;;4420:4;4443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7438:32;7418:87;;;;7498:7;-1:-1:-1;;;;;7474:31:3;:20;7486:7;7474:11;:20::i;:::-;-1:-1:-1;;;;;7474:31:3;;7418:87;7410:96;7252:261;-1:-1:-1;;;;7252:261:3:o;10177:605::-;10331:4;-1:-1:-1;;;;;10304:31:3;:23;10319:7;10304:14;:23::i;:::-;-1:-1:-1;;;;;10304:31:3;;10296:81;;;;-1:-1:-1;;;10296:81:3;;9624:2:11;10296:81:3;;;9606:21:11;9663:2;9643:18;;;9636:30;9702:34;9682:18;;;9675:62;-1:-1:-1;;;9753:18:11;;;9746:35;9798:19;;10296:81:3;9422:401:11;10296:81:3;-1:-1:-1;;;;;10395:16:3;;10387:65;;;;-1:-1:-1;;;10387:65:3;;10030:2:11;10387:65:3;;;10012:21:11;10069:2;10049:18;;;10042:30;10108:34;10088:18;;;10081:62;-1:-1:-1;;;10159:18:11;;;10152:34;10203:19;;10387:65:3;9828:400:11;10387:65:3;10564:29;10581:1;10585:7;10564:8;:29::i;:::-;-1:-1:-1;;;;;10604:15:3;;;;;;:9;:15;;;;;:20;;10623:1;;10604:15;:20;;10623:1;;10604:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10634:13:3;;;;;;:9;:13;;;;;:18;;10651:1;;10634:13;:18;;10651:1;;10634:18;:::i;:::-;;;;-1:-1:-1;;10662:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10662:21:3;-1:-1:-1;;;;;10662:21:3;;;;;;;;;10699:27;;10662:16;;10699:27;;;;;;;3472:337;3402:407;;:::o;1352:130:9:-;1266:6;;-1:-1:-1;;;;;1266:6:9;719:10:1;1415:23:9;1407:68;;;;-1:-1:-1;;;1407:68:9;;10565:2:11;1407:68:9;;;10547:21:11;;;10584:18;;;10577:30;10643:34;10623:18;;;10616:62;10695:18;;1407:68:9;10363:356:11;7843:108:3;7918:26;7928:2;7932:7;7918:26;;;;;;;;;;;;:9;:26::i;2426:187:9:-;2518:6;;;-1:-1:-1;;;;;2534:17:9;;;-1:-1:-1;;;;;;2534:17:9;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;11201:307:3:-;11351:8;-1:-1:-1;;;;;11342:17:3;:5;-1:-1:-1;;;;;11342:17:3;;;11334:55;;;;-1:-1:-1;;;11334:55:3;;10926:2:11;11334:55:3;;;10908:21:11;10965:2;10945:18;;;10938:30;11004:27;10984:18;;;10977:55;11049:18;;11334:55:3;10724:349:11;11334:55:3;-1:-1:-1;;;;;11399:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11399:46:3;;;;;;;;;;11460:41;;540::11;;;11460::3;;513:18:11;11460:41:3;;;;;;;11201:307;;;:::o;6361:305::-;6511:28;6521:4;6527:2;6531:7;6511:9;:28::i;:::-;6557:47;6580:4;6586:2;6590:7;6599:4;6557:22;:47::i;:::-;6549:110;;;;-1:-1:-1;;;6549:110:3;;;;;;;:::i;946:98:8:-;998:13;1030:7;1023:14;;;;;:::i;392:703:10:-;448:13;665:10;661:51;;-1:-1:-1;;691:10:10;;;;;;;;;;;;-1:-1:-1;;;691:10:10;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:10;;-1:-1:-1;837:2:10;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:10;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:10;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:10;;;;;;;;-1:-1:-1;1036:11:10;1045:2;1036:11;;:::i;:::-;;;908:150;;8172:309:3;8296:18;8302:2;8306:7;8296:5;:18::i;:::-;8345:53;8376:1;8380:2;8384:7;8393:4;8345:22;:53::i;:::-;8324:150;;;;-1:-1:-1;;;8324:150:3;;;;;;;:::i;12277:831::-;12426:4;-1:-1:-1;;;;;12446:13:3;;1465:19:0;:23;12442:660:3;;12481:71;;-1:-1:-1;;;12481:71:3;;-1:-1:-1;;;;;12481:36:3;;;;;:71;;719:10:1;;12532:4:3;;12538:7;;12547:4;;12481:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12481:71:3;;;;;;;;-1:-1:-1;;12481:71:3;;;;;;;;;;;;:::i;:::-;;;12477:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12719:13:3;;12715:321;;12761:60;;-1:-1:-1;;;12761:60:3;;;;;;;:::i;12715:321::-;12988:6;12982:13;12973:6;12969:2;12965:15;12958:38;12477:573;-1:-1:-1;;;;;;12602:51:3;-1:-1:-1;;;12602:51:3;;-1:-1:-1;12595:58:3;;12442:660;-1:-1:-1;13087:4:3;12277:831;;;;;;:::o;8803:427::-;-1:-1:-1;;;;;8882:16:3;;8874:61;;;;-1:-1:-1;;;8874:61:3;;12953:2:11;8874:61:3;;;12935:21:11;;;12972:18;;;12965:30;13031:34;13011:18;;;13004:62;13083:18;;8874:61:3;12751:356:11;8874:61:3;7034:4;7057:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7057:16:3;:30;8945:58;;;;-1:-1:-1;;;8945:58:3;;13314:2:11;8945:58:3;;;13296:21:11;13353:2;13333:18;;;13326:30;13392;13372:18;;;13365:58;13440:18;;8945:58:3;13112:352:11;8945:58:3;-1:-1:-1;;;;;9070:13:3;;;;;;:9;:13;;;;;:18;;9087:1;;9070:13;:18;;9087:1;;9070:18;:::i;:::-;;;;-1:-1:-1;;9098:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9098:21:3;-1:-1:-1;;;;;9098:21:3;;;;;;;;9135:33;;9098:16;;;9135:33;;9098:16;;9135:33;919:14:8::1;850:90:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:11;-1:-1:-1;;;;;;88:32:11;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:11;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:11;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:11:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:11;;1343:180;-1:-1:-1;1343:180:11:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:11;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:11:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:11;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:11;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:11;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6611:410::-;6813:2;6795:21;;;6852:2;6832:18;;;6825:30;6891:34;6886:2;6871:18;;6864:62;-1:-1:-1;;;6957:2:11;6942:18;;6935:44;7011:3;6996:19;;6611:410::o;7026:127::-;7087:10;7082:3;7078:20;7075:1;7068:31;7118:4;7115:1;7108:15;7142:4;7139:1;7132:15;7158:128;7198:3;7229:1;7225:6;7222:1;7219:13;7216:39;;;7235:18;;:::i;:::-;-1:-1:-1;7271:9:11;;7158:128::o;7637:135::-;7676:3;-1:-1:-1;;7697:17:11;;7694:43;;;7717:18;;:::i;:::-;-1:-1:-1;7764:1:11;7753:13;;7637:135::o;8540:470::-;8719:3;8757:6;8751:13;8773:53;8819:6;8814:3;8807:4;8799:6;8795:17;8773:53;:::i;:::-;8889:13;;8848:16;;;;8911:57;8889:13;8848:16;8945:4;8933:17;;8911:57;:::i;:::-;8984:20;;8540:470;-1:-1:-1;;;;8540:470:11:o;10233:125::-;10273:4;10301:1;10298;10295:8;10292:34;;;10306:18;;:::i;:::-;-1:-1:-1;10343:9:11;;10233:125::o;11078:414::-;11280:2;11262:21;;;11319:2;11299:18;;;11292:30;11358:34;11353:2;11338:18;;11331:62;-1:-1:-1;;;11424:2:11;11409:18;;11402:48;11482:3;11467:19;;11078:414::o;11497:127::-;11558:10;11553:3;11549:20;11546:1;11539:31;11589:4;11586:1;11579:15;11613:4;11610:1;11603:15;11629:120;11669:1;11695;11685:35;;11700:18;;:::i;:::-;-1:-1:-1;11734:9:11;;11629:120::o;11754:112::-;11786:1;11812;11802:35;;11817:18;;:::i;:::-;-1:-1:-1;11851:9:11;;11754:112::o;11871:127::-;11932:10;11927:3;11923:20;11920:1;11913:31;11963:4;11960:1;11953:15;11987:4;11984:1;11977:15;12003:489;-1:-1:-1;;;;;12272:15:11;;;12254:34;;12324:15;;12319:2;12304:18;;12297:43;12371:2;12356:18;;12349:34;;;12419:3;12414:2;12399:18;;12392:31;;;12197:4;;12440:46;;12466:19;;12458:6;12440:46;:::i;:::-;12432:54;12003:489;-1:-1:-1;;;;;;12003:489:11:o;12497:249::-;12566:6;12619:2;12607:9;12598:7;12594:23;12590:32;12587:52;;;12635:1;12632;12625:12;12587:52;12667:9;12661:16;12686:30;12710:5;12686:30;:::i
Swarm Source
ipfs://195ad68dc37c85cf06f022a6c16401452d1d98181169baf734f637860d517dff
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.