Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
555 FS
Holders
145
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 FSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FukuokaSkyline
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "tiny-erc721/contracts/TinyERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; contract FukuokaSkyline is TinyERC721, Ownable, DefaultOperatorFilterer { string public baseURI; address public lead; bool public publicPaused = true; uint256 public cost = 0.002 ether; uint256 public maxSupply = 555; uint256 public maxPerWalletPublic = 5; uint256 public maxPerTxPublic = 5; address public contractV1; uint256 supply = totalSupply(); mapping(address => uint) public addressMintedBalance; constructor( string memory _baseURI, address _lead, address _contractV1 )TinyERC721("Fukuoka Skyline", "FS", 0) { baseURI = _baseURI; lead = _lead; contractV1 = _contractV1; } modifier publicnotPaused() { require(!publicPaused, "Contract is Paused"); _; } modifier callerIsUser() { require(tx.origin == msg.sender, 'The caller is another contract.'); _; } function setContractV1Address(address _contractV1) public onlyOwner { contractV1 =_contractV1; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json")); } function togglePublic(bool _state) external onlyOwner { publicPaused = _state; } function privateMint(uint256 _quanitity) public onlyOwner { uint256 supply = totalSupply(); require(_quanitity + supply <= maxSupply); _safeMint(msg.sender, _quanitity); } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setmaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setmaxPerWalletPublic(uint256 _MPWPublic) public onlyOwner { maxPerWalletPublic = _MPWPublic; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function setmaxPerTxPublic(uint256 _MPTxPublic) public onlyOwner { maxPerTxPublic = _MPTxPublic; } function publicMint(uint256 _quantity) public payable publicnotPaused() callerIsUser() { uint256 supply = totalSupply(); require(msg.value >= cost * _quantity, "Not Enough Ether"); require(_quantity <= maxPerTxPublic, "Over Tx Limit"); require(_quantity + supply <= maxSupply, "SoldOut"); require(addressMintedBalance[msg.sender] < maxPerWalletPublic, "Over MaxPerWallet"); addressMintedBalance[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function withdraw() public onlyOwner { (bool success, ) = lead.call{value: address(this).balance}(""); require(success, "Failed to send to lead."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error TokenDataQueryForNonexistentToken(); error OwnerQueryForNonexistentToken(); error OperatorQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); contract TinyERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; struct TokenData { address owner; bytes12 aux; } uint256 private immutable _maxBatchSize; mapping(uint256 => TokenData) private _tokens; uint256 private _mintCounter; string private _name; string private _symbol; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { _name = name_; _symbol = symbol_; _maxBatchSize = maxBatchSize_; } function totalSupply() public view virtual returns (uint256) { return _mintCounter; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } function _baseURI() internal view virtual returns (string memory) { return ''; } function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); uint256 total = totalSupply(); uint256 count; address lastOwner; for (uint256 i; i < total; ++i) { address tokenOwner = _tokens[i].owner; if (tokenOwner != address(0)) lastOwner = tokenOwner; if (lastOwner == owner) ++count; } return count; } function _tokenData(uint256 tokenId) internal view returns (TokenData storage) { if (!_exists(tokenId)) revert TokenDataQueryForNonexistentToken(); TokenData storage token = _tokens[tokenId]; uint256 currentIndex = tokenId; while (token.owner == address(0)) { unchecked { --currentIndex; } token = _tokens[currentIndex]; } return token; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); return _tokenData(tokenId).owner; } function approve(address to, uint256 tokenId) public virtual override { TokenData memory token = _tokenData(tokenId); address owner = token.owner; if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, token); } function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { TokenData memory token = _tokenData(tokenId); if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved(); _transfer(from, to, tokenId, token); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { TokenData memory token = _tokenData(tokenId); if (!_isApprovedOrOwner(_msgSender(), tokenId, token)) revert TransferCallerNotOwnerNorApproved(); _safeTransfer(from, to, tokenId, token, _data); } function _safeTransfer( address from, address to, uint256 tokenId, TokenData memory token, bytes memory _data ) internal virtual { _transfer(from, to, tokenId, token); if (to.isContract() && !_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _mintCounter; } function _isApprovedOrOwner( address spender, uint256 tokenId, TokenData memory token ) internal view virtual returns (bool) { address owner = token.owner; return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { uint256 startTokenId = _mintCounter; _mint(to, quantity); if (to.isContract()) { unchecked { for (uint256 i; i < quantity; ++i) { if (!_checkOnERC721Received(address(0), to, startTokenId + i, _data)) revert TransferToNonERC721ReceiverImplementer(); } } } } function _mint(address to, uint256 quantity) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); uint256 startTokenId = _mintCounter; _beforeTokenTransfers(address(0), to, startTokenId, quantity); unchecked { for (uint256 i; i < quantity; ++i) { if (_maxBatchSize == 0 ? i == 0 : i % _maxBatchSize == 0) { TokenData storage token = _tokens[startTokenId + i]; token.owner = to; token.aux = _calculateAux(address(0), to, startTokenId + i, 0); } emit Transfer(address(0), to, startTokenId + i); } _mintCounter += quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _transfer( address from, address to, uint256 tokenId, TokenData memory token ) internal virtual { if (token.owner != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); _approve(address(0), tokenId, token); unchecked { uint256 nextTokenId = tokenId + 1; if (_exists(nextTokenId)) { TokenData storage nextToken = _tokens[nextTokenId]; if (nextToken.owner == address(0)) { nextToken.owner = token.owner; nextToken.aux = token.aux; } } } TokenData storage newToken = _tokens[tokenId]; newToken.owner = to; newToken.aux = _calculateAux(from, to, tokenId, token.aux); emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } function _calculateAux( address from, address to, uint256 tokenId, bytes12 current ) internal view virtual returns (bytes12) {} function _approve( address to, uint256 tokenId, TokenData memory token ) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(token.owner, to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_lead","type":"address"},{"internalType":"address","name":"_contractV1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenDataQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"contractV1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"lead","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quanitity","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"_contractV1","type":"address"}],"name":"setContractV1Address","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPTxPublic","type":"uint256"}],"name":"setmaxPerTxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MPWPublic","type":"uint256"}],"name":"setmaxPerWalletPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"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
60a06040526001600860146101000a81548160ff02191690831515021790555066071afd498d000060095561022b600a556005600b556005600c556200004a620003e860201b60201c565b600e553480156200005a57600080fd5b5060405162004bd738038062004bd78339818101604052810190620000809190620006b8565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f46756b756f6b6120536b796c696e6500000000000000000000000000000000008152506040518060400160405280600281526020017f4653000000000000000000000000000000000000000000000000000000000000815250600082600290816200011691906200097e565b5081600390816200012891906200097e565b5080608081815250505050506200015462000148620003f260201b60201c565b620003fa60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003495780156200020f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001d592919062000a76565b600060405180830381600087803b158015620001f057600080fd5b505af115801562000205573d6000803e3d6000fd5b5050505062000348565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002c9576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200028f92919062000a76565b600060405180830381600087803b158015620002aa57600080fd5b505af1158015620002bf573d6000803e3d6000fd5b5050505062000347565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000312919062000aa3565b600060405180830381600087803b1580156200032d57600080fd5b505af115801562000342573d6000803e3d6000fd5b505050505b5b5b505082600790816200035c91906200097e565b5081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000ac0565b6000600154905090565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200052982620004de565b810181811067ffffffffffffffff821117156200054b576200054a620004ef565b5b80604052505050565b600062000560620004c0565b90506200056e82826200051e565b919050565b600067ffffffffffffffff821115620005915762000590620004ef565b5b6200059c82620004de565b9050602081019050919050565b60005b83811015620005c9578082015181840152602081019050620005ac565b60008484015250505050565b6000620005ec620005e68462000573565b62000554565b9050828152602081018484840111156200060b576200060a620004d9565b5b62000618848285620005a9565b509392505050565b600082601f830112620006385762000637620004d4565b5b81516200064a848260208601620005d5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006808262000653565b9050919050565b620006928162000673565b81146200069e57600080fd5b50565b600081519050620006b28162000687565b92915050565b600080600060608486031215620006d457620006d3620004ca565b5b600084015167ffffffffffffffff811115620006f557620006f4620004cf565b5b620007038682870162000620565b93505060206200071686828701620006a1565b92505060406200072986828701620006a1565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200078657607f821691505b6020821081036200079c576200079b6200073e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007c7565b620008128683620007c7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200085f6200085962000853846200082a565b62000834565b6200082a565b9050919050565b6000819050919050565b6200087b836200083e565b620008936200088a8262000866565b848454620007d4565b825550505050565b600090565b620008aa6200089b565b620008b781848462000870565b505050565b5b81811015620008df57620008d3600082620008a0565b600181019050620008bd565b5050565b601f8211156200092e57620008f881620007a2565b6200090384620007b7565b8101602085101562000913578190505b6200092b6200092285620007b7565b830182620008bc565b50505b505050565b600082821c905092915050565b6000620009536000198460080262000933565b1980831691505092915050565b60006200096e838362000940565b9150826002028217905092915050565b620009898262000733565b67ffffffffffffffff811115620009a557620009a4620004ef565b5b620009b182546200076d565b620009be828285620008e3565b600060209050601f831160018114620009f65760008415620009e1578287015190505b620009ed858262000960565b86555062000a5d565b601f19841662000a0686620007a2565b60005b8281101562000a305784890151825560018201915060208501945060208101905062000a09565b8683101562000a50578489015162000a4c601f89168262000940565b8355505b6001600288020188555050505b505050505050565b62000a708162000673565b82525050565b600060408201905062000a8d600083018562000a65565b62000a9c602083018462000a65565b9392505050565b600060208201905062000aba600083018462000a65565b92915050565b6080516140f462000ae360003960008181612a950152612abd01526140f46000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063c4d4ec941161006f578063c4d4ec941461078a578063c87b56dd146107b3578063d5abeb01146107f0578063e985e9c51461081b578063f2fde38b146108585761021a565b8063a22cb465146106bb578063abfe40a8146106e4578063b029a5141461070d578063b88d4fde14610738578063c3c62d38146107615761021a565b8063715018a6116100f2578063715018a6146105f85780637885ce391461060f5780638da5cb5b1461063a57806395d89b41146106655780639943770d146106905761021a565b80636352211e1461052a5780636c0360eb14610567578063701ee0061461059257806370a08231146105bb5761021a565b8063228025e8116101a657806341f434341161017557806341f434341461045957806342842e0e1461048457806344a0d68a146104ad57806346bb0a16146104d657806355f804b3146105015761021a565b8063228025e8146103d457806323b872dd146103fd5780632db11544146104265780633ccfd60b146104425761021a565b80630bb12bb8116101ed5780630bb12bb8146102ed5780630e21f59f1461031857806313faede61461034157806318160ddd1461036c57806318cae269146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612dfe565b610881565b6040516102539190612e46565b60405180910390f35b34801561026857600080fd5b50610271610963565b60405161027e9190612ef1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f49565b6109f5565b6040516102bb9190612fb7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612ffe565b610a71565b005b3480156102f957600080fd5b50610302610a8a565b60405161030f9190612e46565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061306a565b610a9d565b005b34801561034d57600080fd5b50610356610b36565b60405161036391906130a6565b60405180910390f35b34801561037857600080fd5b50610381610b3c565b60405161038e91906130a6565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906130c1565b610b46565b6040516103cb91906130a6565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612f49565b610b5e565b005b34801561040957600080fd5b50610424600480360381019061041f91906130ee565b610be4565b005b610440600480360381019061043b9190612f49565b610c33565b005b34801561044e57600080fd5b50610457610ec9565b005b34801561046557600080fd5b5061046e611016565b60405161047b91906131a0565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906130ee565b611028565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612f49565b611077565b005b3480156104e257600080fd5b506104eb6110fd565b6040516104f89190612fb7565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906132f0565b611123565b005b34801561053657600080fd5b50610551600480360381019061054c9190612f49565b6111b2565b60405161055e9190612fb7565b60405180910390f35b34801561057357600080fd5b5061057c611227565b6040516105899190612ef1565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612f49565b6112b5565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906130c1565b61133b565b6040516105ef91906130a6565b60405180910390f35b34801561060457600080fd5b5061060d61148c565b005b34801561061b57600080fd5b50610624611514565b6040516106319190612fb7565b60405180910390f35b34801561064657600080fd5b5061064f61153a565b60405161065c9190612fb7565b60405180910390f35b34801561067157600080fd5b5061067a611564565b6040516106879190612ef1565b60405180910390f35b34801561069c57600080fd5b506106a56115f6565b6040516106b291906130a6565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613339565b6115fc565b005b3480156106f057600080fd5b5061070b60048036038101906107069190612f49565b611615565b005b34801561071957600080fd5b506107226116c5565b60405161072f91906130a6565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a919061341a565b6116cb565b005b34801561076d57600080fd5b5061078860048036038101906107839190612f49565b61171c565b005b34801561079657600080fd5b506107b160048036038101906107ac91906130c1565b6117a2565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190612f49565b611862565b6040516107e79190612ef1565b60405180910390f35b3480156107fc57600080fd5b506108056118de565b60405161081291906130a6565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d919061349d565b6118e4565b60405161084f9190612e46565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a91906130c1565b611978565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b82611a6f565b5b9050919050565b6060600280546109729061350c565b80601f016020809104026020016040519081016040528092919081815260200182805461099e9061350c565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611ad9565b610a36576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a7b81611ae7565b610a858383611be4565b505050565b600860149054906101000a900460ff1681565b610aa5611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610ac361153a565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613589565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b600f6020528060005260406000206000915090505481565b610b66611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610b8461153a565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190613589565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2257610c2133611ae7565b5b610c2d848484611da6565b50505050565b600860149054906101000a900460ff1615610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906135f5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613661565b60405180910390fd5b6000610cfb610b3c565b905081600954610d0b91906136b0565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061373e565b60405180910390fd5b600c54821115610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906137aa565b60405180910390fd5b600a548183610da191906137ca565b1115610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061384a565b60405180910390fd5b600b54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906138b6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eb491906137ca565b92505081905550610ec53383611eb3565b5050565b610ed1611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610eef61153a565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613589565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f8d90613907565b60006040518083038185875af1925050503d8060008114610fca576040519150601f19603f3d011682016040523d82523d6000602084013e610fcf565b606091505b5050905080611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613968565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110665761106533611ae7565b5b611071848484611ed1565b50505050565b61107f611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661109d61153a565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613589565b60405180910390fd5b8060098190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61112b611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661114961153a565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613589565b60405180910390fd5b80600790816111ae9190613b2a565b5050565b60006111bd82611ad9565b6111f3576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111fc82611ef1565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600780546112349061350c565b80601f01602080910402602001604051908101604052809291908181526020018280546112609061350c565b80156112ad5780601f10611282576101008083540402835291602001916112ad565b820191906000526020600020905b81548152906001019060200180831161129057829003601f168201915b505050505081565b6112bd611d9e565b73ffffffffffffffffffffffffffffffffffffffff166112db61153a565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613589565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113ac610b3c565b905060008060005b8381101561148057600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461142e578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146e578361146b90613bfc565b93505b508061147990613bfc565b90506113b4565b50819350505050919050565b611494611d9e565b73ffffffffffffffffffffffffffffffffffffffff166114b261153a565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613589565b60405180910390fd5b6115126000611fd0565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115739061350c565b80601f016020809104026020016040519081016040528092919081815260200182805461159f9061350c565b80156115ec5780601f106115c1576101008083540402835291602001916115ec565b820191906000526020600020905b8154815290600101906020018083116115cf57829003601f168201915b5050505050905090565b600c5481565b8161160681611ae7565b6116108383612096565b505050565b61161d611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661163b61153a565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613589565b60405180910390fd5b600061169b610b3c565b9050600a5481836116ac91906137ca565b11156116b757600080fd5b6116c13383611eb3565b5050565b600b5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117095761170833611ae7565b5b6117158585858561220d565b5050505050565b611724611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661174261153a565b73ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613589565b60405180910390fd5b80600c8190555050565b6117aa611d9e565b73ffffffffffffffffffffffffffffffffffffffff166117c861153a565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613589565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061186d82611ad9565b6118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c90565b60405180910390fd5b60076118b78361231c565b6040516020016118c8929190613dbb565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611980611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661199e61153a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613e5c565b60405180910390fd5b611a6c81611fd0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611be1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b5e929190613e7c565b602060405180830381865afa158015611b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9f9190613eba565b611be057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611bd79190612fb7565b60405180910390fd5b5b50565b6000611bef82611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d05576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d24611d9e565b73ffffffffffffffffffffffffffffffffffffffff1614158015611d565750611d5481611d4f611d9e565b6118e4565b155b15611d8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9884848461247c565b50505050565b600033905090565b6000611db182611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050611e6b611e64611d9e565b8383612532565b611ea1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ead848484846125c4565b50505050565b611ecd8282604051806020016040528060008152506128a6565b5050565b611eec838383604051806020016040528060008152506116cb565b505050565b6000611efc82611ad9565b611f32576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611fc657806001900390506000808281526020019081526020016000209150611f4e565b8192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209e611d9e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612102576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806005600061210f611d9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121bc611d9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122019190612e46565b60405180910390a35050565b600061221883611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506122d26122cb611d9e565b8483612532565b612308576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612315858585848661293e565b5050505050565b606060008203612363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612477565b600082905060005b6000821461239557808061237e90613bfc565b915050600a8261238e9190613f16565b915061236b565b60008167ffffffffffffffff8111156123b1576123b06131c5565b5b6040519080825280601f01601f1916602001820160405280156123e35781602001600182028036833780820191505090505b5090505b60008514612470576001826123fc9190613f47565b9150600a8561240b9190613f7b565b603061241791906137ca565b60f81b81838151811061242d5761242c613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124699190613f16565b94506123e7565b8093505050505b919050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061257c575061257b81866118e4565b5b806125ba57508473ffffffffffffffffffffffffffffffffffffffff166125a2856109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612693576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a084848460016129bc565b6126ac6000838361247c565b60006001830190506126bd81611ad9565b156127a65760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036127a45782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061281085858585602001516129c2565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461289f85858560016129cc565b5050505050565b600060015490506128b784846129d2565b6128d68473ffffffffffffffffffffffffffffffffffffffff16612c1f565b156129385760005b83811015612936576128f560008683850186612c42565b61292b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060010190506128de565b505b50505050565b61294a858585856125c4565b6129698473ffffffffffffffffffffffffffffffffffffffff16612c1f565b801561297e575061297c85858584612c42565b155b156129b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b50505050565b6000949350505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a38576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612a72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612a8660008483856129bc565b60005b82811015612bfc5760007f000000000000000000000000000000000000000000000000000000000000000014612af25760007f00000000000000000000000000000000000000000000000000000000000000008281612aeb57612aea613ee7565b5b0614612af7565b600081145b15612b9357600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612b6a600086848601600060a01b6129c2565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612a89565b5081600160008282540192505081905550612c1a60008483856129cc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c68611d9e565b8786866040518563ffffffff1660e01b8152600401612c8a9493929190614030565b6020604051808303816000875af1925050508015612cc657506040513d601f19601f82011682018060405250810190612cc39190614091565b60015b612d3f573d8060008114612cf6576040519150601f19603f3d011682016040523d82523d6000602084013e612cfb565b606091505b506000815103612d37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ddb81612da6565b8114612de657600080fd5b50565b600081359050612df881612dd2565b92915050565b600060208284031215612e1457612e13612d9c565b5b6000612e2284828501612de9565b91505092915050565b60008115159050919050565b612e4081612e2b565b82525050565b6000602082019050612e5b6000830184612e37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9b578082015181840152602081019050612e80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ec382612e61565b612ecd8185612e6c565b9350612edd818560208601612e7d565b612ee681612ea7565b840191505092915050565b60006020820190508181036000830152612f0b8184612eb8565b905092915050565b6000819050919050565b612f2681612f13565b8114612f3157600080fd5b50565b600081359050612f4381612f1d565b92915050565b600060208284031215612f5f57612f5e612d9c565b5b6000612f6d84828501612f34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa182612f76565b9050919050565b612fb181612f96565b82525050565b6000602082019050612fcc6000830184612fa8565b92915050565b612fdb81612f96565b8114612fe657600080fd5b50565b600081359050612ff881612fd2565b92915050565b6000806040838503121561301557613014612d9c565b5b600061302385828601612fe9565b925050602061303485828601612f34565b9150509250929050565b61304781612e2b565b811461305257600080fd5b50565b6000813590506130648161303e565b92915050565b6000602082840312156130805761307f612d9c565b5b600061308e84828501613055565b91505092915050565b6130a081612f13565b82525050565b60006020820190506130bb6000830184613097565b92915050565b6000602082840312156130d7576130d6612d9c565b5b60006130e584828501612fe9565b91505092915050565b60008060006060848603121561310757613106612d9c565b5b600061311586828701612fe9565b935050602061312686828701612fe9565b925050604061313786828701612f34565b9150509250925092565b6000819050919050565b600061316661316161315c84612f76565b613141565b612f76565b9050919050565b60006131788261314b565b9050919050565b600061318a8261316d565b9050919050565b61319a8161317f565b82525050565b60006020820190506131b56000830184613191565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131fd82612ea7565b810181811067ffffffffffffffff8211171561321c5761321b6131c5565b5b80604052505050565b600061322f612d92565b905061323b82826131f4565b919050565b600067ffffffffffffffff82111561325b5761325a6131c5565b5b61326482612ea7565b9050602081019050919050565b82818337600083830152505050565b600061329361328e84613240565b613225565b9050828152602081018484840111156132af576132ae6131c0565b5b6132ba848285613271565b509392505050565b600082601f8301126132d7576132d66131bb565b5b81356132e7848260208601613280565b91505092915050565b60006020828403121561330657613305612d9c565b5b600082013567ffffffffffffffff81111561332457613323612da1565b5b613330848285016132c2565b91505092915050565b600080604083850312156133505761334f612d9c565b5b600061335e85828601612fe9565b925050602061336f85828601613055565b9150509250929050565b600067ffffffffffffffff821115613394576133936131c5565b5b61339d82612ea7565b9050602081019050919050565b60006133bd6133b884613379565b613225565b9050828152602081018484840111156133d9576133d86131c0565b5b6133e4848285613271565b509392505050565b600082601f830112613401576134006131bb565b5b81356134118482602086016133aa565b91505092915050565b6000806000806080858703121561343457613433612d9c565b5b600061344287828801612fe9565b945050602061345387828801612fe9565b935050604061346487828801612f34565b925050606085013567ffffffffffffffff81111561348557613484612da1565b5b613491878288016133ec565b91505092959194509250565b600080604083850312156134b4576134b3612d9c565b5b60006134c285828601612fe9565b92505060206134d385828601612fe9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352457607f821691505b602082108103613537576135366134dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613573602083612e6c565b915061357e8261353d565b602082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b60006135df601283612e6c565b91506135ea826135a9565b602082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b600061364b601f83612e6c565b915061365682613615565b602082019050919050565b6000602082019050818103600083015261367a8161363e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136bb82612f13565b91506136c683612f13565b92508282026136d481612f13565b915082820484148315176136eb576136ea613681565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000613728601083612e6c565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613794600d83612e6c565b915061379f8261375e565b602082019050919050565b600060208201905081810360008301526137c381613787565b9050919050565b60006137d582612f13565b91506137e083612f13565b92508282019050808211156137f8576137f7613681565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613834600783612e6c565b915061383f826137fe565b602082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b60006138a0601183612e6c565b91506138ab8261386a565b602082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b600081905092915050565b50565b60006138f16000836138d6565b91506138fc826138e1565b600082019050919050565b6000613912826138e4565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b6000613952601783612e6c565b915061395d8261391c565b602082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139ad565b6139f486836139ad565b95508019841693508086168417925050509392505050565b6000613a27613a22613a1d84612f13565b613141565b612f13565b9050919050565b6000819050919050565b613a4183613a0c565b613a55613a4d82613a2e565b8484546139ba565b825550505050565b600090565b613a6a613a5d565b613a75818484613a38565b505050565b5b81811015613a9957613a8e600082613a62565b600181019050613a7b565b5050565b601f821115613ade57613aaf81613988565b613ab88461399d565b81016020851015613ac7578190505b613adb613ad38561399d565b830182613a7a565b50505b505050565b600082821c905092915050565b6000613b0160001984600802613ae3565b1980831691505092915050565b6000613b1a8383613af0565b9150826002028217905092915050565b613b3382612e61565b67ffffffffffffffff811115613b4c57613b4b6131c5565b5b613b56825461350c565b613b61828285613a9d565b600060209050601f831160018114613b945760008415613b82578287015190505b613b8c8582613b0e565b865550613bf4565b601f198416613ba286613988565b60005b82811015613bca57848901518255600182019150602085019450602081019050613ba5565b86831015613be75784890151613be3601f891682613af0565b8355505b6001600288020188555050505b505050505050565b6000613c0782612f13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3957613c38613681565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c7a601583612e6c565b9150613c8582613c44565b602082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b600081905092915050565b60008154613cc88161350c565b613cd28186613cb0565b94506001821660008114613ced5760018114613d0257613d35565b60ff1983168652811515820286019350613d35565b613d0b85613988565b60005b83811015613d2d57815481890152600182019150602081019050613d0e565b838801955050505b50505092915050565b6000613d4982612e61565b613d538185613cb0565b9350613d63818560208601612e7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613da5600583613cb0565b9150613db082613d6f565b600582019050919050565b6000613dc78285613cbb565b9150613dd38284613d3e565b9150613dde82613d98565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e46602683612e6c565b9150613e5182613dea565b604082019050919050565b60006020820190508181036000830152613e7581613e39565b9050919050565b6000604082019050613e916000830185612fa8565b613e9e6020830184612fa8565b9392505050565b600081519050613eb48161303e565b92915050565b600060208284031215613ed057613ecf612d9c565b5b6000613ede84828501613ea5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f2182612f13565b9150613f2c83612f13565b925082613f3c57613f3b613ee7565b5b828204905092915050565b6000613f5282612f13565b9150613f5d83612f13565b9250828203905081811115613f7557613f74613681565b5b92915050565b6000613f8682612f13565b9150613f9183612f13565b925082613fa157613fa0613ee7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061400282613fdb565b61400c8185613fe6565b935061401c818560208601612e7d565b61402581612ea7565b840191505092915050565b60006080820190506140456000830187612fa8565b6140526020830186612fa8565b61405f6040830185613097565b81810360608301526140718184613ff7565b905095945050505050565b60008151905061408b81612dd2565b92915050565b6000602082840312156140a7576140a6612d9c565b5b60006140b58482850161407c565b9150509291505056fea26469706673582212201ad0c8f4c9d93672a8e4bf2561874bf71977266a997d7a7186f4bce4f5dbc86364736f6c634300081100330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a7000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a70000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e71665274515a703761447436574e79346a6f62513362556d6d395a4856626e5355365945624462523144662f00000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063c4d4ec941161006f578063c4d4ec941461078a578063c87b56dd146107b3578063d5abeb01146107f0578063e985e9c51461081b578063f2fde38b146108585761021a565b8063a22cb465146106bb578063abfe40a8146106e4578063b029a5141461070d578063b88d4fde14610738578063c3c62d38146107615761021a565b8063715018a6116100f2578063715018a6146105f85780637885ce391461060f5780638da5cb5b1461063a57806395d89b41146106655780639943770d146106905761021a565b80636352211e1461052a5780636c0360eb14610567578063701ee0061461059257806370a08231146105bb5761021a565b8063228025e8116101a657806341f434341161017557806341f434341461045957806342842e0e1461048457806344a0d68a146104ad57806346bb0a16146104d657806355f804b3146105015761021a565b8063228025e8146103d457806323b872dd146103fd5780632db11544146104265780633ccfd60b146104425761021a565b80630bb12bb8116101ed5780630bb12bb8146102ed5780630e21f59f1461031857806313faede61461034157806318160ddd1461036c57806318cae269146103975761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612dfe565b610881565b6040516102539190612e46565b60405180910390f35b34801561026857600080fd5b50610271610963565b60405161027e9190612ef1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612f49565b6109f5565b6040516102bb9190612fb7565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612ffe565b610a71565b005b3480156102f957600080fd5b50610302610a8a565b60405161030f9190612e46565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061306a565b610a9d565b005b34801561034d57600080fd5b50610356610b36565b60405161036391906130a6565b60405180910390f35b34801561037857600080fd5b50610381610b3c565b60405161038e91906130a6565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906130c1565b610b46565b6040516103cb91906130a6565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612f49565b610b5e565b005b34801561040957600080fd5b50610424600480360381019061041f91906130ee565b610be4565b005b610440600480360381019061043b9190612f49565b610c33565b005b34801561044e57600080fd5b50610457610ec9565b005b34801561046557600080fd5b5061046e611016565b60405161047b91906131a0565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906130ee565b611028565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190612f49565b611077565b005b3480156104e257600080fd5b506104eb6110fd565b6040516104f89190612fb7565b60405180910390f35b34801561050d57600080fd5b50610528600480360381019061052391906132f0565b611123565b005b34801561053657600080fd5b50610551600480360381019061054c9190612f49565b6111b2565b60405161055e9190612fb7565b60405180910390f35b34801561057357600080fd5b5061057c611227565b6040516105899190612ef1565b60405180910390f35b34801561059e57600080fd5b506105b960048036038101906105b49190612f49565b6112b5565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906130c1565b61133b565b6040516105ef91906130a6565b60405180910390f35b34801561060457600080fd5b5061060d61148c565b005b34801561061b57600080fd5b50610624611514565b6040516106319190612fb7565b60405180910390f35b34801561064657600080fd5b5061064f61153a565b60405161065c9190612fb7565b60405180910390f35b34801561067157600080fd5b5061067a611564565b6040516106879190612ef1565b60405180910390f35b34801561069c57600080fd5b506106a56115f6565b6040516106b291906130a6565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613339565b6115fc565b005b3480156106f057600080fd5b5061070b60048036038101906107069190612f49565b611615565b005b34801561071957600080fd5b506107226116c5565b60405161072f91906130a6565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a919061341a565b6116cb565b005b34801561076d57600080fd5b5061078860048036038101906107839190612f49565b61171c565b005b34801561079657600080fd5b506107b160048036038101906107ac91906130c1565b6117a2565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190612f49565b611862565b6040516107e79190612ef1565b60405180910390f35b3480156107fc57600080fd5b506108056118de565b60405161081291906130a6565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d919061349d565b6118e4565b60405161084f9190612e46565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a91906130c1565b611978565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095c575061095b82611a6f565b5b9050919050565b6060600280546109729061350c565b80601f016020809104026020016040519081016040528092919081815260200182805461099e9061350c565b80156109eb5780601f106109c0576101008083540402835291602001916109eb565b820191906000526020600020905b8154815290600101906020018083116109ce57829003601f168201915b5050505050905090565b6000610a0082611ad9565b610a36576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a7b81611ae7565b610a858383611be4565b505050565b600860149054906101000a900460ff1681565b610aa5611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610ac361153a565b73ffffffffffffffffffffffffffffffffffffffff1614610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613589565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b60095481565b6000600154905090565b600f6020528060005260406000206000915090505481565b610b66611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610b8461153a565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190613589565b60405180910390fd5b80600a8190555050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2257610c2133611ae7565b5b610c2d848484611da6565b50505050565b600860149054906101000a900460ff1615610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a906135f5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890613661565b60405180910390fd5b6000610cfb610b3c565b905081600954610d0b91906136b0565b341015610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061373e565b60405180910390fd5b600c54821115610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d89906137aa565b60405180910390fd5b600a548183610da191906137ca565b1115610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd99061384a565b60405180910390fd5b600b54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906138b6565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eb491906137ca565b92505081905550610ec53383611eb3565b5050565b610ed1611d9e565b73ffffffffffffffffffffffffffffffffffffffff16610eef61153a565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90613589565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610f8d90613907565b60006040518083038185875af1925050503d8060008114610fca576040519150601f19603f3d011682016040523d82523d6000602084013e610fcf565b606091505b5050905080611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613968565b60405180910390fd5b50565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110665761106533611ae7565b5b611071848484611ed1565b50505050565b61107f611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661109d61153a565b73ffffffffffffffffffffffffffffffffffffffff16146110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea90613589565b60405180910390fd5b8060098190555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61112b611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661114961153a565b73ffffffffffffffffffffffffffffffffffffffff161461119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613589565b60405180910390fd5b80600790816111ae9190613b2a565b5050565b60006111bd82611ad9565b6111f3576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111fc82611ef1565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600780546112349061350c565b80601f01602080910402602001604051908101604052809291908181526020018280546112609061350c565b80156112ad5780601f10611282576101008083540402835291602001916112ad565b820191906000526020600020905b81548152906001019060200180831161129057829003601f168201915b505050505081565b6112bd611d9e565b73ffffffffffffffffffffffffffffffffffffffff166112db61153a565b73ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890613589565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113ac610b3c565b905060008060005b8381101561148057600080600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461142e578092505b8673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361146e578361146b90613bfc565b93505b508061147990613bfc565b90506113b4565b50819350505050919050565b611494611d9e565b73ffffffffffffffffffffffffffffffffffffffff166114b261153a565b73ffffffffffffffffffffffffffffffffffffffff1614611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613589565b60405180910390fd5b6115126000611fd0565b565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115739061350c565b80601f016020809104026020016040519081016040528092919081815260200182805461159f9061350c565b80156115ec5780601f106115c1576101008083540402835291602001916115ec565b820191906000526020600020905b8154815290600101906020018083116115cf57829003601f168201915b5050505050905090565b600c5481565b8161160681611ae7565b6116108383612096565b505050565b61161d611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661163b61153a565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613589565b60405180910390fd5b600061169b610b3c565b9050600a5481836116ac91906137ca565b11156116b757600080fd5b6116c13383611eb3565b5050565b600b5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117095761170833611ae7565b5b6117158585858561220d565b5050505050565b611724611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661174261153a565b73ffffffffffffffffffffffffffffffffffffffff1614611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613589565b60405180910390fd5b80600c8190555050565b6117aa611d9e565b73ffffffffffffffffffffffffffffffffffffffff166117c861153a565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613589565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606061186d82611ad9565b6118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c90565b60405180910390fd5b60076118b78361231c565b6040516020016118c8929190613dbb565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611980611d9e565b73ffffffffffffffffffffffffffffffffffffffff1661199e61153a565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613589565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90613e5c565b60405180910390fd5b611a6c81611fd0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611be1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611b5e929190613e7c565b602060405180830381865afa158015611b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9f9190613eba565b611be057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611bd79190612fb7565b60405180910390fd5b5b50565b6000611bef82611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506000816000015190508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d05576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d24611d9e565b73ffffffffffffffffffffffffffffffffffffffff1614158015611d565750611d5481611d4f611d9e565b6118e4565b155b15611d8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d9884848461247c565b50505050565b600033905090565b6000611db182611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff1916815250509050611e6b611e64611d9e565b8383612532565b611ea1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ead848484846125c4565b50505050565b611ecd8282604051806020016040528060008152506128a6565b5050565b611eec838383604051806020016040528060008152506116cb565b505050565b6000611efc82611ad9565b611f32576040517f3210dcc600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806000848152602001908152602001600020905060008390505b600073ffffffffffffffffffffffffffffffffffffffff168260000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611fc657806001900390506000808281526020019081526020016000209150611f4e565b8192505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209e611d9e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612102576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806005600061210f611d9e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121bc611d9e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122019190612e46565b60405180910390a35050565b600061221883611ef1565b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900460a01b73ffffffffffffffffffffffffffffffffffffffff191673ffffffffffffffffffffffffffffffffffffffff19168152505090506122d26122cb611d9e565b8483612532565b612308576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612315858585848661293e565b5050505050565b606060008203612363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612477565b600082905060005b6000821461239557808061237e90613bfc565b915050600a8261238e9190613f16565b915061236b565b60008167ffffffffffffffff8111156123b1576123b06131c5565b5b6040519080825280601f01601f1916602001820160405280156123e35781602001600182028036833780820191505090505b5090505b60008514612470576001826123fc9190613f47565b9150600a8561240b9190613f7b565b603061241791906137ca565b60f81b81838151811061242d5761242c613fac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124699190613f16565b94506123e7565b8093505050505b919050565b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080826000015190508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061257c575061257b81866118e4565b5b806125ba57508473ffffffffffffffffffffffffffffffffffffffff166125a2856109f5565b73ffffffffffffffffffffffffffffffffffffffff16145b9150509392505050565b8373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612693576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a084848460016129bc565b6126ac6000838361247c565b60006001830190506126bd81611ad9565b156127a65760008060008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036127a45782600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001518160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c02179055505b505b5060008060008481526020019081526020016000209050838160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061281085858585602001516129c2565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461289f85858560016129cc565b5050505050565b600060015490506128b784846129d2565b6128d68473ffffffffffffffffffffffffffffffffffffffff16612c1f565b156129385760005b83811015612936576128f560008683850186612c42565b61292b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060010190506128de565b505b50505050565b61294a858585856125c4565b6129698473ffffffffffffffffffffffffffffffffffffffff16612c1f565b801561297e575061297c85858584612c42565b155b156129b5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b50505050565b6000949350505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a38576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103612a72576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006001549050612a8660008483856129bc565b60005b82811015612bfc5760007f000000000000000000000000000000000000000000000000000000000000000014612af25760007f00000000000000000000000000000000000000000000000000000000000000008281612aeb57612aea613ee7565b5b0614612af7565b600081145b15612b9357600080600083850181526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612b6a600086848601600060a01b6129c2565b8160000160146101000a8154816bffffffffffffffffffffffff021916908360a01c0217905550505b8082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806001019050612a89565b5081600160008282540192505081905550612c1a60008483856129cc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c68611d9e565b8786866040518563ffffffff1660e01b8152600401612c8a9493929190614030565b6020604051808303816000875af1925050508015612cc657506040513d601f19601f82011682018060405250810190612cc39190614091565b60015b612d3f573d8060008114612cf6576040519150601f19603f3d011682016040523d82523d6000602084013e612cfb565b606091505b506000815103612d37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ddb81612da6565b8114612de657600080fd5b50565b600081359050612df881612dd2565b92915050565b600060208284031215612e1457612e13612d9c565b5b6000612e2284828501612de9565b91505092915050565b60008115159050919050565b612e4081612e2b565b82525050565b6000602082019050612e5b6000830184612e37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e9b578082015181840152602081019050612e80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ec382612e61565b612ecd8185612e6c565b9350612edd818560208601612e7d565b612ee681612ea7565b840191505092915050565b60006020820190508181036000830152612f0b8184612eb8565b905092915050565b6000819050919050565b612f2681612f13565b8114612f3157600080fd5b50565b600081359050612f4381612f1d565b92915050565b600060208284031215612f5f57612f5e612d9c565b5b6000612f6d84828501612f34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fa182612f76565b9050919050565b612fb181612f96565b82525050565b6000602082019050612fcc6000830184612fa8565b92915050565b612fdb81612f96565b8114612fe657600080fd5b50565b600081359050612ff881612fd2565b92915050565b6000806040838503121561301557613014612d9c565b5b600061302385828601612fe9565b925050602061303485828601612f34565b9150509250929050565b61304781612e2b565b811461305257600080fd5b50565b6000813590506130648161303e565b92915050565b6000602082840312156130805761307f612d9c565b5b600061308e84828501613055565b91505092915050565b6130a081612f13565b82525050565b60006020820190506130bb6000830184613097565b92915050565b6000602082840312156130d7576130d6612d9c565b5b60006130e584828501612fe9565b91505092915050565b60008060006060848603121561310757613106612d9c565b5b600061311586828701612fe9565b935050602061312686828701612fe9565b925050604061313786828701612f34565b9150509250925092565b6000819050919050565b600061316661316161315c84612f76565b613141565b612f76565b9050919050565b60006131788261314b565b9050919050565b600061318a8261316d565b9050919050565b61319a8161317f565b82525050565b60006020820190506131b56000830184613191565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131fd82612ea7565b810181811067ffffffffffffffff8211171561321c5761321b6131c5565b5b80604052505050565b600061322f612d92565b905061323b82826131f4565b919050565b600067ffffffffffffffff82111561325b5761325a6131c5565b5b61326482612ea7565b9050602081019050919050565b82818337600083830152505050565b600061329361328e84613240565b613225565b9050828152602081018484840111156132af576132ae6131c0565b5b6132ba848285613271565b509392505050565b600082601f8301126132d7576132d66131bb565b5b81356132e7848260208601613280565b91505092915050565b60006020828403121561330657613305612d9c565b5b600082013567ffffffffffffffff81111561332457613323612da1565b5b613330848285016132c2565b91505092915050565b600080604083850312156133505761334f612d9c565b5b600061335e85828601612fe9565b925050602061336f85828601613055565b9150509250929050565b600067ffffffffffffffff821115613394576133936131c5565b5b61339d82612ea7565b9050602081019050919050565b60006133bd6133b884613379565b613225565b9050828152602081018484840111156133d9576133d86131c0565b5b6133e4848285613271565b509392505050565b600082601f830112613401576134006131bb565b5b81356134118482602086016133aa565b91505092915050565b6000806000806080858703121561343457613433612d9c565b5b600061344287828801612fe9565b945050602061345387828801612fe9565b935050604061346487828801612f34565b925050606085013567ffffffffffffffff81111561348557613484612da1565b5b613491878288016133ec565b91505092959194509250565b600080604083850312156134b4576134b3612d9c565b5b60006134c285828601612fe9565b92505060206134d385828601612fe9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061352457607f821691505b602082108103613537576135366134dd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613573602083612e6c565b915061357e8261353d565b602082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f436f6e7472616374206973205061757365640000000000000000000000000000600082015250565b60006135df601283612e6c565b91506135ea826135a9565b602082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b600061364b601f83612e6c565b915061365682613615565b602082019050919050565b6000602082019050818103600083015261367a8161363e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136bb82612f13565b91506136c683612f13565b92508282026136d481612f13565b915082820484148315176136eb576136ea613681565b5b5092915050565b7f4e6f7420456e6f75676820457468657200000000000000000000000000000000600082015250565b6000613728601083612e6c565b9150613733826136f2565b602082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b7f4f766572205478204c696d697400000000000000000000000000000000000000600082015250565b6000613794600d83612e6c565b915061379f8261375e565b602082019050919050565b600060208201905081810360008301526137c381613787565b9050919050565b60006137d582612f13565b91506137e083612f13565b92508282019050808211156137f8576137f7613681565b5b92915050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000613834600783612e6c565b915061383f826137fe565b602082019050919050565b6000602082019050818103600083015261386381613827565b9050919050565b7f4f766572204d617850657257616c6c6574000000000000000000000000000000600082015250565b60006138a0601183612e6c565b91506138ab8261386a565b602082019050919050565b600060208201905081810360008301526138cf81613893565b9050919050565b600081905092915050565b50565b60006138f16000836138d6565b91506138fc826138e1565b600082019050919050565b6000613912826138e4565b9150819050919050565b7f4661696c656420746f2073656e6420746f206c6561642e000000000000000000600082015250565b6000613952601783612e6c565b915061395d8261391c565b602082019050919050565b6000602082019050818103600083015261398181613945565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026139ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826139ad565b6139f486836139ad565b95508019841693508086168417925050509392505050565b6000613a27613a22613a1d84612f13565b613141565b612f13565b9050919050565b6000819050919050565b613a4183613a0c565b613a55613a4d82613a2e565b8484546139ba565b825550505050565b600090565b613a6a613a5d565b613a75818484613a38565b505050565b5b81811015613a9957613a8e600082613a62565b600181019050613a7b565b5050565b601f821115613ade57613aaf81613988565b613ab88461399d565b81016020851015613ac7578190505b613adb613ad38561399d565b830182613a7a565b50505b505050565b600082821c905092915050565b6000613b0160001984600802613ae3565b1980831691505092915050565b6000613b1a8383613af0565b9150826002028217905092915050565b613b3382612e61565b67ffffffffffffffff811115613b4c57613b4b6131c5565b5b613b56825461350c565b613b61828285613a9d565b600060209050601f831160018114613b945760008415613b82578287015190505b613b8c8582613b0e565b865550613bf4565b601f198416613ba286613988565b60005b82811015613bca57848901518255600182019150602085019450602081019050613ba5565b86831015613be75784890151613be3601f891682613af0565b8355505b6001600288020188555050505b505050505050565b6000613c0782612f13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3957613c38613681565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613c7a601583612e6c565b9150613c8582613c44565b602082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b600081905092915050565b60008154613cc88161350c565b613cd28186613cb0565b94506001821660008114613ced5760018114613d0257613d35565b60ff1983168652811515820286019350613d35565b613d0b85613988565b60005b83811015613d2d57815481890152600182019150602081019050613d0e565b838801955050505b50505092915050565b6000613d4982612e61565b613d538185613cb0565b9350613d63818560208601612e7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613da5600583613cb0565b9150613db082613d6f565b600582019050919050565b6000613dc78285613cbb565b9150613dd38284613d3e565b9150613dde82613d98565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e46602683612e6c565b9150613e5182613dea565b604082019050919050565b60006020820190508181036000830152613e7581613e39565b9050919050565b6000604082019050613e916000830185612fa8565b613e9e6020830184612fa8565b9392505050565b600081519050613eb48161303e565b92915050565b600060208284031215613ed057613ecf612d9c565b5b6000613ede84828501613ea5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f2182612f13565b9150613f2c83612f13565b925082613f3c57613f3b613ee7565b5b828204905092915050565b6000613f5282612f13565b9150613f5d83612f13565b9250828203905081811115613f7557613f74613681565b5b92915050565b6000613f8682612f13565b9150613f9183612f13565b925082613fa157613fa0613ee7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061400282613fdb565b61400c8185613fe6565b935061401c818560208601612e7d565b61402581612ea7565b840191505092915050565b60006080820190506140456000830187612fa8565b6140526020830186612fa8565b61405f6040830185613097565b81810360608301526140718184613ff7565b905095945050505050565b60008151905061408b81612dd2565b92915050565b6000602082840312156140a7576140a6612d9c565b5b60006140b58482850161407c565b9150509291505056fea26469706673582212201ad0c8f4c9d93672a8e4bf2561874bf71977266a997d7a7186f4bce4f5dbc86364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a7000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a70000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e71665274515a703761447436574e79346a6f62513362556d6d395a4856626e5355365945624462523144662f00000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmNqfRtQZp7aDt6WNy4jobQ3bUmm9ZHVbnSU6YEbDbR1Df/
Arg [1] : _lead (address): 0xA75574b50EB3DA40F1458fA05D8eF7177daB95A7
Arg [2] : _contractV1 (address): 0xA75574b50EB3DA40F1458fA05D8eF7177daB95A7
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a7
Arg [2] : 000000000000000000000000a75574b50eb3da40f1458fa05d8ef7177dab95a7
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d4e71665274515a703761447436574e79346a6f62513362
Arg [5] : 556d6d395a4856626e5355365945624462523144662f00000000000000000000
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.