Overview
TokenID
200
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArtExplose
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)
// SPDX-License-Identifier: MIT /** *Submitted for verification at Etherscan.io on 2022-12-10 */ //██ █▄▄▄▄ ▄▄▄▄▀ ▄███▄ ▄ █ ▄▄ █ ████▄ ▄▄▄▄▄ ▄███▄ ███ ▀▄ ▄ ████▄ ███ █ ▄███▄ ▄ //█ █ █ ▄▀ ▀▀▀ █ █▀ ▀ ▀▄ █ █ █ █ █ █ █ ▀▄ █▀ ▀ █ █ █ █ █ █ █ █ █ █▀ ▀ ▀▄ █ //█▄▄█ █▀▀▌ █ ██▄▄ █ ▀ █▀▀▀ █ █ █ ▄ ▀▀▀▀▄ ██▄▄ █ ▀ ▄ ▀█ █ █ █ ▀ ▄ █ ██▄▄ █ ▀ //█ █ █ █ █ █▄ ▄▀ ▄ █ █ ███▄ ▀████ ▀▄▄▄▄▀ █▄ ▄▀ █ ▄▀ █ ▀████ █ ▄▀ ███▄ █▄ ▄▀ ▄ █ // █ █ ▀ ▀███▀ █ ▀▄ █ ▀ ▀███▀ ███ ▄▀ ███ ▀ ▀███▀ █ ▀▄ // █ ▀ ▀ ▀ ▀ // ▀ //Art Explose by Oblex - First artwork "A mad painter" explose in 1600 pieces in the Blockchain Ethereum //A mad painter after having concluded his work in the throes //of a crisis decided to destroy his painting in 1600 parts. //Who will now fill his work by him? // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.9; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } //file IOperatorFilterRegistry abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = 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(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // 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) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.9 ; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: IOperatorFilterRegistry.sol pragma solidity ^0.8.9 <0.9.0; 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 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); } pragma solidity ^0.8.7; contract ArtExplose is DefaultOperatorFilterer, ERC721A,Ownable, ReentrancyGuard { using Strings for uint256; string private uriPrefix ="ipfs://QmUj1Y2D1sqUhnkq4DxaVusHerU4CDGW7iyUrA2hv1S9UE/"; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.0025 ether; uint256 public whiteListCost = 0.00001 ether; uint16 public maxSupply = 1601; uint8 public maxMintAmountPerTx = 20; uint8 public maxFreeMintAmountPerWallet = 4; uint256 public freeNFTAlreadyMinted = 0; uint256 public NUM_FREE_MINTS = 200; bool public WLpaused = false; bool public paused = false; bool public reveal =true; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerPublicAddress; mapping (address => bool) public isWhitelisted; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { } function mint(uint256 _mintAmount) external payable { require(!paused, "The contract is paused!"); require(totalSupply() + _mintAmount < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){ require( (cost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) { require( (cost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); require( _mintAmount <= maxMintAmountPerTx, "Max mints per transaction exceeded" ); } else { require( _mintAmount <= maxFreeMintAmountPerWallet, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += _mintAmount; } } _safeMint(msg.sender, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Excedes max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setWLCost(uint256 _cost) external onlyOwner { whiteListCost = _cost; delete _cost; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = false; } } function whitelistMint(uint256 _mintAmount) external payable { require(!WLpaused, "Whitelist minting is over!"); require(isWhitelisted[msg.sender], "You are not whitelisted"); require(totalSupply() + _mintAmount < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){ require( (whiteListCost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) { require( (whiteListCost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); require( _mintAmount <= maxMintAmountPerTx, "Max mints per transaction exceeded" ); } else { require( _mintAmount <= maxFreeMintAmountPerWallet, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += _mintAmount; } } _safeMint(msg.sender, _mintAmount); } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } 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 withdraw() public onlyOwner nonReentrant { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); // ============================================================================= } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"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":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180606001604052806036815260200162005fd960369139600a90816200002e91906200073e565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200007591906200073e565b506608e1bc9bf04000600d556509184e72a000600e55610641600f60006101000a81548161ffff021916908361ffff1602179055506014600f60026101000a81548160ff021916908360ff1602179055506004600f60036101000a81548160ff021916908360ff160217905550600060105560c86011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055503480156200014a57600080fd5b506040516200600f3803806200600f833981810160405281019062000170919062000989565b8282733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037e57801562000244576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020a92919062000a87565b600060405180830381600087803b1580156200022557600080fd5b505af11580156200023a573d6000803e3d6000fd5b505050506200037d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002fe576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002c492919062000a87565b600060405180830381600087803b158015620002df57600080fd5b505af1158015620002f4573d6000803e3d6000fd5b505050506200037c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000347919062000ab4565b600060405180830381600087803b1580156200036257600080fd5b505af115801562000377573d6000803e3d6000fd5b505050505b5b5b505081600290816200039191906200073e565b508060039081620003a391906200073e565b50620003b4620003ed60201b60201c565b6000819055505050620003dc620003d0620003f660201b60201c565b620003fe60201b60201c565b600160098190555050505062000ad1565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054657607f821691505b6020821081036200055c576200055b620004fe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000587565b620005d2868362000587565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200061f620006196200061384620005ea565b620005f4565b620005ea565b9050919050565b6000819050919050565b6200063b83620005fe565b620006536200064a8262000626565b84845462000594565b825550505050565b600090565b6200066a6200065b565b6200067781848462000630565b505050565b5b818110156200069f576200069360008262000660565b6001810190506200067d565b5050565b601f821115620006ee57620006b88162000562565b620006c38462000577565b81016020851015620006d3578190505b620006eb620006e28562000577565b8301826200067c565b50505b505050565b600082821c905092915050565b60006200071360001984600802620006f3565b1980831691505092915050565b60006200072e838362000700565b9150826002028217905092915050565b6200074982620004c4565b67ffffffffffffffff811115620007655762000764620004cf565b5b6200077182546200052d565b6200077e828285620006a3565b600060209050601f831160018114620007b65760008415620007a1578287015190505b620007ad858262000720565b8655506200081d565b601f198416620007c68662000562565b60005b82811015620007f057848901518255600182019150602085019450602081019050620007c9565b868310156200081057848901516200080c601f89168262000700565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200085f8262000843565b810181811067ffffffffffffffff82111715620008815762000880620004cf565b5b80604052505050565b60006200089662000825565b9050620008a4828262000854565b919050565b600067ffffffffffffffff821115620008c757620008c6620004cf565b5b620008d28262000843565b9050602081019050919050565b60005b83811015620008ff578082015181840152602081019050620008e2565b60008484015250505050565b6000620009226200091c84620008a9565b6200088a565b9050828152602081018484840111156200094157620009406200083e565b5b6200094e848285620008df565b509392505050565b600082601f8301126200096e576200096d62000839565b5b8151620009808482602086016200090b565b91505092915050565b600080600060608486031215620009a557620009a46200082f565b5b600084015167ffffffffffffffff811115620009c657620009c562000834565b5b620009d48682870162000956565b935050602084015167ffffffffffffffff811115620009f857620009f762000834565b5b62000a068682870162000956565b925050604084015167ffffffffffffffff81111562000a2a5762000a2962000834565b5b62000a388682870162000956565b9150509250925092565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a6f8262000a42565b9050919050565b62000a818162000a62565b82525050565b600060408201905062000a9e600083018562000a76565b62000aad602083018462000a76565b9392505050565b600060208201905062000acb600083018462000a76565b92915050565b6154f88062000ae16000396000f3fe6080604052600436106102935760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610982578063e94053c7146109ad578063e985e9c5146109ea578063eef440af14610a27578063f2fde38b14610a52578063f8bf517214610a7b57610293565b8063a475b5dd14610876578063aa062290146108a1578063b88d4fde146108ca578063c87b56dd146108f3578063cffb6e2014610930578063d1d192131461095957610293565b80639257e044116101135780639257e0441461078557806394354fd0146107b057806395d89b41146107db578063982d669e14610806578063a0712d6814610831578063a22cb4651461084d57610293565b80637ec4a659146106985780637f6e9093146106c1578063868ff4a2146106ec5780638da5cb5b146107085780638e07484c146107335780638f65fe0a1461075c57610293565b806337a66d85116101fe5780634d9c1848116101b75780634d9c18481461057657806359bf5dbb1461059f5780635c975abb146105dc5780636352211e1461060757806370a0823114610644578063715018a61461068157610293565b806337a66d85146104a25780633af32abf146104b95780633bd64968146104f65780633ccfd60b1461050d57806342842e0e1461052457806344a0d68a1461054d57610293565b80631067fcc7116102505780631067fcc7146103a657806313faede6146103cf57806318160ddd146103fa578063193ad7b41461042557806323b872dd146104505780632f6f98e11461047957610293565b806301ffc9a71461029857806306421c2f146102d557806306fdde03146102fe578063081812fc14610329578063093cfa6314610366578063095ea7b31461037d575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613f64565b610aa6565b6040516102cc9190613fac565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190614001565b610b88565b005b34801561030a57600080fd5b50610313610c24565b60405161032091906140be565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190614116565b610cb6565b60405161035d9190614184565b60405180910390f35b34801561037257600080fd5b5061037b610d32565b005b34801561038957600080fd5b506103a4600480360381019061039f91906141cb565b610dda565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190614340565b610ee4565b005b3480156103db57600080fd5b506103e4610f73565b6040516103f19190614398565b60405180910390f35b34801561040657600080fd5b5061040f610f79565b60405161041c9190614398565b60405180910390f35b34801561043157600080fd5b5061043a610f90565b6040516104479190614398565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906143b3565b610f96565b005b34801561048557600080fd5b506104a0600480360381019061049b9190614406565b611178565b005b3480156104ae57600080fd5b506104b7611285565b005b3480156104c557600080fd5b506104e060048036038101906104db9190614446565b611348565b6040516104ed9190613fac565b60405180910390f35b34801561050257600080fd5b5061050b611368565b005b34801561051957600080fd5b50610522611410565b005b34801561053057600080fd5b5061054b600480360381019061054691906143b3565b611561565b005b34801561055957600080fd5b50610574600480360381019061056f9190614116565b611743565b005b34801561058257600080fd5b5061059d600480360381019061059891906144ac565b6117c9565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190614446565b611867565b6040516105d391906144e8565b60405180910390f35b3480156105e857600080fd5b506105f1611887565b6040516105fe9190613fac565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614116565b61189a565b60405161063b9190614184565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190614446565b6118b0565b6040516106789190614398565b60405180910390f35b34801561068d57600080fd5b5061069661197f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614340565b611a07565b005b3480156106cd57600080fd5b506106d6611a96565b6040516106e39190613fac565b60405180910390f35b61070660048036038101906107019190614116565b611aa9565b005b34801561071457600080fd5b5061071d611db9565b60405161072a9190614184565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614563565b611de3565b005b34801561076857600080fd5b50610783600480360381019061077e9190614563565b611f0a565b005b34801561079157600080fd5b5061079a612031565b6040516107a79190614398565b60405180910390f35b3480156107bc57600080fd5b506107c5612037565b6040516107d291906144e8565b60405180910390f35b3480156107e757600080fd5b506107f061204a565b6040516107fd91906140be565b60405180910390f35b34801561081257600080fd5b5061081b6120dc565b6040516108289190614398565b60405180910390f35b61084b60048036038101906108469190614116565b6120e2565b005b34801561085957600080fd5b50610874600480360381019061086f91906145dc565b612366565b005b34801561088257600080fd5b5061088b6124dd565b6040516108989190613fac565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c391906144ac565b6124f0565b005b3480156108d657600080fd5b506108f160048036038101906108ec91906146bd565b61258a565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190614116565b61276f565b60405161092791906140be565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190614740565b6128c7565b005b34801561096557600080fd5b50610980600480360381019061097b9190614116565b612a30565b005b34801561098e57600080fd5b50610997612aba565b6040516109a491906147af565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614446565b612ace565b6040516109e191906144e8565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906147ca565b612aee565b604051610a1e9190613fac565b60405180910390f35b348015610a3357600080fd5b50610a3c612b82565b604051610a4991906140be565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190614446565b612c10565b005b348015610a8757600080fd5b50610a90612d07565b604051610a9d91906144e8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b815750610b8082612d1a565b5b9050919050565b610b90612d84565b73ffffffffffffffffffffffffffffffffffffffff16610bae611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90614856565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610c33906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f906148a5565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b6000610cc182612d8c565b610cf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d3a612d84565b73ffffffffffffffffffffffffffffffffffffffff16610d58611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614856565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610de58261189a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6b612d84565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9d5750610e9b81610e96612d84565b612aee565b155b15610ed4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edf838383612dda565b505050565b610eec612d84565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790614856565b60405180910390fd5b80600c9081610f6f9190614a82565b5050565b600d5481565b6000610f83612e8c565b6001546000540303905090565b60105481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611166573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100857611003848484612e95565b611172565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611051929190614b54565b602060405180830381865afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190614b92565b801561112457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110e2929190614b54565b602060405180830381865afa1580156110ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111239190614b92565b5b61116557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161115c9190614184565b60405180910390fd5b5b611171848484612e95565b5b50505050565b611180612d84565b73ffffffffffffffffffffffffffffffffffffffff1661119e611db9565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90614856565b60405180910390fd5b60006111fe610f79565b9050600f60009054906101000a900461ffff1661ffff1683826112219190614bee565b61ffff161115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614c70565b60405180910390fd5b611274828461ffff16612ea5565b600092506000915060009050505050565b61128d612d84565b73ffffffffffffffffffffffffffffffffffffffff166112ab611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614856565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b611370612d84565b73ffffffffffffffffffffffffffffffffffffffff1661138e611db9565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90614856565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b611418612d84565b73ffffffffffffffffffffffffffffffffffffffff16611436611db9565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614856565b60405180910390fd5b6002600954036114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890614cdc565b60405180910390fd5b600260098190555060006114e3611db9565b73ffffffffffffffffffffffffffffffffffffffff164760405161150690614d2d565b60006040518083038185875af1925050503d8060008114611543576040519150601f19603f3d011682016040523d82523d6000602084013e611548565b606091505b505090508061155657600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611731573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115d3576115ce848484612ec3565b61173d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161161c929190614b54565b602060405180830381865afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190614b92565b80156116ef57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016116ad929190614b54565b602060405180830381865afa1580156116ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ee9190614b92565b5b61173057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117279190614184565b60405180910390fd5b5b61173c848484612ec3565b5b50505050565b61174b612d84565b73ffffffffffffffffffffffffffffffffffffffff16611769611db9565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614856565b60405180910390fd5b80600d8190555050565b6117d1612d84565b73ffffffffffffffffffffffffffffffffffffffff166117ef611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614856565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b60136020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b60006118a582612ee3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611917576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611987612d84565b73ffffffffffffffffffffffffffffffffffffffff166119a5611db9565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614856565b60405180910390fd5b611a056000613172565b565b611a0f612d84565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90614856565b60405180910390fd5b80600a9081611a929190614a82565b5050565b601260009054906101000a900460ff1681565b601260009054906101000a900460ff1615611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090614d8e565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614dfa565b60405180910390fd5b6001600f60009054906101000a900461ffff16611ba29190614bee565b61ffff1681611baf610f79565b611bb99190614e1a565b10611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614e9a565b60405180910390fd5b60115481601054611c0a9190614e1a565b1115611c65573481600e54611c1f9190614eba565b1115611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614f48565b60405180910390fd5b611dac565b600f60039054906101000a900460ff1660ff1681611c82336118b0565b611c8c9190614e1a565b1115611d3c573481600e54611ca19190614eba565b1115611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990614f48565b60405180910390fd5b600f60029054906101000a900460ff1660ff16811115611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90614fda565b60405180910390fd5b611dab565b600f60039054906101000a900460ff1660ff16811115611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614fda565b60405180910390fd5b8060106000828254611da39190614e1a565b925050819055505b5b611db63382612ea5565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611deb612d84565b73ffffffffffffffffffffffffffffffffffffffff16611e09611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614856565b60405180910390fd5b60005b828290508160ff161015611f055760016015600085858560ff16818110611e8c57611e8b614ffa565b5b9050602002016020810190611ea19190614446565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611efd90615029565b915050611e62565b505050565b611f12612d84565b73ffffffffffffffffffffffffffffffffffffffff16611f30611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614856565b60405180910390fd5b60005b828290508160ff16101561202c5760006015600085858560ff16818110611fb357611fb2614ffa565b5b9050602002016020810190611fc89190614446565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061202490615029565b915050611f89565b505050565b600e5481565b600f60029054906101000a900460ff1681565b606060038054612059906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612085906148a5565b80156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050905090565b60115481565b601260019054906101000a900460ff1615612132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121299061509e565b60405180910390fd5b6001600f60009054906101000a900461ffff1661214f9190614bee565b61ffff168161215c610f79565b6121669190614e1a565b106121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614e9a565b60405180910390fd5b601154816010546121b79190614e1a565b1115612212573481600d546121cc9190614eba565b111561220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490614f48565b60405180910390fd5b612359565b600f60039054906101000a900460ff1660ff168161222f336118b0565b6122399190614e1a565b11156122e9573481600d5461224e9190614eba565b111561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690614f48565b60405180910390fd5b600f60029054906101000a900460ff1660ff168111156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614fda565b60405180910390fd5b612358565b600f60039054906101000a900460ff1660ff1681111561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614fda565b60405180910390fd5b80601060008282546123509190614e1a565b925050819055505b5b6123633382612ea5565b50565b61236e612d84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006123df612d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661248c612d84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d19190613fac565b60405180910390a35050565b601260029054906101000a900460ff1681565b6124f8612d84565b73ffffffffffffffffffffffffffffffffffffffff16612516611db9565b73ffffffffffffffffffffffffffffffffffffffff161461256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614856565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561275b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125fd576125f885858585613238565b612768565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612646929190614b54565b602060405180830381865afa158015612663573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126879190614b92565b801561271957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126d7929190614b54565b602060405180830381865afa1580156126f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127189190614b92565b5b61275a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127519190614184565b60405180910390fd5b5b61276785858585613238565b5b5050505050565b606061277a82612d8c565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090615130565b60405180910390fd5b60001515601260029054906101000a900460ff1615150361286657600c80546127e1906148a5565b80601f016020809104026020016040519081016040528092919081815260200182805461280d906148a5565b801561285a5780601f1061282f5761010080835404028352916020019161285a565b820191906000526020600020905b81548152906001019060200180831161283d57829003601f168201915b505050505090506128c2565b60006128706132b4565b9050600081511161289057604051806020016040528060008152506128be565b8061289a84613346565b600b6040516020016128ae9392919061520f565b6040516020818303038152906040525b9150505b919050565b6128cf612d84565b73ffffffffffffffffffffffffffffffffffffffff166128ed611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614856565b60405180910390fd5b600061294d610f79565b90506000838390508560ff166129639190614eba565b9050600f60009054906101000a900461ffff1661ffff16818361ffff1661298a9190614e1a565b11156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290614c70565b60405180910390fd5b60005b84849050811015612a2057612a0d8585838181106129ef576129ee614ffa565b5b9050602002016020810190612a049190614446565b8760ff16612ea5565b8080612a1890615240565b9150506129ce565b5060009450600091505050505050565b612a38612d84565b73ffffffffffffffffffffffffffffffffffffffff16612a56611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390614856565b60405180910390fd5b80600e819055506000905050565b600f60009054906101000a900461ffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c8054612b8f906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612bbb906148a5565b8015612c085780601f10612bdd57610100808354040283529160200191612c08565b820191906000526020600020905b815481529060010190602001808311612beb57829003601f168201915b505050505081565b612c18612d84565b73ffffffffffffffffffffffffffffffffffffffff16612c36611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390614856565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf2906152fa565b60405180910390fd5b612d0481613172565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612d97612e8c565b11158015612da6575060005482105b8015612dd3575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612ea08383836134a6565b505050565b612ebf82826040518060200160405280600081525061395a565b5050565b612ede8383836040518060200160405280600081525061258a565b505050565b612eeb613eb5565b600082905080612ef9612e8c565b11158015612f08575060005481105b1561313b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301d57809250505061316d565b5b60011561313857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461313357809250505061316d565b61301e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132438484846134a6565b6132628373ffffffffffffffffffffffffffffffffffffffff1661396c565b801561327757506132758484848461398f565b155b156132ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060600a80546132c3906148a5565b80601f01602080910402602001604051908101604052809291908181526020018280546132ef906148a5565b801561333c5780601f106133115761010080835404028352916020019161333c565b820191906000526020600020905b81548152906001019060200180831161331f57829003601f168201915b5050505050905090565b60606000820361338d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a1565b600082905060005b600082146133bf5780806133a890615240565b915050600a826133b89190615349565b9150613395565b60008167ffffffffffffffff8111156133db576133da614215565b5b6040519080825280601f01601f19166020018201604052801561340d5781602001600182028036833780820191505090505b5090505b6000851461349a57600182613426919061537a565b9150600a8561343591906153ae565b60306134419190614e1a565b60f81b81838151811061345757613456614ffa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134939190615349565b9450613411565b8093505050505b919050565b60006134b182612ee3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461351c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661353d612d84565b73ffffffffffffffffffffffffffffffffffffffff16148061356c575061356b85613566612d84565b612aee565b5b806135b1575061357a612d84565b73ffffffffffffffffffffffffffffffffffffffff1661359984610cb6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806135ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613650576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61365d8585856001613adf565b61366960008487612dda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036138e85760005482146138e757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139538585856001613ae5565b5050505050565b6139678383836001613aeb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b5612d84565b8786866040518563ffffffff1660e01b81526004016139d79493929190615434565b6020604051808303816000875af1925050508015613a1357506040513d601f19601f82011682018060405250810190613a109190615495565b60015b613a8c573d8060008114613a43576040519150601f19603f3d011682016040523d82523d6000602084013e613a48565b606091505b506000815103613a84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b91576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b9e6000868387613adf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d685750613d678773ffffffffffffffffffffffffffffffffffffffff1661396c565b5b15613e2d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ddd600088848060010195508861398f565b613e13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d6e578260005414613e2857600080fd5b613e98565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613e2e575b816000819055505050613eae6000868387613ae5565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f4181613f0c565b8114613f4c57600080fd5b50565b600081359050613f5e81613f38565b92915050565b600060208284031215613f7a57613f79613f02565b5b6000613f8884828501613f4f565b91505092915050565b60008115159050919050565b613fa681613f91565b82525050565b6000602082019050613fc16000830184613f9d565b92915050565b600061ffff82169050919050565b613fde81613fc7565b8114613fe957600080fd5b50565b600081359050613ffb81613fd5565b92915050565b60006020828403121561401757614016613f02565b5b600061402584828501613fec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561406857808201518184015260208101905061404d565b60008484015250505050565b6000601f19601f8301169050919050565b60006140908261402e565b61409a8185614039565b93506140aa81856020860161404a565b6140b381614074565b840191505092915050565b600060208201905081810360008301526140d88184614085565b905092915050565b6000819050919050565b6140f3816140e0565b81146140fe57600080fd5b50565b600081359050614110816140ea565b92915050565b60006020828403121561412c5761412b613f02565b5b600061413a84828501614101565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061416e82614143565b9050919050565b61417e81614163565b82525050565b60006020820190506141996000830184614175565b92915050565b6141a881614163565b81146141b357600080fd5b50565b6000813590506141c58161419f565b92915050565b600080604083850312156141e2576141e1613f02565b5b60006141f0858286016141b6565b925050602061420185828601614101565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61424d82614074565b810181811067ffffffffffffffff8211171561426c5761426b614215565b5b80604052505050565b600061427f613ef8565b905061428b8282614244565b919050565b600067ffffffffffffffff8211156142ab576142aa614215565b5b6142b482614074565b9050602081019050919050565b82818337600083830152505050565b60006142e36142de84614290565b614275565b9050828152602081018484840111156142ff576142fe614210565b5b61430a8482856142c1565b509392505050565b600082601f8301126143275761432661420b565b5b81356143378482602086016142d0565b91505092915050565b60006020828403121561435657614355613f02565b5b600082013567ffffffffffffffff81111561437457614373613f07565b5b61438084828501614312565b91505092915050565b614392816140e0565b82525050565b60006020820190506143ad6000830184614389565b92915050565b6000806000606084860312156143cc576143cb613f02565b5b60006143da868287016141b6565b93505060206143eb868287016141b6565b92505060406143fc86828701614101565b9150509250925092565b6000806040838503121561441d5761441c613f02565b5b600061442b85828601613fec565b925050602061443c858286016141b6565b9150509250929050565b60006020828403121561445c5761445b613f02565b5b600061446a848285016141b6565b91505092915050565b600060ff82169050919050565b61448981614473565b811461449457600080fd5b50565b6000813590506144a681614480565b92915050565b6000602082840312156144c2576144c1613f02565b5b60006144d084828501614497565b91505092915050565b6144e281614473565b82525050565b60006020820190506144fd60008301846144d9565b92915050565b600080fd5b600080fd5b60008083601f8401126145235761452261420b565b5b8235905067ffffffffffffffff8111156145405761453f614503565b5b60208301915083602082028301111561455c5761455b614508565b5b9250929050565b6000806020838503121561457a57614579613f02565b5b600083013567ffffffffffffffff81111561459857614597613f07565b5b6145a48582860161450d565b92509250509250929050565b6145b981613f91565b81146145c457600080fd5b50565b6000813590506145d6816145b0565b92915050565b600080604083850312156145f3576145f2613f02565b5b6000614601858286016141b6565b9250506020614612858286016145c7565b9150509250929050565b600067ffffffffffffffff82111561463757614636614215565b5b61464082614074565b9050602081019050919050565b600061466061465b8461461c565b614275565b90508281526020810184848401111561467c5761467b614210565b5b6146878482856142c1565b509392505050565b600082601f8301126146a4576146a361420b565b5b81356146b484826020860161464d565b91505092915050565b600080600080608085870312156146d7576146d6613f02565b5b60006146e5878288016141b6565b94505060206146f6878288016141b6565b935050604061470787828801614101565b925050606085013567ffffffffffffffff81111561472857614727613f07565b5b6147348782880161468f565b91505092959194509250565b60008060006040848603121561475957614758613f02565b5b600061476786828701614497565b935050602084013567ffffffffffffffff81111561478857614787613f07565b5b6147948682870161450d565b92509250509250925092565b6147a981613fc7565b82525050565b60006020820190506147c460008301846147a0565b92915050565b600080604083850312156147e1576147e0613f02565b5b60006147ef858286016141b6565b9250506020614800858286016141b6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614840602083614039565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bd57607f821691505b6020821081036148d0576148cf614876565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826148fb565b61494286836148fb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061497f61497a614975846140e0565b61495a565b6140e0565b9050919050565b6000819050919050565b61499983614964565b6149ad6149a582614986565b848454614908565b825550505050565b600090565b6149c26149b5565b6149cd818484614990565b505050565b5b818110156149f1576149e66000826149ba565b6001810190506149d3565b5050565b601f821115614a3657614a07816148d6565b614a10846148eb565b81016020851015614a1f578190505b614a33614a2b856148eb565b8301826149d2565b50505b505050565b600082821c905092915050565b6000614a5960001984600802614a3b565b1980831691505092915050565b6000614a728383614a48565b9150826002028217905092915050565b614a8b8261402e565b67ffffffffffffffff811115614aa457614aa3614215565b5b614aae82546148a5565b614ab98282856149f5565b600060209050601f831160018114614aec5760008415614ada578287015190505b614ae48582614a66565b865550614b4c565b601f198416614afa866148d6565b60005b82811015614b2257848901518255600182019150602085019450602081019050614afd565b86831015614b3f5784890151614b3b601f891682614a48565b8355505b6001600288020188555050505b505050505050565b6000604082019050614b696000830185614175565b614b766020830184614175565b9392505050565b600081519050614b8c816145b0565b92915050565b600060208284031215614ba857614ba7613f02565b5b6000614bb684828501614b7d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bf982613fc7565b9150614c0483613fc7565b9250828201905061ffff811115614c1e57614c1d614bbf565b5b92915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b6000614c5a601383614039565b9150614c6582614c24565b602082019050919050565b60006020820190508181036000830152614c8981614c4d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614cc6601f83614039565b9150614cd182614c90565b602082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b600081905092915050565b50565b6000614d17600083614cfc565b9150614d2282614d07565b600082019050919050565b6000614d3882614d0a565b9150819050919050565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b6000614d78601a83614039565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000614de4601783614039565b9150614def82614dae565b602082019050919050565b60006020820190508181036000830152614e1381614dd7565b9050919050565b6000614e25826140e0565b9150614e30836140e0565b9250828201905080821115614e4857614e47614bbf565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000614e84600783614039565b9150614e8f82614e4e565b602082019050919050565b60006020820190508181036000830152614eb381614e77565b9050919050565b6000614ec5826140e0565b9150614ed0836140e0565b9250828202614ede816140e0565b91508282048414831517614ef557614ef4614bbf565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000614f32601883614039565b9150614f3d82614efc565b602082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fc4602283614039565b9150614fcf82614f68565b604082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061503482614473565b915060ff820361504757615046614bbf565b5b600182019050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000615088601783614039565b915061509382615052565b602082019050919050565b600060208201905081810360008301526150b78161507b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061511a602f83614039565b9150615125826150be565b604082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b600081905092915050565b60006151668261402e565b6151708185615150565b935061518081856020860161404a565b80840191505092915050565b60008154615199816148a5565b6151a38186615150565b945060018216600081146151be57600181146151d357615206565b60ff1983168652811515820286019350615206565b6151dc856148d6565b60005b838110156151fe578154818901526001820191506020810190506151df565b838801955050505b50505092915050565b600061521b828661515b565b9150615227828561515b565b9150615233828461518c565b9150819050949350505050565b600061524b826140e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361527d5761527c614bbf565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152e4602683614039565b91506152ef82615288565b604082019050919050565b60006020820190508181036000830152615313816152d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615354826140e0565b915061535f836140e0565b92508261536f5761536e61531a565b5b828204905092915050565b6000615385826140e0565b9150615390836140e0565b92508282039050818111156153a8576153a7614bbf565b5b92915050565b60006153b9826140e0565b91506153c4836140e0565b9250826153d4576153d361531a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615406826153df565b61541081856153ea565b935061542081856020860161404a565b61542981614074565b840191505092915050565b60006080820190506154496000830187614175565b6154566020830186614175565b6154636040830185614389565b818103606083015261547581846153fb565b905095945050505050565b60008151905061548f81613f38565b92915050565b6000602082840312156154ab576154aa613f02565b5b60006154b984828501615480565b9150509291505056fea26469706673582212202ed1b61ee52b284f4abfca1e5829943c367f70c272108fd498cdcd62d5f82e9464736f6c63430008110033697066733a2f2f516d556a3159324431737155686e6b713444786156757348657255344344475737697955724132687631533955452f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4172744578706c6f73650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044145424f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d556a3159324431737155686e6b713444786156757348657255344344475737697955724132687631533955452f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102935760003560e01c80637ec4a6591161015a578063a475b5dd116100c1578063d5abeb011161007a578063d5abeb0114610982578063e94053c7146109ad578063e985e9c5146109ea578063eef440af14610a27578063f2fde38b14610a52578063f8bf517214610a7b57610293565b8063a475b5dd14610876578063aa062290146108a1578063b88d4fde146108ca578063c87b56dd146108f3578063cffb6e2014610930578063d1d192131461095957610293565b80639257e044116101135780639257e0441461078557806394354fd0146107b057806395d89b41146107db578063982d669e14610806578063a0712d6814610831578063a22cb4651461084d57610293565b80637ec4a659146106985780637f6e9093146106c1578063868ff4a2146106ec5780638da5cb5b146107085780638e07484c146107335780638f65fe0a1461075c57610293565b806337a66d85116101fe5780634d9c1848116101b75780634d9c18481461057657806359bf5dbb1461059f5780635c975abb146105dc5780636352211e1461060757806370a0823114610644578063715018a61461068157610293565b806337a66d85146104a25780633af32abf146104b95780633bd64968146104f65780633ccfd60b1461050d57806342842e0e1461052457806344a0d68a1461054d57610293565b80631067fcc7116102505780631067fcc7146103a657806313faede6146103cf57806318160ddd146103fa578063193ad7b41461042557806323b872dd146104505780632f6f98e11461047957610293565b806301ffc9a71461029857806306421c2f146102d557806306fdde03146102fe578063081812fc14610329578063093cfa6314610366578063095ea7b31461037d575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613f64565b610aa6565b6040516102cc9190613fac565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190614001565b610b88565b005b34801561030a57600080fd5b50610313610c24565b60405161032091906140be565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190614116565b610cb6565b60405161035d9190614184565b60405180910390f35b34801561037257600080fd5b5061037b610d32565b005b34801561038957600080fd5b506103a4600480360381019061039f91906141cb565b610dda565b005b3480156103b257600080fd5b506103cd60048036038101906103c89190614340565b610ee4565b005b3480156103db57600080fd5b506103e4610f73565b6040516103f19190614398565b60405180910390f35b34801561040657600080fd5b5061040f610f79565b60405161041c9190614398565b60405180910390f35b34801561043157600080fd5b5061043a610f90565b6040516104479190614398565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906143b3565b610f96565b005b34801561048557600080fd5b506104a0600480360381019061049b9190614406565b611178565b005b3480156104ae57600080fd5b506104b7611285565b005b3480156104c557600080fd5b506104e060048036038101906104db9190614446565b611348565b6040516104ed9190613fac565b60405180910390f35b34801561050257600080fd5b5061050b611368565b005b34801561051957600080fd5b50610522611410565b005b34801561053057600080fd5b5061054b600480360381019061054691906143b3565b611561565b005b34801561055957600080fd5b50610574600480360381019061056f9190614116565b611743565b005b34801561058257600080fd5b5061059d600480360381019061059891906144ac565b6117c9565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190614446565b611867565b6040516105d391906144e8565b60405180910390f35b3480156105e857600080fd5b506105f1611887565b6040516105fe9190613fac565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614116565b61189a565b60405161063b9190614184565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190614446565b6118b0565b6040516106789190614398565b60405180910390f35b34801561068d57600080fd5b5061069661197f565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614340565b611a07565b005b3480156106cd57600080fd5b506106d6611a96565b6040516106e39190613fac565b60405180910390f35b61070660048036038101906107019190614116565b611aa9565b005b34801561071457600080fd5b5061071d611db9565b60405161072a9190614184565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190614563565b611de3565b005b34801561076857600080fd5b50610783600480360381019061077e9190614563565b611f0a565b005b34801561079157600080fd5b5061079a612031565b6040516107a79190614398565b60405180910390f35b3480156107bc57600080fd5b506107c5612037565b6040516107d291906144e8565b60405180910390f35b3480156107e757600080fd5b506107f061204a565b6040516107fd91906140be565b60405180910390f35b34801561081257600080fd5b5061081b6120dc565b6040516108289190614398565b60405180910390f35b61084b60048036038101906108469190614116565b6120e2565b005b34801561085957600080fd5b50610874600480360381019061086f91906145dc565b612366565b005b34801561088257600080fd5b5061088b6124dd565b6040516108989190613fac565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c391906144ac565b6124f0565b005b3480156108d657600080fd5b506108f160048036038101906108ec91906146bd565b61258a565b005b3480156108ff57600080fd5b5061091a60048036038101906109159190614116565b61276f565b60405161092791906140be565b60405180910390f35b34801561093c57600080fd5b5061095760048036038101906109529190614740565b6128c7565b005b34801561096557600080fd5b50610980600480360381019061097b9190614116565b612a30565b005b34801561098e57600080fd5b50610997612aba565b6040516109a491906147af565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614446565b612ace565b6040516109e191906144e8565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906147ca565b612aee565b604051610a1e9190613fac565b60405180910390f35b348015610a3357600080fd5b50610a3c612b82565b604051610a4991906140be565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a749190614446565b612c10565b005b348015610a8757600080fd5b50610a90612d07565b604051610a9d91906144e8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b815750610b8082612d1a565b5b9050919050565b610b90612d84565b73ffffffffffffffffffffffffffffffffffffffff16610bae611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90614856565b60405180910390fd5b80600f60006101000a81548161ffff021916908361ffff16021790555050565b606060028054610c33906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f906148a5565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b5050505050905090565b6000610cc182612d8c565b610cf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d3a612d84565b73ffffffffffffffffffffffffffffffffffffffff16610d58611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614856565b60405180910390fd5b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6000610de58261189a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6b612d84565b73ffffffffffffffffffffffffffffffffffffffff1614158015610e9d5750610e9b81610e96612d84565b612aee565b155b15610ed4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edf838383612dda565b505050565b610eec612d84565b73ffffffffffffffffffffffffffffffffffffffff16610f0a611db9565b73ffffffffffffffffffffffffffffffffffffffff1614610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790614856565b60405180910390fd5b80600c9081610f6f9190614a82565b5050565b600d5481565b6000610f83612e8c565b6001546000540303905090565b60105481565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611166573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100857611003848484612e95565b611172565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611051929190614b54565b602060405180830381865afa15801561106e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110929190614b92565b801561112457506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110e2929190614b54565b602060405180830381865afa1580156110ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111239190614b92565b5b61116557336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161115c9190614184565b60405180910390fd5b5b611171848484612e95565b5b50505050565b611180612d84565b73ffffffffffffffffffffffffffffffffffffffff1661119e611db9565b73ffffffffffffffffffffffffffffffffffffffff16146111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90614856565b60405180910390fd5b60006111fe610f79565b9050600f60009054906101000a900461ffff1661ffff1683826112219190614bee565b61ffff161115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614c70565b60405180910390fd5b611274828461ffff16612ea5565b600092506000915060009050505050565b61128d612d84565b73ffffffffffffffffffffffffffffffffffffffff166112ab611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614856565b60405180910390fd5b601260019054906101000a900460ff1615601260016101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550565b60156020528060005260406000206000915054906101000a900460ff1681565b611370612d84565b73ffffffffffffffffffffffffffffffffffffffff1661138e611db9565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90614856565b60405180910390fd5b601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550565b611418612d84565b73ffffffffffffffffffffffffffffffffffffffff16611436611db9565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390614856565b60405180910390fd5b6002600954036114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890614cdc565b60405180910390fd5b600260098190555060006114e3611db9565b73ffffffffffffffffffffffffffffffffffffffff164760405161150690614d2d565b60006040518083038185875af1925050503d8060008114611543576040519150601f19603f3d011682016040523d82523d6000602084013e611548565b606091505b505090508061155657600080fd5b506001600981905550565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611731573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115d3576115ce848484612ec3565b61173d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161161c929190614b54565b602060405180830381865afa158015611639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061165d9190614b92565b80156116ef57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016116ad929190614b54565b602060405180830381865afa1580156116ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ee9190614b92565b5b61173057336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016117279190614184565b60405180910390fd5b5b61173c848484612ec3565b5b50505050565b61174b612d84565b73ffffffffffffffffffffffffffffffffffffffff16611769611db9565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b690614856565b60405180910390fd5b80600d8190555050565b6117d1612d84565b73ffffffffffffffffffffffffffffffffffffffff166117ef611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614856565b60405180910390fd5b80600f60036101000a81548160ff021916908360ff1602179055506000905050565b60136020528060005260406000206000915054906101000a900460ff1681565b601260019054906101000a900460ff1681565b60006118a582612ee3565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611917576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611987612d84565b73ffffffffffffffffffffffffffffffffffffffff166119a5611db9565b73ffffffffffffffffffffffffffffffffffffffff16146119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290614856565b60405180910390fd5b611a056000613172565b565b611a0f612d84565b73ffffffffffffffffffffffffffffffffffffffff16611a2d611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90614856565b60405180910390fd5b80600a9081611a929190614a82565b5050565b601260009054906101000a900460ff1681565b601260009054906101000a900460ff1615611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090614d8e565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614dfa565b60405180910390fd5b6001600f60009054906101000a900461ffff16611ba29190614bee565b61ffff1681611baf610f79565b611bb99190614e1a565b10611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090614e9a565b60405180910390fd5b60115481601054611c0a9190614e1a565b1115611c65573481600e54611c1f9190614eba565b1115611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614f48565b60405180910390fd5b611dac565b600f60039054906101000a900460ff1660ff1681611c82336118b0565b611c8c9190614e1a565b1115611d3c573481600e54611ca19190614eba565b1115611ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd990614f48565b60405180910390fd5b600f60029054906101000a900460ff1660ff16811115611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90614fda565b60405180910390fd5b611dab565b600f60039054906101000a900460ff1660ff16811115611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614fda565b60405180910390fd5b8060106000828254611da39190614e1a565b925050819055505b5b611db63382612ea5565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611deb612d84565b73ffffffffffffffffffffffffffffffffffffffff16611e09611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690614856565b60405180910390fd5b60005b828290508160ff161015611f055760016015600085858560ff16818110611e8c57611e8b614ffa565b5b9050602002016020810190611ea19190614446565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611efd90615029565b915050611e62565b505050565b611f12612d84565b73ffffffffffffffffffffffffffffffffffffffff16611f30611db9565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614856565b60405180910390fd5b60005b828290508160ff16101561202c5760006015600085858560ff16818110611fb357611fb2614ffa565b5b9050602002016020810190611fc89190614446565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061202490615029565b915050611f89565b505050565b600e5481565b600f60029054906101000a900460ff1681565b606060038054612059906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612085906148a5565b80156120d25780601f106120a7576101008083540402835291602001916120d2565b820191906000526020600020905b8154815290600101906020018083116120b557829003601f168201915b5050505050905090565b60115481565b601260019054906101000a900460ff1615612132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121299061509e565b60405180910390fd5b6001600f60009054906101000a900461ffff1661214f9190614bee565b61ffff168161215c610f79565b6121669190614e1a565b106121a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219d90614e9a565b60405180910390fd5b601154816010546121b79190614e1a565b1115612212573481600d546121cc9190614eba565b111561220d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220490614f48565b60405180910390fd5b612359565b600f60039054906101000a900460ff1660ff168161222f336118b0565b6122399190614e1a565b11156122e9573481600d5461224e9190614eba565b111561228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690614f48565b60405180910390fd5b600f60029054906101000a900460ff1660ff168111156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614fda565b60405180910390fd5b612358565b600f60039054906101000a900460ff1660ff1681111561233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614fda565b60405180910390fd5b80601060008282546123509190614e1a565b925050819055505b5b6123633382612ea5565b50565b61236e612d84565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006123df612d84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661248c612d84565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124d19190613fac565b60405180910390a35050565b601260029054906101000a900460ff1681565b6124f8612d84565b73ffffffffffffffffffffffffffffffffffffffff16612516611db9565b73ffffffffffffffffffffffffffffffffffffffff161461256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390614856565b60405180910390fd5b80600f60026101000a81548160ff021916908360ff16021790555050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561275b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125fd576125f885858585613238565b612768565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401612646929190614b54565b602060405180830381865afa158015612663573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126879190614b92565b801561271957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016126d7929190614b54565b602060405180830381865afa1580156126f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127189190614b92565b5b61275a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016127519190614184565b60405180910390fd5b5b61276785858585613238565b5b5050505050565b606061277a82612d8c565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090615130565b60405180910390fd5b60001515601260029054906101000a900460ff1615150361286657600c80546127e1906148a5565b80601f016020809104026020016040519081016040528092919081815260200182805461280d906148a5565b801561285a5780601f1061282f5761010080835404028352916020019161285a565b820191906000526020600020905b81548152906001019060200180831161283d57829003601f168201915b505050505090506128c2565b60006128706132b4565b9050600081511161289057604051806020016040528060008152506128be565b8061289a84613346565b600b6040516020016128ae9392919061520f565b6040516020818303038152906040525b9150505b919050565b6128cf612d84565b73ffffffffffffffffffffffffffffffffffffffff166128ed611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614856565b60405180910390fd5b600061294d610f79565b90506000838390508560ff166129639190614eba565b9050600f60009054906101000a900461ffff1661ffff16818361ffff1661298a9190614e1a565b11156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c290614c70565b60405180910390fd5b60005b84849050811015612a2057612a0d8585838181106129ef576129ee614ffa565b5b9050602002016020810190612a049190614446565b8760ff16612ea5565b8080612a1890615240565b9150506129ce565b5060009450600091505050505050565b612a38612d84565b73ffffffffffffffffffffffffffffffffffffffff16612a56611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa390614856565b60405180910390fd5b80600e819055506000905050565b600f60009054906101000a900461ffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c8054612b8f906148a5565b80601f0160208091040260200160405190810160405280929190818152602001828054612bbb906148a5565b8015612c085780601f10612bdd57610100808354040283529160200191612c08565b820191906000526020600020905b815481529060010190602001808311612beb57829003601f168201915b505050505081565b612c18612d84565b73ffffffffffffffffffffffffffffffffffffffff16612c36611db9565b73ffffffffffffffffffffffffffffffffffffffff1614612c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8390614856565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf2906152fa565b60405180910390fd5b612d0481613172565b50565b600f60039054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612d97612e8c565b11158015612da6575060005482105b8015612dd3575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b612ea08383836134a6565b505050565b612ebf82826040518060200160405280600081525061395a565b5050565b612ede8383836040518060200160405280600081525061258a565b505050565b612eeb613eb5565b600082905080612ef9612e8c565b11158015612f08575060005481105b1561313b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461301d57809250505061316d565b5b60011561313857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461313357809250505061316d565b61301e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132438484846134a6565b6132628373ffffffffffffffffffffffffffffffffffffffff1661396c565b801561327757506132758484848461398f565b155b156132ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060600a80546132c3906148a5565b80601f01602080910402602001604051908101604052809291908181526020018280546132ef906148a5565b801561333c5780601f106133115761010080835404028352916020019161333c565b820191906000526020600020905b81548152906001019060200180831161331f57829003601f168201915b5050505050905090565b60606000820361338d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134a1565b600082905060005b600082146133bf5780806133a890615240565b915050600a826133b89190615349565b9150613395565b60008167ffffffffffffffff8111156133db576133da614215565b5b6040519080825280601f01601f19166020018201604052801561340d5781602001600182028036833780820191505090505b5090505b6000851461349a57600182613426919061537a565b9150600a8561343591906153ae565b60306134419190614e1a565b60f81b81838151811061345757613456614ffa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134939190615349565b9450613411565b8093505050505b919050565b60006134b182612ee3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461351c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661353d612d84565b73ffffffffffffffffffffffffffffffffffffffff16148061356c575061356b85613566612d84565b612aee565b5b806135b1575061357a612d84565b73ffffffffffffffffffffffffffffffffffffffff1661359984610cb6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806135ea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613650576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61365d8585856001613adf565b61366960008487612dda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036138e85760005482146138e757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139538585856001613ae5565b5050505050565b6139678383836001613aeb565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b5612d84565b8786866040518563ffffffff1660e01b81526004016139d79493929190615434565b6020604051808303816000875af1925050508015613a1357506040513d601f19601f82011682018060405250810190613a109190615495565b60015b613a8c573d8060008114613a43576040519150601f19603f3d011682016040523d82523d6000602084013e613a48565b606091505b506000815103613a84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613b57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613b91576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b9e6000868387613adf565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613d685750613d678773ffffffffffffffffffffffffffffffffffffffff1661396c565b5b15613e2d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ddd600088848060010195508861398f565b613e13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613d6e578260005414613e2857600080fd5b613e98565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613e2e575b816000819055505050613eae6000868387613ae5565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f4181613f0c565b8114613f4c57600080fd5b50565b600081359050613f5e81613f38565b92915050565b600060208284031215613f7a57613f79613f02565b5b6000613f8884828501613f4f565b91505092915050565b60008115159050919050565b613fa681613f91565b82525050565b6000602082019050613fc16000830184613f9d565b92915050565b600061ffff82169050919050565b613fde81613fc7565b8114613fe957600080fd5b50565b600081359050613ffb81613fd5565b92915050565b60006020828403121561401757614016613f02565b5b600061402584828501613fec565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561406857808201518184015260208101905061404d565b60008484015250505050565b6000601f19601f8301169050919050565b60006140908261402e565b61409a8185614039565b93506140aa81856020860161404a565b6140b381614074565b840191505092915050565b600060208201905081810360008301526140d88184614085565b905092915050565b6000819050919050565b6140f3816140e0565b81146140fe57600080fd5b50565b600081359050614110816140ea565b92915050565b60006020828403121561412c5761412b613f02565b5b600061413a84828501614101565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061416e82614143565b9050919050565b61417e81614163565b82525050565b60006020820190506141996000830184614175565b92915050565b6141a881614163565b81146141b357600080fd5b50565b6000813590506141c58161419f565b92915050565b600080604083850312156141e2576141e1613f02565b5b60006141f0858286016141b6565b925050602061420185828601614101565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61424d82614074565b810181811067ffffffffffffffff8211171561426c5761426b614215565b5b80604052505050565b600061427f613ef8565b905061428b8282614244565b919050565b600067ffffffffffffffff8211156142ab576142aa614215565b5b6142b482614074565b9050602081019050919050565b82818337600083830152505050565b60006142e36142de84614290565b614275565b9050828152602081018484840111156142ff576142fe614210565b5b61430a8482856142c1565b509392505050565b600082601f8301126143275761432661420b565b5b81356143378482602086016142d0565b91505092915050565b60006020828403121561435657614355613f02565b5b600082013567ffffffffffffffff81111561437457614373613f07565b5b61438084828501614312565b91505092915050565b614392816140e0565b82525050565b60006020820190506143ad6000830184614389565b92915050565b6000806000606084860312156143cc576143cb613f02565b5b60006143da868287016141b6565b93505060206143eb868287016141b6565b92505060406143fc86828701614101565b9150509250925092565b6000806040838503121561441d5761441c613f02565b5b600061442b85828601613fec565b925050602061443c858286016141b6565b9150509250929050565b60006020828403121561445c5761445b613f02565b5b600061446a848285016141b6565b91505092915050565b600060ff82169050919050565b61448981614473565b811461449457600080fd5b50565b6000813590506144a681614480565b92915050565b6000602082840312156144c2576144c1613f02565b5b60006144d084828501614497565b91505092915050565b6144e281614473565b82525050565b60006020820190506144fd60008301846144d9565b92915050565b600080fd5b600080fd5b60008083601f8401126145235761452261420b565b5b8235905067ffffffffffffffff8111156145405761453f614503565b5b60208301915083602082028301111561455c5761455b614508565b5b9250929050565b6000806020838503121561457a57614579613f02565b5b600083013567ffffffffffffffff81111561459857614597613f07565b5b6145a48582860161450d565b92509250509250929050565b6145b981613f91565b81146145c457600080fd5b50565b6000813590506145d6816145b0565b92915050565b600080604083850312156145f3576145f2613f02565b5b6000614601858286016141b6565b9250506020614612858286016145c7565b9150509250929050565b600067ffffffffffffffff82111561463757614636614215565b5b61464082614074565b9050602081019050919050565b600061466061465b8461461c565b614275565b90508281526020810184848401111561467c5761467b614210565b5b6146878482856142c1565b509392505050565b600082601f8301126146a4576146a361420b565b5b81356146b484826020860161464d565b91505092915050565b600080600080608085870312156146d7576146d6613f02565b5b60006146e5878288016141b6565b94505060206146f6878288016141b6565b935050604061470787828801614101565b925050606085013567ffffffffffffffff81111561472857614727613f07565b5b6147348782880161468f565b91505092959194509250565b60008060006040848603121561475957614758613f02565b5b600061476786828701614497565b935050602084013567ffffffffffffffff81111561478857614787613f07565b5b6147948682870161450d565b92509250509250925092565b6147a981613fc7565b82525050565b60006020820190506147c460008301846147a0565b92915050565b600080604083850312156147e1576147e0613f02565b5b60006147ef858286016141b6565b9250506020614800858286016141b6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614840602083614039565b915061484b8261480a565b602082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bd57607f821691505b6020821081036148d0576148cf614876565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026149387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826148fb565b61494286836148fb565b95508019841693508086168417925050509392505050565b6000819050919050565b600061497f61497a614975846140e0565b61495a565b6140e0565b9050919050565b6000819050919050565b61499983614964565b6149ad6149a582614986565b848454614908565b825550505050565b600090565b6149c26149b5565b6149cd818484614990565b505050565b5b818110156149f1576149e66000826149ba565b6001810190506149d3565b5050565b601f821115614a3657614a07816148d6565b614a10846148eb565b81016020851015614a1f578190505b614a33614a2b856148eb565b8301826149d2565b50505b505050565b600082821c905092915050565b6000614a5960001984600802614a3b565b1980831691505092915050565b6000614a728383614a48565b9150826002028217905092915050565b614a8b8261402e565b67ffffffffffffffff811115614aa457614aa3614215565b5b614aae82546148a5565b614ab98282856149f5565b600060209050601f831160018114614aec5760008415614ada578287015190505b614ae48582614a66565b865550614b4c565b601f198416614afa866148d6565b60005b82811015614b2257848901518255600182019150602085019450602081019050614afd565b86831015614b3f5784890151614b3b601f891682614a48565b8355505b6001600288020188555050505b505050505050565b6000604082019050614b696000830185614175565b614b766020830184614175565b9392505050565b600081519050614b8c816145b0565b92915050565b600060208284031215614ba857614ba7613f02565b5b6000614bb684828501614b7d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614bf982613fc7565b9150614c0483613fc7565b9250828201905061ffff811115614c1e57614c1d614bbf565b5b92915050565b7f45786365646573206d617820737570706c792e00000000000000000000000000600082015250565b6000614c5a601383614039565b9150614c6582614c24565b602082019050919050565b60006020820190508181036000830152614c8981614c4d565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614cc6601f83614039565b9150614cd182614c90565b602082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b600081905092915050565b50565b6000614d17600083614cfc565b9150614d2282614d07565b600082019050919050565b6000614d3882614d0a565b9150819050919050565b7f57686974656c697374206d696e74696e67206973206f76657221000000000000600082015250565b6000614d78601a83614039565b9150614d8382614d42565b602082019050919050565b60006020820190508181036000830152614da781614d6b565b9050919050565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b6000614de4601783614039565b9150614def82614dae565b602082019050919050565b60006020820190508181036000830152614e1381614dd7565b9050919050565b6000614e25826140e0565b9150614e30836140e0565b9250828201905080821115614e4857614e47614bbf565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000614e84600783614039565b9150614e8f82614e4e565b602082019050919050565b60006020820190508181036000830152614eb381614e77565b9050919050565b6000614ec5826140e0565b9150614ed0836140e0565b9250828202614ede816140e0565b91508282048414831517614ef557614ef4614bbf565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b6000614f32601883614039565b9150614f3d82614efc565b602082019050919050565b60006020820190508181036000830152614f6181614f25565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fc4602283614039565b9150614fcf82614f68565b604082019050919050565b60006020820190508181036000830152614ff381614fb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061503482614473565b915060ff820361504757615046614bbf565b5b600182019050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000615088601783614039565b915061509382615052565b602082019050919050565b600060208201905081810360008301526150b78161507b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061511a602f83614039565b9150615125826150be565b604082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b600081905092915050565b60006151668261402e565b6151708185615150565b935061518081856020860161404a565b80840191505092915050565b60008154615199816148a5565b6151a38186615150565b945060018216600081146151be57600181146151d357615206565b60ff1983168652811515820286019350615206565b6151dc856148d6565b60005b838110156151fe578154818901526001820191506020810190506151df565b838801955050505b50505092915050565b600061521b828661515b565b9150615227828561515b565b9150615233828461518c565b9150819050949350505050565b600061524b826140e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361527d5761527c614bbf565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152e4602683614039565b91506152ef82615288565b604082019050919050565b60006020820190508181036000830152615313816152d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615354826140e0565b915061535f836140e0565b92508261536f5761536e61531a565b5b828204905092915050565b6000615385826140e0565b9150615390836140e0565b92508282039050818111156153a8576153a7614bbf565b5b92915050565b60006153b9826140e0565b91506153c4836140e0565b9250826153d4576153d361531a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615406826153df565b61541081856153ea565b935061542081856020860161404a565b61542981614074565b840191505092915050565b60006080820190506154496000830187614175565b6154566020830186614175565b6154636040830185614389565b818103606083015261547581846153fb565b905095945050505050565b60008151905061548f81613f38565b92915050565b6000602082840312156154ab576154aa613f02565b5b60006154b984828501615480565b9150509291505056fea26469706673582212202ed1b61ee52b284f4abfca1e5829943c367f70c272108fd498cdcd62d5f82e9464736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4172744578706c6f73650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044145424f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d556a3159324431737155686e6b713444786156757348657255344344475737697955724132687631533955452f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): ArtExplose
Arg [1] : _tokenSymbol (string): AEBO
Arg [2] : _hiddenMetadataUri (string): ipfs://QmUj1Y2D1sqUhnkq4DxaVusHerU4CDGW7iyUrA2hv1S9UE/hidden.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4172744578706c6f736500000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4145424f00000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [8] : 697066733a2f2f516d556a3159324431737155686e6b71344478615675734865
Arg [9] : 7255344344475737697955724132687631533955452f68696464656e2e6a736f
Arg [10] : 6e00000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.