ERC-721
Overview
Max Total Supply
175 SINN
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SINNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
tanasinn
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-15 */ // 「Don't think. Feel and you'll be tanasinn」 // ___ // m n ∩ /∵∴∵∴\ ∩ n m // ⊂二⌒_) /∵∴∵∴∵∴\ (_⌒二⊃ // \∵∴\ /∵:(・)∴∴.(・)∵ | /∴∵/ // \∵∴\ |∵∴/ ○\∵∴| /∴∵/ // \∵∴\|∵ /三 | 三ヽ∵|/∴∵/ // \∵∴|∵.| _|_ |∵|∴∵/ // \∵\ | === |/∵/ // \∵ \___/∵/ // _,..-‐''''""~´ ̄ ̄ ̄ ̄~"'''‐-,.、 // ,.-‐''" ──‐‐''",.、.:.:.:.:.:.:.:\、.:.:.:.:.:.:.:~"'‐-、 // ,.‐''"''''""~´::::::::::::::::::::::\\:::::::::::::::"'''''\"''--、.:.:.゙''‐.、 // ,.‐'":::::::::::::::::::::::::::::::::::::::::::::::::゙''‐、''l:::::__,....-‐'''" ''.:.:.:::゙'ヽ、 // ,.‐'"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::~"‐--‐‐, ''.:.:.:. \ // /:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::/" .:.:.:. ゙‐、 // ,."::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::/ .:゙‐、 // ,.".:.:.:.:.:.:.:.:.:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::/~ :`、 // ," .....:.:.:.:.:.:.:.:.:.:.:.::::::::::::::::::::::::::::::::::::::::::::::::::/´ tanasinn ゙、 // ," ......:.:.:.:.:.:.:.:.:.::::::::::::::::::::::::::::::::::::::::::::::::::::ヽ, // SPDX-License-Identifier: MIT // 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; // 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"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public 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 tanasinn is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint public price = 0.007 ether; uint public maxPerTx = 5; uint public totalFree = 0; uint public maxSupply = 2634; uint256 public maxFreePerWallet = 0; bool public mintEnabled; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("tanasinn", "SINN"){ } function mint(uint256 amount) external payable { uint cost = price; bool isFree = ((totalSupply() + amount < totalFree + 1) && (_mintedFreeAmount[msg.sender] + amount <= maxFreePerWallet)); if(isFree) { cost = 0; } require(mintEnabled, "Minting is not live yet, hold on"); require(totalSupply() + amount < maxSupply + 1,"No more"); require(msg.value == amount * cost,"Please send the exact amount"); require(amount < maxPerTx + 1, "Max per TX reached"); if (isFree) { _mintedFreeAmount[msg.sender] += amount; } _safeMint(msg.sender, amount); } function TeamMint(uint256 amount) external onlyOwner { require(totalSupply() + amount < maxSupply + 1,"too many!"); _safeMint(msg.sender, amount); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } 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 _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"amount","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":[{"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":"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":[{"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526618de76816d8000600a556005600b556000600c55610a4a600d556000600e553480156200003157600080fd5b50604051806040016040528060088152602001673a30b730b9b4b73760c11b8152506040518060400160405280600481526020016329a4a72760e11b8152508160019081620000819190620001b3565b506002620000908282620001b3565b505050620000ad620000a7620000b860201b60201c565b620000bc565b60016008556200027f565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013957607f821691505b6020821081036200015a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ae57600081815260208120601f850160051c81016020861015620001895750805b601f850160051c820191505b81811015620001aa5782815560010162000195565b5050505b505050565b81516001600160401b03811115620001cf57620001cf6200010e565b620001e781620001e0845462000124565b8462000160565b602080601f8311600181146200021f5760008415620002065750858301515b600019600386901b1c1916600185901b178555620001aa565b600085815260208120601f198616915b8281101562000250578886015182559484019460019091019084016200022f565b50858210156200026f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6122b3806200028f6000396000f3fe6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461058f578063dc33e681146105a5578063e985e9c5146105c5578063f2fde38b1461060e578063f968adbe1461062e57600080fd5b8063b88d4fde14610515578063c6f6f21614610535578063c87b56dd14610555578063d12397301461057557600080fd5b806395d89b41116100e757806395d89b41146104a1578063a035b1fe146104b6578063a0712d68146104cc578063a22cb465146104df578063a7027357146104ff57600080fd5b80637d55094d1461042e5780637e0c7fc5146104435780638da5cb5b1461046357806391b7f5ed1461048157600080fd5b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146103a45780636352211e146103c45780636c0360eb146103e457806370a08231146103f9578063715018a61461041957600080fd5b80633ccfd60b1461032f57806342842e0e146103445780634f6ccce71461036457806355f804b31461038457600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f9578063333e44e61461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611c5b565b610644565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b1565b6040516102359190611cc8565b34801561026c57600080fd5b5061028061027b366004611cdb565b610743565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611d10565b6107d3565b005b3480156102c657600080fd5b506000545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611d3a565b6108ea565b34801561030557600080fd5b506102cb610314366004611d10565b6108f5565b34801561032557600080fd5b506102cb600c5481565b34801561033b57600080fd5b506102b8610a50565b34801561035057600080fd5b506102b861035f366004611d3a565b610b64565b34801561037057600080fd5b506102cb61037f366004611cdb565b610b7f565b34801561039057600080fd5b506102b861039f366004611d76565b610be1565b3480156103b057600080fd5b506102b86103bf366004611cdb565b610c18565b3480156103d057600080fd5b506102806103df366004611cdb565b610c47565b3480156103f057600080fd5b50610253610c59565b34801561040557600080fd5b506102cb610414366004611de8565b610ce7565b34801561042557600080fd5b506102b8610d78565b34801561043a57600080fd5b506102b8610dae565b34801561044f57600080fd5b506102b861045e366004611cdb565b610dec565b34801561046f57600080fd5b506007546001600160a01b0316610280565b34801561048d57600080fd5b506102b861049c366004611cdb565b610e7e565b3480156104ad57600080fd5b50610253610ead565b3480156104c257600080fd5b506102cb600a5481565b6102b86104da366004611cdb565b610ebc565b3480156104eb57600080fd5b506102b86104fa366004611e03565b6110a3565b34801561050b57600080fd5b506102cb600e5481565b34801561052157600080fd5b506102b8610530366004611e55565b611167565b34801561054157600080fd5b506102b8610550366004611cdb565b6111a0565b34801561056157600080fd5b50610253610570366004611cdb565b6111cf565b34801561058157600080fd5b50600f546102299060ff1681565b34801561059b57600080fd5b506102cb600d5481565b3480156105b157600080fd5b506102cb6105c0366004611de8565b61129c565b3480156105d157600080fd5b506102296105e0366004611f31565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102b8610629366004611de8565b6112a7565b34801561063a57600080fd5b506102cb600b5481565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506001600160e01b0319821663780e9d6360e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106c090611f64565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611f64565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000610750826000541190565b6107b75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107de82610c47565b9050806001600160a01b0316836001600160a01b03160361084c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ae565b336001600160a01b0382161480610868575061086881336105e0565b6108da5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ae565b6108e583838361133f565b505050565b6108e583838361139b565b600061090083610ce7565b82106109595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ae565b600080549080805b838110156109f0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109b457805192505b876001600160a01b0316836001600160a01b0316036109e7578684036109e0575093506106ab92505050565b6001909301925b50600101610961565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ae565b6007546001600160a01b03163314610a7a5760405162461bcd60e51b81526004016107ae90611f9e565b600260085403610acc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ae565b6002600855604051600090339047908381818185875af1925050503d8060008114610b13576040519150601f19603f3d011682016040523d82523d6000602084013e610b18565b606091505b5050905080610b5c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ae565b506001600855565b6108e583838360405180602001604052806000815250611167565b600080548210610bdd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ae565b5090565b6007546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016107ae90611f9e565b60096108e5828483612021565b6007546001600160a01b03163314610c425760405162461bcd60e51b81526004016107ae90611f9e565b600c55565b6000610c5282611680565b5192915050565b60098054610c6690611f64565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290611f64565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b505050505081565b60006001600160a01b038216610d535760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ae565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da25760405162461bcd60e51b81526004016107ae90611f9e565b610dac6000611757565b565b6007546001600160a01b03163314610dd85760405162461bcd60e51b81526004016107ae90611f9e565b600f805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e165760405162461bcd60e51b81526004016107ae90611f9e565b600d54610e249060016120f7565b81610e2e60005490565b610e3891906120f7565b10610e715760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016107ae565b610e7b33826117a9565b50565b6007546001600160a01b03163314610ea85760405162461bcd60e51b81526004016107ae90611f9e565b600a55565b6060600280546106c090611f64565b600a54600c54600090610ed09060016120f7565b83610eda60005490565b610ee491906120f7565b108015610f0d5750600e5433600090815260106020526040902054610f0a9085906120f7565b11155b90508015610f1a57600091505b600f5460ff16610f6c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60448201526064016107ae565b600d54610f7a9060016120f7565b83610f8460005490565b610f8e91906120f7565b10610fc55760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107ae565b610fcf828461210a565b341461101d5760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016107ae565b600b5461102b9060016120f7565b831061106e5760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b60448201526064016107ae565b80156110995733600090815260106020526040812080548592906110939084906120f7565b90915550505b6108e533846117a9565b336001600160a01b038316036110fb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ae565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117284848461139b565b61117e848484846117c7565b61119a5760405162461bcd60e51b81526004016107ae90612121565b50505050565b6007546001600160a01b031633146111ca5760405162461bcd60e51b81526004016107ae90611f9e565b600b55565b60606111dc826000541190565b6112405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ae565b600061124a6118c9565b9050805160000361126a5760405180602001604052806000815250611295565b80611274846118d8565b604051602001611285929190612174565b6040516020818303038152906040525b9392505050565b60006106ab826119d9565b6007546001600160a01b031633146112d15760405162461bcd60e51b81526004016107ae90611f9e565b6001600160a01b0381166113365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610e7b81611757565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113a682611680565b80519091506000906001600160a01b0316336001600160a01b031614806113dd5750336113d284610743565b6001600160a01b0316145b806113ef575081516113ef90336105e0565b9050806114595760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ae565b846001600160a01b031682600001516001600160a01b0316146114cd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ae565b6001600160a01b0384166115315760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ae565b611541600084846000015161133f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611636576115e9816000541190565b15611636578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261169f826000541190565b6116fe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ae565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561174d579392505050565b5060001901611700565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117c3828260405180602001604052806000815250611a77565b5050565b60006001600160a01b0384163b156118bd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061180b9033908990889088906004016121a3565b6020604051808303816000875af1925050508015611846575060408051601f3d908101601f19168201909252611843918101906121e0565b60015b6118a3573d808015611874576040519150601f19603f3d011682016040523d82523d6000602084013e611879565b606091505b50805160000361189b5760405162461bcd60e51b81526004016107ae90612121565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c1565b5060015b949350505050565b6060600980546106c090611f64565b6060816000036118ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119295780611913816121fd565b91506119229050600a8361222c565b9150611903565b60008167ffffffffffffffff81111561194457611944611e3f565b6040519080825280601f01601f19166020018201604052801561196e576020820181803683370190505b5090505b84156118c157611983600183612240565b9150611990600a86612253565b61199b9060306120f7565b60f81b8183815181106119b0576119b0612267565b60200101906001600160f81b031916908160001a9053506119d2600a8661222c565b9450611972565b60006001600160a01b038216611a4b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ae565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108e583838360016000546001600160a01b038516611ae25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ae565b83600003611b435760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107ae565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c3c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c3057611c1460008884886117c7565b611c305760405162461bcd60e51b81526004016107ae90612121565b60019182019101611bc1565b50600055611679565b6001600160e01b031981168114610e7b57600080fd5b600060208284031215611c6d57600080fd5b813561129581611c45565b60005b83811015611c93578181015183820152602001611c7b565b50506000910152565b60008151808452611cb4816020860160208601611c78565b601f01601f19169290920160200192915050565b6020815260006112956020830184611c9c565b600060208284031215611ced57600080fd5b5035919050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b60008060208385031215611d8957600080fd5b823567ffffffffffffffff80821115611da157600080fd5b818501915085601f830112611db557600080fd5b813581811115611dc457600080fd5b866020828501011115611dd657600080fd5b60209290920196919550909350505050565b600060208284031215611dfa57600080fd5b61129582611cf4565b60008060408385031215611e1657600080fd5b611e1f83611cf4565b915060208301358015158114611e3457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e6b57600080fd5b611e7485611cf4565b9350611e8260208601611cf4565b925060408501359150606085013567ffffffffffffffff80821115611ea657600080fd5b818701915087601f830112611eba57600080fd5b813581811115611ecc57611ecc611e3f565b604051601f8201601f19908116603f01168101908382118183101715611ef457611ef4611e3f565b816040528281528a6020848701011115611f0d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4457600080fd5b611f4d83611cf4565b9150611f5b60208401611cf4565b90509250929050565b600181811c90821680611f7857607f821691505b602082108103611f9857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108e557600081815260208120601f850160051c81016020861015611ffa5750805b601f850160051c820191505b8181101561201957828155600101612006565b505050505050565b67ffffffffffffffff83111561203957612039611e3f565b61204d836120478354611f64565b83611fd3565b6000601f84116001811461208157600085156120695750838201355b600019600387901b1c1916600186901b178355611679565b600083815260209020601f19861690835b828110156120b25786850135825560209485019460019092019101612092565b50868210156120cf5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ab576106ab6120e1565b80820281158282048414176106ab576106ab6120e1565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612186818460208801611c78565b83519083019061219a818360208801611c78565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d690830184611c9c565b9695505050505050565b6000602082840312156121f257600080fd5b815161129581611c45565b60006001820161220f5761220f6120e1565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261223b5761223b612216565b500490565b818103818111156106ab576106ab6120e1565b60008261226257612262612216565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201d9c33b0aea01e41cc313437803db2c1a1f69b05557e98179a2ae4f5b76a3b6764736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102045760003560e01c80637d55094d11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461058f578063dc33e681146105a5578063e985e9c5146105c5578063f2fde38b1461060e578063f968adbe1461062e57600080fd5b8063b88d4fde14610515578063c6f6f21614610535578063c87b56dd14610555578063d12397301461057557600080fd5b806395d89b41116100e757806395d89b41146104a1578063a035b1fe146104b6578063a0712d68146104cc578063a22cb465146104df578063a7027357146104ff57600080fd5b80637d55094d1461042e5780637e0c7fc5146104435780638da5cb5b1461046357806391b7f5ed1461048157600080fd5b80633ccfd60b1161019b578063563aaf111161016a578063563aaf11146103a45780636352211e146103c45780636c0360eb146103e457806370a08231146103f9578063715018a61461041957600080fd5b80633ccfd60b1461032f57806342842e0e146103445780634f6ccce71461036457806355f804b31461038457600080fd5b806318160ddd116101d757806318160ddd146102ba57806323b872dd146102d95780632f745c59146102f9578063333e44e61461031957600080fd5b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b314610298575b600080fd5b34801561021557600080fd5b50610229610224366004611c5b565b610644565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b506102536106b1565b6040516102359190611cc8565b34801561026c57600080fd5b5061028061027b366004611cdb565b610743565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004611d10565b6107d3565b005b3480156102c657600080fd5b506000545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f4366004611d3a565b6108ea565b34801561030557600080fd5b506102cb610314366004611d10565b6108f5565b34801561032557600080fd5b506102cb600c5481565b34801561033b57600080fd5b506102b8610a50565b34801561035057600080fd5b506102b861035f366004611d3a565b610b64565b34801561037057600080fd5b506102cb61037f366004611cdb565b610b7f565b34801561039057600080fd5b506102b861039f366004611d76565b610be1565b3480156103b057600080fd5b506102b86103bf366004611cdb565b610c18565b3480156103d057600080fd5b506102806103df366004611cdb565b610c47565b3480156103f057600080fd5b50610253610c59565b34801561040557600080fd5b506102cb610414366004611de8565b610ce7565b34801561042557600080fd5b506102b8610d78565b34801561043a57600080fd5b506102b8610dae565b34801561044f57600080fd5b506102b861045e366004611cdb565b610dec565b34801561046f57600080fd5b506007546001600160a01b0316610280565b34801561048d57600080fd5b506102b861049c366004611cdb565b610e7e565b3480156104ad57600080fd5b50610253610ead565b3480156104c257600080fd5b506102cb600a5481565b6102b86104da366004611cdb565b610ebc565b3480156104eb57600080fd5b506102b86104fa366004611e03565b6110a3565b34801561050b57600080fd5b506102cb600e5481565b34801561052157600080fd5b506102b8610530366004611e55565b611167565b34801561054157600080fd5b506102b8610550366004611cdb565b6111a0565b34801561056157600080fd5b50610253610570366004611cdb565b6111cf565b34801561058157600080fd5b50600f546102299060ff1681565b34801561059b57600080fd5b506102cb600d5481565b3480156105b157600080fd5b506102cb6105c0366004611de8565b61129c565b3480156105d157600080fd5b506102296105e0366004611f31565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561061a57600080fd5b506102b8610629366004611de8565b6112a7565b34801561063a57600080fd5b506102cb600b5481565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506001600160e01b0319821663780e9d6360e01b145b806106ab57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106c090611f64565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90611f64565b80156107395780601f1061070e57610100808354040283529160200191610739565b820191906000526020600020905b81548152906001019060200180831161071c57829003601f168201915b5050505050905090565b6000610750826000541190565b6107b75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107de82610c47565b9050806001600160a01b0316836001600160a01b03160361084c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107ae565b336001600160a01b0382161480610868575061086881336105e0565b6108da5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107ae565b6108e583838361133f565b505050565b6108e583838361139b565b600061090083610ce7565b82106109595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107ae565b600080549080805b838110156109f0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109b457805192505b876001600160a01b0316836001600160a01b0316036109e7578684036109e0575093506106ab92505050565b6001909301925b50600101610961565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107ae565b6007546001600160a01b03163314610a7a5760405162461bcd60e51b81526004016107ae90611f9e565b600260085403610acc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107ae565b6002600855604051600090339047908381818185875af1925050503d8060008114610b13576040519150601f19603f3d011682016040523d82523d6000602084013e610b18565b606091505b5050905080610b5c5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016107ae565b506001600855565b6108e583838360405180602001604052806000815250611167565b600080548210610bdd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107ae565b5090565b6007546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016107ae90611f9e565b60096108e5828483612021565b6007546001600160a01b03163314610c425760405162461bcd60e51b81526004016107ae90611f9e565b600c55565b6000610c5282611680565b5192915050565b60098054610c6690611f64565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9290611f64565b8015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b505050505081565b60006001600160a01b038216610d535760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107ae565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610da25760405162461bcd60e51b81526004016107ae90611f9e565b610dac6000611757565b565b6007546001600160a01b03163314610dd85760405162461bcd60e51b81526004016107ae90611f9e565b600f805460ff19811660ff90911615179055565b6007546001600160a01b03163314610e165760405162461bcd60e51b81526004016107ae90611f9e565b600d54610e249060016120f7565b81610e2e60005490565b610e3891906120f7565b10610e715760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016107ae565b610e7b33826117a9565b50565b6007546001600160a01b03163314610ea85760405162461bcd60e51b81526004016107ae90611f9e565b600a55565b6060600280546106c090611f64565b600a54600c54600090610ed09060016120f7565b83610eda60005490565b610ee491906120f7565b108015610f0d5750600e5433600090815260106020526040902054610f0a9085906120f7565b11155b90508015610f1a57600091505b600f5460ff16610f6c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60448201526064016107ae565b600d54610f7a9060016120f7565b83610f8460005490565b610f8e91906120f7565b10610fc55760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016107ae565b610fcf828461210a565b341461101d5760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016107ae565b600b5461102b9060016120f7565b831061106e5760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b60448201526064016107ae565b80156110995733600090815260106020526040812080548592906110939084906120f7565b90915550505b6108e533846117a9565b336001600160a01b038316036110fb5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107ae565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61117284848461139b565b61117e848484846117c7565b61119a5760405162461bcd60e51b81526004016107ae90612121565b50505050565b6007546001600160a01b031633146111ca5760405162461bcd60e51b81526004016107ae90611f9e565b600b55565b60606111dc826000541190565b6112405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ae565b600061124a6118c9565b9050805160000361126a5760405180602001604052806000815250611295565b80611274846118d8565b604051602001611285929190612174565b6040516020818303038152906040525b9392505050565b60006106ab826119d9565b6007546001600160a01b031633146112d15760405162461bcd60e51b81526004016107ae90611f9e565b6001600160a01b0381166113365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ae565b610e7b81611757565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006113a682611680565b80519091506000906001600160a01b0316336001600160a01b031614806113dd5750336113d284610743565b6001600160a01b0316145b806113ef575081516113ef90336105e0565b9050806114595760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107ae565b846001600160a01b031682600001516001600160a01b0316146114cd5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107ae565b6001600160a01b0384166115315760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107ae565b611541600084846000015161133f565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611636576115e9816000541190565b15611636578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261169f826000541190565b6116fe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107ae565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561174d579392505050565b5060001901611700565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117c3828260405180602001604052806000815250611a77565b5050565b60006001600160a01b0384163b156118bd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061180b9033908990889088906004016121a3565b6020604051808303816000875af1925050508015611846575060408051601f3d908101601f19168201909252611843918101906121e0565b60015b6118a3573d808015611874576040519150601f19603f3d011682016040523d82523d6000602084013e611879565b606091505b50805160000361189b5760405162461bcd60e51b81526004016107ae90612121565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118c1565b5060015b949350505050565b6060600980546106c090611f64565b6060816000036118ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119295780611913816121fd565b91506119229050600a8361222c565b9150611903565b60008167ffffffffffffffff81111561194457611944611e3f565b6040519080825280601f01601f19166020018201604052801561196e576020820181803683370190505b5090505b84156118c157611983600183612240565b9150611990600a86612253565b61199b9060306120f7565b60f81b8183815181106119b0576119b0612267565b60200101906001600160f81b031916908160001a9053506119d2600a8661222c565b9450611972565b60006001600160a01b038216611a4b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016107ae565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108e583838360016000546001600160a01b038516611ae25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107ae565b83600003611b435760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107ae565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c3c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c3057611c1460008884886117c7565b611c305760405162461bcd60e51b81526004016107ae90612121565b60019182019101611bc1565b50600055611679565b6001600160e01b031981168114610e7b57600080fd5b600060208284031215611c6d57600080fd5b813561129581611c45565b60005b83811015611c93578181015183820152602001611c7b565b50506000910152565b60008151808452611cb4816020860160208601611c78565b601f01601f19169290920160200192915050565b6020815260006112956020830184611c9c565b600060208284031215611ced57600080fd5b5035919050565b80356001600160a01b0381168114611d0b57600080fd5b919050565b60008060408385031215611d2357600080fd5b611d2c83611cf4565b946020939093013593505050565b600080600060608486031215611d4f57600080fd5b611d5884611cf4565b9250611d6660208501611cf4565b9150604084013590509250925092565b60008060208385031215611d8957600080fd5b823567ffffffffffffffff80821115611da157600080fd5b818501915085601f830112611db557600080fd5b813581811115611dc457600080fd5b866020828501011115611dd657600080fd5b60209290920196919550909350505050565b600060208284031215611dfa57600080fd5b61129582611cf4565b60008060408385031215611e1657600080fd5b611e1f83611cf4565b915060208301358015158114611e3457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611e6b57600080fd5b611e7485611cf4565b9350611e8260208601611cf4565b925060408501359150606085013567ffffffffffffffff80821115611ea657600080fd5b818701915087601f830112611eba57600080fd5b813581811115611ecc57611ecc611e3f565b604051601f8201601f19908116603f01168101908382118183101715611ef457611ef4611e3f565b816040528281528a6020848701011115611f0d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f4457600080fd5b611f4d83611cf4565b9150611f5b60208401611cf4565b90509250929050565b600181811c90821680611f7857607f821691505b602082108103611f9857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156108e557600081815260208120601f850160051c81016020861015611ffa5750805b601f850160051c820191505b8181101561201957828155600101612006565b505050505050565b67ffffffffffffffff83111561203957612039611e3f565b61204d836120478354611f64565b83611fd3565b6000601f84116001811461208157600085156120695750838201355b600019600387901b1c1916600186901b178355611679565b600083815260209020601f19861690835b828110156120b25786850135825560209485019460019092019101612092565b50868210156120cf5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ab576106ab6120e1565b80820281158282048414176106ab576106ab6120e1565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612186818460208801611c78565b83519083019061219a818360208801611c78565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d690830184611c9c565b9695505050505050565b6000602082840312156121f257600080fd5b815161129581611c45565b60006001820161220f5761220f6120e1565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261223b5761223b612216565b500490565b818103818111156106ab576106ab6120e1565b60008261226257612262612216565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212201d9c33b0aea01e41cc313437803db2c1a1f69b05557e98179a2ae4f5b76a3b6764736f6c63430008120033
Deployed Bytecode Sourcemap
52603:2215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39463:372;;;;;;;;;;-1:-1:-1;39463:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39463:372:0;;;;;;;;41349:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42911:214::-;;;;;;;;;;-1:-1:-1;42911:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;42911:214:0;1533:203:1;42432:413:0;;;;;;;;;;-1:-1:-1;42432:413:0;;;;;:::i;:::-;;:::i;:::-;;37720:100;;;;;;;;;;-1:-1:-1;37773:7:0;37800:12;37720:100;;;2324:25:1;;;2312:2;2297:18;37720:100:0;2178:177:1;43787:170:0;;;;;;;;;;-1:-1:-1;43787:170:0;;;;;:::i;:::-;;:::i;38384:1007::-;;;;;;;;;;-1:-1:-1;38384:1007:0;;;;;:::i;:::-;;:::i;52802:42::-;;;;;;;;;;;;;;;;54637:176;;;;;;;;;;;;;:::i;44028:185::-;;;;;;;;;;-1:-1:-1;44028:185:0;;;;;:::i;:::-;;:::i;37897:187::-;;;;;;;;;;-1:-1:-1;37897:187:0;;;;;:::i;:::-;;:::i;54135:96::-;;;;;;;;;;-1:-1:-1;54135:96:0;;;;;:::i;:::-;;:::i;54325:98::-;;;;;;;;;;-1:-1:-1;54325:98:0;;;;;:::i;:::-;;:::i;41158:124::-;;;;;;;;;;-1:-1:-1;41158:124:0;;;;;:::i;:::-;;:::i;52665:28::-;;;;;;;;;;;;;:::i;39899:221::-;;;;;;;;;;-1:-1:-1;39899:221:0;;;;;:::i;:::-;;:::i;12855:103::-;;;;;;;;;;;;;:::i;53931:85::-;;;;;;;;;;;;;:::i;53759:166::-;;;;;;;;;;-1:-1:-1;53759:166:0;;;;;:::i;:::-;;:::i;12204:87::-;;;;;;;;;;-1:-1:-1;12277:6:0;;-1:-1:-1;;;;;12277:6:0;12204:87;;54237:82;;;;;;;;;;-1:-1:-1;54237:82:0;;;;;:::i;:::-;;:::i;41518:104::-;;;;;;;;;;;;;:::i;52698:52::-;;;;;;;;;;;;;;;;53096:657;;;;;;:::i;:::-;;:::i;43197:288::-;;;;;;;;;;-1:-1:-1;43197:288:0;;;;;:::i;:::-;;:::i;52899:42::-;;;;;;;;;;;;;;;;44284:355;;;;;;;;;;-1:-1:-1;44284:355:0;;;;;:::i;:::-;;:::i;54429:94::-;;;;;;;;;;-1:-1:-1;54429:94:0;;;;;:::i;:::-;;:::i;41693:335::-;;;;;;;;;;-1:-1:-1;41693:335:0;;;;;:::i;:::-;;:::i;52946:32::-;;;;;;;;;;-1:-1:-1;52946:32:0;;;;;;;;52849:45;;;;;;;;;;;;;;;;54022:107;;;;;;;;;;-1:-1:-1;54022:107:0;;;;;:::i;:::-;;:::i;43556:164::-;;;;;;;;;;-1:-1:-1;43556:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43677:25:0;;;43653:4;43677:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43556:164;13113:201;;;;;;;;;;-1:-1:-1;13113:201:0;;;;;:::i;:::-;;:::i;52755:42::-;;;;;;;;;;;;;;;;39463:372;39565:4;-1:-1:-1;;;;;;39602:40:0;;-1:-1:-1;;;39602:40:0;;:105;;-1:-1:-1;;;;;;;39659:48:0;;-1:-1:-1;;;39659:48:0;39602:105;:172;;;-1:-1:-1;;;;;;;39724:50:0;;-1:-1:-1;;;39724:50:0;39602:172;:225;;;-1:-1:-1;;;;;;;;;;29092:40:0;;;39791:36;39582:245;39463:372;-1:-1:-1;;39463:372:0:o;41349:100::-;41403:13;41436:5;41429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41349:100;:::o;42911:214::-;42979:7;43007:16;43015:7;44951:4;44985:12;-1:-1:-1;44975:22:0;44894:111;43007:16;42999:74;;;;-1:-1:-1;;;42999:74:0;;5960:2:1;42999:74:0;;;5942:21:1;5999:2;5979:18;;;5972:30;6038:34;6018:18;;;6011:62;-1:-1:-1;;;6089:18:1;;;6082:43;6142:19;;42999:74:0;;;;;;;;;-1:-1:-1;43093:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43093:24:0;;42911:214::o;42432:413::-;42505:13;42521:24;42537:7;42521:15;:24::i;:::-;42505:40;;42570:5;-1:-1:-1;;;;;42564:11:0;:2;-1:-1:-1;;;;;42564:11:0;;42556:58;;;;-1:-1:-1;;;42556:58:0;;6374:2:1;42556:58:0;;;6356:21:1;6413:2;6393:18;;;6386:30;6452:34;6432:18;;;6425:62;-1:-1:-1;;;6503:18:1;;;6496:32;6545:19;;42556:58:0;6172:398:1;42556:58:0;11008:10;-1:-1:-1;;;;;42649:21:0;;;;:62;;-1:-1:-1;42674:37:0;42691:5;11008:10;43556:164;:::i;42674:37::-;42627:169;;;;-1:-1:-1;;;42627:169:0;;6777:2:1;42627:169:0;;;6759:21:1;6816:2;6796:18;;;6789:30;6855:34;6835:18;;;6828:62;6926:27;6906:18;;;6899:55;6971:19;;42627:169:0;6575:421:1;42627:169:0;42809:28;42818:2;42822:7;42831:5;42809:8;:28::i;:::-;42494:351;42432:413;;:::o;43787:170::-;43921:28;43931:4;43937:2;43941:7;43921:9;:28::i;38384:1007::-;38473:7;38509:16;38519:5;38509:9;:16::i;:::-;38501:5;:24;38493:71;;;;-1:-1:-1;;;38493:71:0;;7203:2:1;38493:71:0;;;7185:21:1;7242:2;7222:18;;;7215:30;7281:34;7261:18;;;7254:62;-1:-1:-1;;;7332:18:1;;;7325:32;7374:19;;38493:71:0;7001:398:1;38493:71:0;38575:22;37800:12;;;38575:22;;38838:466;38858:14;38854:1;:18;38838:466;;;38898:31;38932:14;;;:11;:14;;;;;;;;;38898:48;;;;;;;;;-1:-1:-1;;;;;38898:48:0;;;;;-1:-1:-1;;;38898:48:0;;;;;;;;;;;;38969:28;38965:111;;39042:14;;;-1:-1:-1;38965:111:0;39119:5;-1:-1:-1;;;;;39098:26:0;:17;-1:-1:-1;;;;;39098:26:0;;39094:195;;39168:5;39153:11;:20;39149:85;;-1:-1:-1;39209:1:0;-1:-1:-1;39202:8:0;;-1:-1:-1;;;39202:8:0;39149:85;39256:13;;;;;39094:195;-1:-1:-1;38874:3:0;;38838:466;;;-1:-1:-1;39327:56:0;;-1:-1:-1;;;39327:56:0;;7606:2:1;39327:56:0;;;7588:21:1;7645:2;7625:18;;;7618:30;7684:34;7664:18;;;7657:62;-1:-1:-1;;;7735:18:1;;;7728:44;7789:19;;39327:56:0;7404:410:1;54637:176:0;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;7178:1:::1;7776:7;;:19:::0;7768:63:::1;;;::::0;-1:-1:-1;;;7768:63:0;;8382:2:1;7768:63:0::1;::::0;::::1;8364:21:1::0;8421:2;8401:18;;;8394:30;8460:33;8440:18;;;8433:61;8511:18;;7768:63:0::1;8180:355:1::0;7768:63:0::1;7178:1;7909:7;:18:::0;54715:49:::2;::::0;54697:12:::2;::::0;54715:10:::2;::::0;54738:21:::2;::::0;54697:12;54715:49;54697:12;54715:49;54738:21;54715:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54696:68;;;54779:7;54771:36;;;::::0;-1:-1:-1;;;54771:36:0;;8952:2:1;54771:36:0::2;::::0;::::2;8934:21:1::0;8991:2;8971:18;;;8964:30;-1:-1:-1;;;9010:18:1;;;9003:46;9066:18;;54771:36:0::2;8750:340:1::0;54771:36:0::2;-1:-1:-1::0;7134:1:0::1;8088:7;:22:::0;54637:176::o;44028:185::-;44166:39;44183:4;44189:2;44193:7;44166:39;;;;;;;;;;;;:16;:39::i;37897:187::-;37964:7;37800:12;;37992:5;:21;37984:69;;;;-1:-1:-1;;;37984:69:0;;9297:2:1;37984:69:0;;;9279:21:1;9336:2;9316:18;;;9309:30;9375:34;9355:18;;;9348:62;-1:-1:-1;;;9426:18:1;;;9419:33;9469:19;;37984:69:0;9095:399:1;37984:69:0;-1:-1:-1;38071:5:0;37897:187::o;54135:96::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;54207:7:::1;:18;54217:8:::0;;54207:7;:18:::1;:::i;54325:98::-:0;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;54395:9:::1;:22:::0;54325:98::o;41158:124::-;41222:7;41249:20;41261:7;41249:11;:20::i;:::-;:25;;41158:124;-1:-1:-1;;41158:124:0:o;52665:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39899:221::-;39963:7;-1:-1:-1;;;;;39991:19:0;;39983:75;;;;-1:-1:-1;;;39983:75:0;;11759:2:1;39983:75:0;;;11741:21:1;11798:2;11778:18;;;11771:30;11837:34;11817:18;;;11810:62;-1:-1:-1;;;11888:18:1;;;11881:41;11939:19;;39983:75:0;11557:407:1;39983:75:0;-1:-1:-1;;;;;;40084:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40084:27:0;;39899:221::o;12855:103::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;12920:30:::1;12947:1;12920:18;:30::i;:::-;12855:103::o:0;53931:85::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;53999:11:::1;::::0;;-1:-1:-1;;53984:26:0;::::1;53999:11;::::0;;::::1;53998:12;53984:26;::::0;;53931:85::o;53759:166::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;53855:9:::1;::::0;:13:::1;::::0;53867:1:::1;53855:13;:::i;:::-;53846:6;53830:13;37773:7:::0;37800:12;;37720:100;53830:13:::1;:22;;;;:::i;:::-;:38;53822:59;;;::::0;-1:-1:-1;;;53822:59:0;;12433:2:1;53822:59:0::1;::::0;::::1;12415:21:1::0;12472:1;12452:18;;;12445:29;-1:-1:-1;;;12490:18:1;;;12483:39;12539:18;;53822:59:0::1;12231:332:1::0;53822:59:0::1;53890:29;53900:10;53912:6;53890:9;:29::i;:::-;53759:166:::0;:::o;54237:82::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;54299:5:::1;:14:::0;54237:82::o;41518:104::-;41574:13;41607:7;41600:14;;;;;:::i;53096:657::-;53165:5;;53224:9;;53153;;53224:13;;53236:1;53224:13;:::i;:::-;53215:6;53199:13;37773:7;37800:12;;37720:100;53199:13;:22;;;;:::i;:::-;:38;53198:117;;;;-1:-1:-1;53298:16:0;;53274:10;53256:29;;;;:17;:29;;;;;;:38;;53288:6;;53256:38;:::i;:::-;:58;;53198:117;53183:133;;53328:6;53325:36;;;53352:1;53345:8;;53325:36;53375:11;;;;53367:56;;;;-1:-1:-1;;;53367:56:0;;12770:2:1;53367:56:0;;;12752:21:1;;;12789:18;;;12782:30;12848:34;12828:18;;;12821:62;12900:18;;53367:56:0;12568:356:1;53367:56:0;53463:9;;:13;;53475:1;53463:13;:::i;:::-;53454:6;53438:13;37773:7;37800:12;;37720:100;53438:13;:22;;;;:::i;:::-;:38;53430:57;;;;-1:-1:-1;;;53430:57:0;;13131:2:1;53430:57:0;;;13113:21:1;13170:1;13150:18;;;13143:29;-1:-1:-1;;;13188:18:1;;;13181:37;13235:18;;53430:57:0;12929:330:1;53430:57:0;53515:13;53524:4;53515:6;:13;:::i;:::-;53502:9;:26;53494:66;;;;-1:-1:-1;;;53494:66:0;;13639:2:1;53494:66:0;;;13621:21:1;13678:2;13658:18;;;13651:30;13717;13697:18;;;13690:58;13765:18;;53494:66:0;13437:352:1;53494:66:0;53584:8;;:12;;53595:1;53584:12;:::i;:::-;53575:6;:21;53567:52;;;;-1:-1:-1;;;53567:52:0;;13996:2:1;53567:52:0;;;13978:21:1;14035:2;14015:18;;;14008:30;-1:-1:-1;;;14054:18:1;;;14047:48;14112:18;;53567:52:0;13794:342:1;53567:52:0;53636:6;53632:78;;;53677:10;53659:29;;;;:17;:29;;;;;:39;;53692:6;;53659:29;:39;;53692:6;;53659:39;:::i;:::-;;;;-1:-1:-1;;53632:78:0;53718:29;53728:10;53740:6;53718:9;:29::i;43197:288::-;11008:10;-1:-1:-1;;;;;43292:24:0;;;43284:63;;;;-1:-1:-1;;;43284:63:0;;14343:2:1;43284:63:0;;;14325:21:1;14382:2;14362:18;;;14355:30;14421:28;14401:18;;;14394:56;14467:18;;43284:63:0;14141:350:1;43284:63:0;11008:10;43360:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43360:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43360:53:0;;;;;;;;;;43429:48;;540:41:1;;;43360:42:0;;11008:10;43429:48;;513:18:1;43429:48:0;;;;;;;43197:288;;:::o;44284:355::-;44443:28;44453:4;44459:2;44463:7;44443:9;:28::i;:::-;44504:48;44527:4;44533:2;44537:7;44546:5;44504:22;:48::i;:::-;44482:149;;;;-1:-1:-1;;;44482:149:0;;;;;;;:::i;:::-;44284:355;;;;:::o;54429:94::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;54497:8:::1;:20:::0;54429:94::o;41693:335::-;41766:13;41800:16;41808:7;44951:4;44985:12;-1:-1:-1;44975:22:0;44894:111;41800:16;41792:76;;;;-1:-1:-1;;;41792:76:0;;15118:2:1;41792:76:0;;;15100:21:1;15157:2;15137:18;;;15130:30;15196:34;15176:18;;;15169:62;-1:-1:-1;;;15247:18:1;;;15240:45;15302:19;;41792:76:0;14916:411:1;41792:76:0;41881:21;41905:10;:8;:10::i;:::-;41881:34;;41939:7;41933:21;41958:1;41933:26;:87;;;;;;;;;;;;;;;;;41986:7;41995:18;:7;:16;:18::i;:::-;41969:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41933:87;41926:94;41693:335;-1:-1:-1;;;41693:335:0:o;54022:107::-;54080:7;54103:20;54117:5;54103:13;:20::i;13113:201::-;12277:6;;-1:-1:-1;;;;;12277:6:0;11008:10;12424:23;12416:68;;;;-1:-1:-1;;;12416:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13202:22:0;::::1;13194:73;;;::::0;-1:-1:-1;;;13194:73:0;;16035:2:1;13194:73:0::1;::::0;::::1;16017:21:1::0;16074:2;16054:18;;;16047:30;16113:34;16093:18;;;16086:62;-1:-1:-1;;;16164:18:1;;;16157:36;16210:19;;13194:73:0::1;15833:402:1::0;13194:73:0::1;13278:28;13297:8;13278:18;:28::i;49814:196::-:0;49929:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49929:29:0;-1:-1:-1;;;;;49929:29:0;;;;;;;;;49974:28;;49929:24;;49974:28;;;;;;;49814:196;;;:::o;47694:2002::-;47809:35;47847:20;47859:7;47847:11;:20::i;:::-;47922:18;;47809:58;;-1:-1:-1;47880:22:0;;-1:-1:-1;;;;;47906:34:0;11008:10;-1:-1:-1;;;;;47906:34:0;;:87;;;-1:-1:-1;11008:10:0;47957:20;47969:7;47957:11;:20::i;:::-;-1:-1:-1;;;;;47957:36:0;;47906:87;:154;;;-1:-1:-1;48027:18:0;;48010:50;;11008:10;43556:164;:::i;48010:50::-;47880:181;;48082:17;48074:80;;;;-1:-1:-1;;;48074:80:0;;16442:2:1;48074:80:0;;;16424:21:1;16481:2;16461:18;;;16454:30;16520:34;16500:18;;;16493:62;-1:-1:-1;;;16571:18:1;;;16564:48;16629:19;;48074:80:0;16240:414:1;48074:80:0;48197:4;-1:-1:-1;;;;;48175:26:0;:13;:18;;;-1:-1:-1;;;;;48175:26:0;;48167:77;;;;-1:-1:-1;;;48167:77:0;;16861:2:1;48167:77:0;;;16843:21:1;16900:2;16880:18;;;16873:30;16939:34;16919:18;;;16912:62;-1:-1:-1;;;16990:18:1;;;16983:36;17036:19;;48167:77:0;16659:402:1;48167:77:0;-1:-1:-1;;;;;48263:16:0;;48255:66;;;;-1:-1:-1;;;48255:66:0;;17268:2:1;48255:66:0;;;17250:21:1;17307:2;17287:18;;;17280:30;17346:34;17326:18;;;17319:62;-1:-1:-1;;;17397:18:1;;;17390:35;17442:19;;48255:66:0;17066:401:1;48255:66:0;48442:49;48459:1;48463:7;48472:13;:18;;;48442:8;:49::i;:::-;-1:-1:-1;;;;;48787:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;48787:31:0;;;-1:-1:-1;;;;;48787:31:0;;;-1:-1:-1;;48787:31:0;;;;;;;48833:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48833:29:0;;;;;;;;;;;;;48879:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;48924:61:0;;;;-1:-1:-1;;;48969:15:0;48924:61;;;;;;49259:11;;;49289:24;;;;;:29;49259:11;;49289:29;49285:295;;49357:20;49365:11;44951:4;44985:12;-1:-1:-1;44975:22:0;44894:111;49357:20;49353:212;;;49434:18;;;49402:24;;;:11;:24;;;;;;;;:50;;49517:28;;;;49475:70;;-1:-1:-1;;;49475:70:0;-1:-1:-1;;;;;;49475:70:0;;;-1:-1:-1;;;;;49402:50:0;;;49475:70;;;;;;;49353:212;48762:829;49627:7;49623:2;-1:-1:-1;;;;;49608:27:0;49617:4;-1:-1:-1;;;;;49608:27:0;;;;;;;;;;;49646:42;47798:1898;;47694:2002;;;:::o;40559:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;40662:16:0;40670:7;44951:4;44985:12;-1:-1:-1;44975:22:0;44894:111;40662:16;40654:71;;;;-1:-1:-1;;;40654:71:0;;17674:2:1;40654:71:0;;;17656:21:1;17713:2;17693:18;;;17686:30;17752:34;17732:18;;;17725:62;-1:-1:-1;;;17803:18:1;;;17796:40;17853:19;;40654:71:0;17472:406:1;40654:71:0;40783:7;40763:245;40830:31;40864:17;;;:11;:17;;;;;;;;;40830:51;;;;;;;;;-1:-1:-1;;;;;40830:51:0;;;;;-1:-1:-1;;;40830:51:0;;;;;;;;;;;;40904:28;40900:93;;40964:9;40559:537;-1:-1:-1;;;40559:537:0:o;40900:93::-;-1:-1:-1;;;40803:6:0;40763:245;;13474:191;13567:6;;;-1:-1:-1;;;;;13584:17:0;;;-1:-1:-1;;;;;;13584:17:0;;;;;;;13617:40;;13567:6;;;13584:17;13567:6;;13617:40;;13548:16;;13617:40;13537:128;13474:191;:::o;45013:104::-;45082:27;45092:2;45096:8;45082:27;;;;;;;;;;;;:9;:27::i;:::-;45013:104;;:::o;50575:804::-;50730:4;-1:-1:-1;;;;;50751:13:0;;15200:19;:23;50747:625;;50787:72;;-1:-1:-1;;;50787:72:0;;-1:-1:-1;;;;;50787:36:0;;;;;:72;;11008:10;;50838:4;;50844:7;;50853:5;;50787:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50787:72:0;;;;;;;;-1:-1:-1;;50787:72:0;;;;;;;;;;;;:::i;:::-;;;50783:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51033:6;:13;51050:1;51033:18;51029:273;;51076:61;;-1:-1:-1;;;51076:61:0;;;;;;;:::i;51029:273::-;51252:6;51246:13;51237:6;51233:2;51229:15;51222:38;50783:534;-1:-1:-1;;;;;;50910:55:0;-1:-1:-1;;;50910:55:0;;-1:-1:-1;50903:62:0;;50747:625;-1:-1:-1;51356:4:0;50747:625;50575:804;;;;;;:::o;54529:102::-;54589:13;54618:7;54611:14;;;;;:::i;8490:723::-;8546:13;8767:5;8776:1;8767:10;8763:53;;-1:-1:-1;;8794:10:0;;;;;;;;;;;;-1:-1:-1;;;8794:10:0;;;;;8490:723::o;8763:53::-;8841:5;8826:12;8882:78;8889:9;;8882:78;;8915:8;;;;:::i;:::-;;-1:-1:-1;8938:10:0;;-1:-1:-1;8946:2:0;8938:10;;:::i;:::-;;;8882:78;;;8970:19;9002:6;8992:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8992:17:0;;8970:39;;9020:154;9027:10;;9020:154;;9054:11;9064:1;9054:11;;:::i;:::-;;-1:-1:-1;9123:10:0;9131:2;9123:5;:10;:::i;:::-;9110:24;;:2;:24;:::i;:::-;9097:39;;9080:6;9087;9080:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9080:56:0;;;;;;;;-1:-1:-1;9151:11:0;9160:2;9151:11;;:::i;:::-;;;9020:154;;40128:229;40189:7;-1:-1:-1;;;;;40217:19:0;;40209:81;;;;-1:-1:-1;;;40209:81:0;;20028:2:1;40209:81:0;;;20010:21:1;20067:2;20047:18;;;20040:30;20106:34;20086:18;;;20079:62;-1:-1:-1;;;20157:18:1;;;20150:47;20214:19;;40209:81:0;19826:413:1;40209:81:0;-1:-1:-1;;;;;;40316:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;40316:32:0;;-1:-1:-1;;;;;40316:32:0;;40128:229::o;45480:163::-;45603:32;45609:2;45613:8;45623:5;45630:4;46041:20;46064:12;-1:-1:-1;;;;;46095:16:0;;46087:62;;;;-1:-1:-1;;;46087:62:0;;20446:2:1;46087:62:0;;;20428:21:1;20485:2;20465:18;;;20458:30;20524:34;20504:18;;;20497:62;-1:-1:-1;;;20575:18:1;;;20568:31;20616:19;;46087:62:0;20244:397:1;46087:62:0;46168:8;46180:1;46168:13;46160:66;;;;-1:-1:-1;;;46160:66:0;;20848:2:1;46160:66:0;;;20830:21:1;20887:2;20867:18;;;20860:30;20926:34;20906:18;;;20899:62;-1:-1:-1;;;20977:18:1;;;20970:38;21025:19;;46160:66:0;20646:404:1;46160:66:0;-1:-1:-1;;;;;46578:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;46578:45:0;;-1:-1:-1;;;;;46578:45:0;;;;;;;;;;46638:50;;;;;;;;;;;;;;46705:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;46755:66:0;;;;-1:-1:-1;;;46805:15:0;46755:66;;;;;;;46705:25;;46890:415;46910:8;46906:1;:12;46890:415;;;46949:38;;46974:12;;-1:-1:-1;;;;;46949:38:0;;;46966:1;;46949:38;;46966:1;;46949:38;47010:4;47006:249;;;47073:59;47104:1;47108:2;47112:12;47126:5;47073:22;:59::i;:::-;47039:196;;;;-1:-1:-1;;;47039:196:0;;;;;;;:::i;:::-;47275:14;;;;;46920:3;46890:415;;;-1:-1:-1;47321:12:0;:27;47372:60;44284:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;2910:18;2951:2;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3481:347::-;3546:6;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3725:2;3714:9;3710:18;3697:32;3772:5;3765:13;3758:21;3751:5;3748:32;3738:60;;3794:1;3791;3784:12;3738:60;3817:5;3807:15;;;3481:347;;;;;:::o;3833:127::-;3894:10;3889:3;3885:20;3882:1;3875:31;3925:4;3922:1;3915:15;3949:4;3946:1;3939:15;3965:1138;4060:6;4068;4076;4084;4137:3;4125:9;4116:7;4112:23;4108:33;4105:53;;;4154:1;4151;4144:12;4105:53;4177:29;4196:9;4177:29;:::i;:::-;4167:39;;4225:38;4259:2;4248:9;4244:18;4225:38;:::i;:::-;4215:48;;4310:2;4299:9;4295:18;4282:32;4272:42;;4365:2;4354:9;4350:18;4337:32;4388:18;4429:2;4421:6;4418:14;4415:34;;;4445:1;4442;4435:12;4415:34;4483:6;4472:9;4468:22;4458:32;;4528:7;4521:4;4517:2;4513:13;4509:27;4499:55;;4550:1;4547;4540:12;4499:55;4586:2;4573:16;4608:2;4604;4601:10;4598:36;;;4614:18;;:::i;:::-;4689:2;4683:9;4657:2;4743:13;;-1:-1:-1;;4739:22:1;;;4763:2;4735:31;4731:40;4719:53;;;4787:18;;;4807:22;;;4784:46;4781:72;;;4833:18;;:::i;:::-;4873:10;4869:2;4862:22;4908:2;4900:6;4893:18;4948:7;4943:2;4938;4934;4930:11;4926:20;4923:33;4920:53;;;4969:1;4966;4959:12;4920:53;5025:2;5020;5016;5012:11;5007:2;4999:6;4995:15;4982:46;5070:1;5065:2;5060;5052:6;5048:15;5044:24;5037:35;5091:6;5081:16;;;;;;;3965:1138;;;;;;;:::o;5108:260::-;5176:6;5184;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5276:29;5295:9;5276:29;:::i;:::-;5266:39;;5324:38;5358:2;5347:9;5343:18;5324:38;:::i;:::-;5314:48;;5108:260;;;;;:::o;5373:380::-;5452:1;5448:12;;;;5495;;;5516:61;;5570:4;5562:6;5558:17;5548:27;;5516:61;5623:2;5615:6;5612:14;5592:18;5589:38;5586:161;;5669:10;5664:3;5660:20;5657:1;5650:31;5704:4;5701:1;5694:15;5732:4;5729:1;5722:15;5586:161;;5373:380;;;:::o;7819:356::-;8021:2;8003:21;;;8040:18;;;8033:30;8099:34;8094:2;8079:18;;8072:62;8166:2;8151:18;;7819:356::o;9625:545::-;9727:2;9722:3;9719:11;9716:448;;;9763:1;9788:5;9784:2;9777:17;9833:4;9829:2;9819:19;9903:2;9891:10;9887:19;9884:1;9880:27;9874:4;9870:38;9939:4;9927:10;9924:20;9921:47;;;-1:-1:-1;9962:4:1;9921:47;10017:2;10012:3;10008:12;10005:1;10001:20;9995:4;9991:31;9981:41;;10072:82;10090:2;10083:5;10080:13;10072:82;;;10135:17;;;10116:1;10105:13;10072:82;;;10076:3;;;9625:545;;;:::o;10346:1206::-;10470:18;10465:3;10462:27;10459:53;;;10492:18;;:::i;:::-;10521:94;10611:3;10571:38;10603:4;10597:11;10571:38;:::i;:::-;10565:4;10521:94;:::i;:::-;10641:1;10666:2;10661:3;10658:11;10683:1;10678:616;;;;11338:1;11355:3;11352:93;;;-1:-1:-1;11411:19:1;;;11398:33;11352:93;-1:-1:-1;;10303:1:1;10299:11;;;10295:24;10291:29;10281:40;10327:1;10323:11;;;10278:57;11458:78;;10651:895;;10678:616;9572:1;9565:14;;;9609:4;9596:18;;-1:-1:-1;;10714:17:1;;;10815:9;10837:229;10851:7;10848:1;10845:14;10837:229;;;10940:19;;;10927:33;10912:49;;11047:4;11032:20;;;;11000:1;10988:14;;;;10867:12;10837:229;;;10841:3;11094;11085:7;11082:16;11079:159;;;11218:1;11214:6;11208:3;11202;11199:1;11195:11;11191:21;11187:34;11183:39;11170:9;11165:3;11161:19;11148:33;11144:79;11136:6;11129:95;11079:159;;;11281:1;11275:3;11272:1;11268:11;11264:19;11258:4;11251:33;10651:895;;10346:1206;;;:::o;11969:127::-;12030:10;12025:3;12021:20;12018:1;12011:31;12061:4;12058:1;12051:15;12085:4;12082:1;12075:15;12101:125;12166:9;;;12187:10;;;12184:36;;;12200:18;;:::i;13264:168::-;13337:9;;;13368;;13385:15;;;13379:22;;13365:37;13355:71;;13406:18;;:::i;14496:415::-;14698:2;14680:21;;;14737:2;14717:18;;;14710:30;14776:34;14771:2;14756:18;;14749:62;-1:-1:-1;;;14842:2:1;14827:18;;14820:49;14901:3;14886:19;;14496:415::o;15332:496::-;15511:3;15549:6;15543:13;15565:66;15624:6;15619:3;15612:4;15604:6;15600:17;15565:66;:::i;:::-;15694:13;;15653:16;;;;15716:70;15694:13;15653:16;15763:4;15751:17;;15716:70;:::i;:::-;15802:20;;15332:496;-1:-1:-1;;;;15332:496:1:o;18299:489::-;-1:-1:-1;;;;;18568:15:1;;;18550:34;;18620:15;;18615:2;18600:18;;18593:43;18667:2;18652:18;;18645:34;;;18715:3;18710:2;18695:18;;18688:31;;;18493:4;;18736:46;;18762:19;;18754:6;18736:46;:::i;:::-;18728:54;18299:489;-1:-1:-1;;;;;;18299:489:1:o;18793:249::-;18862:6;18915:2;18903:9;18894:7;18890:23;18886:32;18883:52;;;18931:1;18928;18921:12;18883:52;18963:9;18957:16;18982:30;19006:5;18982:30;:::i;19047:135::-;19086:3;19107:17;;;19104:43;;19127:18;;:::i;:::-;-1:-1:-1;19174:1:1;19163:13;;19047:135::o;19187:127::-;19248:10;19243:3;19239:20;19236:1;19229:31;19279:4;19276:1;19269:15;19303:4;19300:1;19293:15;19319:120;19359:1;19385;19375:35;;19390:18;;:::i;:::-;-1:-1:-1;19424:9:1;;19319:120::o;19444:128::-;19511:9;;;19532:11;;;19529:37;;;19546:18;;:::i;19577:112::-;19609:1;19635;19625:35;;19640:18;;:::i;:::-;-1:-1:-1;19674:9:1;;19577:112::o;19694:127::-;19755:10;19750:3;19746:20;19743:1;19736:31;19786:4;19783:1;19776:15;19810:4;19807:1;19800:15
Swarm Source
ipfs://1d9c33b0aea01e41cc313437803db2c1a1f69b05557e98179a2ae4f5b76a3b67
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.