ERC-721
Source Code
Overview
Max Total Supply
1,225 DK
Holders
568
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DKLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
DropoutKidz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-06-15
*/
// SPDX-License-Identifier: MIT
// File: contracts/Dropoutkidz.sol
/**
* @title DropoutKidz contract
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/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/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.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 v4.4.1 (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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/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: contracts/TwistedToonz.sol
// Creator: Chiru Labs
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 internal currentIndex;
// Token name
string private _name;
// Token symbol
string private _symbol;
string public uriPrefix = "ipfs://QmRAcGa6Dt969bSAyZ2LciPhqLKfC41UXUYdHhw64GwUEf/";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx;
address currOwnershipAddr;
// Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
unchecked {
for (uint256 i; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "ERC721A: balance query for the zero address");
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(owner != address(0), "ERC721A: number minted query for the zero address");
return uint256(_addressData[owner].numberMinted);
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
unchecked {
for (uint256 curr = tokenId; curr >= 0; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if (revealed == false) {
return hiddenMetadataUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_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 override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, "");
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
require(quantity != 0, "ERC721A: quantity must be greater than 0");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
// updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint128(quantity);
_addressData[to].numberMinted += uint128(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
for (uint256 i; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
if (safe) {
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
}
updatedIndex++;
}
currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");
require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721A: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
contract DropoutKidz is ERC721A, Ownable, ReentrancyGuard {
uint public price = 0.025 ether;
uint public maxPerTx = 2;
uint public maxPerWallet = 2;
uint public totalFree = 1000;
uint public maxSupply = 4000;
uint public nextOwnerToExplicitlySet;
bool public mintEnabled;
constructor() ERC721A("DropoutKidz", "DK") {
setHiddenMetadataUri("ipfs://QmR7LJzaZn1FRwMtthS1ZdF9s15UcTnY9mohyMjtqybp2v/hidden.json");
}
function mint(uint256 amt) external payable
{
uint cost = price;
if(totalSupply() < totalFree) {
cost = 0.00;
}
require(msg.sender == tx.origin,"Minting is required to be from sender address");
require(msg.value == amt * cost,"Please send the right cost ammount");
require(totalSupply() + amt < maxSupply + 1,"No more Kidz left");
require(mintEnabled, "Minting is soon coming, kid");
require(numberMinted(msg.sender) + amt <= maxPerWallet,"Max 2 per wallet, Kid");
require( amt < maxPerTx + 1, "Max 2 per TX, Kid");
_safeMint(msg.sender, amt);
}
function ownerBatchMint(uint256 amt) external onlyOwner
{
require(totalSupply() + amt < maxSupply + 1,"too many!");
_safeMint(msg.sender, amt);
}
function toggleMinting() external onlyOwner {
mintEnabled = !mintEnabled;
}
function numberMinted(address owner) public view returns (uint256) {
return _numberMinted(owner);
}
function setPrice(uint256 price_) external onlyOwner {
price = price_;
}
function setTotalFree(uint256 totalFree_) external onlyOwner {
totalFree = totalFree_;
}
function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
maxPerTx = maxPerTx_;
}
function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
maxPerWallet = maxPerWallet_;
}
function setmaxSupply(uint256 maxSupply_) external onlyOwner {
maxSupply = maxSupply_;
}
function _baseURI() internal view virtual override returns (string memory) {
return uriPrefix;
}
function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
hiddenMetadataUri = _hiddenMetadataUri;
}
function setRevealed(bool _state) public onlyOwner {
revealed = _state;
}
function withdraw() external onlyOwner nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
_setOwnersExplicit(quantity);
}
function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
{
return ownershipOf(tokenId);
}
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
require(quantity != 0, "quantity must be nonzero");
require(currentIndex != 0, "no tokens minted yet");
uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");
// Index underflow is impossible.
// Counter or index overflow is incredibly unrealistic.
unchecked {
uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;
// Set the end index to be the last token index
if (endIndex + 1 > currentIndex) {
endIndex = currentIndex - 1;
}
for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i].addr = ownership.addr;
_ownerships[i].startTimestamp = ownership.startTimestamp;
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60e0604052603660808181529062002bb960a0398051620000299160039160209091019062000212565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000589160049162000212565b506006805460ff191690556658d15e17628000600d556002600e819055600f556103e8601055610fa06011553480156200009157600080fd5b50604080518082018252600b81526a223937b837baba25b4b23d60a91b602080830191825283518085019094526002845261444b60f01b908401528151919291620000df9160019162000212565b508051620000f590600290602084019062000212565b505050620001126200010c6200014460201b60201c565b62000148565b6001600c819055506200013e60405180608001604052806041815260200162002b78604191396200019a565b620002f5565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b03163314620001f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020e90600590602084019062000212565b5050565b8280546200022090620002b8565b90600052602060002090601f0160209004810192826200024457600085556200028f565b82601f106200025f57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028f57825182559160200191906001019062000272565b506200029d929150620002a1565b5090565b5b808211156200029d5760008155600101620002a2565b600181811c90821680620002cd57607f821691505b60208210811415620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b61287380620003056000396000f3fe6080604052600436106102675760003560e01c80637d55094d11610144578063c6f6f216116100b6578063dc33e6811161007a578063dc33e681146106f0578063e0a8085314610710578063e268e4d314610730578063e985e9c514610750578063f2fde38b14610799578063f968adbe146107b957600080fd5b8063c6f6f2161461066a578063c87b56dd1461068a578063d1239730146106aa578063d5abeb01146106c4578063d7224ba0146106da57600080fd5b806395d89b411161010857806395d89b41146105d7578063a035b1fe146105ec578063a0712d6814610602578063a22cb46514610615578063a45ba8e714610635578063b88d4fde1461064a57600080fd5b80637d55094d146105165780638da5cb5b1461052b5780638db89f071461054957806391b7f5ed146105695780639231ab2a1461058957600080fd5b806342842e0e116101dd5780635503a0e8116101a15780635503a0e814610477578063563aaf111461048c57806362b99ad4146104ac5780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806342842e0e146103e7578063453c2310146104075780634f6ccce71461041d5780634fdd43cb1461043d578063518302271461045d57600080fd5b8063228025e81161022f578063228025e81461033c57806323b872dd1461035c5780632d20fb601461037c5780632f745c591461039c578063333e44e6146103bc5780633ccfd60b146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612473565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083c565b604051610298919061263c565b3480156102cf57600080fd5b506102e36102de3660046124f6565b6108ce565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461242e565b61095e565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061031b6103573660046124f6565b610a76565b34801561036857600080fd5b5061031b61037736600461234c565b610aa5565b34801561038857600080fd5b5061031b6103973660046124f6565b610ab0565b3480156103a857600080fd5b5061032e6103b736600461242e565b610b43565b3480156103c857600080fd5b5061032e60105481565b3480156103de57600080fd5b5061031b610ca0565b3480156103f357600080fd5b5061031b61040236600461234c565b610dad565b34801561041357600080fd5b5061032e600f5481565b34801561042957600080fd5b5061032e6104383660046124f6565b610dc8565b34801561044957600080fd5b5061031b6104583660046124ad565b610e2a565b34801561046957600080fd5b5060065461028c9060ff1681565b34801561048357600080fd5b506102b6610e6b565b34801561049857600080fd5b5061031b6104a73660046124f6565b610ef9565b3480156104b857600080fd5b506102b6610f28565b3480156104cd57600080fd5b506102e36104dc3660046124f6565b610f35565b3480156104ed57600080fd5b5061032e6104fc3660046122fe565b610f47565b34801561050d57600080fd5b5061031b610fd8565b34801561052257600080fd5b5061031b61100e565b34801561053757600080fd5b50600b546001600160a01b03166102e3565b34801561055557600080fd5b5061031b6105643660046124f6565b61104c565b34801561057557600080fd5b5061031b6105843660046124f6565b6110de565b34801561059557600080fd5b506105a96105a43660046124f6565b61110d565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b3480156105e357600080fd5b506102b661112a565b3480156105f857600080fd5b5061032e600d5481565b61031b6106103660046124f6565b611139565b34801561062157600080fd5b5061031b610630366004612404565b611380565b34801561064157600080fd5b506102b6611445565b34801561065657600080fd5b5061031b610665366004612388565b611452565b34801561067657600080fd5b5061031b6106853660046124f6565b61148b565b34801561069657600080fd5b506102b66106a53660046124f6565b6114ba565b3480156106b657600080fd5b5060135461028c9060ff1681565b3480156106d057600080fd5b5061032e60115481565b3480156106e657600080fd5b5061032e60125481565b3480156106fc57600080fd5b5061032e61070b3660046122fe565b611626565b34801561071c57600080fd5b5061031b61072b366004612458565b611631565b34801561073c57600080fd5b5061031b61074b3660046124f6565b61166e565b34801561075c57600080fd5b5061028c61076b366004612319565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a557600080fd5b5061031b6107b43660046122fe565b61169d565b3480156107c557600080fd5b5061032e600e5481565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506001600160e01b0319821663780e9d6360e01b145b8061083657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084b90612765565b80601f016020809104026020016040519081016040528092919081815260200182805461087790612765565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108db826000541190565b6109425760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b600061096982610f35565b9050806001600160a01b0316836001600160a01b031614156109d85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610939565b336001600160a01b03821614806109f457506109f4813361076b565b610a665760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610939565b610a71838383611735565b505050565b600b546001600160a01b03163314610aa05760405162461bcd60e51b81526004016109399061264f565b601155565b610a71838383611791565b600b546001600160a01b03163314610ada5760405162461bcd60e51b81526004016109399061264f565b6002600c541415610b2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610939565b6002600c55610b3b81611a76565b506001600c55565b6000610b4e83610f47565b8210610ba75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610939565b600080549080805b83811015610c40576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c0257805192505b876001600160a01b0316836001600160a01b03161415610c375786841415610c305750935061083692505050565b6001909301925b50600101610baf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610939565b600b546001600160a01b03163314610cca5760405162461bcd60e51b81526004016109399061264f565b6002600c541415610d1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610939565b6002600c55604051600090339047908381818185875af1925050503d8060008114610d64576040519150601f19603f3d011682016040523d82523d6000602084013e610d69565b606091505b5050905080610b3b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610939565b610a7183838360405180602001604052806000815250611452565b600080548210610e265760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610939565b5090565b600b546001600160a01b03163314610e545760405162461bcd60e51b81526004016109399061264f565b8051610e679060059060208401906121cc565b5050565b60048054610e7890612765565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea490612765565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b505050505081565b600b546001600160a01b03163314610f235760405162461bcd60e51b81526004016109399061264f565b601055565b60038054610e7890612765565b6000610f4082611c05565b5192915050565b60006001600160a01b038216610fb35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610939565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b600b546001600160a01b031633146110025760405162461bcd60e51b81526004016109399061264f565b61100c6000611cdc565b565b600b546001600160a01b031633146110385760405162461bcd60e51b81526004016109399061264f565b6013805460ff19811660ff90911615179055565b600b546001600160a01b031633146110765760405162461bcd60e51b81526004016109399061264f565b6011546110849060016126d7565b8161108e60005490565b61109891906126d7565b106110d15760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610939565b6110db3382611d2e565b50565b600b546001600160a01b031633146111085760405162461bcd60e51b81526004016109399061264f565b600d55565b604080518082019091526000808252602082015261083682611c05565b60606002805461084b90612765565b600d54601054600054101561114c575060005b3332146111b15760405162461bcd60e51b815260206004820152602d60248201527f4d696e74696e6720697320726571756972656420746f2062652066726f6d207360448201526c656e646572206164647265737360981b6064820152608401610939565b6111bb8183612703565b34146112145760405162461bcd60e51b815260206004820152602260248201527f506c656173652073656e642074686520726967687420636f737420616d6d6f756044820152611b9d60f21b6064820152608401610939565b6011546112229060016126d7565b8261122c60005490565b61123691906126d7565b106112775760405162461bcd60e51b8152602060048201526011602482015270139bc81b5bdc994812da591e881b19599d607a1b6044820152606401610939565b60135460ff166112c95760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720697320736f6f6e20636f6d696e672c206b696400000000006044820152606401610939565b600f54826112d633611626565b6112e091906126d7565b11156113265760405162461bcd60e51b815260206004820152601560248201527413585e080c881c195c881dd85b1b195d0b0812da59605a1b6044820152606401610939565b600e546113349060016126d7565b82106113765760405162461bcd60e51b815260206004820152601160248201527013585e080c881c195c8815160b0812da59607a1b6044820152606401610939565b610e673383611d2e565b6001600160a01b0382163314156113d95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610939565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60058054610e7890612765565b61145d848484611791565b61146984848484611d48565b6114855760405162461bcd60e51b815260040161093990612684565b50505050565b600b546001600160a01b031633146114b55760405162461bcd60e51b81526004016109399061264f565b600e55565b60606114c7826000541190565b61152b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610939565b60065460ff166115c7576005805461154290612765565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90612765565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b50505050509050919050565b60006115d1611e56565b905060008151116115f1576040518060200160405280600081525061161f565b806115fb84611e65565b600460405160200161160f9392919061253b565b6040516020818303038152906040525b9392505050565b600061083682611f63565b600b546001600160a01b0316331461165b5760405162461bcd60e51b81526004016109399061264f565b6006805460ff1916911515919091179055565b600b546001600160a01b031633146116985760405162461bcd60e51b81526004016109399061264f565b600f55565b600b546001600160a01b031633146116c75760405162461bcd60e51b81526004016109399061264f565b6001600160a01b03811661172c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610939565b6110db81611cdc565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061179c82611c05565b80519091506000906001600160a01b0316336001600160a01b031614806117d35750336117c8846108ce565b6001600160a01b0316145b806117e5575081516117e5903361076b565b90508061184f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610939565b846001600160a01b031682600001516001600160a01b0316146118c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610939565b6001600160a01b0384166119275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610939565b6119376000848460000151611735565b6001600160a01b03858116600090815260086020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600790935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a2c576119df816000541190565b15611a2c578251600082815260076020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611ac35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610939565b600054611b095760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b6044820152606401610939565b6012546000548110611b5d5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610939565b6000548282016000198101911015611b785750600054600019015b815b818111611bfa576000818152600760205260409020546001600160a01b0316611bf2576000611ba882611c05565b805160008481526007602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611b7a565b506001016012555050565b6040805180820190915260008082526020820152611c24826000541190565b611c835760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610939565b815b6000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cd2579392505050565b5060001901611c85565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e67828260405180602001604052806000815250612001565b60006001600160a01b0384163b15611e4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8c9033908990889088906004016125ff565b602060405180830381600087803b158015611da657600080fd5b505af1925050508015611dd6575060408051601f3d908101601f19168201909252611dd391810190612490565b60015b611e30573d808015611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b508051611e285760405162461bcd60e51b815260040161093990612684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e4e565b5060015b949350505050565b60606003805461084b90612765565b606081611e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb35780611e9d816127a0565b9150611eac9050600a836126ef565b9150611e8d565b60008167ffffffffffffffff811115611ece57611ece612811565b6040519080825280601f01601f191660200182016040528015611ef8576020820181803683370190505b5090505b8415611e4e57611f0d600183612722565b9150611f1a600a866127bb565b611f259060306126d7565b60f81b818381518110611f3a57611f3a6127fb565b60200101906001600160f81b031916908160001a905350611f5c600a866126ef565b9450611efc565b60006001600160a01b038216611fd55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610939565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b610a7183838360016000546001600160a01b03851661206c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610939565b836120ca5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610939565b6001600160a01b03851660008181526008602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526007909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121c35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156121b75761219b6000888488611d48565b6121b75760405162461bcd60e51b815260040161093990612684565b60019182019101612148565b50600055611a6f565b8280546121d890612765565b90600052602060002090601f0160209004810192826121fa5760008555612240565b82601f1061221357805160ff1916838001178555612240565b82800160010185558215612240579182015b82811115612240578251825591602001919060010190612225565b50610e269291505b80821115610e265760008155600101612248565b600067ffffffffffffffff8084111561227757612277612811565b604051601f8501601f19908116603f0116810190828211818310171561229f5761229f612811565b816040528093508581528686860111156122b857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122e957600080fd5b919050565b803580151581146122e957600080fd5b60006020828403121561231057600080fd5b61161f826122d2565b6000806040838503121561232c57600080fd5b612335836122d2565b9150612343602084016122d2565b90509250929050565b60008060006060848603121561236157600080fd5b61236a846122d2565b9250612378602085016122d2565b9150604084013590509250925092565b6000806000806080858703121561239e57600080fd5b6123a7856122d2565b93506123b5602086016122d2565b925060408501359150606085013567ffffffffffffffff8111156123d857600080fd5b8501601f810187136123e957600080fd5b6123f88782356020840161225c565b91505092959194509250565b6000806040838503121561241757600080fd5b612420836122d2565b9150612343602084016122ee565b6000806040838503121561244157600080fd5b61244a836122d2565b946020939093013593505050565b60006020828403121561246a57600080fd5b61161f826122ee565b60006020828403121561248557600080fd5b813561161f81612827565b6000602082840312156124a257600080fd5b815161161f81612827565b6000602082840312156124bf57600080fd5b813567ffffffffffffffff8111156124d657600080fd5b8201601f810184136124e757600080fd5b611e4e8482356020840161225c565b60006020828403121561250857600080fd5b5035919050565b60008151808452612527816020860160208601612739565b601f01601f19169290920160200192915050565b60008451602061254e8285838a01612739565b8551918401916125618184848a01612739565b8554920191600090600181811c908083168061257e57607f831692505b85831081141561259c57634e487b7160e01b85526022600452602485fd5b8080156125b057600181146125c1576125ee565b60ff198516885283880195506125ee565b60008b81526020902060005b858110156125e65781548a8201529084019088016125cd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126329083018461250f565b9695505050505050565b60208152600061161f602083018461250f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156126ea576126ea6127cf565b500190565b6000826126fe576126fe6127e5565b500490565b600081600019048311821515161561271d5761271d6127cf565b500290565b600082821015612734576127346127cf565b500390565b60005b8381101561275457818101518382015260200161273c565b838111156114855750506000910152565b600181811c9082168061277957607f821691505b6020821081141561279a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127b4576127b46127cf565b5060010190565b6000826127ca576127ca6127e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110db57600080fdfea2646970667358221220229d5930ce0ed4bffe53a5f0f8ec2a062fb414b565fdfbc884eec68d357141e764736f6c63430008070033697066733a2f2f516d52374c4a7a615a6e314652774d74746853315a6446397331355563546e59396d6f68794d6a747179627032762f68696464656e2e6a736f6e697066733a2f2f516d5241634761364474393639625341795a324c63695068714c4b664334315558555964486877363447775545662f
Deployed Bytecode
0x6080604052600436106102675760003560e01c80637d55094d11610144578063c6f6f216116100b6578063dc33e6811161007a578063dc33e681146106f0578063e0a8085314610710578063e268e4d314610730578063e985e9c514610750578063f2fde38b14610799578063f968adbe146107b957600080fd5b8063c6f6f2161461066a578063c87b56dd1461068a578063d1239730146106aa578063d5abeb01146106c4578063d7224ba0146106da57600080fd5b806395d89b411161010857806395d89b41146105d7578063a035b1fe146105ec578063a0712d6814610602578063a22cb46514610615578063a45ba8e714610635578063b88d4fde1461064a57600080fd5b80637d55094d146105165780638da5cb5b1461052b5780638db89f071461054957806391b7f5ed146105695780639231ab2a1461058957600080fd5b806342842e0e116101dd5780635503a0e8116101a15780635503a0e814610477578063563aaf111461048c57806362b99ad4146104ac5780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806342842e0e146103e7578063453c2310146104075780634f6ccce71461041d5780634fdd43cb1461043d578063518302271461045d57600080fd5b8063228025e81161022f578063228025e81461033c57806323b872dd1461035c5780632d20fb601461037c5780632f745c591461039c578063333e44e6146103bc5780633ccfd60b146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612473565b6107cf565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661083c565b604051610298919061263c565b3480156102cf57600080fd5b506102e36102de3660046124f6565b6108ce565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461242e565b61095e565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061031b6103573660046124f6565b610a76565b34801561036857600080fd5b5061031b61037736600461234c565b610aa5565b34801561038857600080fd5b5061031b6103973660046124f6565b610ab0565b3480156103a857600080fd5b5061032e6103b736600461242e565b610b43565b3480156103c857600080fd5b5061032e60105481565b3480156103de57600080fd5b5061031b610ca0565b3480156103f357600080fd5b5061031b61040236600461234c565b610dad565b34801561041357600080fd5b5061032e600f5481565b34801561042957600080fd5b5061032e6104383660046124f6565b610dc8565b34801561044957600080fd5b5061031b6104583660046124ad565b610e2a565b34801561046957600080fd5b5060065461028c9060ff1681565b34801561048357600080fd5b506102b6610e6b565b34801561049857600080fd5b5061031b6104a73660046124f6565b610ef9565b3480156104b857600080fd5b506102b6610f28565b3480156104cd57600080fd5b506102e36104dc3660046124f6565b610f35565b3480156104ed57600080fd5b5061032e6104fc3660046122fe565b610f47565b34801561050d57600080fd5b5061031b610fd8565b34801561052257600080fd5b5061031b61100e565b34801561053757600080fd5b50600b546001600160a01b03166102e3565b34801561055557600080fd5b5061031b6105643660046124f6565b61104c565b34801561057557600080fd5b5061031b6105843660046124f6565b6110de565b34801561059557600080fd5b506105a96105a43660046124f6565b61110d565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610298565b3480156105e357600080fd5b506102b661112a565b3480156105f857600080fd5b5061032e600d5481565b61031b6106103660046124f6565b611139565b34801561062157600080fd5b5061031b610630366004612404565b611380565b34801561064157600080fd5b506102b6611445565b34801561065657600080fd5b5061031b610665366004612388565b611452565b34801561067657600080fd5b5061031b6106853660046124f6565b61148b565b34801561069657600080fd5b506102b66106a53660046124f6565b6114ba565b3480156106b657600080fd5b5060135461028c9060ff1681565b3480156106d057600080fd5b5061032e60115481565b3480156106e657600080fd5b5061032e60125481565b3480156106fc57600080fd5b5061032e61070b3660046122fe565b611626565b34801561071c57600080fd5b5061031b61072b366004612458565b611631565b34801561073c57600080fd5b5061031b61074b3660046124f6565b61166e565b34801561075c57600080fd5b5061028c61076b366004612319565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a557600080fd5b5061031b6107b43660046122fe565b61169d565b3480156107c557600080fd5b5061032e600e5481565b60006001600160e01b031982166380ac58cd60e01b148061080057506001600160e01b03198216635b5e139f60e01b145b8061081b57506001600160e01b0319821663780e9d6360e01b145b8061083657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084b90612765565b80601f016020809104026020016040519081016040528092919081815260200182805461087790612765565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108db826000541190565b6109425760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b600061096982610f35565b9050806001600160a01b0316836001600160a01b031614156109d85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610939565b336001600160a01b03821614806109f457506109f4813361076b565b610a665760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610939565b610a71838383611735565b505050565b600b546001600160a01b03163314610aa05760405162461bcd60e51b81526004016109399061264f565b601155565b610a71838383611791565b600b546001600160a01b03163314610ada5760405162461bcd60e51b81526004016109399061264f565b6002600c541415610b2d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610939565b6002600c55610b3b81611a76565b506001600c55565b6000610b4e83610f47565b8210610ba75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610939565b600080549080805b83811015610c40576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c0257805192505b876001600160a01b0316836001600160a01b03161415610c375786841415610c305750935061083692505050565b6001909301925b50600101610baf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610939565b600b546001600160a01b03163314610cca5760405162461bcd60e51b81526004016109399061264f565b6002600c541415610d1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610939565b6002600c55604051600090339047908381818185875af1925050503d8060008114610d64576040519150601f19603f3d011682016040523d82523d6000602084013e610d69565b606091505b5050905080610b3b5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610939565b610a7183838360405180602001604052806000815250611452565b600080548210610e265760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610939565b5090565b600b546001600160a01b03163314610e545760405162461bcd60e51b81526004016109399061264f565b8051610e679060059060208401906121cc565b5050565b60048054610e7890612765565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea490612765565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b505050505081565b600b546001600160a01b03163314610f235760405162461bcd60e51b81526004016109399061264f565b601055565b60038054610e7890612765565b6000610f4082611c05565b5192915050565b60006001600160a01b038216610fb35760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610939565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b600b546001600160a01b031633146110025760405162461bcd60e51b81526004016109399061264f565b61100c6000611cdc565b565b600b546001600160a01b031633146110385760405162461bcd60e51b81526004016109399061264f565b6013805460ff19811660ff90911615179055565b600b546001600160a01b031633146110765760405162461bcd60e51b81526004016109399061264f565b6011546110849060016126d7565b8161108e60005490565b61109891906126d7565b106110d15760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b6044820152606401610939565b6110db3382611d2e565b50565b600b546001600160a01b031633146111085760405162461bcd60e51b81526004016109399061264f565b600d55565b604080518082019091526000808252602082015261083682611c05565b60606002805461084b90612765565b600d54601054600054101561114c575060005b3332146111b15760405162461bcd60e51b815260206004820152602d60248201527f4d696e74696e6720697320726571756972656420746f2062652066726f6d207360448201526c656e646572206164647265737360981b6064820152608401610939565b6111bb8183612703565b34146112145760405162461bcd60e51b815260206004820152602260248201527f506c656173652073656e642074686520726967687420636f737420616d6d6f756044820152611b9d60f21b6064820152608401610939565b6011546112229060016126d7565b8261122c60005490565b61123691906126d7565b106112775760405162461bcd60e51b8152602060048201526011602482015270139bc81b5bdc994812da591e881b19599d607a1b6044820152606401610939565b60135460ff166112c95760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e6720697320736f6f6e20636f6d696e672c206b696400000000006044820152606401610939565b600f54826112d633611626565b6112e091906126d7565b11156113265760405162461bcd60e51b815260206004820152601560248201527413585e080c881c195c881dd85b1b195d0b0812da59605a1b6044820152606401610939565b600e546113349060016126d7565b82106113765760405162461bcd60e51b815260206004820152601160248201527013585e080c881c195c8815160b0812da59607a1b6044820152606401610939565b610e673383611d2e565b6001600160a01b0382163314156113d95760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610939565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60058054610e7890612765565b61145d848484611791565b61146984848484611d48565b6114855760405162461bcd60e51b815260040161093990612684565b50505050565b600b546001600160a01b031633146114b55760405162461bcd60e51b81526004016109399061264f565b600e55565b60606114c7826000541190565b61152b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610939565b60065460ff166115c7576005805461154290612765565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90612765565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b50505050509050919050565b60006115d1611e56565b905060008151116115f1576040518060200160405280600081525061161f565b806115fb84611e65565b600460405160200161160f9392919061253b565b6040516020818303038152906040525b9392505050565b600061083682611f63565b600b546001600160a01b0316331461165b5760405162461bcd60e51b81526004016109399061264f565b6006805460ff1916911515919091179055565b600b546001600160a01b031633146116985760405162461bcd60e51b81526004016109399061264f565b600f55565b600b546001600160a01b031633146116c75760405162461bcd60e51b81526004016109399061264f565b6001600160a01b03811661172c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610939565b6110db81611cdc565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061179c82611c05565b80519091506000906001600160a01b0316336001600160a01b031614806117d35750336117c8846108ce565b6001600160a01b0316145b806117e5575081516117e5903361076b565b90508061184f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610939565b846001600160a01b031682600001516001600160a01b0316146118c35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610939565b6001600160a01b0384166119275760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610939565b6119376000848460000151611735565b6001600160a01b03858116600090815260086020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600790935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611a2c576119df816000541190565b15611a2c578251600082815260076020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611ac35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610939565b600054611b095760405162461bcd60e51b81526020600482015260146024820152731b9bc81d1bdad95b9cc81b5a5b9d1959081e595d60621b6044820152606401610939565b6012546000548110611b5d5760405162461bcd60e51b815260206004820152601c60248201527f616c6c206f776e657273686970732068617665206265656e20736574000000006044820152606401610939565b6000548282016000198101911015611b785750600054600019015b815b818111611bfa576000818152600760205260409020546001600160a01b0316611bf2576000611ba882611c05565b805160008481526007602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611b7a565b506001016012555050565b6040805180820190915260008082526020820152611c24826000541190565b611c835760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610939565b815b6000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cd2579392505050565b5060001901611c85565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e67828260405180602001604052806000815250612001565b60006001600160a01b0384163b15611e4a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8c9033908990889088906004016125ff565b602060405180830381600087803b158015611da657600080fd5b505af1925050508015611dd6575060408051601f3d908101601f19168201909252611dd391810190612490565b60015b611e30573d808015611e04576040519150601f19603f3d011682016040523d82523d6000602084013e611e09565b606091505b508051611e285760405162461bcd60e51b815260040161093990612684565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e4e565b5060015b949350505050565b60606003805461084b90612765565b606081611e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb35780611e9d816127a0565b9150611eac9050600a836126ef565b9150611e8d565b60008167ffffffffffffffff811115611ece57611ece612811565b6040519080825280601f01601f191660200182016040528015611ef8576020820181803683370190505b5090505b8415611e4e57611f0d600183612722565b9150611f1a600a866127bb565b611f259060306126d7565b60f81b818381518110611f3a57611f3a6127fb565b60200101906001600160f81b031916908160001a905350611f5c600a866126ef565b9450611efc565b60006001600160a01b038216611fd55760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610939565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b610a7183838360016000546001600160a01b03851661206c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610939565b836120ca5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610939565b6001600160a01b03851660008181526008602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526007909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156121c35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156121b75761219b6000888488611d48565b6121b75760405162461bcd60e51b815260040161093990612684565b60019182019101612148565b50600055611a6f565b8280546121d890612765565b90600052602060002090601f0160209004810192826121fa5760008555612240565b82601f1061221357805160ff1916838001178555612240565b82800160010185558215612240579182015b82811115612240578251825591602001919060010190612225565b50610e269291505b80821115610e265760008155600101612248565b600067ffffffffffffffff8084111561227757612277612811565b604051601f8501601f19908116603f0116810190828211818310171561229f5761229f612811565b816040528093508581528686860111156122b857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122e957600080fd5b919050565b803580151581146122e957600080fd5b60006020828403121561231057600080fd5b61161f826122d2565b6000806040838503121561232c57600080fd5b612335836122d2565b9150612343602084016122d2565b90509250929050565b60008060006060848603121561236157600080fd5b61236a846122d2565b9250612378602085016122d2565b9150604084013590509250925092565b6000806000806080858703121561239e57600080fd5b6123a7856122d2565b93506123b5602086016122d2565b925060408501359150606085013567ffffffffffffffff8111156123d857600080fd5b8501601f810187136123e957600080fd5b6123f88782356020840161225c565b91505092959194509250565b6000806040838503121561241757600080fd5b612420836122d2565b9150612343602084016122ee565b6000806040838503121561244157600080fd5b61244a836122d2565b946020939093013593505050565b60006020828403121561246a57600080fd5b61161f826122ee565b60006020828403121561248557600080fd5b813561161f81612827565b6000602082840312156124a257600080fd5b815161161f81612827565b6000602082840312156124bf57600080fd5b813567ffffffffffffffff8111156124d657600080fd5b8201601f810184136124e757600080fd5b611e4e8482356020840161225c565b60006020828403121561250857600080fd5b5035919050565b60008151808452612527816020860160208601612739565b601f01601f19169290920160200192915050565b60008451602061254e8285838a01612739565b8551918401916125618184848a01612739565b8554920191600090600181811c908083168061257e57607f831692505b85831081141561259c57634e487b7160e01b85526022600452602485fd5b8080156125b057600181146125c1576125ee565b60ff198516885283880195506125ee565b60008b81526020902060005b858110156125e65781548a8201529084019088016125cd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126329083018461250f565b9695505050505050565b60208152600061161f602083018461250f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156126ea576126ea6127cf565b500190565b6000826126fe576126fe6127e5565b500490565b600081600019048311821515161561271d5761271d6127cf565b500290565b600082821015612734576127346127cf565b500390565b60005b8381101561275457818101518382015260200161273c565b838111156114855750506000910152565b600181811c9082168061277957607f821691505b6020821081141561279a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127b4576127b46127cf565b5060010190565b6000826127ca576127ca6127e5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110db57600080fdfea2646970667358221220229d5930ce0ed4bffe53a5f0f8ec2a062fb414b565fdfbc884eec68d357141e764736f6c63430008070033
Deployed Bytecode Sourcemap
50613:4085:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37315:372;;;;;;;;;;-1:-1:-1;37315:372:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;37315:372:0;;;;;;;;39201:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40921:214::-;;;;;;;;;;-1:-1:-1;40921:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;40921:214:0;6304:203:1;40442:413:0;;;;;;;;;;-1:-1:-1;40442:413:0;;;;;:::i;:::-;;:::i;:::-;;35572:100;;;;;;;;;;-1:-1:-1;35625:7:0;35652:12;35572:100;;;20374:25:1;;;20362:2;20347:18;35572:100:0;20228:177:1;52570:98:0;;;;;;;;;;-1:-1:-1;52570:98:0;;;;;:::i;:::-;;:::i;41797:170::-;;;;;;;;;;-1:-1:-1;41797:170:0;;;;;:::i;:::-;;:::i;53193:118::-;;;;;;;;;;-1:-1:-1;53193:118:0;;;;;:::i;:::-;;:::i;36236:1007::-;;;;;;;;;;-1:-1:-1;36236:1007:0;;;;;:::i;:::-;;:::i;50829:45::-;;;;;;;;;;;;;;;;53011:176;;;;;;;;;;;;;:::i;42038:185::-;;;;;;;;;;-1:-1:-1;42038:185:0;;;;;:::i;:::-;;:::i;50782:42::-;;;;;;;;;;;;;;;;35749:187;;;;;;;;;;-1:-1:-1;35749:187:0;;;;;:::i;:::-;;:::i;52786:132::-;;;;;;;;;;-1:-1:-1;52786:132:0;;;;;:::i;:::-;;:::i;34744:46::-;;;;;;;;;;-1:-1:-1;34744:46:0;;;;;;;;34664:33;;;;;;;;;;;;;:::i;52250:98::-;;;;;;;;;;-1:-1:-1;52250:98:0;;;;;:::i;:::-;;:::i;34575:82::-;;;;;;;;;;;;;:::i;39010:124::-;;;;;;;;;;-1:-1:-1;39010:124:0;;;;;:::i;:::-;;:::i;37751:221::-;;;;;;;;;;-1:-1:-1;37751:221:0;;;;;:::i;:::-;;:::i;10487:103::-;;;;;;;;;;;;;:::i;51958:85::-;;;;;;;;;;;;;:::i;9836:87::-;;;;;;;;;;-1:-1:-1;9909:6:0;;-1:-1:-1;;;;;9909:6:0;9836:87;;51789:163;;;;;;;;;;-1:-1:-1;51789:163:0;;;;;:::i;:::-;;:::i;52162:82::-;;;;;;;;;;-1:-1:-1;52162:82:0;;;;;:::i;:::-;;:::i;53317:132::-;;;;;;;;;;-1:-1:-1;53317:132:0;;;;;:::i;:::-;;:::i;:::-;;;;20093:13:1;;-1:-1:-1;;;;;20089:39:1;20071:58;;20189:4;20177:17;;;20171:24;20197:18;20167:49;20145:20;;;20138:79;;;;20044:18;53317:132:0;19861:362:1;39370:104:0;;;;;;;;;;;;;:::i;50678:52::-;;;;;;;;;;;;;;;;51173:610;;;;;;:::i;:::-;;:::i;41207:288::-;;;;;;;;;;-1:-1:-1;41207:288:0;;;;;:::i;:::-;;:::i;34706:31::-;;;;;;;;;;;;;:::i;42294:355::-;;;;;;;;;;-1:-1:-1;42294:355:0;;;;;:::i;:::-;;:::i;52354:94::-;;;;;;;;;;-1:-1:-1;52354:94:0;;;;;:::i;:::-;;:::i;39544:494::-;;;;;;;;;;-1:-1:-1;39544:494:0;;;;;:::i;:::-;;:::i;50979:32::-;;;;;;;;;;-1:-1:-1;50979:32:0;;;;;;;;50879:45;;;;;;;;;;;;;;;;50929;;;;;;;;;;;;;;;;52049:107;;;;;;;;;;-1:-1:-1;52049:107:0;;;;;:::i;:::-;;:::i;52924:81::-;;;;;;;;;;-1:-1:-1;52924:81:0;;;;;:::i;:::-;;:::i;52454:110::-;;;;;;;;;;-1:-1:-1;52454:110:0;;;;;:::i;:::-;;:::i;41566:164::-;;;;;;;;;;-1:-1:-1;41566:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41687:25:0;;;41663:4;41687:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41566:164;10745:201;;;;;;;;;;-1:-1:-1;10745:201:0;;;;;:::i;:::-;;:::i;50735:42::-;;;;;;;;;;;;;;;;37315:372;37417:4;-1:-1:-1;;;;;;37454:40:0;;-1:-1:-1;;;37454:40:0;;:105;;-1:-1:-1;;;;;;;37511:48:0;;-1:-1:-1;;;37511:48:0;37454:105;:172;;;-1:-1:-1;;;;;;;37576:50:0;;-1:-1:-1;;;37576:50:0;37454:172;:225;;;-1:-1:-1;;;;;;;;;;26724:40:0;;;37643:36;37434:245;37315:372;-1:-1:-1;;37315:372:0:o;39201:100::-;39255:13;39288:5;39281:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39201:100;:::o;40921:214::-;40989:7;41017:16;41025:7;42961:4;42995:12;-1:-1:-1;42985:22:0;42904:111;41017:16;41009:74;;;;-1:-1:-1;;;41009:74:0;;19303:2:1;41009:74:0;;;19285:21:1;19342:2;19322:18;;;19315:30;19381:34;19361:18;;;19354:62;-1:-1:-1;;;19432:18:1;;;19425:43;19485:19;;41009:74:0;;;;;;;;;-1:-1:-1;41103:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41103:24:0;;40921:214::o;40442:413::-;40515:13;40531:24;40547:7;40531:15;:24::i;:::-;40515:40;;40580:5;-1:-1:-1;;;;;40574:11:0;:2;-1:-1:-1;;;;;40574:11:0;;;40566:58;;;;-1:-1:-1;;;40566:58:0;;15431:2:1;40566:58:0;;;15413:21:1;15470:2;15450:18;;;15443:30;15509:34;15489:18;;;15482:62;-1:-1:-1;;;15560:18:1;;;15553:32;15602:19;;40566:58:0;15229:398:1;40566:58:0;8640:10;-1:-1:-1;;;;;40659:21:0;;;;:62;;-1:-1:-1;40684:37:0;40701:5;8640:10;41566:164;:::i;40684:37::-;40637:169;;;;-1:-1:-1;;;40637:169:0;;11932:2:1;40637:169:0;;;11914:21:1;11971:2;11951:18;;;11944:30;12010:34;11990:18;;;11983:62;12081:27;12061:18;;;12054:55;12126:19;;40637:169:0;11730:421:1;40637:169:0;40819:28;40828:2;40832:7;40841:5;40819:8;:28::i;:::-;40504:351;40442:413;;:::o;52570:98::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52640:9:::1;:22:::0;52570:98::o;41797:170::-;41931:28;41941:4;41947:2;41951:7;41931:9;:28::i;53193:118::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;4810:1:::1;5408:7;;:19;;5400:63;;;::::0;-1:-1:-1;;;5400:63:0;;18171:2:1;5400:63:0::1;::::0;::::1;18153:21:1::0;18210:2;18190:18;;;18183:30;18249:33;18229:18;;;18222:61;18300:18;;5400:63:0::1;17969:355:1::0;5400:63:0::1;4810:1;5541:7;:18:::0;53277:28:::2;53296:8:::0;53277:18:::2;:28::i;:::-;-1:-1:-1::0;4766:1:0::1;5720:7;:22:::0;53193:118::o;36236:1007::-;36325:7;36361:16;36371:5;36361:9;:16::i;:::-;36353:5;:24;36345:71;;;;-1:-1:-1;;;36345:71:0;;7623:2:1;36345:71:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:32;7794:19;;36345:71:0;7421:398:1;36345:71:0;36427:22;35652:12;;;36427:22;;36690:466;36710:14;36706:1;:18;36690:466;;;36750:31;36784:14;;;:11;:14;;;;;;;;;36750:48;;;;;;;;;-1:-1:-1;;;;;36750:48:0;;;;;-1:-1:-1;;;36750:48:0;;;;;;;;;;;;36821:28;36817:111;;36894:14;;;-1:-1:-1;36817:111:0;36971:5;-1:-1:-1;;;;;36950:26:0;:17;-1:-1:-1;;;;;36950:26:0;;36946:195;;;37020:5;37005:11;:20;37001:85;;;-1:-1:-1;37061:1:0;-1:-1:-1;37054:8:0;;-1:-1:-1;;;37054:8:0;37001:85;37108:13;;;;;36946:195;-1:-1:-1;36726:3:0;;36690:466;;;-1:-1:-1;37179:56:0;;-1:-1:-1;;;37179:56:0;;17756:2:1;37179:56:0;;;17738:21:1;17795:2;17775:18;;;17768:30;17834:34;17814:18;;;17807:62;-1:-1:-1;;;17885:18:1;;;17878:44;17939:19;;37179:56:0;17554:410:1;53011:176:0;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;4810:1:::1;5408:7;;:19;;5400:63;;;::::0;-1:-1:-1;;;5400:63:0;;18171:2:1;5400:63:0::1;::::0;::::1;18153:21:1::0;18210:2;18190:18;;;18183:30;18249:33;18229:18;;;18222:61;18300:18;;5400:63:0::1;17969:355:1::0;5400:63:0::1;4810:1;5541:7;:18:::0;53089:49:::2;::::0;53071:12:::2;::::0;53089:10:::2;::::0;53112:21:::2;::::0;53071:12;53089:49;53071:12;53089:49;53112:21;53089:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53070:68;;;53153:7;53145:36;;;::::0;-1:-1:-1;;;53145:36:0;;15834:2:1;53145:36:0::2;::::0;::::2;15816:21:1::0;15873:2;15853:18;;;15846:30;-1:-1:-1;;;15892:18:1;;;15885:46;15948:18;;53145:36:0::2;15632:340:1::0;42038:185:0;42176:39;42193:4;42199:2;42203:7;42176:39;;;;;;;;;;;;:16;:39::i;35749:187::-;35816:7;35652:12;;35844:5;:21;35836:69;;;;-1:-1:-1;;;35836:69:0;;9607:2:1;35836:69:0;;;9589:21:1;9646:2;9626:18;;;9619:30;9685:34;9665:18;;;9658:62;-1:-1:-1;;;9736:18:1;;;9729:33;9779:19;;35836:69:0;9405:399:1;35836:69:0;-1:-1:-1;35923:5:0;35749:187::o;52786:132::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52874:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52786:132:::0;:::o;34664:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52250:98::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52320:9:::1;:22:::0;52250:98::o;34575:82::-;;;;;;;:::i;39010:124::-;39074:7;39101:20;39113:7;39101:11;:20::i;:::-;:25;;39010:124;-1:-1:-1;;39010:124:0:o;37751:221::-;37815:7;-1:-1:-1;;;;;37843:19:0;;37835:75;;;;-1:-1:-1;;;37835:75:0;;13061:2:1;37835:75:0;;;13043:21:1;13100:2;13080:18;;;13073:30;13139:34;13119:18;;;13112:62;-1:-1:-1;;;13190:18:1;;;13183:41;13241:19;;37835:75:0;12859:407:1;37835:75:0;-1:-1:-1;;;;;;37936:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37936:27:0;;37751:221::o;10487:103::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;10552:30:::1;10579:1;10552:18;:30::i;:::-;10487:103::o:0;51958:85::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52026:11:::1;::::0;;-1:-1:-1;;52011:26:0;::::1;52026:11;::::0;;::::1;52025:12;52011:26;::::0;;51958:85::o;51789:163::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;51885:9:::1;::::0;:13:::1;::::0;51897:1:::1;51885:13;:::i;:::-;51879:3;51863:13;35625:7:::0;35652:12;;35572:100;51863:13:::1;:19;;;;:::i;:::-;:35;51855:56;;;::::0;-1:-1:-1;;;51855:56:0;;11595:2:1;51855:56:0::1;::::0;::::1;11577:21:1::0;11634:1;11614:18;;;11607:29;-1:-1:-1;;;11652:18:1;;;11645:39;11701:18;;51855:56:0::1;11393:332:1::0;51855:56:0::1;51920:26;51930:10;51942:3;51920:9;:26::i;:::-;51789:163:::0;:::o;52162:82::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52224:5:::1;:14:::0;52162:82::o;53317:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;53423:20:0;53435:7;53423:11;:20::i;39370:104::-;39426:13;39459:7;39452:14;;;;;:::i;51173:610::-;51239:5;;51270:9;;35625:7;35652:12;51254:25;51251:58;;;-1:-1:-1;51297:4:0;51251:58;51323:10;51337:9;51323:23;51315:80;;;;-1:-1:-1;;;51315:80:0;;8026:2:1;51315:80:0;;;8008:21:1;8065:2;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;-1:-1:-1;;;8155:18:1;;;8148:43;8208:19;;51315:80:0;7824:409:1;51315:80:0;51423:10;51429:4;51423:3;:10;:::i;:::-;51410:9;:23;51402:69;;;;-1:-1:-1;;;51402:69:0;;10835:2:1;51402:69:0;;;10817:21:1;10874:2;10854:18;;;10847:30;10913:34;10893:18;;;10886:62;-1:-1:-1;;;10964:18:1;;;10957:32;11006:19;;51402:69:0;10633:398:1;51402:69:0;51508:9;;:13;;51520:1;51508:13;:::i;:::-;51502:3;51486:13;35625:7;35652:12;;35572:100;51486:13;:19;;;;:::i;:::-;:35;51478:64;;;;-1:-1:-1;;;51478:64:0;;19717:2:1;51478:64:0;;;19699:21:1;19756:2;19736:18;;;19729:30;-1:-1:-1;;;19775:18:1;;;19768:47;19832:18;;51478:64:0;19515:341:1;51478:64:0;51557:11;;;;51549:51;;;;-1:-1:-1;;;51549:51:0;;18947:2:1;51549:51:0;;;18929:21:1;18986:2;18966:18;;;18959:30;19025:29;19005:18;;;18998:57;19072:18;;51549:51:0;18745:351:1;51549:51:0;51649:12;;51642:3;51615:24;51628:10;51615:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;51607:79;;;;-1:-1:-1;;;51607:79:0;;12711:2:1;51607:79:0;;;12693:21:1;12750:2;12730:18;;;12723:30;-1:-1:-1;;;12769:18:1;;;12762:51;12830:18;;51607:79:0;12509:345:1;51607:79:0;51708:8;;:12;;51719:1;51708:12;:::i;:::-;51702:3;:18;51693:49;;;;-1:-1:-1;;;51693:49:0;;16599:2:1;51693:49:0;;;16581:21:1;16638:2;16618:18;;;16611:30;-1:-1:-1;;;16657:18:1;;;16650:47;16714:18;;51693:49:0;16397:341:1;51693:49:0;51751:26;51761:10;51773:3;51751:9;:26::i;41207:288::-;-1:-1:-1;;;;;41302:24:0;;8640:10;41302:24;;41294:63;;;;-1:-1:-1;;;41294:63:0;;14657:2:1;41294:63:0;;;14639:21:1;14696:2;14676:18;;;14669:30;14735:28;14715:18;;;14708:56;14781:18;;41294:63:0;14455:350:1;41294:63:0;8640:10;41370:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41370:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41370:53:0;;;;;;;;;;41439:48;;7145:41:1;;;41370:42:0;;8640:10;41439:48;;7118:18:1;41439:48:0;;;;;;;41207:288;;:::o;34706:31::-;;;;;;;:::i;42294:355::-;42453:28;42463:4;42469:2;42473:7;42453:9;:28::i;:::-;42514:48;42537:4;42543:2;42547:7;42556:5;42514:22;:48::i;:::-;42492:149;;;;-1:-1:-1;;;42492:149:0;;;;;;;:::i;:::-;42294:355;;;;:::o;52354:94::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52422:8:::1;:20:::0;52354:94::o;39544:494::-;39643:13;39684:17;39692:8;42961:4;42995:12;-1:-1:-1;42985:22:0;42904:111;39684:17;39668:98;;;;-1:-1:-1;;;39668:98:0;;14241:2:1;39668:98:0;;;14223:21:1;14280:2;14260:18;;;14253:30;14319:34;14299:18;;;14292:62;-1:-1:-1;;;14370:18:1;;;14363:45;14425:19;;39668:98:0;14039:411:1;39668:98:0;39779:8;;;;39775:64;;39814:17;39807:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39544:494;;;:::o;39775:64::-;39847:28;39878:10;:8;:10::i;:::-;39847:41;;39933:1;39908:14;39902:28;:32;:130;;;;;;;;;;;;;;;;;39970:14;39986:19;:8;:17;:19::i;:::-;40007:9;39953:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39902:130;39895:137;39544:494;-1:-1:-1;;;39544:494:0:o;52049:107::-;52107:7;52130:20;52144:5;52130:13;:20::i;52924:81::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52982:8:::1;:17:::0;;-1:-1:-1;;52982:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52924:81::o;52454:110::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;52530:12:::1;:28:::0;52454:110::o;10745:201::-;9909:6;;-1:-1:-1;;;;;9909:6:0;8640:10;10056:23;10048:68;;;;-1:-1:-1;;;10048:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10834:22:0;::::1;10826:73;;;::::0;-1:-1:-1;;;10826:73:0;;8440:2:1;10826:73:0::1;::::0;::::1;8422:21:1::0;8479:2;8459:18;;;8452:30;8518:34;8498:18;;;8491:62;-1:-1:-1;;;8569:18:1;;;8562:36;8615:19;;10826:73:0::1;8238:402:1::0;10826:73:0::1;10910:28;10929:8;10910:18;:28::i;47824:196::-:0;47939:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47939:29:0;-1:-1:-1;;;;;47939:29:0;;;;;;;;;47984:28;;47939:24;;47984:28;;;;;;;47824:196;;;:::o;45704:2002::-;45819:35;45857:20;45869:7;45857:11;:20::i;:::-;45932:18;;45819:58;;-1:-1:-1;45890:22:0;;-1:-1:-1;;;;;45916:34:0;8640:10;-1:-1:-1;;;;;45916:34:0;;:87;;;-1:-1:-1;8640:10:0;45967:20;45979:7;45967:11;:20::i;:::-;-1:-1:-1;;;;;45967:36:0;;45916:87;:154;;;-1:-1:-1;46037:18:0;;46020:50;;8640:10;41566:164;:::i;46020:50::-;45890:181;;46092:17;46084:80;;;;-1:-1:-1;;;46084:80:0;;15012:2:1;46084:80:0;;;14994:21:1;15051:2;15031:18;;;15024:30;15090:34;15070:18;;;15063:62;-1:-1:-1;;;15141:18:1;;;15134:48;15199:19;;46084:80:0;14810:414:1;46084:80:0;46207:4;-1:-1:-1;;;;;46185:26:0;:13;:18;;;-1:-1:-1;;;;;46185:26:0;;46177:77;;;;-1:-1:-1;;;46177:77:0;;13473:2:1;46177:77:0;;;13455:21:1;13512:2;13492:18;;;13485:30;13551:34;13531:18;;;13524:62;-1:-1:-1;;;13602:18:1;;;13595:36;13648:19;;46177:77:0;13271:402:1;46177:77:0;-1:-1:-1;;;;;46273:16:0;;46265:66;;;;-1:-1:-1;;;46265:66:0;;10011:2:1;46265:66:0;;;9993:21:1;10050:2;10030:18;;;10023:30;10089:34;10069:18;;;10062:62;-1:-1:-1;;;10140:18:1;;;10133:35;10185:19;;46265:66:0;9809:401:1;46265:66:0;46452:49;46469:1;46473:7;46482:13;:18;;;46452:8;:49::i;:::-;-1:-1:-1;;;;;46797:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46797:31:0;;;-1:-1:-1;;;;;46797:31:0;;;-1:-1:-1;;46797:31:0;;;;;;;46843:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46843:29:0;;;;;;;;;;;;;46889:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46934:61:0;;;;-1:-1:-1;;;46979:15:0;46934:61;;;;;;47269:11;;;47299:24;;;;;:29;47269:11;;47299:29;47295:295;;47367:20;47375:11;42961:4;42995:12;-1:-1:-1;42985:22:0;42904:111;47367:20;47363:212;;;47444:18;;;47412:24;;;:11;:24;;;;;;;;:50;;47527:28;;;;47485:70;;-1:-1:-1;;;47485:70:0;-1:-1:-1;;;;;;47485:70:0;;;-1:-1:-1;;;;;47412:50:0;;;47485:70;;;;;;;47363:212;46772:829;47637:7;47633:2;-1:-1:-1;;;;;47618:27:0;47627:4;-1:-1:-1;;;;;47618:27:0;;;;;;;;;;;47656:42;45808:1898;;45704:2002;;;:::o;53561:1130::-;53633:13;53625:50;;;;-1:-1:-1;;;53625:50:0;;12358:2:1;53625:50:0;;;12340:21:1;12397:2;12377:18;;;12370:30;12436:26;12416:18;;;12409:54;12480:18;;53625:50:0;12156:348:1;53625:50:0;53692:12;;53684:50;;;;-1:-1:-1;;;53684:50:0;;9258:2:1;53684:50:0;;;9240:21:1;9297:2;9277:18;;;9270:30;-1:-1:-1;;;9316:18:1;;;9309:50;9376:18;;53684:50:0;9056:344:1;53684:50:0;53779:24;;53743:33;53848:12;53820:40;;53812:81;;;;-1:-1:-1;;;53812:81:0;;11238:2:1;53812:81:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316;11296:18;;;11289:58;11364:18;;53812:81:0;11036:352:1;53812:81:0;54031:16;54183:12;54050:36;;;-1:-1:-1;;54050:40:0;;;-1:-1:-1;54164:91:0;;;-1:-1:-1;54225:12:0;;-1:-1:-1;;54225:16:0;54164:91;54286:25;54269:354;54318:8;54313:1;:13;54269:354;;54385:1;54354:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;54354:19:0;54350:260;;54410:31;54444:14;54456:1;54444:11;:14::i;:::-;54501;;;54479;;;:11;:14;;;;;;;;:36;;54568:24;;;;;54536:56;;-1:-1:-1;;;54536:56:0;-1:-1:-1;;;;;;54536:56:0;;;-1:-1:-1;;;;;54479:36:0;;;54536:56;;;;;;;-1:-1:-1;54350:260:0;54328:3;;54269:354;;;-1:-1:-1;54675:1:0;54664:12;54637:24;:39;-1:-1:-1;;53561:1130:0:o;38411:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38514:16:0;38522:7;42961:4;42995:12;-1:-1:-1;42985:22:0;42904:111;38514:16;38506:71;;;;-1:-1:-1;;;38506:71:0;;8847:2:1;38506:71:0;;;8829:21:1;8886:2;8866:18;;;8859:30;8925:34;8905:18;;;8898:62;-1:-1:-1;;;8976:18:1;;;8969:40;9026:19;;38506:71:0;8645:406:1;38506:71:0;38635:7;38615:245;38682:31;38716:17;;;:11;:17;;;;;;;;;38682:51;;;;;;;;;-1:-1:-1;;;;;38682:51:0;;;;;-1:-1:-1;;;38682:51:0;;;;;;;;;;;;38756:28;38752:93;;38816:9;38411:537;-1:-1:-1;;;38411:537:0:o;38752:93::-;-1:-1:-1;;;38655:6:0;38615:245;;11106:191;11199:6;;;-1:-1:-1;;;;;11216:17:0;;;-1:-1:-1;;;;;;11216:17:0;;;;;;;11249:40;;11199:6;;;11216:17;11199:6;;11249:40;;11180:16;;11249:40;11169:128;11106:191;:::o;43023:104::-;43092:27;43102:2;43106:8;43092:27;;;;;;;;;;;;:9;:27::i;48585:804::-;48740:4;-1:-1:-1;;;;;48761:13:0;;12832:19;:23;48757:625;;48797:72;;-1:-1:-1;;;48797:72:0;;-1:-1:-1;;;;;48797:36:0;;;;;:72;;8640:10;;48848:4;;48854:7;;48863:5;;48797:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48797:72:0;;;;;;;;-1:-1:-1;;48797:72:0;;;;;;;;;;;;:::i;:::-;;;48793:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49043:13:0;;49039:273;;49086:61;;-1:-1:-1;;;49086:61:0;;;;;;;:::i;49039:273::-;49262:6;49256:13;49247:6;49243:2;49239:15;49232:38;48793:534;-1:-1:-1;;;;;;48920:55:0;-1:-1:-1;;;48920:55:0;;-1:-1:-1;48913:62:0;;48757:625;-1:-1:-1;49366:4:0;48757:625;48585:804;;;;;;:::o;52675:104::-;52735:13;52764:9;52757:16;;;;;:::i;6122:723::-;6178:13;6399:10;6395:53;;-1:-1:-1;;6426:10:0;;;;;;;;;;;;-1:-1:-1;;;6426:10:0;;;;;6122:723::o;6395:53::-;6473:5;6458:12;6514:78;6521:9;;6514:78;;6547:8;;;;:::i;:::-;;-1:-1:-1;6570:10:0;;-1:-1:-1;6578:2:0;6570:10;;:::i;:::-;;;6514:78;;;6602:19;6634:6;6624:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6624:17:0;;6602:39;;6652:154;6659:10;;6652:154;;6686:11;6696:1;6686:11;;:::i;:::-;;-1:-1:-1;6755:10:0;6763:2;6755:5;:10;:::i;:::-;6742:24;;:2;:24;:::i;:::-;6729:39;;6712:6;6719;6712:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6712:56:0;;;;;;;;-1:-1:-1;6783:11:0;6792:2;6783:11;;:::i;:::-;;;6652:154;;37980:229;38041:7;-1:-1:-1;;;;;38069:19:0;;38061:81;;;;-1:-1:-1;;;38061:81:0;;10417:2:1;38061:81:0;;;10399:21:1;10456:2;10436:18;;;10429:30;10495:34;10475:18;;;10468:62;-1:-1:-1;;;10546:18:1;;;10539:47;10603:19;;38061:81:0;10215:413:1;38061:81:0;-1:-1:-1;;;;;;38168:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38168:32:0;;-1:-1:-1;;;;;38168:32:0;;37980:229::o;43490:163::-;43613:32;43619:2;43623:8;43633:5;43640:4;44051:20;44074:12;-1:-1:-1;;;;;44105:16:0;;44097:62;;;;-1:-1:-1;;;44097:62:0;;16945:2:1;44097:62:0;;;16927:21:1;16984:2;16964:18;;;16957:30;17023:34;17003:18;;;16996:62;-1:-1:-1;;;17074:18:1;;;17067:31;17115:19;;44097:62:0;16743:397:1;44097:62:0;44178:13;44170:66;;;;-1:-1:-1;;;44170:66:0;;17347:2:1;44170:66:0;;;17329:21:1;17386:2;17366:18;;;17359:30;17425:34;17405:18;;;17398:62;-1:-1:-1;;;17476:18:1;;;17469:38;17524:19;;44170:66:0;17145:404:1;44170:66:0;-1:-1:-1;;;;;44588:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44588:45:0;;-1:-1:-1;;;;;44588:45:0;;;;;;;;;;44648:50;;;;;;;;;;;;;;44715:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44765:66:0;;;;-1:-1:-1;;;44815:15:0;44765:66;;;;;;;44715:25;;44900:415;44920:8;44916:1;:12;44900:415;;;44959:38;;44984:12;;-1:-1:-1;;;;;44959:38:0;;;44976:1;;44959:38;;44976:1;;44959:38;45020:4;45016:249;;;45083:59;45114:1;45118:2;45122:12;45136:5;45083:22;:59::i;:::-;45049:196;;;;-1:-1:-1;;;45049:196:0;;;;;;;:::i;:::-;45285:14;;;;;44930:3;44900:415;;;-1:-1:-1;45331:12:0;:27;45382:60;42294:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;20483:1;20476:14;;;20520:4;20507:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;13678:356::-;13880:2;13862:21;;;13899:18;;;13892:30;13958:34;13953:2;13938:18;;13931:62;14025:2;14010:18;;13678:356::o;15977:415::-;16179:2;16161:21;;;16218:2;16198:18;;;16191:30;16257:34;16252:2;16237:18;;16230:62;-1:-1:-1;;;16323:2:1;16308:18;;16301:49;16382:3;16367:19;;15977:415::o;20536:128::-;20576:3;20607:1;20603:6;20600:1;20597:13;20594:39;;;20613:18;;:::i;:::-;-1:-1:-1;20649:9:1;;20536:128::o;20669:120::-;20709:1;20735;20725:35;;20740:18;;:::i;:::-;-1:-1:-1;20774:9:1;;20669:120::o;20794:168::-;20834:7;20900:1;20896;20892:6;20888:14;20885:1;20882:21;20877:1;20870:9;20863:17;20859:45;20856:71;;;20907:18;;:::i;:::-;-1:-1:-1;20947:9:1;;20794:168::o;20967:125::-;21007:4;21035:1;21032;21029:8;21026:34;;;21040:18;;:::i;:::-;-1:-1:-1;21077:9:1;;20967:125::o;21097:258::-;21169:1;21179:113;21193:6;21190:1;21187:13;21179:113;;;21269:11;;;21263:18;21250:11;;;21243:39;21215:2;21208:10;21179:113;;;21310:6;21307:1;21304:13;21301:48;;;-1:-1:-1;;21345:1:1;21327:16;;21320:27;21097:258::o;21360:380::-;21439:1;21435:12;;;;21482;;;21503:61;;21557:4;21549:6;21545:17;21535:27;;21503:61;21610:2;21602:6;21599:14;21579:18;21576:38;21573:161;;;21656:10;21651:3;21647:20;21644:1;21637:31;21691:4;21688:1;21681:15;21719:4;21716:1;21709:15;21573:161;;21360:380;;;:::o;21745:135::-;21784:3;-1:-1:-1;;21805:17:1;;21802:43;;;21825:18;;:::i;:::-;-1:-1:-1;21872:1:1;21861:13;;21745:135::o;21885:112::-;21917:1;21943;21933:35;;21948:18;;:::i;:::-;-1:-1:-1;21982:9:1;;21885:112::o;22002:127::-;22063:10;22058:3;22054:20;22051:1;22044:31;22094:4;22091:1;22084:15;22118:4;22115:1;22108:15;22134:127;22195:10;22190:3;22186:20;22183:1;22176:31;22226:4;22223:1;22216:15;22250:4;22247:1;22240:15;22266:127;22327:10;22322:3;22318:20;22315:1;22308:31;22358:4;22355:1;22348:15;22382:4;22379:1;22372:15;22398:127;22459:10;22454:3;22450:20;22447:1;22440:31;22490:4;22487:1;22480:15;22514:4;22511:1;22504:15;22530:131;-1:-1:-1;;;;;;22604:32:1;;22594:43;;22584:71;;22651:1;22648;22641:12
Swarm Source
ipfs://229d5930ce0ed4bffe53a5f0f8ec2a062fb414b565fdfbc884eec68d357141e7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.