Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 73 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24134411 | 41 days ago | IN | 0 ETH | 0.00005499 | ||||
| Set Approval For... | 24134125 | 41 days ago | IN | 0 ETH | 0.00009763 | ||||
| Set Approval For... | 14176977 | 1462 days ago | IN | 0 ETH | 0.00099213 | ||||
| Set Approval For... | 13160280 | 1620 days ago | IN | 0 ETH | 0.01007408 | ||||
| Set Approval For... | 13159925 | 1620 days ago | IN | 0 ETH | 0.00531417 | ||||
| Claim | 13159901 | 1620 days ago | IN | 0 ETH | 0.01864277 | ||||
| Set Approval For... | 13159815 | 1620 days ago | IN | 0 ETH | 0.00467858 | ||||
| Claim | 13159722 | 1620 days ago | IN | 0 ETH | 0.01469763 | ||||
| Claim | 13159722 | 1620 days ago | IN | 0 ETH | 0.01441972 | ||||
| Claim | 13159713 | 1620 days ago | IN | 0 ETH | 0.02108555 | ||||
| Claim | 13159708 | 1620 days ago | IN | 0 ETH | 0.02817184 | ||||
| Claim | 13159706 | 1620 days ago | IN | 0 ETH | 0.02583889 | ||||
| Claim | 13159703 | 1620 days ago | IN | 0 ETH | 0.02311946 | ||||
| Claim | 13159701 | 1620 days ago | IN | 0 ETH | 0.02175503 | ||||
| Claim | 13159699 | 1620 days ago | IN | 0 ETH | 0.02505213 | ||||
| Claim | 13159694 | 1620 days ago | IN | 0 ETH | 0.02333715 | ||||
| Claim | 13159690 | 1620 days ago | IN | 0 ETH | 0.01775955 | ||||
| Claim | 13159686 | 1620 days ago | IN | 0 ETH | 0.01775955 | ||||
| Claim | 13159677 | 1620 days ago | IN | 0 ETH | 0.02248052 | ||||
| Claim | 13159672 | 1620 days ago | IN | 0 ETH | 0.02309383 | ||||
| Claim | 13159670 | 1620 days ago | IN | 0 ETH | 0.02248052 | ||||
| Claim | 13159665 | 1620 days ago | IN | 0 ETH | 0.02344042 | ||||
| Claim | 13159664 | 1620 days ago | IN | 0 ETH | 0.02297078 | ||||
| Claim | 13159663 | 1620 days ago | IN | 0 ETH | 0.01503949 | ||||
| Claim | 13159662 | 1620 days ago | IN | 0 ETH | 0.01503949 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Seven
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-02
*/
/**
*Submitted for verification at Etherscan.io on 2021-08-27
*/
// SPDX-License-Identifier: MIT
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);
}
/**
* @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;
}
/**
* @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 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;
}
}
/**
* @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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
/**
* @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);
}
/**
* @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);
}
/**
* @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);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private 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 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 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: 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(to).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 {}
}
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @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` cannot be the zero address.
* - `to` cannot be the zero address.
*
* 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 override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
contract Seven is ERC721Enumerable, ReentrancyGuard, Ownable {
function random(string memory input) internal pure returns (uint256) {
return (uint256(keccak256(abi.encodePacked(input))) % 60) + 1;
}
function getFirstNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "First");
}
function getSecondNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Second");
}
function getThirdNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Third");
}
function getFourthNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Fourth");
}
function getFifthNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Fifth");
}
function getSixthNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Sixth");
}
function getSeventhNum(uint256 tokenId) public pure returns (string memory) {
return pluck(tokenId, "Seventh");
}
function pluck(uint256 tokenId, string memory keyPrefix) internal pure returns (string memory) {
uint256 roll1 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "1")));
uint256 min = roll1;
uint256 roll2 = random(string(abi.encodePacked(keyPrefix, toString(tokenId), "2")));
min = min > roll2 ? roll2 : min;
uint256 stat = roll1 + roll2;
string memory output = string(abi.encodePacked(toString(stat)));
return output;
}
function tokenURI(uint256 tokenId) override public pure returns (string memory) {
string[17] memory parts;
parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.djent { fill: #f87a03 } .base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" />';
parts[1] = '<text x="10" y="20" class="base">';
parts[2] = getFirstNum(tokenId);
parts[3] = '</text><text x="10" y="40" class="base">';
parts[4] = getSecondNum(tokenId);
parts[5] = '</text><text x="10" y="60" class="base">';
parts[6] = getThirdNum(tokenId);
parts[7] = '</text><text x="10" y="80" class="base">';
parts[8] = getFourthNum(tokenId);
parts[9] = '</text><text x="10" y="100" class="base">';
parts[10] = getFifthNum(tokenId);
parts[11] = '</text><text x="10" y="120" class="base">';
parts[12] = getSixthNum(tokenId);
parts[13] = '</text><text x="10" y="140" class="base">';
parts[14] = getSeventhNum(tokenId);
parts[15] = '</text><text x="10" y="160" class="base">';
parts[16] = '</text></svg>';
string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16]));
string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Seven #', toString(tokenId), '", "description": "Seven is the basic of metaverse. Feel free to use Seven in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
output = string(abi.encodePacked('data:application/json;base64,', json));
return output;
}
function claim(uint256 tokenId) public nonReentrant {
require(tokenId > 0 && tokenId < 9901, "Token ID invalid");
_safeMint(_msgSender(), tokenId);
}
function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
require(tokenId > 9900 && tokenId < 10001, "Token ID invalid");
_safeMint(owner(), tokenId);
}
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT license
// 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);
}
constructor() ERC721("Seven", "SEVEN") Ownable() {}
}
/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/// @notice Encodes some bytes to the base64 representation
function encode(bytes memory data) internal pure returns (string memory) {
uint256 len = data.length;
if (len == 0) return "";
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((len + 2) / 3);
// Add some extra buffer at the end
bytes memory result = new bytes(encodedLen + 32);
bytes memory table = TABLE;
assembly {
let tablePtr := add(table, 1)
let resultPtr := add(result, 32)
for {
let i := 0
} lt(i, len) {
} {
i := add(i, 3)
let input := and(mload(add(data, i)), 0xffffff)
let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
out := shl(8, out)
out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
out := shl(224, out)
mstore(resultPtr, out)
resultPtr := add(resultPtr, 4)
}
switch mod(len, 3)
case 1 {
mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
}
case 2 {
mstore(sub(resultPtr, 1), shl(248, 0x3d))
}
mstore(result, encodedLen)
}
return string(result);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFifthNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirstNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFourthNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSecondNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeventhNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSixthNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getThirdNum","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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
60806040523480156200001157600080fd5b506040518060400160405280600581526020016429b2bb32b760d91b8152506040518060400160405280600581526020016429a2ab22a760d91b815250816000908051906020019062000066929190620000e7565b5080516200007c906001906020840190620000e7565b50506001600a55506200008f3362000095565b620001ca565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f5906200018d565b90600052602060002090601f01602090048101928262000119576000855562000164565b82601f106200013457805160ff191683800117855562000164565b8280016001018555821562000164579182015b828111156200016457825182559160200191906001019062000147565b506200017292915062000176565b5090565b5b8082111562000172576000815560010162000177565b600181811c90821680620001a257607f821691505b60208210811415620001c457634e487b7160e01b600052602260045260246000fd5b50919050565b61272680620001da6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a214deef11610097578063b88d4fde11610071578063b88d4fde146103a9578063c87b56dd146103bc578063e985e9c5146103cf578063f2fde38b1461040b57600080fd5b8063a214deef14610370578063a22cb46514610383578063a62773351461039657600080fd5b8063715018a6116100d3578063715018a61461033c5780638472c867146103445780638da5cb5b1461035757806395d89b411461036857600080fd5b80636352211e14610303578063701763281461031657806370a082311461032957600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102b7578063434f48c4146102ca5780634f6ccce7146102dd5780635aa892cb146102f057600080fd5b806323b872dd1461027e5780632f745c5914610291578063379607f5146102a457600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806314ec968d1461024657806318160ddd146102595780631adcb5fd1461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611eed565b61041e565b60405190151581526020015b60405180910390f35b6101f9610449565b6040516101e89190612243565b610219610214366004611f25565b6104db565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611ec4565b610575565b005b6101f9610254366004611f25565b61068b565b6008545b6040519081526020016101e8565b6101f9610279366004611f25565b6106b5565b61024461028c366004611d7a565b6106df565b61025d61029f366004611ec4565b610710565b6102446102b2366004611f25565b6107a6565b6102446102c5366004611d7a565b610860565b6102446102d8366004611f25565b61087b565b61025d6102eb366004611f25565b610963565b6101f96102fe366004611f25565b610a04565b610219610311366004611f25565b610a2d565b6101f9610324366004611f25565b610aa4565b61025d610337366004611d27565b610acd565b610244610b54565b6101f9610352366004611f25565b610b8a565b600b546001600160a01b0316610219565b6101f9610bb3565b6101f961037e366004611f25565b610bc2565b610244610391366004611e8a565b610beb565b6101f96103a4366004611f25565b610cb0565b6102446103b7366004611db5565b610cdb565b6101f96103ca366004611f25565b610d13565b6101dc6103dd366004611d48565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610244610419366004611d27565b610fc3565b60006001600160e01b0319821663780e9d6360e01b148061044357506104438261105e565b92915050565b606060008054610458906123bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610484906123bc565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058082610a2d565b9050806001600160a01b0316836001600160a01b031614156105ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610550565b336001600160a01b038216148061060a575061060a81336103dd565b61067c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610550565b61068683836110ae565b505050565b6060610443826040518060400160405280600681526020016514d958dbdb9960d21b81525061111c565b6060610443826040518060400160405280600681526020016508cdeeae4e8d60d31b81525061111c565b6106e933826111cd565b6107055760405162461bcd60e51b8152600401610550906122dd565b6106868383836112c4565b600061071b83610acd565b821061077d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610550565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107f95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610550565b6002600a55801580159061080e57506126ad81105b61084d5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610550565b610858335b8261146f565b506001600a55565b61068683838360405180602001604052806000815250610cdb565b6002600a5414156108ce5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610550565b6002600a55600b546001600160a01b031633146108fd5760405162461bcd60e51b8152600401610550906122a8565b6126ac8111801561090f575061271181105b61094e5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610550565b610858610852600b546001600160a01b031690565b600061096e60085490565b82106109d15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610550565b600882815481106109f257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b606061044382604051806040016040528060058152602001640a6d2f0e8d60db1b81525061111c565b6000818152600260205260408120546001600160a01b0316806104435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610550565b60606104438260405180604001604052806005815260200164151a1a5c9960da1b81525061111c565b60006001600160a01b038216610b385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610550565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610b7e5760405162461bcd60e51b8152600401610550906122a8565b610b88600061148d565b565b6060610443826040518060400160405280600581526020016408cd2cce8d60db1b81525061111c565b606060018054610458906123bc565b60606104438260405180604001604052806005815260200164119a5c9cdd60da1b81525061111c565b6001600160a01b038216331415610c445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610550565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606061044382604051806040016040528060078152602001660a6caeccadce8d60cb1b81525061111c565b610ce533836111cd565b610d015760405162461bcd60e51b8152600401610550906122dd565b610d0d848484846114df565b50505050565b6060610d1d611ce3565b60405180610120016040528060f581526020016125d460f5913981526040805160608101909152602180825261254a60208301396020820152610d5f83610bc2565b60408083019190915280516060810190915260288082526126c960208301396060820152610d8c8361068b565b60808201526040805160608101909152602880825261247f602083013960a0820152610db783610aa4565b60c0820152604080516060810190915260288082526124f9602083013960e0820152610de2836106b5565b610100820152604080516060810190915260298082526125216020830139610120820152610e0f83610b8a565b610140820152604080516060810190915260298082526124d06020830139610160820152610e3c83610a04565b6101808201526040805160608101909152602980825261256b60208301396101a0820152610e6983610cb0565b6101c0820152604080516060810190915260298082526124a760208301396101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a610ef79a909101611f85565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950610f4a988a9890602001611f85565b60405160208183030381529060405290506000610f97610f6986611512565b610f728461162c565b604051602001610f839291906120bb565b60405160208183030381529060405261162c565b905080604051602001610faa91906121c1565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314610fed5760405162461bcd60e51b8152600401610550906122a8565b6001600160a01b0381166110525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610550565b61105b8161148d565b50565b60006001600160e01b031982166380ac58cd60e01b148061108f57506001600160e01b03198216635b5e139f60e01b145b8061044357506301ffc9a760e01b6001600160e01b0319831614610443565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110e382610a2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006111528361112d86611512565b60405160200161113e929190612080565b6040516020818303038152906040526117a0565b90508060006111758561116488611512565b60405160200161113e929190612045565b90508082116111845781611186565b805b91506000611194828561232e565b905060006111a182611512565b6040516020016111b19190611f69565b60408051808303601f1901815291905298975050505050505050565b6000818152600260205260408120546001600160a01b03166112465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610550565b600061125183610a2d565b9050806001600160a01b0316846001600160a01b0316148061128c5750836001600160a01b0316611281846104db565b6001600160a01b0316145b806112bc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112d782610a2d565b6001600160a01b03161461133f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610550565b6001600160a01b0382166113a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610550565b6113ac8383836117e3565b6113b76000826110ae565b6001600160a01b03831660009081526003602052604081208054600192906113e0908490612379565b90915550506001600160a01b038216600090815260036020526040812080546001929061140e90849061232e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61148982826040518060200160405280600081525061189b565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114ea8484846112c4565b6114f6848484846118ce565b610d0d5760405162461bcd60e51b815260040161055090612256565b6060816115365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611560578061154a816123f7565b91506115599050600a83612346565b915061153a565b60008167ffffffffffffffff81111561158957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b3576020820181803683370190505b5090505b84156112bc576115c8600183612379565b91506115d5600a86612412565b6115e090603061232e565b60f81b81838151811061160357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611625600a86612346565b94506115b7565b80516060908061164c575050604080516020810190915260008152919050565b6000600361165b83600261232e565b6116659190612346565b61167090600461235a565b9050600061167f82602061232e565b67ffffffffffffffff8111156116a557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116cf576020820181803683370190505b5090506000604051806060016040528060408152602001612594604091399050600181016020830160005b8681101561175b576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016116fa565b506003860660018114611775576002811461178657611792565b613d3d60f01b600119830152611792565b603d60f81b6000198301525b505050918152949350505050565b6000603c826040516020016117b59190611f69565b6040516020818303038152906040528051906020012060001c6117d89190612412565b61044390600161232e565b6001600160a01b03831661183e5761183981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611861565b816001600160a01b0316836001600160a01b0316146118615761186183826119db565b6001600160a01b0382166118785761068681611a78565b826001600160a01b0316826001600160a01b031614610686576106868282611b51565b6118a58383611b95565b6118b260008484846118ce565b6106865760405162461bcd60e51b815260040161055090612256565b60006001600160a01b0384163b156119d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611912903390899088908890600401612206565b602060405180830381600087803b15801561192c57600080fd5b505af192505050801561195c575060408051601f3d908101601f1916820190925261195991810190611f09565b60015b6119b6573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516119ae5760405162461bcd60e51b815260040161055090612256565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112bc565b506001949350505050565b600060016119e884610acd565b6119f29190612379565b600083815260076020526040902054909150808214611a45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a8a90600190612379565b60008381526009602052604081205460088054939450909284908110611ac057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611aef57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b3557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b5c83610acd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611beb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610550565b6000818152600260205260409020546001600160a01b031615611c505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610550565b611c5c600083836117e3565b6001600160a01b0382166000908152600360205260408120805460019290611c8590849061232e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b6060815260200190600190039081611cf35790505090565b80356001600160a01b0381168114611d2257600080fd5b919050565b600060208284031215611d38578081fd5b611d4182611d0b565b9392505050565b60008060408385031215611d5a578081fd5b611d6383611d0b565b9150611d7160208401611d0b565b90509250929050565b600080600060608486031215611d8e578081fd5b611d9784611d0b565b9250611da560208501611d0b565b9150604084013590509250925092565b60008060008060808587031215611dca578081fd5b611dd385611d0b565b9350611de160208601611d0b565b925060408501359150606085013567ffffffffffffffff80821115611e04578283fd5b818701915087601f830112611e17578283fd5b813581811115611e2957611e29612452565b604051601f8201601f19908116603f01168101908382118183101715611e5157611e51612452565b816040528281528a6020848701011115611e69578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611e9c578182fd5b611ea583611d0b565b915060208301358015158114611eb9578182fd5b809150509250929050565b60008060408385031215611ed6578182fd5b611edf83611d0b565b946020939093013593505050565b600060208284031215611efe578081fd5b8135611d4181612468565b600060208284031215611f1a578081fd5b8151611d4181612468565b600060208284031215611f36578081fd5b5035919050565b60008151808452611f55816020860160208601612390565b601f01601f19169290920160200192915050565b60008251611f7b818460208701612390565b9190910192915050565b60008a51611f97818460208f01612390565b8a51611fa98183860160208f01612390565b8a519184010190611fbe818360208e01612390565b8951910190611fd1818360208d01612390565b8851611fe38183850160208d01612390565b8851929091010190611ff9818360208b01612390565b865161200b8183850160208b01612390565b8651929091010190612021818360208901612390565b84516120338183850160208901612390565b9101019b9a5050505050505050505050565b60008351612057818460208801612390565b83519083019061206b818360208801612390565b601960f91b9101908152600101949350505050565b60008351612092818460208801612390565b8351908301906120a6818360208801612390565b603160f81b9101908152600101949350505050565b707b226e616d65223a2022536576656e202360781b815282516000906120e8816011850160208801612390565b7f222c20226465736372697074696f6e223a2022536576656e20697320746865206011918401918201527f6261736963206f66206d65746176657273652e204665656c206672656520746f60318201527f2075736520536576656e20696e20616e792077617920796f752077616e742e2260518201527f2c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b62607182015265185cd94d8d0b60d21b609182015283516121a6816097840160208801612390565b61227d60f01b60979290910191820152609901949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516121f981601d850160208701612390565b91909101601d0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223990830184611f3d565b9695505050505050565b602081526000611d416020830184611f3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561234157612341612426565b500190565b6000826123555761235561243c565b500490565b600081600019048311821515161561237457612374612426565b500290565b60008282101561238b5761238b612426565b500390565b60005b838110156123ab578181015183820152602001612393565b83811115610d0d5750506000910152565b600181811c908216806123d057607f821691505b602082108114156123f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240b5761240b612426565b5060010190565b6000826124215761242161243c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461105b57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e646a656e74207b2066696c6c3a2023663837613033207d202e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212205bff54e440db0170695857435bcaf81c6b0490dc0dcf940058f8f7cca930d33364736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a214deef11610097578063b88d4fde11610071578063b88d4fde146103a9578063c87b56dd146103bc578063e985e9c5146103cf578063f2fde38b1461040b57600080fd5b8063a214deef14610370578063a22cb46514610383578063a62773351461039657600080fd5b8063715018a6116100d3578063715018a61461033c5780638472c867146103445780638da5cb5b1461035757806395d89b411461036857600080fd5b80636352211e14610303578063701763281461031657806370a082311461032957600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102b7578063434f48c4146102ca5780634f6ccce7146102dd5780635aa892cb146102f057600080fd5b806323b872dd1461027e5780632f745c5914610291578063379607f5146102a457600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806314ec968d1461024657806318160ddd146102595780631adcb5fd1461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004611eed565b61041e565b60405190151581526020015b60405180910390f35b6101f9610449565b6040516101e89190612243565b610219610214366004611f25565b6104db565b6040516001600160a01b0390911681526020016101e8565b61024461023f366004611ec4565b610575565b005b6101f9610254366004611f25565b61068b565b6008545b6040519081526020016101e8565b6101f9610279366004611f25565b6106b5565b61024461028c366004611d7a565b6106df565b61025d61029f366004611ec4565b610710565b6102446102b2366004611f25565b6107a6565b6102446102c5366004611d7a565b610860565b6102446102d8366004611f25565b61087b565b61025d6102eb366004611f25565b610963565b6101f96102fe366004611f25565b610a04565b610219610311366004611f25565b610a2d565b6101f9610324366004611f25565b610aa4565b61025d610337366004611d27565b610acd565b610244610b54565b6101f9610352366004611f25565b610b8a565b600b546001600160a01b0316610219565b6101f9610bb3565b6101f961037e366004611f25565b610bc2565b610244610391366004611e8a565b610beb565b6101f96103a4366004611f25565b610cb0565b6102446103b7366004611db5565b610cdb565b6101f96103ca366004611f25565b610d13565b6101dc6103dd366004611d48565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610244610419366004611d27565b610fc3565b60006001600160e01b0319821663780e9d6360e01b148061044357506104438261105e565b92915050565b606060008054610458906123bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610484906123bc565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058082610a2d565b9050806001600160a01b0316836001600160a01b031614156105ee5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610550565b336001600160a01b038216148061060a575061060a81336103dd565b61067c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610550565b61068683836110ae565b505050565b6060610443826040518060400160405280600681526020016514d958dbdb9960d21b81525061111c565b6060610443826040518060400160405280600681526020016508cdeeae4e8d60d31b81525061111c565b6106e933826111cd565b6107055760405162461bcd60e51b8152600401610550906122dd565b6106868383836112c4565b600061071b83610acd565b821061077d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610550565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107f95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610550565b6002600a55801580159061080e57506126ad81105b61084d5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610550565b610858335b8261146f565b506001600a55565b61068683838360405180602001604052806000815250610cdb565b6002600a5414156108ce5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610550565b6002600a55600b546001600160a01b031633146108fd5760405162461bcd60e51b8152600401610550906122a8565b6126ac8111801561090f575061271181105b61094e5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610550565b610858610852600b546001600160a01b031690565b600061096e60085490565b82106109d15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610550565b600882815481106109f257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b606061044382604051806040016040528060058152602001640a6d2f0e8d60db1b81525061111c565b6000818152600260205260408120546001600160a01b0316806104435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610550565b60606104438260405180604001604052806005815260200164151a1a5c9960da1b81525061111c565b60006001600160a01b038216610b385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610550565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610b7e5760405162461bcd60e51b8152600401610550906122a8565b610b88600061148d565b565b6060610443826040518060400160405280600581526020016408cd2cce8d60db1b81525061111c565b606060018054610458906123bc565b60606104438260405180604001604052806005815260200164119a5c9cdd60da1b81525061111c565b6001600160a01b038216331415610c445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610550565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606061044382604051806040016040528060078152602001660a6caeccadce8d60cb1b81525061111c565b610ce533836111cd565b610d015760405162461bcd60e51b8152600401610550906122dd565b610d0d848484846114df565b50505050565b6060610d1d611ce3565b60405180610120016040528060f581526020016125d460f5913981526040805160608101909152602180825261254a60208301396020820152610d5f83610bc2565b60408083019190915280516060810190915260288082526126c960208301396060820152610d8c8361068b565b60808201526040805160608101909152602880825261247f602083013960a0820152610db783610aa4565b60c0820152604080516060810190915260288082526124f9602083013960e0820152610de2836106b5565b610100820152604080516060810190915260298082526125216020830139610120820152610e0f83610b8a565b610140820152604080516060810190915260298082526124d06020830139610160820152610e3c83610a04565b6101808201526040805160608101909152602980825261256b60208301396101a0820152610e6983610cb0565b6101c0820152604080516060810190915260298082526124a760208301396101e0820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a610ef79a909101611f85565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950610f4a988a9890602001611f85565b60405160208183030381529060405290506000610f97610f6986611512565b610f728461162c565b604051602001610f839291906120bb565b60405160208183030381529060405261162c565b905080604051602001610faa91906121c1565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b03163314610fed5760405162461bcd60e51b8152600401610550906122a8565b6001600160a01b0381166110525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610550565b61105b8161148d565b50565b60006001600160e01b031982166380ac58cd60e01b148061108f57506001600160e01b03198216635b5e139f60e01b145b8061044357506301ffc9a760e01b6001600160e01b0319831614610443565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110e382610a2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006111528361112d86611512565b60405160200161113e929190612080565b6040516020818303038152906040526117a0565b90508060006111758561116488611512565b60405160200161113e929190612045565b90508082116111845781611186565b805b91506000611194828561232e565b905060006111a182611512565b6040516020016111b19190611f69565b60408051808303601f1901815291905298975050505050505050565b6000818152600260205260408120546001600160a01b03166112465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610550565b600061125183610a2d565b9050806001600160a01b0316846001600160a01b0316148061128c5750836001600160a01b0316611281846104db565b6001600160a01b0316145b806112bc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112d782610a2d565b6001600160a01b03161461133f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610550565b6001600160a01b0382166113a15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610550565b6113ac8383836117e3565b6113b76000826110ae565b6001600160a01b03831660009081526003602052604081208054600192906113e0908490612379565b90915550506001600160a01b038216600090815260036020526040812080546001929061140e90849061232e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61148982826040518060200160405280600081525061189b565b5050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114ea8484846112c4565b6114f6848484846118ce565b610d0d5760405162461bcd60e51b815260040161055090612256565b6060816115365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611560578061154a816123f7565b91506115599050600a83612346565b915061153a565b60008167ffffffffffffffff81111561158957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156115b3576020820181803683370190505b5090505b84156112bc576115c8600183612379565b91506115d5600a86612412565b6115e090603061232e565b60f81b81838151811061160357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611625600a86612346565b94506115b7565b80516060908061164c575050604080516020810190915260008152919050565b6000600361165b83600261232e565b6116659190612346565b61167090600461235a565b9050600061167f82602061232e565b67ffffffffffffffff8111156116a557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116cf576020820181803683370190505b5090506000604051806060016040528060408152602001612594604091399050600181016020830160005b8681101561175b576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016116fa565b506003860660018114611775576002811461178657611792565b613d3d60f01b600119830152611792565b603d60f81b6000198301525b505050918152949350505050565b6000603c826040516020016117b59190611f69565b6040516020818303038152906040528051906020012060001c6117d89190612412565b61044390600161232e565b6001600160a01b03831661183e5761183981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611861565b816001600160a01b0316836001600160a01b0316146118615761186183826119db565b6001600160a01b0382166118785761068681611a78565b826001600160a01b0316826001600160a01b031614610686576106868282611b51565b6118a58383611b95565b6118b260008484846118ce565b6106865760405162461bcd60e51b815260040161055090612256565b60006001600160a01b0384163b156119d057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611912903390899088908890600401612206565b602060405180830381600087803b15801561192c57600080fd5b505af192505050801561195c575060408051601f3d908101601f1916820190925261195991810190611f09565b60015b6119b6573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516119ae5760405162461bcd60e51b815260040161055090612256565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112bc565b506001949350505050565b600060016119e884610acd565b6119f29190612379565b600083815260076020526040902054909150808214611a45576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a8a90600190612379565b60008381526009602052604081205460088054939450909284908110611ac057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611aef57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b3557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b5c83610acd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611beb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610550565b6000818152600260205260409020546001600160a01b031615611c505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610550565b611c5c600083836117e3565b6001600160a01b0382166000908152600360205260408120805460019290611c8590849061232e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6040518061022001604052806011905b6060815260200190600190039081611cf35790505090565b80356001600160a01b0381168114611d2257600080fd5b919050565b600060208284031215611d38578081fd5b611d4182611d0b565b9392505050565b60008060408385031215611d5a578081fd5b611d6383611d0b565b9150611d7160208401611d0b565b90509250929050565b600080600060608486031215611d8e578081fd5b611d9784611d0b565b9250611da560208501611d0b565b9150604084013590509250925092565b60008060008060808587031215611dca578081fd5b611dd385611d0b565b9350611de160208601611d0b565b925060408501359150606085013567ffffffffffffffff80821115611e04578283fd5b818701915087601f830112611e17578283fd5b813581811115611e2957611e29612452565b604051601f8201601f19908116603f01168101908382118183101715611e5157611e51612452565b816040528281528a6020848701011115611e69578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611e9c578182fd5b611ea583611d0b565b915060208301358015158114611eb9578182fd5b809150509250929050565b60008060408385031215611ed6578182fd5b611edf83611d0b565b946020939093013593505050565b600060208284031215611efe578081fd5b8135611d4181612468565b600060208284031215611f1a578081fd5b8151611d4181612468565b600060208284031215611f36578081fd5b5035919050565b60008151808452611f55816020860160208601612390565b601f01601f19169290920160200192915050565b60008251611f7b818460208701612390565b9190910192915050565b60008a51611f97818460208f01612390565b8a51611fa98183860160208f01612390565b8a519184010190611fbe818360208e01612390565b8951910190611fd1818360208d01612390565b8851611fe38183850160208d01612390565b8851929091010190611ff9818360208b01612390565b865161200b8183850160208b01612390565b8651929091010190612021818360208901612390565b84516120338183850160208901612390565b9101019b9a5050505050505050505050565b60008351612057818460208801612390565b83519083019061206b818360208801612390565b601960f91b9101908152600101949350505050565b60008351612092818460208801612390565b8351908301906120a6818360208801612390565b603160f81b9101908152600101949350505050565b707b226e616d65223a2022536576656e202360781b815282516000906120e8816011850160208801612390565b7f222c20226465736372697074696f6e223a2022536576656e20697320746865206011918401918201527f6261736963206f66206d65746176657273652e204665656c206672656520746f60318201527f2075736520536576656e20696e20616e792077617920796f752077616e742e2260518201527f2c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b62607182015265185cd94d8d0b60d21b609182015283516121a6816097840160208801612390565b61227d60f01b60979290910191820152609901949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516121f981601d850160208701612390565b91909101601d0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223990830184611f3d565b9695505050505050565b602081526000611d416020830184611f3d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561234157612341612426565b500190565b6000826123555761235561243c565b500490565b600081600019048311821515161561237457612374612426565b500290565b60008282101561238b5761238b612426565b500390565b60005b838110156123ab578181015183820152602001612393565b83811115610d0d5750506000910152565b600181811c908216806123d057607f821691505b602082108114156123f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240b5761240b612426565b5060010190565b6000826124215761242161243c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461105b57600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e646a656e74207b2066696c6c3a2023663837613033207d202e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212205bff54e440db0170695857435bcaf81c6b0490dc0dcf940058f8f7cca930d33364736f6c63430008040033
Deployed Bytecode Sourcemap
44571:4843:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38421:224;;;;;;:::i;:::-;;:::i;:::-;;;9802:14:1;;9795:22;9777:41;;9765:2;9750:18;38421:224:0;;;;;;;;25535:100;;;:::i;:::-;;;;;;;:::i;27094:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9100:32:1;;;9082:51;;9070:2;9055:18;27094:221:0;9037:102:1;26617:411:0;;;;;;:::i;:::-;;:::i;:::-;;44931:123;;;;;;:::i;:::-;;:::i;39061:113::-;39149:10;:17;39061:113;;;17695:25:1;;;17683:2;17668:18;39061:113:0;17650:76:1;45199:123:0;;;;;;:::i;:::-;;:::i;27984:339::-;;;;;;:::i;:::-;;:::i;38729:256::-;;;;;;:::i;:::-;;:::i;48251:172::-;;;;;;:::i;:::-;;:::i;28394:185::-;;;;;;:::i;:::-;;:::i;48435:186::-;;;;;;:::i;:::-;;:::i;39251:233::-;;;;;;:::i;:::-;;:::i;45467:121::-;;;;;;:::i;:::-;;:::i;25229:239::-;;;;;;:::i;:::-;;:::i;45066:121::-;;;;;;:::i;:::-;;:::i;24959:208::-;;;;;;:::i;:::-;;:::i;9927:94::-;;;:::i;45334:121::-;;;;;;:::i;:::-;;:::i;9276:87::-;9349:6;;-1:-1:-1;;;;;9349:6:0;9276:87;;25704:104;;;:::i;44798:121::-;;;;;;:::i;:::-;;:::i;27387:295::-;;;;;;:::i;:::-;;:::i;45600:125::-;;;;;;:::i;:::-;;:::i;28650:328::-;;;;;;:::i;:::-;;:::i;46269:1974::-;;;;;;:::i;:::-;;:::i;27753:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27753:164;10176:192;;;;;;:::i;:::-;;:::i;38421:224::-;38523:4;-1:-1:-1;;;;;;38547:50:0;;-1:-1:-1;;;38547:50:0;;:90;;;38601:36;38625:11;38601:23;:36::i;:::-;38540:97;38421:224;-1:-1:-1;;38421:224:0:o;25535:100::-;25589:13;25622:5;25615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25535:100;:::o;27094:221::-;27170:7;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;27190:73;;;;-1:-1:-1;;;27190:73:0;;14629:2:1;27190:73:0;;;14611:21:1;14668:2;14648:18;;;14641:30;14707:34;14687:18;;;14680:62;-1:-1:-1;;;14758:18:1;;;14751:42;14810:19;;27190:73:0;;;;;;;;;-1:-1:-1;27283:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27283:24:0;;27094:221::o;26617:411::-;26698:13;26714:23;26729:7;26714:14;:23::i;:::-;26698:39;;26762:5;-1:-1:-1;;;;;26756:11:0;:2;-1:-1:-1;;;;;26756:11:0;;;26748:57;;;;-1:-1:-1;;;26748:57:0;;16158:2:1;26748:57:0;;;16140:21:1;16197:2;16177:18;;;16170:30;16236:34;16216:18;;;16209:62;-1:-1:-1;;;16287:18:1;;;16280:31;16328:19;;26748:57:0;16130:223:1;26748:57:0;8216:10;-1:-1:-1;;;;;26840:21:0;;;;:62;;-1:-1:-1;26865:37:0;26882:5;8216:10;27753:164;:::i;26865:37::-;26818:168;;;;-1:-1:-1;;;26818:168:0;;13022:2:1;26818:168:0;;;13004:21:1;13061:2;13041:18;;;13034:30;13100:34;13080:18;;;13073:62;13171:26;13151:18;;;13144:54;13215:19;;26818:168:0;12994:246:1;26818:168:0;26999:21;27008:2;27012:7;26999:8;:21::i;:::-;26617:411;;;:::o;44931:123::-;44991:13;45022:24;45028:7;45022:24;;;;;;;;;;;;;-1:-1:-1;;;45022:24:0;;;:5;:24::i;45199:123::-;45259:13;45290:24;45296:7;45290:24;;;;;;;;;;;;;-1:-1:-1;;;45290:24:0;;;:5;:24::i;27984:339::-;28179:41;8216:10;28212:7;28179:18;:41::i;:::-;28171:103;;;;-1:-1:-1;;;28171:103:0;;;;;;;:::i;:::-;28287:28;28297:4;28303:2;28307:7;28287:9;:28::i;38729:256::-;38826:7;38862:23;38879:5;38862:16;:23::i;:::-;38854:5;:31;38846:87;;;;-1:-1:-1;;;38846:87:0;;10255:2:1;38846:87:0;;;10237:21:1;10294:2;10274:18;;;10267:30;10333:34;10313:18;;;10306:62;-1:-1:-1;;;10384:18:1;;;10377:41;10435:19;;38846:87:0;10227:233:1;38846:87:0;-1:-1:-1;;;;;;38951:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38729:256::o;48251:172::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;17391:2:1;12803:63:0;;;17373:21:1;17430:2;17410:18;;;17403:30;17469:33;17449:18;;;17442:61;17520:18;;12803:63:0;17363:181:1;12803:63:0;12215:1;12944:7;:18;48322:11;;;;;:29:::1;;;48347:4;48337:7;:14;48322:29;48314:58;;;::::0;-1:-1:-1;;;48314:58:0;;15403:2:1;48314:58:0::1;::::0;::::1;15385:21:1::0;15442:2;15422:18;;;15415:30;-1:-1:-1;;;15461:18:1;;;15454:46;15517:18;;48314:58:0::1;15375:166:1::0;48314:58:0::1;48383:32;8216:10:::0;48393:12:::1;48407:7;48383:9;:32::i;:::-;-1:-1:-1::0;12171:1:0;13123:7;:22;48251:172::o;28394:185::-;28532:39;28549:4;28555:2;28559:7;28532:39;;;;;;;;;;;;:16;:39::i;48435:186::-;12215:1;12811:7;;:19;;12803:63;;;;-1:-1:-1;;;12803:63:0;;17391:2:1;12803:63:0;;;17373:21:1;17430:2;17410:18;;;17403:30;17469:33;17449:18;;;17442:61;17520:18;;12803:63:0;17363:181:1;12803:63:0;12215:1;12944:7;:18;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23:::1;9488:68;;;;-1:-1:-1::0;;;9488:68:0::1;;;;;;;:::i;:::-;48531:4:::2;48521:7;:14;:33;;;;;48549:5;48539:7;:15;48521:33;48513:62;;;::::0;-1:-1:-1;;;48513:62:0;;15403:2:1;48513:62:0::2;::::0;::::2;15385:21:1::0;15442:2;15422:18;;;15415:30;-1:-1:-1;;;15461:18:1;;;15454:46;15517:18;;48513:62:0::2;15375:166:1::0;48513:62:0::2;48586:27;48596:7;9349:6:::0;;-1:-1:-1;;;;;9349:6:0;;9276:87;39251:233;39326:7;39362:30;39149:10;:17;;39061:113;39362:30;39354:5;:38;39346:95;;;;-1:-1:-1;;;39346:95:0;;16978:2:1;39346:95:0;;;16960:21:1;17017:2;16997:18;;;16990:30;17056:34;17036:18;;;17029:62;-1:-1:-1;;;17107:18:1;;;17100:42;17159:19;;39346:95:0;16950:234:1;39346:95:0;39459:10;39470:5;39459:17;;;;;;-1:-1:-1;;;39459:17:0;;;;;;;;;;;;;;;;;39452:24;;39251:233;;;:::o;45467:121::-;45526:13;45557:23;45563:7;45557:23;;;;;;;;;;;;;-1:-1:-1;;;45557:23:0;;;:5;:23::i;25229:239::-;25301:7;25337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25337:16:0;25372:19;25364:73;;;;-1:-1:-1;;;25364:73:0;;13858:2:1;25364:73:0;;;13840:21:1;13897:2;13877:18;;;13870:30;13936:34;13916:18;;;13909:62;-1:-1:-1;;;13987:18:1;;;13980:39;14036:19;;25364:73:0;13830:231:1;45066:121:0;45125:13;45156:23;45162:7;45156:23;;;;;;;;;;;;;-1:-1:-1;;;45156:23:0;;;:5;:23::i;24959:208::-;25031:7;-1:-1:-1;;;;;25059:19:0;;25051:74;;;;-1:-1:-1;;;25051:74:0;;13447:2:1;25051:74:0;;;13429:21:1;13486:2;13466:18;;;13459:30;13525:34;13505:18;;;13498:62;-1:-1:-1;;;13576:18:1;;;13569:40;13626:19;;25051:74:0;13419:232:1;25051:74:0;-1:-1:-1;;;;;;25143:16:0;;;;;:9;:16;;;;;;;24959:208::o;9927:94::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;9992:21:::1;10010:1;9992:9;:21::i;:::-;9927:94::o:0;45334:121::-;45393:13;45424:23;45430:7;45424:23;;;;;;;;;;;;;-1:-1:-1;;;45424:23:0;;;:5;:23::i;25704:104::-;25760:13;25793:7;25786:14;;;;;:::i;44798:121::-;44857:13;44888:23;44894:7;44888:23;;;;;;;;;;;;;-1:-1:-1;;;44888:23:0;;;:5;:23::i;27387:295::-;-1:-1:-1;;;;;27490:24:0;;8216:10;27490:24;;27482:62;;;;-1:-1:-1;;;27482:62:0;;12255:2:1;27482:62:0;;;12237:21:1;12294:2;12274:18;;;12267:30;12333:27;12313:18;;;12306:55;12378:18;;27482:62:0;12227:175:1;27482:62:0;8216:10;27557:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27557:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27557:53:0;;;;;;;;;;27626:48;;9777:41:1;;;27557:42:0;;8216:10;27626:48;;9750:18:1;27626:48:0;;;;;;;27387:295;;:::o;45600:125::-;45661:13;45692:25;45698:7;45692:25;;;;;;;;;;;;;-1:-1:-1;;;45692:25:0;;;:5;:25::i;28650:328::-;28825:41;8216:10;28858:7;28825:18;:41::i;:::-;28817:103;;;;-1:-1:-1;;;28817:103:0;;;;;;;:::i;:::-;28931:39;28945:4;28951:2;28955:7;28964:5;28931:13;:39::i;:::-;28650:328;;;;:::o;46269:1974::-;46334:13;46360:23;;:::i;:::-;46394:258;;;;;;;;;;;;;;;;;;;46665:46;;;;;;;;;;;;;;46394:8;46665:46;;;:8;;;:46;46735:20;46747:7;46735:11;:20::i;:::-;46724:8;;;;:31;;;;46768:53;;;;;;;;;;;;;46724:8;46768:53;;;:8;;;:53;46845:21;46858:7;46845:12;:21::i;:::-;46834:8;;;:32;46879:53;;;;;;;;;;;;;;46834:8;46879:53;;;:8;;;:53;46956:20;46968:7;46956:11;:20::i;:::-;46945:8;;;:31;46989:53;;;;;;;;;;;;;;46945:8;46989:53;;;:8;;;:53;47066:21;47079:7;47066:12;:21::i;:::-;47055:8;;;:32;47100:54;;;;;;;;;;;;;;47055:8;47100:54;;;:8;;;:54;47179:20;47191:7;47179:11;:20::i;:::-;47167:9;;;:32;47212:55;;;;;;;;;;;;;;47167:9;47212:55;;;:9;;;:55;47292:20;47304:7;47292:11;:20::i;:::-;47280:9;;;:32;47325:55;;;;;;;;;;;;;;47280:9;47325:55;;;:9;;;:55;47405:22;47419:7;47405:13;:22::i;:::-;47393:9;;;:34;47440:55;;;;;;;;;;;;;;47393:9;47440:55;;;:9;;;:55;47508:27;;;;;;;;;;;-1:-1:-1;;;47440:9:0;47508:27;;;;;;;:9;;;:27;;;;47595:8;;47605;;;;47615;;;;47625;;;;47635;;;;47645;;;;47655;;;;47665;;;;47675;;;;47578:106;;-1:-1:-1;;47578:106:0;;47675:8;;47578:106;;:::i;:::-;;;;;;;-1:-1:-1;;47578:106:0;;;;;;;47737:8;;;;47747:9;;;;47758;;;;47769;;;;47780;;;;47791;;;;47802;;;;47813;;;;47578:106;;-1:-1:-1;47712:111:0;;47578:106;;47813:9;47737:8;47712:111;;:::i;:::-;;;;;;;;;;;;;47696:128;;47845:18;47866:260;47931:17;47940:7;47931:8;:17::i;:::-;48088:28;48108:6;48088:13;:28::i;:::-;47893:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47866:13;:260::i;:::-;47845:281;;48203:4;48153:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48153:55:0;;;;;;;;;;46269:1974;-1:-1:-1;;;;;46269:1974:0:o;10176:192::-;9349:6;;-1:-1:-1;;;;;9349:6:0;8216:10;9496:23;9488:68;;;;-1:-1:-1;;;9488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10265:22:0;::::1;10257:73;;;::::0;-1:-1:-1;;;10257:73:0;;11086:2:1;10257:73:0::1;::::0;::::1;11068:21:1::0;11125:2;11105:18;;;11098:30;11164:34;11144:18;;;11137:62;-1:-1:-1;;;11215:18:1;;;11208:36;11261:19;;10257:73:0::1;11058:228:1::0;10257:73:0::1;10341:19;10351:8;10341:9;:19::i;:::-;10176:192:::0;:::o;24590:305::-;24692:4;-1:-1:-1;;;;;;24729:40:0;;-1:-1:-1;;;24729:40:0;;:105;;-1:-1:-1;;;;;;;24786:48:0;;-1:-1:-1;;;24786:48:0;24729:105;:158;;;-1:-1:-1;;;;;;;;;;23306:40:0;;;24851:36;23197:157;34470:174;34545:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34545:29:0;-1:-1:-1;;;;;34545:29:0;;;;;;;;:24;;34599:23;34545:24;34599:14;:23::i;:::-;-1:-1:-1;;;;;34590:46:0;;;;;;;;;;;34470:174;;:::o;45737:522::-;45817:13;45843;45859:67;45890:9;45901:17;45910:7;45901:8;:17::i;:::-;45873:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45859:6;:67::i;:::-;45843:83;-1:-1:-1;45843:83:0;45937:11;45983:67;46014:9;46025:17;46034:7;46025:8;:17::i;:::-;45997:51;;;;;;;;;:::i;45983:67::-;45967:83;;46073:5;46067:3;:11;:25;;46089:3;46067:25;;;46081:5;46067:25;46061:31;-1:-1:-1;46113:12:0;46128:13;46136:5;46128;:13;:::i;:::-;46113:28;;46162:20;46209:14;46218:4;46209:8;:14::i;:::-;46192:32;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;46192:32:0;;;;;;;45737:522;-1:-1:-1;;;;;;;;45737:522:0:o;30782:348::-;30875:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;30892:73;;;;-1:-1:-1;;;30892:73:0;;12609:2:1;30892:73:0;;;12591:21:1;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;-1:-1:-1;;;12738:18:1;;;12731:42;12790:19;;30892:73:0;12581:234:1;30892:73:0;30976:13;30992:23;31007:7;30992:14;:23::i;:::-;30976:39;;31045:5;-1:-1:-1;;;;;31034:16:0;:7;-1:-1:-1;;;;;31034:16:0;;:51;;;;31078:7;-1:-1:-1;;;;;31054:31:0;:20;31066:7;31054:11;:20::i;:::-;-1:-1:-1;;;;;31054:31:0;;31034:51;:87;;;-1:-1:-1;;;;;;27874:25:0;;;27850:4;27874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31089:32;31026:96;30782:348;-1:-1:-1;;;;30782:348:0:o;33774:578::-;33933:4;-1:-1:-1;;;;;33906:31:0;:23;33921:7;33906:14;:23::i;:::-;-1:-1:-1;;;;;33906:31:0;;33898:85;;;;-1:-1:-1;;;33898:85:0;;15748:2:1;33898:85:0;;;15730:21:1;15787:2;15767:18;;;15760:30;15826:34;15806:18;;;15799:62;-1:-1:-1;;;15877:18:1;;;15870:39;15926:19;;33898:85:0;15720:231:1;33898:85:0;-1:-1:-1;;;;;34002:16:0;;33994:65;;;;-1:-1:-1;;;33994:65:0;;11850:2:1;33994:65:0;;;11832:21:1;11889:2;11869:18;;;11862:30;11928:34;11908:18;;;11901:62;-1:-1:-1;;;11979:18:1;;;11972:34;12023:19;;33994:65:0;11822:226:1;33994:65:0;34072:39;34093:4;34099:2;34103:7;34072:20;:39::i;:::-;34176:29;34193:1;34197:7;34176:8;:29::i;:::-;-1:-1:-1;;;;;34218:15:0;;;;;;:9;:15;;;;;:20;;34237:1;;34218:15;:20;;34237:1;;34218:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34249:13:0;;;;;;:9;:13;;;;;:18;;34266:1;;34249:13;:18;;34266:1;;34249:18;:::i;:::-;;;;-1:-1:-1;;34278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34278:21:0;-1:-1:-1;;;;;34278:21:0;;;;;;;;;34317:27;;34278:16;;34317:27;;;;;;;33774:578;;;:::o;31472:110::-;31548:26;31558:2;31562:7;31548:26;;;;;;;;;;;;:9;:26::i;:::-;31472:110;;:::o;10376:173::-;10451:6;;;-1:-1:-1;;;;;10468:17:0;;;-1:-1:-1;;;;;;10468:17:0;;;;;;;10501:40;;10451:6;;;10468:17;10451:6;;10501:40;;10432:16;;10501:40;10376:173;;:::o;29860:315::-;30017:28;30027:4;30033:2;30037:7;30017:9;:28::i;:::-;30064:48;30087:4;30093:2;30097:7;30106:5;30064:22;:48::i;:::-;30056:111;;;;-1:-1:-1;;;30056:111:0;;;;;;;:::i;48633:715::-;48689:13;48902:10;48898:53;;-1:-1:-1;;48929:10:0;;;;;;;;;;;;-1:-1:-1;;;48929:10:0;;;;;48633:715::o;48898:53::-;48976:5;48961:12;49017:78;49024:9;;49017:78;;49050:8;;;;:::i;:::-;;-1:-1:-1;49073:10:0;;-1:-1:-1;49081:2:0;49073:10;;:::i;:::-;;;49017:78;;;49105:19;49137:6;49127:17;;;;;;-1:-1:-1;;;49127:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49127:17:0;;49105:39;;49155:154;49162:10;;49155:154;;49189:11;49199:1;49189:11;;:::i;:::-;;-1:-1:-1;49258:10:0;49266:2;49258:5;:10;:::i;:::-;49245:24;;:2;:24;:::i;:::-;49232:39;;49215:6;49222;49215:14;;;;;;-1:-1:-1;;;49215:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;49215:56:0;;;;;;;;-1:-1:-1;49286:11:0;49295:2;49286:11;;:::i;:::-;;;49155:154;;49765:1607;49863:11;;49823:13;;49889:8;49885:23;;-1:-1:-1;;49899:9:0;;;;;;;;;-1:-1:-1;49899:9:0;;;49765:1607;-1:-1:-1;49765:1607:0:o;49885:23::-;49960:18;49998:1;49987:7;:3;49993:1;49987:7;:::i;:::-;49986:13;;;;:::i;:::-;49981:19;;:1;:19;:::i;:::-;49960:40;-1:-1:-1;50058:19:0;50090:15;49960:40;50103:2;50090:15;:::i;:::-;50080:26;;;;;;-1:-1:-1;;;50080:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50080:26:0;;50058:48;;50119:18;50140:5;;;;;;;;;;;;;;;;;50119:26;;50209:1;50202:5;50198:13;50254:2;50246:6;50242:15;50305:1;50273:777;50328:3;50325:1;50322:10;50273:777;;;50383:1;50426:12;;;;;50420:19;50521:4;50509:2;50505:14;;;;;50487:40;;50481:47;50630:2;50626:14;;;50622:25;;50608:40;;50602:47;50759:1;50755:13;;;50751:24;;50737:39;;50731:46;50879:16;;;;50865:31;;50859:38;50557:1;50553:11;;;50651:4;50598:58;;;50589:68;50682:11;;50727:57;;;50718:67;;;;50810:11;;50855:49;;50846:59;50934:3;50930:13;50963:22;;51033:1;51018:17;;;;50376:9;50273:777;;;50277:44;51082:1;51077:3;51073:11;51103:1;51098:84;;;;51201:1;51196:82;;;;51066:212;;51098:84;-1:-1:-1;;;;;51131:17:0;;51124:43;51098:84;;51196:82;-1:-1:-1;;;;;51229:17:0;;51222:41;51066:212;-1:-1:-1;;;51294:26:0;;;51301:6;49765:1607;-1:-1:-1;;;;49765:1607:0:o;44641:149::-;44701:7;44775:2;44764:5;44747:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;44737:34;;;;;;44729:43;;:48;;;;:::i;:::-;44728:54;;44781:1;44728:54;:::i;40097:589::-;-1:-1:-1;;;;;40303:18:0;;40299:187;;40338:40;40370:7;41513:10;:17;;41486:24;;;;:15;:24;;;;;:44;;;41541:24;;;;;;;;;;;;41409:164;40338:40;40299:187;;;40408:2;-1:-1:-1;;;;;40400:10:0;:4;-1:-1:-1;;;;;40400:10:0;;40396:90;;40427:47;40460:4;40466:7;40427:32;:47::i;:::-;-1:-1:-1;;;;;40500:16:0;;40496:183;;40533:45;40570:7;40533:36;:45::i;40496:183::-;40606:4;-1:-1:-1;;;;;40600:10:0;:2;-1:-1:-1;;;;;40600:10:0;;40596:83;;40627:40;40655:2;40659:7;40627:27;:40::i;31809:321::-;31939:18;31945:2;31949:7;31939:5;:18::i;:::-;31990:54;32021:1;32025:2;32029:7;32038:5;31990:22;:54::i;:::-;31968:154;;;;-1:-1:-1;;;31968:154:0;;;;;;;:::i;35209:803::-;35364:4;-1:-1:-1;;;;;35385:13:0;;15692:20;15740:8;35381:624;;35421:72;;-1:-1:-1;;;35421:72:0;;-1:-1:-1;;;;;35421:36:0;;;;;:72;;8216:10;;35472:4;;35478:7;;35487:5;;35421:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35421:72:0;;;;;;;;-1:-1:-1;;35421:72:0;;;;;;;;;;;;:::i;:::-;;;35417:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35667:13:0;;35663:272;;35710:60;;-1:-1:-1;;;35710:60:0;;;;;;;:::i;35663:272::-;35885:6;35879:13;35870:6;35866:2;35862:15;35855:38;35417:533;-1:-1:-1;;;;;;35544:55:0;-1:-1:-1;;;35544:55:0;;-1:-1:-1;35537:62:0;;35381:624;-1:-1:-1;35989:4:0;35209:803;;;;;;:::o;42200:988::-;42466:22;42516:1;42491:22;42508:4;42491:16;:22::i;:::-;:26;;;;:::i;:::-;42528:18;42549:26;;;:17;:26;;;;;;42466:51;;-1:-1:-1;42682:28:0;;;42678:328;;-1:-1:-1;;;;;42749:18:0;;42727:19;42749:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42800:30;;;;;;:44;;;42917:30;;:17;:30;;;;;:43;;;42678:328;-1:-1:-1;43102:26:0;;;;:17;:26;;;;;;;;43095:33;;;-1:-1:-1;;;;;43146:18:0;;;;;:12;:18;;;;;:34;;;;;;;43139:41;42200:988::o;43483:1079::-;43761:10;:17;43736:22;;43761:21;;43781:1;;43761:21;:::i;:::-;43793:18;43814:24;;;:15;:24;;;;;;44187:10;:26;;43736:46;;-1:-1:-1;43814:24:0;;43736:46;;44187:26;;;;-1:-1:-1;;;44187:26:0;;;;;;;;;;;;;;;;;44165:48;;44251:11;44226:10;44237;44226:22;;;;;;-1:-1:-1;;;44226:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44331:28;;;:15;:28;;;;;;;:41;;;44503:24;;;;;44496:31;44538:10;:16;;;;;-1:-1:-1;;;44538:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43483:1079;;;;:::o;40987:221::-;41072:14;41089:20;41106:2;41089:16;:20::i;:::-;-1:-1:-1;;;;;41120:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41165:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40987:221:0:o;32466:382::-;-1:-1:-1;;;;;32546:16:0;;32538:61;;;;-1:-1:-1;;;32538:61:0;;14268:2:1;32538:61:0;;;14250:21:1;;;14287:18;;;14280:30;14346:34;14326:18;;;14319:62;14398:18;;32538:61:0;14240:182:1;32538:61:0;30553:4;30577:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30577:16:0;:30;32610:58;;;;-1:-1:-1;;;32610:58:0;;11493:2:1;32610:58:0;;;11475:21:1;11532:2;11512:18;;;11505:30;11571;11551:18;;;11544:58;11619:18;;32610:58:0;11465:178:1;32610:58:0;32681:45;32710:1;32714:2;32718:7;32681:20;:45::i;:::-;-1:-1:-1;;;;;32739:13:0;;;;;;:9;:13;;;;;:18;;32756:1;;32739:13;:18;;32756:1;;32739:18;:::i;:::-;;;;-1:-1:-1;;32768:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32768:21:0;-1:-1:-1;;;;;32768:21:0;;;;;;;;32807:33;;32768:16;;;32807:33;;32768:16;;32807:33;32466:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;3423:6;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:1;;3434:120;-1:-1:-1;3434:120:1:o;3559:257::-;3600:3;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:1;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:1:o;3821:276::-;3952:3;3990:6;3984:13;4006:53;4052:6;4047:3;4040:4;4032:6;4028:17;4006:53;:::i;:::-;4075:16;;;;;3960:137;-1:-1:-1;;3960:137:1:o;4102:1776::-;4617:3;4655:6;4649:13;4671:53;4717:6;4712:3;4705:4;4697:6;4693:17;4671:53;:::i;:::-;4755:6;4749:13;4771:68;4830:8;4821:6;4816:3;4812:16;4805:4;4797:6;4793:17;4771:68;:::i;:::-;4917:13;;4865:16;;;4861:31;;4939:57;4917:13;4861:31;4973:4;4961:17;;4939:57;:::i;:::-;5063:13;;5018:20;;;5085:57;5063:13;5018:20;5119:4;5107:17;;5085:57;:::i;:::-;5173:6;5167:13;5189:72;5252:8;5241;5234:5;5230:20;5223:4;5215:6;5211:17;5189:72;:::i;:::-;5343:13;;5287:20;;;;5283:35;;5365:57;5343:13;5283:35;5399:4;5387:17;;5365:57;:::i;:::-;5453:6;5447:13;5469:72;5532:8;5521;5514:5;5510:20;5503:4;5495:6;5491:17;5469:72;:::i;:::-;5623:13;;5567:20;;;;5563:35;;5645:57;5623:13;5563:35;5679:4;5667:17;;5645:57;:::i;:::-;5733:6;5727:13;5749:72;5812:8;5801;5794:5;5790:20;5783:4;5775:6;5771:17;5749:72;:::i;:::-;5841:20;;5837:35;;4625:1253;-1:-1:-1;;;;;;;;;;;4625:1253:1:o;5883:633::-;6163:3;6201:6;6195:13;6217:53;6263:6;6258:3;6251:4;6243:6;6239:17;6217:53;:::i;:::-;6333:13;;6292:16;;;;6355:57;6333:13;6292:16;6389:4;6377:17;;6355:57;:::i;:::-;-1:-1:-1;;;6434:20:1;;6463:18;;;6508:1;6497:13;;6171:345;-1:-1:-1;;;;6171:345:1:o;6521:633::-;6801:3;6839:6;6833:13;6855:53;6901:6;6896:3;6889:4;6881:6;6877:17;6855:53;:::i;:::-;6971:13;;6930:16;;;;6993:57;6971:13;6930:16;7027:4;7015:17;;6993:57;:::i;:::-;-1:-1:-1;;;7072:20:1;;7101:18;;;7146:1;7135:13;;6809:345;-1:-1:-1;;;;6809:345:1:o;7159:1319::-;-1:-1:-1;;;7659:59:1;;7741:13;;7641:3;;7763:62;7741:13;7813:2;7804:12;;7797:4;7785:17;;7763:62;:::i;:::-;7889:66;7884:2;7844:16;;;7876:11;;;7869:87;7985:34;7980:2;7972:11;;7965:55;8049:66;8044:2;8036:11;;8029:87;8146:66;8140:3;8132:12;;8125:88;-1:-1:-1;;;8237:3:1;8229:12;;8222:30;8277:13;;8299:64;8277:13;8348:3;8340:12;;8333:4;8321:17;;8299:64;:::i;:::-;-1:-1:-1;;;8423:3:1;8382:17;;;;8415:12;;;8408:36;8468:3;8460:12;;7649:829;-1:-1:-1;;;;7649:829:1:o;8483:448::-;8745:31;8740:3;8733:44;8715:3;8806:6;8800:13;8822:62;8877:6;8872:2;8867:3;8863:12;8856:4;8848:6;8844:17;8822:62;:::i;:::-;8904:16;;;;8922:2;8900:25;;8723:208;-1:-1:-1;;8723:208:1:o;9144:488::-;-1:-1:-1;;;;;9413:15:1;;;9395:34;;9465:15;;9460:2;9445:18;;9438:43;9512:2;9497:18;;9490:34;;;9560:3;9555:2;9540:18;;9533:31;;;9338:4;;9581:45;;9606:19;;9598:6;9581:45;:::i;:::-;9573:53;9347:285;-1:-1:-1;;;;;;9347:285:1:o;9829:219::-;9978:2;9967:9;9960:21;9941:4;9998:44;10038:2;10027:9;10023:18;10015:6;9998:44;:::i;10465:414::-;10667:2;10649:21;;;10706:2;10686:18;;;10679:30;10745:34;10740:2;10725:18;;10718:62;-1:-1:-1;;;10811:2:1;10796:18;;10789:48;10869:3;10854:19;;10639:240::o;14840:356::-;15042:2;15024:21;;;15061:18;;;15054:30;15120:34;15115:2;15100:18;;15093:62;15187:2;15172:18;;15014:182::o;16358:413::-;16560:2;16542:21;;;16599:2;16579:18;;;16572:30;16638:34;16633:2;16618:18;;16611:62;-1:-1:-1;;;16704:2:1;16689:18;;16682:47;16761:3;16746:19;;16532:239::o;17731:128::-;17771:3;17802:1;17798:6;17795:1;17792:13;17789:2;;;17808:18;;:::i;:::-;-1:-1:-1;17844:9:1;;17779:80::o;17864:120::-;17904:1;17930;17920:2;;17935:18;;:::i;:::-;-1:-1:-1;17969:9:1;;17910:74::o;17989:168::-;18029:7;18095:1;18091;18087:6;18083:14;18080:1;18077:21;18072:1;18065:9;18058:17;18054:45;18051:2;;;18102:18;;:::i;:::-;-1:-1:-1;18142:9:1;;18041:116::o;18162:125::-;18202:4;18230:1;18227;18224:8;18221:2;;;18235:18;;:::i;:::-;-1:-1:-1;18272:9:1;;18211:76::o;18292:258::-;18364:1;18374:113;18388:6;18385:1;18382:13;18374:113;;;18464:11;;;18458:18;18445:11;;;18438:39;18410:2;18403:10;18374:113;;;18505:6;18502:1;18499:13;18496:2;;;-1:-1:-1;;18540:1:1;18522:16;;18515:27;18345:205::o;18555:380::-;18634:1;18630:12;;;;18677;;;18698:2;;18752:4;18744:6;18740:17;18730:27;;18698:2;18805;18797:6;18794:14;18774:18;18771:38;18768:2;;;18851:10;18846:3;18842:20;18839:1;18832:31;18886:4;18883:1;18876:15;18914:4;18911:1;18904:15;18768:2;;18610:325;;;:::o;18940:135::-;18979:3;-1:-1:-1;;19000:17:1;;18997:2;;;19020:18;;:::i;:::-;-1:-1:-1;19067:1:1;19056:13;;18987:88::o;19080:112::-;19112:1;19138;19128:2;;19143:18;;:::i;:::-;-1:-1:-1;19177:9:1;;19118:74::o;19197:127::-;19258:10;19253:3;19249:20;19246:1;19239:31;19289:4;19286:1;19279:15;19313:4;19310:1;19303:15;19329:127;19390:10;19385:3;19381:20;19378:1;19371:31;19421:4;19418:1;19411:15;19445:4;19442:1;19435:15;19461:127;19522:10;19517:3;19513:20;19510:1;19503:31;19553:4;19550:1;19543:15;19577:4;19574:1;19567:15;19593:131;-1:-1:-1;;;;;;19667:32:1;;19657:43;;19647:2;;19714:1;19711;19704:12
Swarm Source
ipfs://5bff54e440db0170695857435bcaf81c6b0490dc0dcf940058f8f7cca930d333
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.