Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 48 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw Contrac... | 16570182 | 1120 days ago | IN | 0 ETH | 0.00063468 | ||||
| Set Base URI | 15684761 | 1244 days ago | IN | 0 ETH | 0.00054786 | ||||
| Set Base URI | 15684082 | 1244 days ago | IN | 0 ETH | 0.00051884 | ||||
| Set Base URI | 15683558 | 1244 days ago | IN | 0 ETH | 0.00077123 | ||||
| Set Approval For... | 15650151 | 1249 days ago | IN | 0 ETH | 0.00050143 | ||||
| Set Approval For... | 15623688 | 1252 days ago | IN | 0 ETH | 0.00047675 | ||||
| Set Mint Period | 15623669 | 1252 days ago | IN | 0 ETH | 0.00030094 | ||||
| Batch Mint | 15623667 | 1252 days ago | IN | 0 ETH | 0.00915595 | ||||
| Set Mint Period | 15623663 | 1252 days ago | IN | 0 ETH | 0.00029731 | ||||
| Set Approval For... | 15554235 | 1262 days ago | IN | 0 ETH | 0.0007714 | ||||
| Set Approval For... | 15543258 | 1264 days ago | IN | 0 ETH | 0.00032498 | ||||
| Set Approval For... | 15543232 | 1264 days ago | IN | 0 ETH | 0.00037988 | ||||
| Safe Transfer Fr... | 15543222 | 1264 days ago | IN | 0 ETH | 0.00041077 | ||||
| Transfer | 15542426 | 1264 days ago | IN | 0 ETH | 0.00020166 | ||||
| Transfer From | 15539048 | 1264 days ago | IN | 0 ETH | 0.00053229 | ||||
| Mint | 15539000 | 1264 days ago | IN | 0.011618 ETH | 0.00143368 | ||||
| Mint | 15538861 | 1264 days ago | IN | 0.011618 ETH | 0.00119661 | ||||
| Mint | 15538855 | 1264 days ago | IN | 0.011618 ETH | 0.0012867 | ||||
| Mint | 15538851 | 1264 days ago | IN | 0.011618 ETH | 0.00132737 | ||||
| Set Approval For... | 15434237 | 1281 days ago | IN | 0 ETH | 0.00088332 | ||||
| Safe Transfer Fr... | 15424741 | 1283 days ago | IN | 0 ETH | 0.00034257 | ||||
| Transfer | 15424719 | 1283 days ago | IN | 0 ETH | 0.00009772 | ||||
| Transfer | 15424710 | 1283 days ago | IN | 0 ETH | 0.00013648 | ||||
| Mint | 15424684 | 1283 days ago | IN | 0.011618 ETH | 0.00087912 | ||||
| Set Base URI | 15403050 | 1286 days ago | IN | 0 ETH | 0.00049607 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16570182 | 1120 days ago | 0.116208 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TsukuyomiDragon_NFT
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-12
*/
// File: contracts/InterfaceNFTBaseValue.sol
pragma solidity >=0.8.14;
/*
In Solidity, a function that doesn't read or modify the variables of the state is called a pure function.
*/
//Interface to interact with the Tsukuyomi Dragon NFT Base Value Contract
interface InterfaceNFTBaseValue
{
function sTokenWeightMap(uint256 pTokenId) external pure returns (uint256);
function GetTokenBaseValueWei(uint256 pTokenId) external pure returns (uint256);
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/security/Pausable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: contracts/ERC_721_Mint.sol
pragma solidity >=0.8.14;
/*
ERC721
We’ve discussed how you can make a fungible token using ERC20, but what if not all tokens are alike?
This comes up in situations like real estate or collectibles, where some items are valued more than
others, due to their usefulness, rarity, etc. ERC721 is a standard for representing ownership of
non-fungible tokens, that is, where each token is unique.
*/
contract TsukuyomiDragon_NFT is ERC721, Ownable, Pausable
{
//Define the interface
InterfaceNFTBaseValue sInterfaceNftBaseValue;
//Max mint per period
uint256 public constant MAX_ACCOUNT_MINT = 20;
uint256 public constant MAX_WHITELIST_ACCOUNT_MINT = 1;
uint256 public constant MAX_WHITELIST_MINT = 100;
//ETH: 5997, POL: 2001, BSC = 1001, AVL = 1001
uint256 public constant MAX_TOKEN_SUPPLY = 5997;
uint256 public sTotalMinted = 0;
//Total mint token map (use to reduce external interface (website and game) processing time)
mapping (uint256 => uint256) public sTotalMintTokenMap;
//Mint Period: 1 - Whitelist, 2 - Limited Mint, 3 - Release,
uint256 public constant WHITELIST_MINT_PERIOD = 1;
uint256 public constant LIMITED_MINT_PERIOD = 2;
uint256 public constant RELEASE_MINT_PERIOD = 3;
uint256 public sMintPeriod = WHITELIST_MINT_PERIOD;
//Mint value
uint256 public sWhitelistMintValue = 0.0093 ether; // 1 USD = 0.000923 ETH, 10 x 0.000923 = 0.00923 x ether = 9230000000000000 (wei) - 1 ether = 1000000000000000000 (or 10^18) wei
uint256 public sLimitedMintValue = 0.0186 ether; // 18600000000000000 (wei) - 1 ether == 1000000000000000000 (or 10^18) wei
string public sBaseURI = "https://bafybeidgi2vbm6a2c5fahz6srqcihfv5mozxo3xlselaaino3vsj6ry3j4.ipfs.nftstorage.link/";
string public sContractMetadataURI = "https://bafybeigzcsosapadsdqutyqw2h7pyltfe5bjhe6667h5vozkuwd3occrlu.ipfs.nftstorage.link/TsukuyomiDragon";
//An event is emitted, it stores the arguments passed in transaction logs. These logs are stored on blockchain
//and are accessible using address of the contract till the contract is present on the blockchain.
//Indexed parameters for logged events will allow you to search for these events using the indexed parameters as filters.
event exclude(address indexed pAccount, bool psIsExcluded);
event withdraw(uint256 pAmount, address indexed pDestAddress);
event mint(uint256 indexed pTokenId);
event setWhitelistAccount(address indexed pAccount, bool pWhitelist);
//Account Balance
mapping(address => uint256) public sAccountBalance;
//Excluded Account
mapping (address => bool) public sIsExcluded;
//Limit the number of mint per address
mapping (address => uint256) public sAccountMintCount;
//Whitelist Accounts
mapping (address => bool) public sWhitelistAccount;
mapping (address => uint256) public sWhitelistAccountMintCount;
//Token Mint Period Map
mapping (uint256 => uint256) public sTokenMintPeriod;
constructor() ERC721("TSUKUYOMI DRAGON", "TSUK")
{
//Exclude owner from mint value
SetExcludedAccount(owner(), true);
}
//Set base URI (i.e. location of the metadata on IPFS)
function SetBaseURI(string memory pBaseURI) external onlyOwner
{
sBaseURI = pBaseURI;
}
//Set contract metadata URI (i.e. location of the metadata on IPFS)
function SetContractMetadataURI(string memory pContractMetadataURI) external onlyOwner
{
sContractMetadataURI = pContractMetadataURI;
}
//Override the baseURI function to allow returing updated base URI
//function _baseURI() internal pure override returns (string memory)
function _baseURI() internal override view returns (string memory)
{
return sBaseURI;
}
//Return the contract metadata uri (openSea contract-level metadata)
function contractURI() public view returns (string memory)
{
return sContractMetadataURI;
}
//Return the max token supply
function totalSupply() public pure returns (uint256)
{
return MAX_TOKEN_SUPPLY;
}
//Get the baseURI for specified token id
function GetTokenIdUri(uint256 pTokenId) public view returns (string memory)
{
return tokenURI(pTokenId);
}
//Capability to update the mint value
function SetWhitelistsLimitedMintValue(uint256 psWhitelistMintValue, uint256 psLimitedMintValue) external onlyOwner
{
sWhitelistMintValue = psWhitelistMintValue;
sLimitedMintValue = psLimitedMintValue;
}
//Batch minting only available to owner
function BatchMint(uint256[] memory pTokenIds) external onlyOwner
{
for (uint256 i = 0; i < pTokenIds.length; i++)
{
Mint(pTokenIds[i]);
}
}
//Mint single NFT token for the specified token id when puase is disabled
function Mint(uint256 pTokenId) public payable whenNotPaused
{
//Identifier
address nNewOwner = msg.sender;
uint256 nFund = msg.value;
//Confirm the max token hasn't been exceeded
require((sTotalMinted + 1) <= MAX_TOKEN_SUPPLY, "Contract has reached max minted token");
//Account for the case where a whitelist account hasn't minted during the whitelist period. Permit minting during the limited but not release period
if((sMintPeriod == WHITELIST_MINT_PERIOD) || ((sWhitelistAccount[nNewOwner]) && (sMintPeriod != RELEASE_MINT_PERIOD)))
{
//Confirm the account is on the whitelist
//require(((sWhitelistAccount[nNewOwner]) || (sIsExcluded[nNewOwner])), "Account excluded from whitelist");
//Due to higher gas fee on ETH network, whitelist minting is unrestrictive to non-whitelister but limited to 100 mint and 1 mint per address
require(((sTotalMinted <= MAX_WHITELIST_MINT) || (sWhitelistAccount[nNewOwner]) || (sIsExcluded[nNewOwner])), "Max whitelist mint exceeded");
//Confirm the account hasn't exceeded the MAX_WHITELIST_ACCOUNT_MINT
require(((sWhitelistAccountMintCount[nNewOwner] < MAX_WHITELIST_ACCOUNT_MINT) || (sIsExcluded[nNewOwner])), "Account has minted the max token");
//Confirm the funds sent is sufficient for the token
require(((nFund >= sWhitelistMintValue) || (sIsExcluded[nNewOwner])), "Insufficient funds to mint token");
//Update number of mint
sWhitelistAccountMintCount[nNewOwner] += 1;
}
else if(sMintPeriod == LIMITED_MINT_PERIOD)
{
//Confirm the account hasn't exceeded the MAX_ACCOUNT_MINT
require(((sAccountMintCount[nNewOwner] < MAX_ACCOUNT_MINT) || (sIsExcluded[nNewOwner])), "Account has minted the max token");
//Confirm the funds sent is sufficient for the token
require(((nFund >= sLimitedMintValue) || (sIsExcluded[nNewOwner])), "Insufficient funds to mint token");
}
else if(sMintPeriod == RELEASE_MINT_PERIOD)
{
//Confirm the mint value has been set for the token
require(((sInterfaceNftBaseValue.GetTokenBaseValueWei(pTokenId) != 0) || (sIsExcluded[nNewOwner])), "Contract owner didn't initialize token value");
//Confirm the account hasn't exceeded the MAX_ACCOUNT_MINT
require(((sAccountMintCount[nNewOwner] < MAX_ACCOUNT_MINT) || (sIsExcluded[nNewOwner])), "Account has minted the max token");
//Confirm the funds sent is sufficient for the token
require(((nFund >= sInterfaceNftBaseValue.GetTokenBaseValueWei(pTokenId)) || (sIsExcluded[nNewOwner])), "Insufficient funds to mint token");
}
else
{
//Revert
require(false, "Undefined Mint Period");
}
//Increase the owner account balance
sAccountBalance[owner()] += nFund;
//Mint the token and transfer to the owner
_safeMint(nNewOwner, pTokenId);
//Update account mint count
sAccountMintCount[nNewOwner] += 1;
//Update token mint period (required for staking contract)
sTokenMintPeriod[pTokenId] = sMintPeriod;
//Update total mint token map (use to reduce external interface processing time)
sTotalMintTokenMap[sTotalMinted] = pTokenId;
//Update total mint
sTotalMinted += 1;
//Emit an event
emit mint(pTokenId);
}
//Enable/disable account from minting value
function SetExcludedAccount(address pAccount, bool pExcluded) public onlyOwner
{
require(sIsExcluded[pAccount] != pExcluded, "Account is already exluded from minting fee");
//Account to exclude from mint fee and restrictions
sIsExcluded[pAccount] = pExcluded;
//Emit an event
emit exclude(pAccount, pExcluded);
}
//Append account to whitelist account
function SetBatchWhitelistAccount(address[] memory pAccount) external onlyOwner
{
for (uint256 i = 0; i < pAccount.length; i++)
{
//Add account to whitelist
sWhitelistAccount[pAccount[i]] = true;
//Emit an event
emit setWhitelistAccount(pAccount[i], true);
}
}
//Set Mint Period: 1 - Whitelist, 2 - Limited Mint, 3 - Release
function SetMintPeriod(uint256 psMintPeriod) external onlyOwner
{
sMintPeriod = psMintPeriod;
}
//Only the owner can can withdraw funds
//Note: Use either method to withdraw funds, avoid using both methods as funds stored in accountBalance
//will become out of sync with contract funds
function WithdrawFunds(uint256 pAmount) external onlyOwner
{
//Identifier
address nContractOwner = msg.sender;
//Confirm the trading account balance has adequate funds to withdraw
require(pAmount <= sAccountBalance[nContractOwner], "Insufficient funds to withdraw");
//Transfer amount to destination address
payable(nContractOwner).transfer(pAmount);
//Decrease the account balance
sAccountBalance[nContractOwner] -= pAmount;
//Emit an event
emit withdraw(pAmount, nContractOwner);
}
//Second method to withdraw contract funds
function WithdrawContractFunds() external onlyOwner
{
//Identifier
address nContractOwner = msg.sender;
payable(nContractOwner).transfer(address(this).balance);
}
//Funds are also stored in the contract
function GetContractFunds() public view returns (uint256)
{
return address(this).balance;
}
//Set NFT Base Value Contract
function SetNftBaseValueContract(address pNftBaseValueContract) external onlyOwner
{
//Instance of NFT Value Contract
sInterfaceNftBaseValue = InterfaceNFTBaseValue(pNftBaseValueContract);
}
function Pause() public onlyOwner
{
_pause();
}
function Unpause() public onlyOwner
{
_unpause();
}
}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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pAccount","type":"address"},{"indexed":false,"internalType":"bool","name":"psIsExcluded","type":"bool"}],"name":"exclude","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pTokenId","type":"uint256"}],"name":"mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pAccount","type":"address"},{"indexed":false,"internalType":"bool","name":"pWhitelist","type":"bool"}],"name":"setWhitelistAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pAmount","type":"uint256"},{"indexed":true,"internalType":"address","name":"pDestAddress","type":"address"}],"name":"withdraw","type":"event"},{"inputs":[{"internalType":"uint256[]","name":"pTokenIds","type":"uint256[]"}],"name":"BatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"GetContractFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pTokenId","type":"uint256"}],"name":"GetTokenIdUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIMITED_MINT_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ACCOUNT_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_ACCOUNT_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pTokenId","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RELEASE_MINT_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"pBaseURI","type":"string"}],"name":"SetBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pAccount","type":"address[]"}],"name":"SetBatchWhitelistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"pContractMetadataURI","type":"string"}],"name":"SetContractMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pAccount","type":"address"},{"internalType":"bool","name":"pExcluded","type":"bool"}],"name":"SetExcludedAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"psMintPeriod","type":"uint256"}],"name":"SetMintPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pNftBaseValueContract","type":"address"}],"name":"SetNftBaseValueContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"psWhitelistMintValue","type":"uint256"},{"internalType":"uint256","name":"psLimitedMintValue","type":"uint256"}],"name":"SetWhitelistsLimitedMintValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WHITELIST_MINT_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WithdrawContractFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pAmount","type":"uint256"}],"name":"WithdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sAccountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sAccountMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sContractMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sIsExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sLimitedMintValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sMintPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sTokenMintPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"sTotalMintTokenMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sWhitelistAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sWhitelistAccountMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sWhitelistMintValue","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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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
60006008556001600a5566210a4cfc694000600b5566421499f8d28000600c55610100604052605960808181529062002f9c60a039600d906200004390826200037d565b506040518060a001604052806068815260200162002f3460689139600e906200006d90826200037d565b503480156200007b57600080fd5b506040518060400160405280601081526020016f2a29aaa5aaaca7a6a490222920a3a7a760811b815250604051806040016040528060048152602001635453554b60e01b8152508160009081620000d391906200037d565b506001620000e282826200037d565b505050620000ff620000f96200013160201b60201c565b62000135565b6006805460ff60a01b191690556200012b620001236006546001600160a01b031690565b600162000187565b62000449565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001916200027a565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036200021b5760405162461bcd60e51b815260206004820152602b60248201527f4163636f756e7420697320616c72656164792065786c756465642066726f6d2060448201526a6d696e74696e672066656560a81b60648201526084015b60405180910390fd5b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f7647b90dad7dd7e579f144408cf78dfcfef1b66059dedf32c7a80f0a44c9d9fd910160405180910390a25050565b6006546001600160a01b03163314620002d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000212565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030357607f821691505b6020821081036200032457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200037857600081815260208120601f850160051c81016020861015620003535750805b601f850160051c820191505b8181101562000374578281556001016200035f565b5050505b505050565b81516001600160401b03811115620003995762000399620002d8565b620003b181620003aa8454620002ee565b846200032a565b602080601f831160018114620003e95760008415620003d05750858301515b600019600386901b1c1916600185901b17855562000374565b600085815260208120601f198616915b828110156200041a57888601518255948401946001909101908401620003f9565b5085821015620004395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612adb80620004596000396000f3fe6080604052600436106103355760003560e01c80637936cf35116101ab578063aec2d093116100f7578063c87b56dd11610095578063e8a3d4851161006f578063e8a3d4851461092a578063e985e9c51461093f578063f118e62914610988578063f2fde38b1461099e57600080fd5b8063c87b56dd146108e1578063e122fc7614610901578063e489d5101461091457600080fd5b8063b88d4fde116100d1578063b88d4fde1461085f578063bb64384a1461087f578063c08dfd3c146108ac578063c67387b8146108c157600080fd5b8063aec2d09314610809578063b497f50014610829578063b70d85fa1461084957600080fd5b8063957a547311610164578063991f89291161013e578063991f8929146107775780639c6d3e68146107a7578063a22cb465146107bc578063a2e09a19146107dc57600080fd5b8063957a54731461072d57806395d89b41146107425780639784a2a61461075757600080fd5b80637936cf351461068257806388643285146106975780638c49363e146106ad5780638c7e17b1146106cd5780638d37064a146106fa5780638da5cb5b1461070f57600080fd5b8063468c767b116102855780636352211e1161022357806370a08231116101fd57806370a0823114610618578063715018a61461063857806376afc3c01461064d5780637805862f1461066d57600080fd5b80636352211e146105c35780636985a022146105e35780636d118e30146105f857600080fd5b806353ea9d531161025f57806353ea9d531461054d57806358e9e32f1461056257806359e9f90a146105775780635c975abb146105a457600080fd5b8063468c767b146104ea57806346c2a7cc1461050a5780635082bbf81461053757600080fd5b8063144f7a05116102f25780631dff90b6116102cc5780631dff90b61461045a57806323b872dd1461048a57806323c8c948146104aa57806342842e0e146104ca57600080fd5b8063144f7a05146104225780631759deb41461042257806318160ddd1461044557600080fd5b8063016c19cd1461033a57806301ffc9a71461037057806306fdde03146103a057806307883703146103b5578063081812fc146103ca578063095ea7b314610402575b600080fd5b34801561034657600080fd5b5061035a61035536600461226f565b6109be565b60405161036791906122e0565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612309565b6109cf565b6040519015158152602001610367565b3480156103ac57600080fd5b5061035a610a1f565b6103c86103c336600461226f565b610ab1565b005b3480156103d657600080fd5b506103ea6103e536600461226f565b6110c2565b6040516001600160a01b039091168152602001610367565b34801561040e57600080fd5b506103c861041d366004612342565b6110e9565b34801561042e57600080fd5b50610437600181565b604051908152602001610367565b34801561045157600080fd5b5061176d610437565b34801561046657600080fd5b5061039061047536600461236c565b60106020526000908152604090205460ff1681565b34801561049657600080fd5b506103c86104a5366004612387565b6111fe565b3480156104b657600080fd5b506103c86104c5366004612462565b61122f565b3480156104d657600080fd5b506103c86104e5366004612387565b611247565b3480156104f657600080fd5b506103c861050536600461226f565b611262565b34801561051657600080fd5b5061043761052536600461226f565b60096020526000908152604090205481565b34801561054357600080fd5b50610437600b5481565b34801561055957600080fd5b50610437600281565b34801561056e57600080fd5b50610437601481565b34801561058357600080fd5b5061043761059236600461226f565b60146020526000908152604090205481565b3480156105b057600080fd5b50600654600160a01b900460ff16610390565b3480156105cf57600080fd5b506103ea6105de36600461226f565b61126f565b3480156105ef57600080fd5b506103c86112cf565b34801561060457600080fd5b506103c8610613366004612462565b6112e1565b34801561062457600080fd5b5061043761063336600461236c565b6112f5565b34801561064457600080fd5b506103c861137b565b34801561065957600080fd5b506103c86106683660046124cf565b61138d565b34801561067957600080fd5b506103c86113d5565b34801561068e57600080fd5b506103c86113e5565b3480156106a357600080fd5b50610437600c5481565b3480156106b957600080fd5b506103c86106c8366004612565565b61141b565b3480156106d957600080fd5b506104376106e836600461236c565b60116020526000908152604090205481565b34801561070657600080fd5b5061035a611507565b34801561071b57600080fd5b506006546001600160a01b03166103ea565b34801561073957600080fd5b5061035a611595565b34801561074e57600080fd5b5061035a6115a2565b34801561076357600080fd5b506103c86107723660046125a1565b6115b1565b34801561078357600080fd5b5061039061079236600461236c565b60126020526000908152604090205460ff1681565b3480156107b357600080fd5b50610437600381565b3480156107c857600080fd5b506103c86107d7366004612565565b61168d565b3480156107e857600080fd5b506104376107f736600461236c565b60136020526000908152604090205481565b34801561081557600080fd5b506103c861082436600461262e565b611698565b34801561083557600080fd5b506103c861084436600461236c565b6116ab565b34801561085557600080fd5b50610437600a5481565b34801561086b57600080fd5b506103c861087a366004612650565b6116d5565b34801561088b57600080fd5b5061043761089a36600461236c565b600f6020526000908152604090205481565b3480156108b857600080fd5b50610437606481565b3480156108cd57600080fd5b506103c86108dc36600461226f565b61170d565b3480156108ed57600080fd5b5061035a6108fc36600461226f565b611812565b34801561090d57600080fd5b5047610437565b34801561092057600080fd5b5061043761176d81565b34801561093657600080fd5b5061035a611879565b34801561094b57600080fd5b5061039061095a3660046126cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561099457600080fd5b5061043760085481565b3480156109aa57600080fd5b506103c86109b936600461236c565b611888565b60606109c982611812565b92915050565b60006001600160e01b031982166380ac58cd60e01b1480610a0057506001600160e01b03198216635b5e139f60e01b145b806109c957506301ffc9a760e01b6001600160e01b03198316146109c9565b606060008054610a2e906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906126ff565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b610ab9611901565b6008543390349061176d90610acf90600161274f565b1115610b305760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206861732072656163686564206d6178206d696e746564206044820152643a37b5b2b760d91b60648201526084015b60405180910390fd5b6001600a541480610b6757506001600160a01b03821660009081526012602052604090205460ff168015610b6757506003600a5414155b15610cd9576064600854111580610b9657506001600160a01b03821660009081526012602052604090205460ff165b80610bb957506001600160a01b03821660009081526010602052604090205460ff165b610c055760405162461bcd60e51b815260206004820152601b60248201527f4d61782077686974656c697374206d696e7420657863656564656400000000006044820152606401610b27565b6001600160a01b03821660009081526013602052604090205460011180610c4457506001600160a01b03821660009081526010602052604090205460ff165b610c605760405162461bcd60e51b8152600401610b2790612767565b600b5481101580610c8957506001600160a01b03821660009081526010602052604090205460ff165b610ca55760405162461bcd60e51b8152600401610b279061279c565b6001600160a01b0382166000908152601360205260408120805460019290610cce90849061274f565b90915550610fce9050565b6002600a5403610d88576001600160a01b03821660009081526011602052604090205460141180610d2257506001600160a01b03821660009081526010602052604090205460ff165b610d3e5760405162461bcd60e51b8152600401610b2790612767565b600c5481101580610d6757506001600160a01b03821660009081526010602052604090205460ff165b610d835760405162461bcd60e51b8152600401610b279061279c565b610fce565b6003600a5403610f8e5760075460405163dab4d6c560e01b8152600481018590526001600160a01b039091169063dab4d6c590602401602060405180830381865afa158015610ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dff91906127d1565b151580610e2457506001600160a01b03821660009081526010602052604090205460ff165b610e855760405162461bcd60e51b815260206004820152602c60248201527f436f6e7472616374206f776e6572206469646e277420696e697469616c697a6560448201526b20746f6b656e2076616c756560a01b6064820152608401610b27565b6001600160a01b03821660009081526011602052604090205460141180610ec457506001600160a01b03821660009081526010602052604090205460ff165b610ee05760405162461bcd60e51b8152600401610b2790612767565b60075460405163dab4d6c560e01b8152600481018590526001600160a01b039091169063dab4d6c590602401602060405180830381865afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906127d1565b81101580610d6757506001600160a01b03821660009081526010602052604090205460ff16610d835760405162461bcd60e51b8152600401610b279061279c565b60405162461bcd60e51b8152602060048201526015602482015274155b9919599a5b995908135a5b9d0814195c9a5bd9605a1b6044820152606401610b27565b80600f6000610fe56006546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254611014919061274f565b909155506110249050828461194e565b6001600160a01b038216600090815260116020526040812080546001929061104d90849061274f565b9091555050600a5460008481526014602090815260408083209390935560088054835260099091529181208590558154600192919061108d90849061274f565b909155505060405183907fa0712d680358d64f694230b7cc0b277c73686bdf768385d55cd7c547d0ffd30e90600090a2505050565b60006110cd82611968565b506000908152600460205260409020546001600160a01b031690565b60006110f48261126f565b9050806001600160a01b0316836001600160a01b0316036111615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b27565b336001600160a01b038216148061117d575061117d813361095a565b6111ef5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b27565b6111f983836119c7565b505050565b6112083382611a35565b6112245760405162461bcd60e51b8152600401610b27906127ea565b6111f9838383611ab4565b611237611c50565b600d6112438282612886565b5050565b6111f9838383604051806020016040528060008152506116d5565b61126a611c50565b600a55565b6000818152600260205260408120546001600160a01b0316806109c95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b27565b6112d7611c50565b6112df611caa565b565b6112e9611c50565b600e6112438282612886565b60006001600160a01b03821661135f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b27565b506001600160a01b031660009081526003602052604090205490565b611383611c50565b6112df6000611d0a565b611395611c50565b60005b8151811015611243576113c38282815181106113b6576113b6612946565b6020026020010151610ab1565b806113cd8161295c565b915050611398565b6113dd611c50565b6112df611d5c565b6113ed611c50565b604051339081904780156108fc02916000818181858888f19350505050158015611243573d6000803e3d6000fd5b611423611c50565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036114a75760405162461bcd60e51b815260206004820152602b60248201527f4163636f756e7420697320616c72656164792065786c756465642066726f6d2060448201526a6d696e74696e672066656560a81b6064820152608401610b27565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f7647b90dad7dd7e579f144408cf78dfcfef1b66059dedf32c7a80f0a44c9d9fd91015b60405180910390a25050565b600e8054611514906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611540906126ff565b801561158d5780601f106115625761010080835404028352916020019161158d565b820191906000526020600020905b81548152906001019060200180831161157057829003601f168201915b505050505081565b600d8054611514906126ff565b606060018054610a2e906126ff565b6115b9611c50565b60005b8151811015611243576001601260008484815181106115dd576115dd612946565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555081818151811061162e5761162e612946565b60200260200101516001600160a01b03167fc49a84eb082069f056f169d1d1e051babe24355f62fc3604914cbd89f864ad016001604051611673911515815260200190565b60405180910390a2806116858161295c565b9150506115bc565b611243338383611d98565b6116a0611c50565b600b91909155600c55565b6116b3611c50565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6116df3383611a35565b6116fb5760405162461bcd60e51b8152600401610b27906127ea565b61170784848484611e66565b50505050565b611715611c50565b336000818152600f60205260409020548211156117745760405162461bcd60e51b815260206004820152601e60248201527f496e73756666696369656e742066756e647320746f20776974686472617700006044820152606401610b27565b6040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156117aa573d6000803e3d6000fd5b506001600160a01b0381166000908152600f6020526040812080548492906117d3908490612975565b90915550506040518281526001600160a01b038216907ef714ce93c4a188ecc0c802ca78036f638c1c4b3ee9b98f3ed75364b45f50b1906020016114fb565b606061181d82611968565b6000611827611e99565b905060008151116118475760405180602001604052806000815250611872565b8061185184611ea8565b60405160200161186292919061298c565b6040516020818303038152906040525b9392505050565b6060600e8054610a2e906126ff565b611890611c50565b6001600160a01b0381166118f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b27565b6118fe81611d0a565b50565b600654600160a01b900460ff16156112df5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b27565b611243828260405180602001604052806000815250611fa9565b6000818152600260205260409020546001600160a01b03166118fe5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b27565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fc8261126f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a418361126f565b9050806001600160a01b0316846001600160a01b03161480611a8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611aac5750836001600160a01b0316611aa1846110c2565b6001600160a01b0316145b949350505050565b826001600160a01b0316611ac78261126f565b6001600160a01b031614611b2b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b27565b6001600160a01b038216611b8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b27565b611b986000826119c7565b6001600160a01b0383166000908152600360205260408120805460019290611bc1908490612975565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bef90849061274f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146112df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b27565b611cb2611901565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ced3390565b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d64611fdc565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611ced565b816001600160a01b0316836001600160a01b031603611df95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b27565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e71848484611ab4565b611e7d8484848461202c565b6117075760405162461bcd60e51b8152600401610b27906129bb565b6060600d8054610a2e906126ff565b606081600003611ecf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef95780611ee38161295c565b9150611ef29050600a83612a23565b9150611ed3565b60008167ffffffffffffffff811115611f1457611f146123c3565b6040519080825280601f01601f191660200182016040528015611f3e576020820181803683370190505b5090505b8415611aac57611f53600183612975565b9150611f60600a86612a37565b611f6b90603061274f565b60f81b818381518110611f8057611f80612946565b60200101906001600160f81b031916908160001a905350611fa2600a86612a23565b9450611f42565b611fb3838361212d565b611fc0600084848461202c565b6111f95760405162461bcd60e51b8152600401610b27906129bb565b600654600160a01b900460ff166112df5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b27565b60006001600160a01b0384163b1561212257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612070903390899088908890600401612a4b565b6020604051808303816000875af19250505080156120ab575060408051601f3d908101601f191682019092526120a891810190612a88565b60015b612108573d8080156120d9576040519150601f19603f3d011682016040523d82523d6000602084013e6120de565b606091505b5080516000036121005760405162461bcd60e51b8152600401610b27906129bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aac565b506001949350505050565b6001600160a01b0382166121835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b27565b6000818152600260205260409020546001600160a01b0316156121e85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b6001600160a01b038216600090815260036020526040812080546001929061221190849061274f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561228157600080fd5b5035919050565b60005b838110156122a357818101518382015260200161228b565b838111156117075750506000910152565b600081518084526122cc816020860160208601612288565b601f01601f19169290920160200192915050565b60208152600061187260208301846122b4565b6001600160e01b0319811681146118fe57600080fd5b60006020828403121561231b57600080fd5b8135611872816122f3565b80356001600160a01b038116811461233d57600080fd5b919050565b6000806040838503121561235557600080fd5b61235e83612326565b946020939093013593505050565b60006020828403121561237e57600080fd5b61187282612326565b60008060006060848603121561239c57600080fd5b6123a584612326565b92506123b360208501612326565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612402576124026123c3565b604052919050565b600067ffffffffffffffff831115612424576124246123c3565b612437601f8401601f19166020016123d9565b905082815283838301111561244b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561247457600080fd5b813567ffffffffffffffff81111561248b57600080fd5b8201601f8101841361249c57600080fd5b611aac8482356020840161240a565b600067ffffffffffffffff8211156124c5576124c56123c3565b5060051b60200190565b600060208083850312156124e257600080fd5b823567ffffffffffffffff8111156124f957600080fd5b8301601f8101851361250a57600080fd5b803561251d612518826124ab565b6123d9565b81815260059190911b8201830190838101908783111561253c57600080fd5b928401925b8284101561255a57833582529284019290840190612541565b979650505050505050565b6000806040838503121561257857600080fd5b61258183612326565b91506020830135801515811461259657600080fd5b809150509250929050565b600060208083850312156125b457600080fd5b823567ffffffffffffffff8111156125cb57600080fd5b8301601f810185136125dc57600080fd5b80356125ea612518826124ab565b81815260059190911b8201830190838101908783111561260957600080fd5b928401925b8284101561255a5761261f84612326565b8252928401929084019061260e565b6000806040838503121561264157600080fd5b50508035926020909101359150565b6000806000806080858703121561266657600080fd5b61266f85612326565b935061267d60208601612326565b925060408501359150606085013567ffffffffffffffff8111156126a057600080fd5b8501601f810187136126b157600080fd5b6126c08782356020840161240a565b91505092959194509250565b600080604083850312156126df57600080fd5b6126e883612326565b91506126f660208401612326565b90509250929050565b600181811c9082168061271357607f821691505b60208210810361273357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561276257612762612739565b500190565b6020808252818101527f4163636f756e7420686173206d696e74656420746865206d617820746f6b656e604082015260600190565b6020808252818101527f496e73756666696369656e742066756e647320746f206d696e7420746f6b656e604082015260600190565b6000602082840312156127e357600080fd5b5051919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b601f8211156111f957600081815260208120601f850160051c8101602086101561285f5750805b601f850160051c820191505b8181101561287e5782815560010161286b565b505050505050565b815167ffffffffffffffff8111156128a0576128a06123c3565b6128b4816128ae84546126ff565b84612838565b602080601f8311600181146128e957600084156128d15750858301515b600019600386901b1c1916600185901b17855561287e565b600085815260208120601f198616915b82811015612918578886015182559484019460019091019084016128f9565b50858210156129365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161296e5761296e612739565b5060010190565b60008282101561298757612987612739565b500390565b6000835161299e818460208801612288565b8351908301906129b2818360208801612288565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a3257612a32612a0d565b500490565b600082612a4657612a46612a0d565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a7e908301846122b4565b9695505050505050565b600060208284031215612a9a57600080fd5b8151611872816122f356fea26469706673582212206000d9865feebeced9a51dcd9bece77171a7df0ffa6fb42da6ee54049892d93f64736f6c634300080f003368747470733a2f2f62616679626569677a63736f7361706164736471757479717732683770796c74666535626a6865363636376835766f7a6b757764336f6363726c752e697066732e6e667473746f726167652e6c696e6b2f5473756b75796f6d69447261676f6e68747470733a2f2f626166796265696467693276626d36613263356661687a367372716369686676356d6f7a786f33786c73656c6161696e6f3376736a367279336a342e697066732e6e667473746f726167652e6c696e6b2f
Deployed Bytecode
0x6080604052600436106103355760003560e01c80637936cf35116101ab578063aec2d093116100f7578063c87b56dd11610095578063e8a3d4851161006f578063e8a3d4851461092a578063e985e9c51461093f578063f118e62914610988578063f2fde38b1461099e57600080fd5b8063c87b56dd146108e1578063e122fc7614610901578063e489d5101461091457600080fd5b8063b88d4fde116100d1578063b88d4fde1461085f578063bb64384a1461087f578063c08dfd3c146108ac578063c67387b8146108c157600080fd5b8063aec2d09314610809578063b497f50014610829578063b70d85fa1461084957600080fd5b8063957a547311610164578063991f89291161013e578063991f8929146107775780639c6d3e68146107a7578063a22cb465146107bc578063a2e09a19146107dc57600080fd5b8063957a54731461072d57806395d89b41146107425780639784a2a61461075757600080fd5b80637936cf351461068257806388643285146106975780638c49363e146106ad5780638c7e17b1146106cd5780638d37064a146106fa5780638da5cb5b1461070f57600080fd5b8063468c767b116102855780636352211e1161022357806370a08231116101fd57806370a0823114610618578063715018a61461063857806376afc3c01461064d5780637805862f1461066d57600080fd5b80636352211e146105c35780636985a022146105e35780636d118e30146105f857600080fd5b806353ea9d531161025f57806353ea9d531461054d57806358e9e32f1461056257806359e9f90a146105775780635c975abb146105a457600080fd5b8063468c767b146104ea57806346c2a7cc1461050a5780635082bbf81461053757600080fd5b8063144f7a05116102f25780631dff90b6116102cc5780631dff90b61461045a57806323b872dd1461048a57806323c8c948146104aa57806342842e0e146104ca57600080fd5b8063144f7a05146104225780631759deb41461042257806318160ddd1461044557600080fd5b8063016c19cd1461033a57806301ffc9a71461037057806306fdde03146103a057806307883703146103b5578063081812fc146103ca578063095ea7b314610402575b600080fd5b34801561034657600080fd5b5061035a61035536600461226f565b6109be565b60405161036791906122e0565b60405180910390f35b34801561037c57600080fd5b5061039061038b366004612309565b6109cf565b6040519015158152602001610367565b3480156103ac57600080fd5b5061035a610a1f565b6103c86103c336600461226f565b610ab1565b005b3480156103d657600080fd5b506103ea6103e536600461226f565b6110c2565b6040516001600160a01b039091168152602001610367565b34801561040e57600080fd5b506103c861041d366004612342565b6110e9565b34801561042e57600080fd5b50610437600181565b604051908152602001610367565b34801561045157600080fd5b5061176d610437565b34801561046657600080fd5b5061039061047536600461236c565b60106020526000908152604090205460ff1681565b34801561049657600080fd5b506103c86104a5366004612387565b6111fe565b3480156104b657600080fd5b506103c86104c5366004612462565b61122f565b3480156104d657600080fd5b506103c86104e5366004612387565b611247565b3480156104f657600080fd5b506103c861050536600461226f565b611262565b34801561051657600080fd5b5061043761052536600461226f565b60096020526000908152604090205481565b34801561054357600080fd5b50610437600b5481565b34801561055957600080fd5b50610437600281565b34801561056e57600080fd5b50610437601481565b34801561058357600080fd5b5061043761059236600461226f565b60146020526000908152604090205481565b3480156105b057600080fd5b50600654600160a01b900460ff16610390565b3480156105cf57600080fd5b506103ea6105de36600461226f565b61126f565b3480156105ef57600080fd5b506103c86112cf565b34801561060457600080fd5b506103c8610613366004612462565b6112e1565b34801561062457600080fd5b5061043761063336600461236c565b6112f5565b34801561064457600080fd5b506103c861137b565b34801561065957600080fd5b506103c86106683660046124cf565b61138d565b34801561067957600080fd5b506103c86113d5565b34801561068e57600080fd5b506103c86113e5565b3480156106a357600080fd5b50610437600c5481565b3480156106b957600080fd5b506103c86106c8366004612565565b61141b565b3480156106d957600080fd5b506104376106e836600461236c565b60116020526000908152604090205481565b34801561070657600080fd5b5061035a611507565b34801561071b57600080fd5b506006546001600160a01b03166103ea565b34801561073957600080fd5b5061035a611595565b34801561074e57600080fd5b5061035a6115a2565b34801561076357600080fd5b506103c86107723660046125a1565b6115b1565b34801561078357600080fd5b5061039061079236600461236c565b60126020526000908152604090205460ff1681565b3480156107b357600080fd5b50610437600381565b3480156107c857600080fd5b506103c86107d7366004612565565b61168d565b3480156107e857600080fd5b506104376107f736600461236c565b60136020526000908152604090205481565b34801561081557600080fd5b506103c861082436600461262e565b611698565b34801561083557600080fd5b506103c861084436600461236c565b6116ab565b34801561085557600080fd5b50610437600a5481565b34801561086b57600080fd5b506103c861087a366004612650565b6116d5565b34801561088b57600080fd5b5061043761089a36600461236c565b600f6020526000908152604090205481565b3480156108b857600080fd5b50610437606481565b3480156108cd57600080fd5b506103c86108dc36600461226f565b61170d565b3480156108ed57600080fd5b5061035a6108fc36600461226f565b611812565b34801561090d57600080fd5b5047610437565b34801561092057600080fd5b5061043761176d81565b34801561093657600080fd5b5061035a611879565b34801561094b57600080fd5b5061039061095a3660046126cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561099457600080fd5b5061043760085481565b3480156109aa57600080fd5b506103c86109b936600461236c565b611888565b60606109c982611812565b92915050565b60006001600160e01b031982166380ac58cd60e01b1480610a0057506001600160e01b03198216635b5e139f60e01b145b806109c957506301ffc9a760e01b6001600160e01b03198316146109c9565b606060008054610a2e906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906126ff565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b610ab9611901565b6008543390349061176d90610acf90600161274f565b1115610b305760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206861732072656163686564206d6178206d696e746564206044820152643a37b5b2b760d91b60648201526084015b60405180910390fd5b6001600a541480610b6757506001600160a01b03821660009081526012602052604090205460ff168015610b6757506003600a5414155b15610cd9576064600854111580610b9657506001600160a01b03821660009081526012602052604090205460ff165b80610bb957506001600160a01b03821660009081526010602052604090205460ff165b610c055760405162461bcd60e51b815260206004820152601b60248201527f4d61782077686974656c697374206d696e7420657863656564656400000000006044820152606401610b27565b6001600160a01b03821660009081526013602052604090205460011180610c4457506001600160a01b03821660009081526010602052604090205460ff165b610c605760405162461bcd60e51b8152600401610b2790612767565b600b5481101580610c8957506001600160a01b03821660009081526010602052604090205460ff165b610ca55760405162461bcd60e51b8152600401610b279061279c565b6001600160a01b0382166000908152601360205260408120805460019290610cce90849061274f565b90915550610fce9050565b6002600a5403610d88576001600160a01b03821660009081526011602052604090205460141180610d2257506001600160a01b03821660009081526010602052604090205460ff165b610d3e5760405162461bcd60e51b8152600401610b2790612767565b600c5481101580610d6757506001600160a01b03821660009081526010602052604090205460ff165b610d835760405162461bcd60e51b8152600401610b279061279c565b610fce565b6003600a5403610f8e5760075460405163dab4d6c560e01b8152600481018590526001600160a01b039091169063dab4d6c590602401602060405180830381865afa158015610ddb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dff91906127d1565b151580610e2457506001600160a01b03821660009081526010602052604090205460ff165b610e855760405162461bcd60e51b815260206004820152602c60248201527f436f6e7472616374206f776e6572206469646e277420696e697469616c697a6560448201526b20746f6b656e2076616c756560a01b6064820152608401610b27565b6001600160a01b03821660009081526011602052604090205460141180610ec457506001600160a01b03821660009081526010602052604090205460ff165b610ee05760405162461bcd60e51b8152600401610b2790612767565b60075460405163dab4d6c560e01b8152600481018590526001600160a01b039091169063dab4d6c590602401602060405180830381865afa158015610f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4d91906127d1565b81101580610d6757506001600160a01b03821660009081526010602052604090205460ff16610d835760405162461bcd60e51b8152600401610b279061279c565b60405162461bcd60e51b8152602060048201526015602482015274155b9919599a5b995908135a5b9d0814195c9a5bd9605a1b6044820152606401610b27565b80600f6000610fe56006546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254611014919061274f565b909155506110249050828461194e565b6001600160a01b038216600090815260116020526040812080546001929061104d90849061274f565b9091555050600a5460008481526014602090815260408083209390935560088054835260099091529181208590558154600192919061108d90849061274f565b909155505060405183907fa0712d680358d64f694230b7cc0b277c73686bdf768385d55cd7c547d0ffd30e90600090a2505050565b60006110cd82611968565b506000908152600460205260409020546001600160a01b031690565b60006110f48261126f565b9050806001600160a01b0316836001600160a01b0316036111615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b27565b336001600160a01b038216148061117d575061117d813361095a565b6111ef5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b27565b6111f983836119c7565b505050565b6112083382611a35565b6112245760405162461bcd60e51b8152600401610b27906127ea565b6111f9838383611ab4565b611237611c50565b600d6112438282612886565b5050565b6111f9838383604051806020016040528060008152506116d5565b61126a611c50565b600a55565b6000818152600260205260408120546001600160a01b0316806109c95760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b27565b6112d7611c50565b6112df611caa565b565b6112e9611c50565b600e6112438282612886565b60006001600160a01b03821661135f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b27565b506001600160a01b031660009081526003602052604090205490565b611383611c50565b6112df6000611d0a565b611395611c50565b60005b8151811015611243576113c38282815181106113b6576113b6612946565b6020026020010151610ab1565b806113cd8161295c565b915050611398565b6113dd611c50565b6112df611d5c565b6113ed611c50565b604051339081904780156108fc02916000818181858888f19350505050158015611243573d6000803e3d6000fd5b611423611c50565b6001600160a01b03821660009081526010602052604090205481151560ff9091161515036114a75760405162461bcd60e51b815260206004820152602b60248201527f4163636f756e7420697320616c72656164792065786c756465642066726f6d2060448201526a6d696e74696e672066656560a81b6064820152608401610b27565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f7647b90dad7dd7e579f144408cf78dfcfef1b66059dedf32c7a80f0a44c9d9fd91015b60405180910390a25050565b600e8054611514906126ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611540906126ff565b801561158d5780601f106115625761010080835404028352916020019161158d565b820191906000526020600020905b81548152906001019060200180831161157057829003601f168201915b505050505081565b600d8054611514906126ff565b606060018054610a2e906126ff565b6115b9611c50565b60005b8151811015611243576001601260008484815181106115dd576115dd612946565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555081818151811061162e5761162e612946565b60200260200101516001600160a01b03167fc49a84eb082069f056f169d1d1e051babe24355f62fc3604914cbd89f864ad016001604051611673911515815260200190565b60405180910390a2806116858161295c565b9150506115bc565b611243338383611d98565b6116a0611c50565b600b91909155600c55565b6116b3611c50565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6116df3383611a35565b6116fb5760405162461bcd60e51b8152600401610b27906127ea565b61170784848484611e66565b50505050565b611715611c50565b336000818152600f60205260409020548211156117745760405162461bcd60e51b815260206004820152601e60248201527f496e73756666696369656e742066756e647320746f20776974686472617700006044820152606401610b27565b6040516001600160a01b0382169083156108fc029084906000818181858888f193505050501580156117aa573d6000803e3d6000fd5b506001600160a01b0381166000908152600f6020526040812080548492906117d3908490612975565b90915550506040518281526001600160a01b038216907ef714ce93c4a188ecc0c802ca78036f638c1c4b3ee9b98f3ed75364b45f50b1906020016114fb565b606061181d82611968565b6000611827611e99565b905060008151116118475760405180602001604052806000815250611872565b8061185184611ea8565b60405160200161186292919061298c565b6040516020818303038152906040525b9392505050565b6060600e8054610a2e906126ff565b611890611c50565b6001600160a01b0381166118f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b27565b6118fe81611d0a565b50565b600654600160a01b900460ff16156112df5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610b27565b611243828260405180602001604052806000815250611fa9565b6000818152600260205260409020546001600160a01b03166118fe5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b27565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119fc8261126f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a418361126f565b9050806001600160a01b0316846001600160a01b03161480611a8857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611aac5750836001600160a01b0316611aa1846110c2565b6001600160a01b0316145b949350505050565b826001600160a01b0316611ac78261126f565b6001600160a01b031614611b2b5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b27565b6001600160a01b038216611b8d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b27565b611b986000826119c7565b6001600160a01b0383166000908152600360205260408120805460019290611bc1908490612975565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bef90849061274f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146112df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b27565b611cb2611901565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ced3390565b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d64611fdc565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33611ced565b816001600160a01b0316836001600160a01b031603611df95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b27565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e71848484611ab4565b611e7d8484848461202c565b6117075760405162461bcd60e51b8152600401610b27906129bb565b6060600d8054610a2e906126ff565b606081600003611ecf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ef95780611ee38161295c565b9150611ef29050600a83612a23565b9150611ed3565b60008167ffffffffffffffff811115611f1457611f146123c3565b6040519080825280601f01601f191660200182016040528015611f3e576020820181803683370190505b5090505b8415611aac57611f53600183612975565b9150611f60600a86612a37565b611f6b90603061274f565b60f81b818381518110611f8057611f80612946565b60200101906001600160f81b031916908160001a905350611fa2600a86612a23565b9450611f42565b611fb3838361212d565b611fc0600084848461202c565b6111f95760405162461bcd60e51b8152600401610b27906129bb565b600654600160a01b900460ff166112df5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610b27565b60006001600160a01b0384163b1561212257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612070903390899088908890600401612a4b565b6020604051808303816000875af19250505080156120ab575060408051601f3d908101601f191682019092526120a891810190612a88565b60015b612108573d8080156120d9576040519150601f19603f3d011682016040523d82523d6000602084013e6120de565b606091505b5080516000036121005760405162461bcd60e51b8152600401610b27906129bb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aac565b506001949350505050565b6001600160a01b0382166121835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b27565b6000818152600260205260409020546001600160a01b0316156121e85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b27565b6001600160a01b038216600090815260036020526040812080546001929061221190849061274f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006020828403121561228157600080fd5b5035919050565b60005b838110156122a357818101518382015260200161228b565b838111156117075750506000910152565b600081518084526122cc816020860160208601612288565b601f01601f19169290920160200192915050565b60208152600061187260208301846122b4565b6001600160e01b0319811681146118fe57600080fd5b60006020828403121561231b57600080fd5b8135611872816122f3565b80356001600160a01b038116811461233d57600080fd5b919050565b6000806040838503121561235557600080fd5b61235e83612326565b946020939093013593505050565b60006020828403121561237e57600080fd5b61187282612326565b60008060006060848603121561239c57600080fd5b6123a584612326565b92506123b360208501612326565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612402576124026123c3565b604052919050565b600067ffffffffffffffff831115612424576124246123c3565b612437601f8401601f19166020016123d9565b905082815283838301111561244b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561247457600080fd5b813567ffffffffffffffff81111561248b57600080fd5b8201601f8101841361249c57600080fd5b611aac8482356020840161240a565b600067ffffffffffffffff8211156124c5576124c56123c3565b5060051b60200190565b600060208083850312156124e257600080fd5b823567ffffffffffffffff8111156124f957600080fd5b8301601f8101851361250a57600080fd5b803561251d612518826124ab565b6123d9565b81815260059190911b8201830190838101908783111561253c57600080fd5b928401925b8284101561255a57833582529284019290840190612541565b979650505050505050565b6000806040838503121561257857600080fd5b61258183612326565b91506020830135801515811461259657600080fd5b809150509250929050565b600060208083850312156125b457600080fd5b823567ffffffffffffffff8111156125cb57600080fd5b8301601f810185136125dc57600080fd5b80356125ea612518826124ab565b81815260059190911b8201830190838101908783111561260957600080fd5b928401925b8284101561255a5761261f84612326565b8252928401929084019061260e565b6000806040838503121561264157600080fd5b50508035926020909101359150565b6000806000806080858703121561266657600080fd5b61266f85612326565b935061267d60208601612326565b925060408501359150606085013567ffffffffffffffff8111156126a057600080fd5b8501601f810187136126b157600080fd5b6126c08782356020840161240a565b91505092959194509250565b600080604083850312156126df57600080fd5b6126e883612326565b91506126f660208401612326565b90509250929050565b600181811c9082168061271357607f821691505b60208210810361273357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561276257612762612739565b500190565b6020808252818101527f4163636f756e7420686173206d696e74656420746865206d617820746f6b656e604082015260600190565b6020808252818101527f496e73756666696369656e742066756e647320746f206d696e7420746f6b656e604082015260600190565b6000602082840312156127e357600080fd5b5051919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b601f8211156111f957600081815260208120601f850160051c8101602086101561285f5750805b601f850160051c820191505b8181101561287e5782815560010161286b565b505050505050565b815167ffffffffffffffff8111156128a0576128a06123c3565b6128b4816128ae84546126ff565b84612838565b602080601f8311600181146128e957600084156128d15750858301515b600019600386901b1c1916600185901b17855561287e565b600085815260208120601f198616915b82811015612918578886015182559484019460019091019084016128f9565b50858210156129365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b60006001820161296e5761296e612739565b5060010190565b60008282101561298757612987612739565b500390565b6000835161299e818460208801612288565b8351908301906129b2818360208801612288565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612a3257612a32612a0d565b500490565b600082612a4657612a46612a0d565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a7e908301846122b4565b9695505050505050565b600060208284031215612a9a57600080fd5b8151611872816122f356fea26469706673582212206000d9865feebeced9a51dcd9bece77171a7df0ffa6fb42da6ee54049892d93f64736f6c634300080f0033
Deployed Bytecode Sourcemap
41516:10917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45392:127;;;;;;;;;;-1:-1:-1;45392:127:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27870:305;;;;;;;;;;-1:-1:-1;27870:305:0;;;;;:::i;:::-;;:::i;:::-;;;1501:14:1;;1494:22;1476:41;;1464:2;1449:18;27870:305:0;1336:187:1;28797:100:0;;;;;;;;;;;;;:::i;46132:3627::-;;;;;;:::i;:::-;;:::i;:::-;;30310:171;;;;;;;;;;-1:-1:-1;30310:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30310:171:0;1528:203:1;29827:417:0;;;;;;;;;;-1:-1:-1;29827:417:0;;;;;:::i;:::-;;:::i;41743:54::-;;;;;;;;;;;;41796:1;41743:54;;;;;2319:25:1;;;2307:2;2292:18;41743:54:0;2173:177:1;45238:100:0;;;;;;;;;;-1:-1:-1;41956:4:0;45238:100;;43779:44;;;;;;;;;;-1:-1:-1;43779:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31010:336;;;;;;;;;;-1:-1:-1;31010:336:0;;;;;:::i;:::-;;:::i;44397:107::-;;;;;;;;;;-1:-1:-1;44397:107:0;;;;;:::i;:::-;;:::i;31417:185::-;;;;;;;;;;-1:-1:-1;31417:185:0;;;;;:::i;:::-;;:::i;50677:114::-;;;;;;;;;;-1:-1:-1;50677:114:0;;;;;:::i;:::-;;:::i;42105:54::-;;;;;;;;;;-1:-1:-1;42105:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;42477:49;;;;;;;;;;;;;;;;42292:47;;;;;;;;;;;;42338:1;42292:47;;41690:45;;;;;;;;;;;;41733:2;41690:45;;44121:52;;;;;;;;;;-1:-1:-1;44121:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;5541:86;;;;;;;;;;-1:-1:-1;5612:7:0;;-1:-1:-1;;;5612:7:0;;;;5541:86;;28508:222;;;;;;;;;;-1:-1:-1;28508:222:0;;;;;:::i;:::-;;:::i;52286:66::-;;;;;;;;;;;;;:::i;44585:155::-;;;;;;;;;;-1:-1:-1;44585:155:0;;;;;:::i;:::-;;:::i;28239:207::-;;;;;;;;;;-1:-1:-1;28239:207:0;;;;;:::i;:::-;;:::i;8406:103::-;;;;;;;;;;;;;:::i;45855:190::-;;;;;;;;;;-1:-1:-1;45855:190:0;;;;;:::i;:::-;;:::i;52360:70::-;;;;;;;;;;;;;:::i;51649:201::-;;;;;;;;;;;;;:::i;42663:47::-;;;;;;;;;;;;;;;;49816:381;;;;;;;;;;-1:-1:-1;49816:381:0;;;;;:::i;:::-;;:::i;43876:53::-;;;;;;;;;;-1:-1:-1;43876:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;42920:143;;;;;;;;;;;;;:::i;7758:87::-;;;;;;;;;;-1:-1:-1;7831:6:0;;-1:-1:-1;;;;;7831:6:0;7758:87;;42797:116;;;;;;;;;;;;;:::i;28966:104::-;;;;;;;;;;;;;:::i;50248:351::-;;;;;;;;;;-1:-1:-1;50248:351:0;;;;;:::i;:::-;;:::i;43964:50::-;;;;;;;;;;-1:-1:-1;43964:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42346:47;;;;;;;;;;;;42392:1;42346:47;;30553:155;;;;;;;;;;-1:-1:-1;30553:155:0;;;;;:::i;:::-;;:::i;44021:62::-;;;;;;;;;;-1:-1:-1;44021:62:0;;;;;:::i;:::-;;;;;;;;;;;;;;45570:232;;;;;;;;;;-1:-1:-1;45570:232:0;;;;;:::i;:::-;;:::i;52060:218::-;;;;;;;;;;-1:-1:-1;52060:218:0;;;;;:::i;:::-;;:::i;42400:50::-;;;;;;;;;;;;;;;;31673:323;;;;;;;;;;-1:-1:-1;31673:323:0;;;;;:::i;:::-;;:::i;43696:50::-;;;;;;;;;;-1:-1:-1;43696:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;41804:48;;;;;;;;;;;;41849:3;41804:48;;51003:590;;;;;;;;;;-1:-1:-1;51003:590:0;;;;;:::i;:::-;;:::i;29141:281::-;;;;;;;;;;-1:-1:-1;29141:281:0;;;;;:::i;:::-;;:::i;51907:110::-;;;;;;;;;;-1:-1:-1;51988:21:0;51907:110;;41913:47;;;;;;;;;;;;41956:4;41913:47;;45084:111;;;;;;;;;;;;;:::i;30779:164::-;;;;;;;;;;-1:-1:-1;30779:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30900:25:0;;;30876:4;30900:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30779:164;41967:31;;;;;;;;;;;;;;;;8664:201;;;;;;;;;;-1:-1:-1;8664:201:0;;;;;:::i;:::-;;:::i;45392:127::-;45455:13;45493:18;45502:8;45493;:18::i;:::-;45486:25;45392:127;-1:-1:-1;;45392:127:0:o;27870:305::-;27972:4;-1:-1:-1;;;;;;28009:40:0;;-1:-1:-1;;;28009:40:0;;:105;;-1:-1:-1;;;;;;;28066:48:0;;-1:-1:-1;;;28066:48:0;28009:105;:158;;;-1:-1:-1;;;;;;;;;;20721:40:0;;;28131:36;20612:157;28797:100;28851:13;28884:5;28877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28797:100;:::o;46132:3627::-;5146:19;:17;:19::i;:::-;46374:12:::1;::::0;46252:10:::1;::::0;46289:9:::1;::::0;41956:4:::1;::::0;46374:16:::1;::::0;46389:1:::1;46374:16;:::i;:::-;46373:38;;46365:88;;;::::0;-1:-1:-1;;;46365:88:0;;8539:2:1;46365:88:0::1;::::0;::::1;8521:21:1::0;8578:2;8558:18;;;8551:30;8617:34;8597:18;;;8590:62;-1:-1:-1;;;8668:18:1;;;8661:35;8713:19;;46365:88:0::1;;;;;;;;;42284:1;46628:11;;:36;46627:114;;;-1:-1:-1::0;;;;;;46671:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;::::1;;46670:70:::0;::::1;;;;42392:1;46705:11;;:34;;46670:70;46624:2475;;;41849:3;47109:12;;:34;;47108:70;;;-1:-1:-1::0;;;;;;47149:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;::::1;;47108:70;:98;;;-1:-1:-1::0;;;;;;47183:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;47108:98;47099:140;;;::::0;-1:-1:-1;;;47099:140:0;;8945:2:1;47099:140:0::1;::::0;::::1;8927:21:1::0;8984:2;8964:18;;;8957:30;9023:29;9003:18;;;8996:57;9070:18;;47099:140:0::1;8743:351:1::0;47099:140:0::1;-1:-1:-1::0;;;;;47348:37:0;::::1;;::::0;;;:26:::1;:37;::::0;;;;;41796:1:::1;-1:-1:-1::0;47348:66:0;47347:96:::1;;-1:-1:-1::0;;;;;;47420:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;47347:96;47338:143;;;;-1:-1:-1::0;;;47338:143:0::1;;;;;;;:::i;:::-;47583:19;;47574:5;:28;;47573:58;;;-1:-1:-1::0;;;;;;47608:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;47573:58;47564:105;;;;-1:-1:-1::0;;;47564:105:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47723:37:0;::::1;;::::0;;;:26:::1;:37;::::0;;;;:42;;47764:1:::1;::::0;47723:37;:42:::1;::::0;47764:1;;47723:42:::1;:::i;:::-;::::0;;;-1:-1:-1;46624:2475:0::1;::::0;-1:-1:-1;46624:2475:0::1;;42338:1;47795:11;;:34:::0;47792:1307:::1;;-1:-1:-1::0;;;;;47937:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;41733:2:::1;-1:-1:-1::0;47937:47:0;47936:77:::1;;-1:-1:-1::0;;;;;;47990:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;47936:77;47927:124;;;;-1:-1:-1::0;;;47927:124:0::1;;;;;;;:::i;:::-;48153:17;;48144:5;:26;;48143:56;;;-1:-1:-1::0;;;;;;48176:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;48143:56;48134:103;;;;-1:-1:-1::0;;;48134:103:0::1;;;;;;;:::i;:::-;47792:1307;;;42392:1;48267:11;;:34:::0;48264:835:::1;;48402:22;::::0;:53:::1;::::0;-1:-1:-1;;;48402:53:0;;::::1;::::0;::::1;2319:25:1::0;;;-1:-1:-1;;;;;48402:22:0;;::::1;::::0;:43:::1;::::0;2292:18:1;;48402:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58:::0;::::1;::::0;48401:88:::1;;-1:-1:-1::0;;;;;;48466:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;48401:88;48392:147;;;::::0;-1:-1:-1;;;48392:147:0;;10212:2:1;48392:147:0::1;::::0;::::1;10194:21:1::0;10251:2;10231:18;;;10224:30;10290:34;10270:18;;;10263:62;-1:-1:-1;;;10341:18:1;;;10334:42;10393:19;;48392:147:0::1;10010:408:1::0;48392:147:0::1;-1:-1:-1::0;;;;;48638:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;;41733:2:::1;-1:-1:-1::0;48638:47:0;48637:77:::1;;-1:-1:-1::0;;;;;;48691:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;48637:77;48628:124;;;;-1:-1:-1::0;;;48628:124:0::1;;;;;;;:::i;:::-;48854:22;::::0;:53:::1;::::0;-1:-1:-1;;;48854:53:0;;::::1;::::0;::::1;2319:25:1::0;;;-1:-1:-1;;;;;48854:22:0;;::::1;::::0;:43:::1;::::0;2292:18:1;;48854:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48845:5;:62;;48844:92;;;-1:-1:-1::0;;;;;;48913:22:0;::::1;;::::0;;;:11:::1;:22;::::0;;;;;::::1;;48835:139;;;;-1:-1:-1::0;;;48835:139:0::1;;;;;;;:::i;48264:835::-;49048:39;::::0;-1:-1:-1;;;49048:39:0;;10625:2:1;49048:39:0::1;::::0;::::1;10607:21:1::0;10664:2;10644:18;;;10637:30;-1:-1:-1;;;10683:18:1;;;10676:51;10744:18;;49048:39:0::1;10423:345:1::0;49048:39:0::1;49185:5;49157:15;:24;49173:7;7831:6:::0;;-1:-1:-1;;;;;7831:6:0;;7758:87;49173:7:::1;-1:-1:-1::0;;;;;49157:24:0::1;-1:-1:-1::0;;;;;49157:24:0::1;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49255:30:0::1;::::0;-1:-1:-1;49265:9:0;49276:8;49255:9:::1;:30::i;:::-;-1:-1:-1::0;;;;;49335:28:0;::::1;;::::0;;;:17:::1;:28;::::0;;;;:33;;49367:1:::1;::::0;49335:28;:33:::1;::::0;49367:1;;49335:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;49478:11:0::1;::::0;49449:26:::1;::::0;;;:16:::1;:26;::::0;;;;;;;:40;;;;49611:12:::1;::::0;;49592:32;;:18:::1;:32:::0;;;;;;:43;;;49677:17;;49693:1:::1;::::0;49611:12;49449:26;49677:17:::1;::::0;49693:1;;49677:17:::1;:::i;:::-;::::0;;;-1:-1:-1;;49737:14:0::1;::::0;49742:8;;49737:14:::1;::::0;;;::::1;46199:3560;;46132:3627:::0;:::o;30310:171::-;30386:7;30406:23;30421:7;30406:14;:23::i;:::-;-1:-1:-1;30449:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30449:24:0;;30310:171::o;29827:417::-;29908:13;29924:23;29939:7;29924:14;:23::i;:::-;29908:39;;29972:5;-1:-1:-1;;;;;29966:11:0;:2;-1:-1:-1;;;;;29966:11:0;;29958:57;;;;-1:-1:-1;;;29958:57:0;;10975:2:1;29958:57:0;;;10957:21:1;11014:2;10994:18;;;10987:30;11053:34;11033:18;;;11026:62;-1:-1:-1;;;11104:18:1;;;11097:31;11145:19;;29958:57:0;10773:397:1;29958:57:0;3734:10;-1:-1:-1;;;;;30050:21:0;;;;:62;;-1:-1:-1;30075:37:0;30092:5;3734:10;30779:164;:::i;30075:37::-;30028:174;;;;-1:-1:-1;;;30028:174:0;;11377:2:1;30028:174:0;;;11359:21:1;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;11526:32;11506:18;;;11499:60;11576:19;;30028:174:0;11175:426:1;30028:174:0;30215:21;30224:2;30228:7;30215:8;:21::i;:::-;29897:347;29827:417;;:::o;31010:336::-;31205:41;3734:10;31238:7;31205:18;:41::i;:::-;31197:100;;;;-1:-1:-1;;;31197:100:0;;;;;;;:::i;:::-;31310:28;31320:4;31326:2;31330:7;31310:9;:28::i;44397:107::-;7644:13;:11;:13::i;:::-;44476:8:::1;:20;44488:8:::0;44476;:20:::1;:::i;:::-;;44397:107:::0;:::o;31417:185::-;31555:39;31572:4;31578:2;31582:7;31555:39;;;;;;;;;;;;:16;:39::i;50677:114::-;7644:13;:11;:13::i;:::-;50757:11:::1;:26:::0;50677:114::o;28508:222::-;28580:7;28616:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28616:16:0;;28643:56;;;;-1:-1:-1;;;28643:56:0;;14427:2:1;28643:56:0;;;14409:21:1;14466:2;14446:18;;;14439:30;-1:-1:-1;;;14485:18:1;;;14478:54;14549:18;;28643:56:0;14225:348:1;52286:66:0;7644:13;:11;:13::i;:::-;52336:8:::1;:6;:8::i;:::-;52286:66::o:0;44585:155::-;7644:13;:11;:13::i;:::-;44688:20:::1;:44;44712:20:::0;44688;:44:::1;:::i;28239:207::-:0;28311:7;-1:-1:-1;;;;;28339:19:0;;28331:73;;;;-1:-1:-1;;;28331:73:0;;14780:2:1;28331:73:0;;;14762:21:1;14819:2;14799:18;;;14792:30;14858:34;14838:18;;;14831:62;-1:-1:-1;;;14909:18:1;;;14902:39;14958:19;;28331:73:0;14578:405:1;28331:73:0;-1:-1:-1;;;;;;28422:16:0;;;;;:9;:16;;;;;;;28239:207::o;8406:103::-;7644:13;:11;:13::i;:::-;8471:30:::1;8498:1;8471:18;:30::i;45855:190::-:0;7644:13;:11;:13::i;:::-;45942:9:::1;45937:101;45961:9;:16;45957:1;:20;45937:101;;;46008:18;46013:9;46023:1;46013:12;;;;;;;;:::i;:::-;;;;;;;46008:4;:18::i;:::-;45979:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45937:101;;52360:70:::0;7644:13;:11;:13::i;:::-;52412:10:::1;:8;:10::i;51649:201::-:0;7644:13;:11;:13::i;:::-;51787:55:::1;::::0;51764:10:::1;::::0;;;51820:21:::1;51787:55:::0;::::1;;;::::0;51739:22:::1;51787:55:::0;51739:22;51787:55;51820:21;51764:10;51787:55;::::1;;;;;;;;;;;;;::::0;::::1;;;;49816:381:::0;7644:13;:11;:13::i;:::-;-1:-1:-1;;;;;49919:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;:34;::::1;;:21;::::0;;::::1;:34;;::::0;49911:90:::1;;;::::0;-1:-1:-1;;;49911:90:0;;15462:2:1;49911:90:0::1;::::0;::::1;15444:21:1::0;15501:2;15481:18;;;15474:30;15540:34;15520:18;;;15513:62;-1:-1:-1;;;15591:18:1;;;15584:41;15642:19;;49911:90:0::1;15260:407:1::0;49911:90:0::1;-1:-1:-1::0;;;;;50083:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;;;;:33;;-1:-1:-1;;50083:33:0::1;::::0;::::1;;::::0;;::::1;::::0;;;50161:28;;1476:41:1;;;50161:28:0::1;::::0;1449:18:1;50161:28:0::1;;;;;;;;49816:381:::0;;:::o;42920:143::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42797:116::-;;;;;;;:::i;28966:104::-;29022:13;29055:7;29048:14;;;;;:::i;50248:351::-;7644:13;:11;:13::i;:::-;50349:9:::1;50344:248;50368:8;:15;50364:1;:19;50344:248;;;50487:4;50454:17;:30;50472:8;50481:1;50472:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50454:30:0::1;-1:-1:-1::0;;;;;50454:30:0::1;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;50562:8;50571:1;50562:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50542:38:0::1;;50575:4;50542:38;;;;1501:14:1::0;1494:22;1476:41;;1464:2;1449:18;;1336:187;50542:38:0::1;;;;;;;;50385:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50344:248;;30553:155:::0;30648:52;3734:10;30681:8;30691;30648:18;:52::i;45570:232::-;7644:13;:11;:13::i;:::-;45702:19:::1;:42:::0;;;;45756:17:::1;:38:::0;45570:232::o;52060:218::-;7644:13;:11;:13::i;:::-;52201:22:::1;:69:::0;;-1:-1:-1;;;;;;52201:69:0::1;-1:-1:-1::0;;;;;52201:69:0;;;::::1;::::0;;;::::1;::::0;;52060:218::o;31673:323::-;31847:41;3734:10;31880:7;31847:18;:41::i;:::-;31839:100;;;;-1:-1:-1;;;31839:100:0;;;;;;;:::i;:::-;31950:38;31964:4;31970:2;31974:7;31983:4;31950:13;:38::i;:::-;31673:323;;;;:::o;51003:590::-;7644:13;:11;:13::i;:::-;51125:10:::1;51100:22;51245:31:::0;;;:15:::1;:31;::::0;;;;;51234:42;::::1;;51226:85;;;::::0;-1:-1:-1;;;51226:85:0;;15874:2:1;51226:85:0::1;::::0;::::1;15856:21:1::0;15913:2;15893:18;;;15886:30;15952:32;15932:18;;;15925:60;16002:18;;51226:85:0::1;15672:354:1::0;51226:85:0::1;51374:41;::::0;-1:-1:-1;;;;;51374:32:0;::::1;::::0;:41;::::1;;;::::0;51407:7;;51374:41:::1;::::0;;;51407:7;51374:32;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;;;51468:31:0;::::1;;::::0;;;:15:::1;:31;::::0;;;;:42;;51503:7;;51468:31;:42:::1;::::0;51503:7;;51468:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;51553:33:0::1;::::0;2319:25:1;;;-1:-1:-1;;;;;51553:33:0;::::1;::::0;::::1;::::0;2307:2:1;2292:18;51553:33:0::1;2173:177:1::0;29141:281:0;29214:13;29240:23;29255:7;29240:14;:23::i;:::-;29276:21;29300:10;:8;:10::i;:::-;29276:34;;29352:1;29334:7;29328:21;:25;:86;;;;;;;;;;;;;;;;;29380:7;29389:18;:7;:16;:18::i;:::-;29363:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29328:86;29321:93;29141:281;-1:-1:-1;;;29141:281:0:o;45084:111::-;45128:13;45167:20;45160:27;;;;;:::i;8664:201::-;7644:13;:11;:13::i;:::-;-1:-1:-1;;;;;8753:22:0;::::1;8745:73;;;::::0;-1:-1:-1;;;8745:73:0;;16838:2:1;8745:73:0::1;::::0;::::1;16820:21:1::0;16877:2;16857:18;;;16850:30;16916:34;16896:18;;;16889:62;-1:-1:-1;;;16967:18:1;;;16960:36;17013:19;;8745:73:0::1;16636:402:1::0;8745:73:0::1;8829:28;8848:8;8829:18;:28::i;:::-;8664:201:::0;:::o;5700:108::-;5612:7;;-1:-1:-1;;;5612:7:0;;;;5770:9;5762:38;;;;-1:-1:-1;;;5762:38:0;;17245:2:1;5762:38:0;;;17227:21:1;17284:2;17264:18;;;17257:30;-1:-1:-1;;;17303:18:1;;;17296:46;17359:18;;5762:38:0;17043:340:1;34403:110:0;34479:26;34489:2;34493:7;34479:26;;;;;;;;;;;;:9;:26::i;38285:135::-;33568:4;33592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33592:16:0;38359:53;;;;-1:-1:-1;;;38359:53:0;;14427:2:1;38359:53:0;;;14409:21:1;14466:2;14446:18;;;14439:30;-1:-1:-1;;;14485:18:1;;;14478:54;14549:18;;38359:53:0;14225:348:1;37564:174:0;37639:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37639:29:0;-1:-1:-1;;;;;37639:29:0;;;;;;;;:24;;37693:23;37639:24;37693:14;:23::i;:::-;-1:-1:-1;;;;;37684:46:0;;;;;;;;;;;37564:174;;:::o;33797:264::-;33890:4;33907:13;33923:23;33938:7;33923:14;:23::i;:::-;33907:39;;33976:5;-1:-1:-1;;;;;33965:16:0;:7;-1:-1:-1;;;;;33965:16:0;;:52;;;-1:-1:-1;;;;;;30900:25:0;;;30876:4;30900:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33985:32;33965:87;;;;34045:7;-1:-1:-1;;;;;34021:31:0;:20;34033:7;34021:11;:20::i;:::-;-1:-1:-1;;;;;34021:31:0;;33965:87;33957:96;33797:264;-1:-1:-1;;;;33797:264:0:o;36820:625::-;36979:4;-1:-1:-1;;;;;36952:31:0;:23;36967:7;36952:14;:23::i;:::-;-1:-1:-1;;;;;36952:31:0;;36944:81;;;;-1:-1:-1;;;36944:81:0;;17590:2:1;36944:81:0;;;17572:21:1;17629:2;17609:18;;;17602:30;17668:34;17648:18;;;17641:62;-1:-1:-1;;;17719:18:1;;;17712:35;17764:19;;36944:81:0;17388:401:1;36944:81:0;-1:-1:-1;;;;;37044:16:0;;37036:65;;;;-1:-1:-1;;;37036:65:0;;17996:2:1;37036:65:0;;;17978:21:1;18035:2;18015:18;;;18008:30;18074:34;18054:18;;;18047:62;-1:-1:-1;;;18125:18:1;;;18118:34;18169:19;;37036:65:0;17794:400:1;37036:65:0;37218:29;37235:1;37239:7;37218:8;:29::i;:::-;-1:-1:-1;;;;;37260:15:0;;;;;;:9;:15;;;;;:20;;37279:1;;37260:15;:20;;37279:1;;37260:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37291:13:0;;;;;;:9;:13;;;;;:18;;37308:1;;37291:13;:18;;37308:1;;37291:18;:::i;:::-;;;;-1:-1:-1;;37320:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37320:21:0;-1:-1:-1;;;;;37320:21:0;;;;;;;;;37359:27;;37320:16;;37359:27;;;;;;;29897:347;29827:417;;:::o;7923:132::-;7831:6;;-1:-1:-1;;;;;7831:6:0;3734:10;7987:23;7979:68;;;;-1:-1:-1;;;7979:68:0;;18401:2:1;7979:68:0;;;18383:21:1;;;18420:18;;;18413:30;18479:34;18459:18;;;18452:62;18531:18;;7979:68:0;18199:356:1;6137:118:0;5146:19;:17;:19::i;:::-;6197:7:::1;:14:::0;;-1:-1:-1;;;;6197:14:0::1;-1:-1:-1::0;;;6197:14:0::1;::::0;;6227:20:::1;6234:12;3734:10:::0;;3654:98;6234:12:::1;6227:20;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;6227:20:0::1;;;;;;;6137:118::o:0;9025:191::-;9118:6;;;-1:-1:-1;;;;;9135:17:0;;;-1:-1:-1;;;;;;9135:17:0;;;;;;;9168:40;;9118:6;;;9135:17;9118:6;;9168:40;;9099:16;;9168:40;9088:128;9025:191;:::o;6396:120::-;5405:16;:14;:16::i;:::-;6455:7:::1;:15:::0;;-1:-1:-1;;;;6455:15:0::1;::::0;;6486:22:::1;3734:10:::0;6495:12:::1;3654:98:::0;37881:315;38036:8;-1:-1:-1;;;;;38027:17:0;:5;-1:-1:-1;;;;;38027:17:0;;38019:55;;;;-1:-1:-1;;;38019:55:0;;18762:2:1;38019:55:0;;;18744:21:1;18801:2;18781:18;;;18774:30;18840:27;18820:18;;;18813:55;18885:18;;38019:55:0;18560:349:1;38019:55:0;-1:-1:-1;;;;;38085:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38085:46:0;;;;;;;;;;38147:41;;1476::1;;;38147::0;;1449:18:1;38147:41:0;;;;;;;37881:315;;;:::o;32877:313::-;33033:28;33043:4;33049:2;33053:7;33033:9;:28::i;:::-;33080:47;33103:4;33109:2;33113:7;33122:4;33080:22;:47::i;:::-;33072:110;;;;-1:-1:-1;;;33072:110:0;;;;;;;:::i;44895:107::-;44947:13;44986:8;44979:15;;;;;:::i;908:723::-;964:13;1185:5;1194:1;1185:10;1181:53;;-1:-1:-1;;1212:10:0;;;;;;;;;;;;-1:-1:-1;;;1212:10:0;;;;;908:723::o;1181:53::-;1259:5;1244:12;1300:78;1307:9;;1300:78;;1333:8;;;;:::i;:::-;;-1:-1:-1;1356:10:0;;-1:-1:-1;1364:2:0;1356:10;;:::i;:::-;;;1300:78;;;1388:19;1420:6;1410:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1410:17:0;;1388:39;;1438:154;1445:10;;1438:154;;1472:11;1482:1;1472:11;;:::i;:::-;;-1:-1:-1;1541:10:0;1549:2;1541:5;:10;:::i;:::-;1528:24;;:2;:24;:::i;:::-;1515:39;;1498:6;1505;1498:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1498:56:0;;;;;;;;-1:-1:-1;1569:11:0;1578:2;1569:11;;:::i;:::-;;;1438:154;;34740:319;34869:18;34875:2;34879:7;34869:5;:18::i;:::-;34920:53;34951:1;34955:2;34959:7;34968:4;34920:22;:53::i;:::-;34898:153;;;;-1:-1:-1;;;34898:153:0;;;;;;;:::i;5885:108::-;5612:7;;-1:-1:-1;;;5612:7:0;;;;5944:41;;;;-1:-1:-1;;;5944:41:0;;19909:2:1;5944:41:0;;;19891:21:1;19948:2;19928:18;;;19921:30;-1:-1:-1;;;19967:18:1;;;19960:50;20027:18;;5944:41:0;19707:344:1;38984:853:0;39138:4;-1:-1:-1;;;;;39159:13:0;;10751:19;:23;39155:675;;39195:71;;-1:-1:-1;;;39195:71:0;;-1:-1:-1;;;;;39195:36:0;;;;;:71;;3734:10;;39246:4;;39252:7;;39261:4;;39195:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39195:71:0;;;;;;;;-1:-1:-1;;39195:71:0;;;;;;;;;;;;:::i;:::-;;;39191:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39436:6;:13;39453:1;39436:18;39432:328;;39479:60;;-1:-1:-1;;;39479:60:0;;;;;;;:::i;39432:328::-;39710:6;39704:13;39695:6;39691:2;39687:15;39680:38;39191:584;-1:-1:-1;;;;;;39317:51:0;-1:-1:-1;;;39317:51:0;;-1:-1:-1;39310:58:0;;39155:675;-1:-1:-1;39814:4:0;38984:853;;;;;;:::o;35395:439::-;-1:-1:-1;;;;;35475:16:0;;35467:61;;;;-1:-1:-1;;;35467:61:0;;21006:2:1;35467:61:0;;;20988:21:1;;;21025:18;;;21018:30;21084:34;21064:18;;;21057:62;21136:18;;35467:61:0;20804:356:1;35467:61:0;33568:4;33592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33592:16:0;:30;35539:58;;;;-1:-1:-1;;;35539:58:0;;21367:2:1;35539:58:0;;;21349:21:1;21406:2;21386:18;;;21379:30;21445;21425:18;;;21418:58;21493:18;;35539:58:0;21165:352:1;35539:58:0;-1:-1:-1;;;;;35668:13:0;;;;;;:9;:13;;;;;:18;;35685:1;;35668:13;:18;;35685:1;;35668:18;:::i;:::-;;;;-1:-1:-1;;35697:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35697:21:0;-1:-1:-1;;;;;35697:21:0;;;;;;;;35736:33;;35697:16;;;35736:33;;35697:16;;35736:33;44476:20:::1;44397:107:::0;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:258::-;271:1;281:113;295:6;292:1;289:13;281:113;;;371:11;;;365:18;352:11;;;345:39;317:2;310:10;281:113;;;412:6;409:1;406:13;403:48;;;-1:-1:-1;;447:1:1;429:16;;422:27;199:258::o;462:::-;504:3;542:5;536:12;569:6;564:3;557:19;585:63;641:6;634:4;629:3;625:14;618:4;611:5;607:16;585:63;:::i;:::-;702:2;681:15;-1:-1:-1;;677:29:1;668:39;;;;709:4;664:50;;462:258;-1:-1:-1;;462:258:1:o;725:220::-;874:2;863:9;856:21;837:4;894:45;935:2;924:9;920:18;912:6;894:45;:::i;950:131::-;-1:-1:-1;;;;;;1024:32:1;;1014:43;;1004:71;;1071:1;1068;1061:12;1086:245;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1252:9;1239:23;1271:30;1295:5;1271:30;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;3182:18;3167:34;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:407::-;3356:5;3390:18;3382:6;3379:30;3376:56;;;3412:18;;:::i;:::-;3450:57;3495:2;3474:15;;-1:-1:-1;;3470:29:1;3501:4;3466:40;3450:57;:::i;:::-;3441:66;;3530:6;3523:5;3516:21;3570:3;3561:6;3556:3;3552:16;3549:25;3546:45;;;3587:1;3584;3577:12;3546:45;3636:6;3631:3;3624:4;3617:5;3613:16;3600:43;3690:1;3683:4;3674:6;3667:5;3663:18;3659:29;3652:40;3291:407;;;;;:::o;3703:451::-;3772:6;3825:2;3813:9;3804:7;3800:23;3796:32;3793:52;;;3841:1;3838;3831:12;3793:52;3881:9;3868:23;3914:18;3906:6;3903:30;3900:50;;;3946:1;3943;3936:12;3900:50;3969:22;;4022:4;4014:13;;4010:27;-1:-1:-1;4000:55:1;;4051:1;4048;4041:12;4000:55;4074:74;4140:7;4135:2;4122:16;4117:2;4113;4109:11;4074:74;:::i;4159:183::-;4219:4;4252:18;4244:6;4241:30;4238:56;;;4274:18;;:::i;:::-;-1:-1:-1;4319:1:1;4315:14;4331:4;4311:25;;4159:183::o;4347:891::-;4431:6;4462:2;4505;4493:9;4484:7;4480:23;4476:32;4473:52;;;4521:1;4518;4511:12;4473:52;4561:9;4548:23;4594:18;4586:6;4583:30;4580:50;;;4626:1;4623;4616:12;4580:50;4649:22;;4702:4;4694:13;;4690:27;-1:-1:-1;4680:55:1;;4731:1;4728;4721:12;4680:55;4767:2;4754:16;4790:60;4806:43;4846:2;4806:43;:::i;:::-;4790:60;:::i;:::-;4884:15;;;4966:1;4962:10;;;;4954:19;;4950:28;;;4915:12;;;;4990:19;;;4987:39;;;5022:1;5019;5012:12;4987:39;5046:11;;;;5066:142;5082:6;5077:3;5074:15;5066:142;;;5148:17;;5136:30;;5099:12;;;;5186;;;;5066:142;;;5227:5;4347:891;-1:-1:-1;;;;;;;4347:891:1:o;5243:347::-;5308:6;5316;5369:2;5357:9;5348:7;5344:23;5340:32;5337:52;;;5385:1;5382;5375:12;5337:52;5408:29;5427:9;5408:29;:::i;:::-;5398:39;;5487:2;5476:9;5472:18;5459:32;5534:5;5527:13;5520:21;5513:5;5510:32;5500:60;;5556:1;5553;5546:12;5500:60;5579:5;5569:15;;;5243:347;;;;;:::o;5595:897::-;5679:6;5710:2;5753;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;5809:9;5796:23;5842:18;5834:6;5831:30;5828:50;;;5874:1;5871;5864:12;5828:50;5897:22;;5950:4;5942:13;;5938:27;-1:-1:-1;5928:55:1;;5979:1;5976;5969:12;5928:55;6015:2;6002:16;6038:60;6054:43;6094:2;6054:43;:::i;6038:60::-;6132:15;;;6214:1;6210:10;;;;6202:19;;6198:28;;;6163:12;;;;6238:19;;;6235:39;;;6270:1;6267;6260:12;6235:39;6294:11;;;;6314:148;6330:6;6325:3;6322:15;6314:148;;;6396:23;6415:3;6396:23;:::i;:::-;6384:36;;6347:12;;;;6440;;;;6314:148;;6497:248;6565:6;6573;6626:2;6614:9;6605:7;6601:23;6597:32;6594:52;;;6642:1;6639;6632:12;6594:52;-1:-1:-1;;6665:23:1;;;6735:2;6720:18;;;6707:32;;-1:-1:-1;6497:248:1:o;6750:667::-;6845:6;6853;6861;6869;6922:3;6910:9;6901:7;6897:23;6893:33;6890:53;;;6939:1;6936;6929:12;6890:53;6962:29;6981:9;6962:29;:::i;:::-;6952:39;;7010:38;7044:2;7033:9;7029:18;7010:38;:::i;:::-;7000:48;;7095:2;7084:9;7080:18;7067:32;7057:42;;7150:2;7139:9;7135:18;7122:32;7177:18;7169:6;7166:30;7163:50;;;7209:1;7206;7199:12;7163:50;7232:22;;7285:4;7277:13;;7273:27;-1:-1:-1;7263:55:1;;7314:1;7311;7304:12;7263:55;7337:74;7403:7;7398:2;7385:16;7380:2;7376;7372:11;7337:74;:::i;:::-;7327:84;;;6750:667;;;;;;;:::o;7422:260::-;7490:6;7498;7551:2;7539:9;7530:7;7526:23;7522:32;7519:52;;;7567:1;7564;7557:12;7519:52;7590:29;7609:9;7590:29;:::i;:::-;7580:39;;7638:38;7672:2;7661:9;7657:18;7638:38;:::i;:::-;7628:48;;7422:260;;;;;:::o;7687:380::-;7766:1;7762:12;;;;7809;;;7830:61;;7884:4;7876:6;7872:17;7862:27;;7830:61;7937:2;7929:6;7926:14;7906:18;7903:38;7900:161;;7983:10;7978:3;7974:20;7971:1;7964:31;8018:4;8015:1;8008:15;8046:4;8043:1;8036:15;7900:161;;7687:380;;;:::o;8072:127::-;8133:10;8128:3;8124:20;8121:1;8114:31;8164:4;8161:1;8154:15;8188:4;8185:1;8178:15;8204:128;8244:3;8275:1;8271:6;8268:1;8265:13;8262:39;;;8281:18;;:::i;:::-;-1:-1:-1;8317:9:1;;8204:128::o;9099:356::-;9301:2;9283:21;;;9320:18;;;9313:30;9379:34;9374:2;9359:18;;9352:62;9446:2;9431:18;;9099:356::o;9460:::-;9662:2;9644:21;;;9681:18;;;9674:30;9740:34;9735:2;9720:18;;9713:62;9807:2;9792:18;;9460:356::o;9821:184::-;9891:6;9944:2;9932:9;9923:7;9919:23;9915:32;9912:52;;;9960:1;9957;9950:12;9912:52;-1:-1:-1;9983:16:1;;9821:184;-1:-1:-1;9821:184:1:o;11606:410::-;11808:2;11790:21;;;11847:2;11827:18;;;11820:30;11886:34;11881:2;11866:18;;11859:62;-1:-1:-1;;;11952:2:1;11937:18;;11930:44;12006:3;11991:19;;11606:410::o;12147:545::-;12249:2;12244:3;12241:11;12238:448;;;12285:1;12310:5;12306:2;12299:17;12355:4;12351:2;12341:19;12425:2;12413:10;12409:19;12406:1;12402:27;12396:4;12392:38;12461:4;12449:10;12446:20;12443:47;;;-1:-1:-1;12484:4:1;12443:47;12539:2;12534:3;12530:12;12527:1;12523:20;12517:4;12513:31;12503:41;;12594:82;12612:2;12605:5;12602:13;12594:82;;;12657:17;;;12638:1;12627:13;12594:82;;;12598:3;;;12147:545;;;:::o;12868:1352::-;12994:3;12988:10;13021:18;13013:6;13010:30;13007:56;;;13043:18;;:::i;:::-;13072:97;13162:6;13122:38;13154:4;13148:11;13122:38;:::i;:::-;13116:4;13072:97;:::i;:::-;13224:4;;13288:2;13277:14;;13305:1;13300:663;;;;14007:1;14024:6;14021:89;;;-1:-1:-1;14076:19:1;;;14070:26;14021:89;-1:-1:-1;;12825:1:1;12821:11;;;12817:24;12813:29;12803:40;12849:1;12845:11;;;12800:57;14123:81;;13270:944;;13300:663;12094:1;12087:14;;;12131:4;12118:18;;-1:-1:-1;;13336:20:1;;;13454:236;13468:7;13465:1;13462:14;13454:236;;;13557:19;;;13551:26;13536:42;;13649:27;;;;13617:1;13605:14;;;;13484:19;;13454:236;;;13458:3;13718:6;13709:7;13706:19;13703:201;;;13779:19;;;13773:26;-1:-1:-1;;13862:1:1;13858:14;;;13874:3;13854:24;13850:37;13846:42;13831:58;13816:74;;13703:201;-1:-1:-1;;;;;13950:1:1;13934:14;;;13930:22;13917:36;;-1:-1:-1;12868:1352:1:o;14988:127::-;15049:10;15044:3;15040:20;15037:1;15030:31;15080:4;15077:1;15070:15;15104:4;15101:1;15094:15;15120:135;15159:3;15180:17;;;15177:43;;15200:18;;:::i;:::-;-1:-1:-1;15247:1:1;15236:13;;15120:135::o;16031:125::-;16071:4;16099:1;16096;16093:8;16090:34;;;16104:18;;:::i;:::-;-1:-1:-1;16141:9:1;;16031:125::o;16161:470::-;16340:3;16378:6;16372:13;16394:53;16440:6;16435:3;16428:4;16420:6;16416:17;16394:53;:::i;:::-;16510:13;;16469:16;;;;16532:57;16510:13;16469:16;16566:4;16554:17;;16532:57;:::i;:::-;16605:20;;16161:470;-1:-1:-1;;;;16161:470:1:o;18914:414::-;19116:2;19098:21;;;19155:2;19135:18;;;19128:30;19194:34;19189:2;19174:18;;19167:62;-1:-1:-1;;;19260:2:1;19245:18;;19238:48;19318:3;19303:19;;18914:414::o;19333:127::-;19394:10;19389:3;19385:20;19382:1;19375:31;19425:4;19422:1;19415:15;19449:4;19446:1;19439:15;19465:120;19505:1;19531;19521:35;;19536:18;;:::i;:::-;-1:-1:-1;19570:9:1;;19465:120::o;19590:112::-;19622:1;19648;19638:35;;19653:18;;:::i;:::-;-1:-1:-1;19687:9:1;;19590:112::o;20056:489::-;-1:-1:-1;;;;;20325:15:1;;;20307:34;;20377:15;;20372:2;20357:18;;20350:43;20424:2;20409:18;;20402:34;;;20472:3;20467:2;20452:18;;20445:31;;;20250:4;;20493:46;;20519:19;;20511:6;20493:46;:::i;:::-;20485:54;20056:489;-1:-1:-1;;;;;;20056:489:1:o;20550:249::-;20619:6;20672:2;20660:9;20651:7;20647:23;20643:32;20640:52;;;20688:1;20685;20678:12;20640:52;20720:9;20714:16;20739:30;20763:5;20739:30;:::i
Swarm Source
ipfs://6000d9865feebeced9a51dcd9bece77171a7df0ffa6fb42da6ee54049892d93f
Loading...
Loading
Loading...
Loading
OVERVIEW
Tsukuyomi Dragon is a web3 project with an ecosystem that includes a blockchain game released on iOS and Android, 10K NFT collection distributed on 4 blockchains (Ethereum, Polygon, Binance, and Avalanche), NFT Marketplace (4 blockchains), NFT Staking (4 blockchains), Token (BSC and ETH) and Merch.Net Worth in USD
$8.36
Net Worth in ETH
0.004183
Token Allocations
AVAX
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| AVAX | 100.00% | $9.12 | 0.9171 | $8.36 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.