ERC-721
Overview
Max Total Supply
1,111 KONGZ
Holders
943
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KONGZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheKongz
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED /* ... */ pragma solidity ^0.8.10; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheKongz is ERC721A, Ownable { bool public saleEnabled; string public metadataBaseURL; uint256 public TXN_MAX_GLOBAL = 1111; uint256 public MAX_TXN = 1; uint256 public MAX_PER_WALLET = 1; uint256 public constant MAX_SUPPLY = 1111; mapping(address => uint256) public claims; constructor() ERC721A("The Kongz", "KONGZ", TXN_MAX_GLOBAL) { saleEnabled = false; } function setBaseURI(string memory baseURL) external onlyOwner { metadataBaseURL = baseURL; } function toggleSaleStatus() external onlyOwner { saleEnabled = !(saleEnabled); } function setMaxTxn(uint256 _maxTxn) external onlyOwner { MAX_TXN = _maxTxn; } function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner { MAX_PER_WALLET = _maxPerWallet; } function _baseURI() internal view virtual override returns (string memory) { return metadataBaseURL; } function withdraw() external onlyOwner { uint256 _balance = address(this).balance; address payable _sender = payable(_msgSender()); _sender.transfer(_balance); } function reserve(uint256 num) external onlyOwner { require((totalSupply() + num) <= MAX_SUPPLY, "Exceed max supply"); _safeMint(msg.sender, num); } function mint(uint256 numOfTokens) external payable { require( (claims[msg.sender] + numOfTokens) <= MAX_PER_WALLET, "Minted max for wallet" ); require(saleEnabled, "Sale must be active."); require(totalSupply() + numOfTokens <= MAX_SUPPLY, "Exceed max supply"); require(numOfTokens > 0, "Must mint at least 1 token"); require(numOfTokens <= MAX_TXN, "Cant mint more than 1"); claims[msg.sender] += numOfTokens; _safeMint(msg.sender, numOfTokens); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 public immutable maxBatchSize; string private _name; string private _symbol; mapping(uint256 => TokenOwnership) private _ownerships; mapping(address => AddressData) private _addressData; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } function totalSupply() public view override returns (uint256) { return currentIndex-1; } function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function _baseURI() internal view virtual returns (string memory) { return ""; } function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TXN_MAX_GLOBAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"claims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataBaseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURL","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxn","type":"uint256"}],"name":"setMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260016000556000600755610457600a556001600b556001600c553480156200002b57600080fd5b506040518060400160405280600981526020017f546865204b6f6e677a00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b4f4e475a000000000000000000000000000000000000000000000000000000815250600a5460008111620000e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000d89062000364565b60405180910390fd5b8260019080519060200190620000f99291906200022d565b508160029080519060200190620001129291906200022d565b5080608081815250505050506200013e620001326200015f60201b60201c565b6200016760201b60201c565b6000600860146101000a81548160ff021916908315150217905550620003eb565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b90620003b5565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200034c602783620002dd565b91506200035982620002ee565b604082019050919050565b600060208201905081810360008301526200037f816200033d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ce57607f821691505b60208210811415620003e557620003e462000386565b5b50919050565b6080516147006200041c60003960008181610d0b015281816122ec0152818161231501526129c701526147006000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063c6788bdd116100a0578063e985e9c51161006f578063e985e9c514610748578063ef69e96e14610785578063f2fde38b146107b0578063fc588c04146107d9578063fdd578ba1461080257610204565b8063c6788bdd1461067a578063c87b56dd146106b7578063d7224ba0146106f4578063e268e4d31461071f57610204565b80638da5cb5b116100e75780638da5cb5b146105b657806395d89b41146105e1578063a0712d681461060c578063a22cb46514610628578063b88d4fde1461065157610204565b806370a082311461050e578063715018a61461054b57806371b9b64614610562578063819b25ba1461058d57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461042b57806342842e0e146104425780634f6ccce71461046b57806355f804b3146104a85780636352211e146104d157610204565b806323b872dd1461036f5780632913daa0146103985780632f745c59146103c357806332cb6b0c1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102c55780630f2cdd6c146102ee57806310da2eb91461031957806318160ddd1461034457610204565b806301ffc9a714610209578063049c5c491461024657806306fdde031461025d578063081812fc14610288575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f51565b61082d565b60405161023d9190612f99565b60405180910390f35b34801561025257600080fd5b5061025b610977565b005b34801561026957600080fd5b50610272610a1f565b60405161027f919061304d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906130a5565b610ab1565b6040516102bc9190613113565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061315a565b610b36565b005b3480156102fa57600080fd5b50610303610c4f565b60405161031091906131a9565b60405180910390f35b34801561032557600080fd5b5061032e610c55565b60405161033b919061304d565b60405180910390f35b34801561035057600080fd5b50610359610ce3565b60405161036691906131a9565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906131c4565b610cf9565b005b3480156103a457600080fd5b506103ad610d09565b6040516103ba91906131a9565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061315a565b610d2d565b6040516103f791906131a9565b60405180910390f35b34801561040c57600080fd5b50610415610f2b565b60405161042291906131a9565b60405180910390f35b34801561043757600080fd5b50610440610f31565b005b34801561044e57600080fd5b50610469600480360381019061046491906131c4565b611009565b005b34801561047757600080fd5b50610492600480360381019061048d91906130a5565b611029565b60405161049f91906131a9565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca919061334c565b61107c565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906130a5565b611112565b6040516105059190613113565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613395565b611128565b60405161054291906131a9565b60405180910390f35b34801561055757600080fd5b50610560611211565b005b34801561056e57600080fd5b50610577611299565b6040516105849190612f99565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906130a5565b6112ac565b005b3480156105c257600080fd5b506105cb61138c565b6040516105d89190613113565b60405180910390f35b3480156105ed57600080fd5b506105f66113b6565b604051610603919061304d565b60405180910390f35b610626600480360381019061062191906130a5565b611448565b005b34801561063457600080fd5b5061064f600480360381019061064a91906133ee565b611668565b005b34801561065d57600080fd5b50610678600480360381019061067391906134cf565b6117e9565b005b34801561068657600080fd5b506106a1600480360381019061069c9190613395565b611845565b6040516106ae91906131a9565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906130a5565b61185d565b6040516106eb919061304d565b60405180910390f35b34801561070057600080fd5b50610709611904565b60405161071691906131a9565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906130a5565b61190a565b005b34801561075457600080fd5b5061076f600480360381019061076a9190613552565b611990565b60405161077c9190612f99565b60405180910390f35b34801561079157600080fd5b5061079a611a24565b6040516107a791906131a9565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613395565b611a2a565b005b3480156107e557600080fd5b5061080060048036038101906107fb91906130a5565b611b22565b005b34801561080e57600080fd5b50610817611ba8565b60405161082491906131a9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610970575061096f82611bae565b5b9050919050565b61097f611c18565b73ffffffffffffffffffffffffffffffffffffffff1661099d61138c565b73ffffffffffffffffffffffffffffffffffffffff16146109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906135de565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b606060018054610a2e9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a9061362d565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abc82611c20565b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906136d1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4182611112565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990613763565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd1611c18565b73ffffffffffffffffffffffffffffffffffffffff161480610c005750610bff81610bfa611c18565b611990565b5b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906137f5565b60405180910390fd5b610c4a838383611c2d565b505050565b600c5481565b60098054610c629061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e9061362d565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b505050505081565b60006001600054610cf49190613844565b905090565b610d04838383611cdf565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d3883611128565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906138ea565b60405180910390fd5b6000610d83610ce3565b905060008060005b83811015610ee9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed55786841415610ec6578195505050505050610f25565b8380610ed19061390a565b9450505b508080610ee19061390a565b915050610d8b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906139c5565b60405180910390fd5b92915050565b61045781565b610f39611c18565b73ffffffffffffffffffffffffffffffffffffffff16610f5761138c565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906135de565b60405180910390fd5b60004790506000610fbc611c18565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611004573d6000803e3d6000fd5b505050565b611024838383604051806020016040528060008152506117e9565b505050565b6000611033610ce3565b8210611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613a57565b60405180910390fd5b819050919050565b611084611c18565b73ffffffffffffffffffffffffffffffffffffffff166110a261138c565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906135de565b60405180910390fd5b806009908051906020019061110e929190612e08565b5050565b600061111d82612298565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613ae9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611219611c18565b73ffffffffffffffffffffffffffffffffffffffff1661123761138c565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906135de565b60405180910390fd5b611297600061249b565b565b600860149054906101000a900460ff1681565b6112b4611c18565b73ffffffffffffffffffffffffffffffffffffffff166112d261138c565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906135de565b60405180910390fd5b61045781611334610ce3565b61133e9190613b09565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613bab565b60405180910390fd5b6113893382612561565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113c59061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f19061362d565b801561143e5780601f106114135761010080835404028352916020019161143e565b820191906000526020600020905b81548152906001019060200180831161142157829003601f168201915b5050505050905090565b600c5481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114969190613b09565b11156114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613c17565b60405180910390fd5b600860149054906101000a900460ff16611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613c83565b60405180910390fd5b61045781611532610ce3565b61153c9190613b09565b111561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613bab565b60405180910390fd5b600081116115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613cef565b60405180910390fd5b600b54811115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613d5b565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116549190613b09565b925050819055506116653382612561565b50565b611670611c18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613dc7565b60405180910390fd5b80600660006116eb611c18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611798611c18565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117dd9190612f99565b60405180910390a35050565b6117f4848484611cdf565b6118008484848461257f565b61183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613e59565b60405180910390fd5b50505050565b600d6020528060005260406000206000915090505481565b606061186882611c20565b6118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613eeb565b60405180910390fd5b60006118b1612707565b905060008151116118d157604051806020016040528060008152506118fc565b806118db84612799565b6040516020016118ec929190613f47565b6040516020818303038152906040525b915050919050565b60075481565b611912611c18565b73ffffffffffffffffffffffffffffffffffffffff1661193061138c565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906135de565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611a32611c18565b73ffffffffffffffffffffffffffffffffffffffff16611a5061138c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906135de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613fdd565b60405180910390fd5b611b1f8161249b565b50565b611b2a611c18565b73ffffffffffffffffffffffffffffffffffffffff16611b4861138c565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906135de565b60405180910390fd5b80600b8190555050565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cea82612298565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d11611c18565b73ffffffffffffffffffffffffffffffffffffffff161480611d6d5750611d36611c18565b73ffffffffffffffffffffffffffffffffffffffff16611d5584610ab1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d895750611d888260000151611d83611c18565b611990565b5b905080611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc29061406f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490614193565b60405180910390fd5b611eba85858560016128fa565b611eca6000848460000151611c2d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f3891906141cf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fdc9190614203565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120e29190613b09565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122285761215881611c20565b15612227576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122908686866001612900565b505050505050565b6122a0612e8e565b6122a982611c20565b6122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df906142bb565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061234c5760017f00000000000000000000000000000000000000000000000000000000000000008461233f9190613844565b6123499190613b09565b90505b60008390505b81811061245a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461244657809350505050612496565b508080612452906142db565b915050612352565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614377565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61257b828260405180602001604052806000815250612906565b5050565b60006125a08473ffffffffffffffffffffffffffffffffffffffff16612de5565b156126fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c9611c18565b8786866040518563ffffffff1660e01b81526004016125eb94939291906143ec565b6020604051808303816000875af192505050801561262757506040513d601f19601f82011682018060405250810190612624919061444d565b60015b6126aa573d8060008114612657576040519150601f19603f3d011682016040523d82523d6000602084013e61265c565b606091505b506000815114156126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990613e59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ff565b600190505b949350505050565b6060600980546127169061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546127429061362d565b801561278f5780601f106127645761010080835404028352916020019161278f565b820191906000526020600020905b81548152906001019060200180831161277257829003601f168201915b5050505050905090565b606060008214156127e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f5565b600082905060005b600082146128135780806127fc9061390a565b915050600a8261280c91906144a9565b91506127e9565b60008167ffffffffffffffff81111561282f5761282e613221565b5b6040519080825280601f01601f1916602001820160405280156128615781602001600182028036833780820191505090505b5090505b600085146128ee5760018261287a9190613844565b9150600a8561288991906144da565b60306128959190613b09565b60f81b8183815181106128ab576128aa61450b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e791906144a9565b9450612865565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561297c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612973906145ac565b60405180910390fd5b61298581611c20565b156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614618565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906146aa565b60405180910390fd5b612a3560008583866128fa565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b329190614203565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b599190614203565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d68600088848861257f565b612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90613e59565b60405180910390fd5b8180612db29061390a565b9250508080612dc09061390a565b915050612cf7565b5080600081905550612ddd6000878588612900565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e149061362d565b90600052602060002090601f016020900481019282612e365760008555612e7d565b82601f10612e4f57805160ff1916838001178555612e7d565b82800160010185558215612e7d579182015b82811115612e7c578251825591602001919060010190612e61565b5b509050612e8a9190612ec8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ee1576000816000905550600101612ec9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f2e81612ef9565b8114612f3957600080fd5b50565b600081359050612f4b81612f25565b92915050565b600060208284031215612f6757612f66612eef565b5b6000612f7584828501612f3c565b91505092915050565b60008115159050919050565b612f9381612f7e565b82525050565b6000602082019050612fae6000830184612f8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fee578082015181840152602081019050612fd3565b83811115612ffd576000848401525b50505050565b6000601f19601f8301169050919050565b600061301f82612fb4565b6130298185612fbf565b9350613039818560208601612fd0565b61304281613003565b840191505092915050565b600060208201905081810360008301526130678184613014565b905092915050565b6000819050919050565b6130828161306f565b811461308d57600080fd5b50565b60008135905061309f81613079565b92915050565b6000602082840312156130bb576130ba612eef565b5b60006130c984828501613090565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130fd826130d2565b9050919050565b61310d816130f2565b82525050565b60006020820190506131286000830184613104565b92915050565b613137816130f2565b811461314257600080fd5b50565b6000813590506131548161312e565b92915050565b6000806040838503121561317157613170612eef565b5b600061317f85828601613145565b925050602061319085828601613090565b9150509250929050565b6131a38161306f565b82525050565b60006020820190506131be600083018461319a565b92915050565b6000806000606084860312156131dd576131dc612eef565b5b60006131eb86828701613145565b93505060206131fc86828701613145565b925050604061320d86828701613090565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325982613003565b810181811067ffffffffffffffff8211171561327857613277613221565b5b80604052505050565b600061328b612ee5565b90506132978282613250565b919050565b600067ffffffffffffffff8211156132b7576132b6613221565b5b6132c082613003565b9050602081019050919050565b82818337600083830152505050565b60006132ef6132ea8461329c565b613281565b90508281526020810184848401111561330b5761330a61321c565b5b6133168482856132cd565b509392505050565b600082601f83011261333357613332613217565b5b81356133438482602086016132dc565b91505092915050565b60006020828403121561336257613361612eef565b5b600082013567ffffffffffffffff8111156133805761337f612ef4565b5b61338c8482850161331e565b91505092915050565b6000602082840312156133ab576133aa612eef565b5b60006133b984828501613145565b91505092915050565b6133cb81612f7e565b81146133d657600080fd5b50565b6000813590506133e8816133c2565b92915050565b6000806040838503121561340557613404612eef565b5b600061341385828601613145565b9250506020613424858286016133d9565b9150509250929050565b600067ffffffffffffffff82111561344957613448613221565b5b61345282613003565b9050602081019050919050565b600061347261346d8461342e565b613281565b90508281526020810184848401111561348e5761348d61321c565b5b6134998482856132cd565b509392505050565b600082601f8301126134b6576134b5613217565b5b81356134c684826020860161345f565b91505092915050565b600080600080608085870312156134e9576134e8612eef565b5b60006134f787828801613145565b945050602061350887828801613145565b935050604061351987828801613090565b925050606085013567ffffffffffffffff81111561353a57613539612ef4565b5b613546878288016134a1565b91505092959194509250565b6000806040838503121561356957613568612eef565b5b600061357785828601613145565b925050602061358885828601613145565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135c8602083612fbf565b91506135d382613592565b602082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061364557607f821691505b60208210811415613659576136586135fe565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006136bb602d83612fbf565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061374d602283612fbf565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006137df603983612fbf565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384f8261306f565b915061385a8361306f565b92508282101561386d5761386c613815565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d4602283612fbf565b91506138df82613878565b604082019050919050565b60006020820190508181036000830152613903816138c7565b9050919050565b60006139158261306f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394857613947613815565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006139af602e83612fbf565b91506139ba82613953565b604082019050919050565b600060208201905081810360008301526139de816139a2565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a41602383612fbf565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ad3602b83612fbf565b9150613ade82613a77565b604082019050919050565b60006020820190508181036000830152613b0281613ac6565b9050919050565b6000613b148261306f565b9150613b1f8361306f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5457613b53613815565b5b828201905092915050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b6000613b95601183612fbf565b9150613ba082613b5f565b602082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b7f4d696e746564206d617820666f722077616c6c65740000000000000000000000600082015250565b6000613c01601583612fbf565b9150613c0c82613bcb565b602082019050919050565b60006020820190508181036000830152613c3081613bf4565b9050919050565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b6000613c6d601483612fbf565b9150613c7882613c37565b602082019050919050565b60006020820190508181036000830152613c9c81613c60565b9050919050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000613cd9601a83612fbf565b9150613ce482613ca3565b602082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20310000000000000000000000600082015250565b6000613d45601583612fbf565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613db1601a83612fbf565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613e43603383612fbf565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ed5602f83612fbf565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b600081905092915050565b6000613f2182612fb4565b613f2b8185613f0b565b9350613f3b818560208601612fd0565b80840191505092915050565b6000613f538285613f16565b9150613f5f8284613f16565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fc7602683612fbf565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614059603283612fbf565b915061406482613ffd565b604082019050919050565b600060208201905081810360008301526140888161404c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006140eb602683612fbf565b91506140f68261408f565b604082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417d602583612fbf565b915061418882614121565b604082019050919050565b600060208201905081810360008301526141ac81614170565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006141da826141b3565b91506141e5836141b3565b9250828210156141f8576141f7613815565b5b828203905092915050565b600061420e826141b3565b9150614219836141b3565b9250826fffffffffffffffffffffffffffffffff0382111561423e5761423d613815565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006142a5602a83612fbf565b91506142b082614249565b604082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b60006142e68261306f565b915060008214156142fa576142f9613815565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614361602f83612fbf565b915061436c82614305565b604082019050919050565b6000602082019050818103600083015261439081614354565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143be82614397565b6143c881856143a2565b93506143d8818560208601612fd0565b6143e181613003565b840191505092915050565b60006080820190506144016000830187613104565b61440e6020830186613104565b61441b604083018561319a565b818103606083015261442d81846143b3565b905095945050505050565b60008151905061444781612f25565b92915050565b60006020828403121561446357614462612eef565b5b600061447184828501614438565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144b48261306f565b91506144bf8361306f565b9250826144cf576144ce61447a565b5b828204905092915050565b60006144e58261306f565b91506144f08361306f565b925082614500576144ff61447a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614596602183612fbf565b91506145a18261453a565b604082019050919050565b600060208201905081810360008301526145c581614589565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614602601d83612fbf565b915061460d826145cc565b602082019050919050565b60006020820190508181036000830152614631816145f5565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614694602283612fbf565b915061469f82614638565b604082019050919050565b600060208201905081810360008301526146c381614687565b905091905056fea2646970667358221220977f0531f83acc89b24d26a11005cdd3dd7ed379f8ecbbbf00797b39d182d33464736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063c6788bdd116100a0578063e985e9c51161006f578063e985e9c514610748578063ef69e96e14610785578063f2fde38b146107b0578063fc588c04146107d9578063fdd578ba1461080257610204565b8063c6788bdd1461067a578063c87b56dd146106b7578063d7224ba0146106f4578063e268e4d31461071f57610204565b80638da5cb5b116100e75780638da5cb5b146105b657806395d89b41146105e1578063a0712d681461060c578063a22cb46514610628578063b88d4fde1461065157610204565b806370a082311461050e578063715018a61461054b57806371b9b64614610562578063819b25ba1461058d57610204565b806323b872dd1161019b5780633ccfd60b1161016a5780633ccfd60b1461042b57806342842e0e146104425780634f6ccce71461046b57806355f804b3146104a85780636352211e146104d157610204565b806323b872dd1461036f5780632913daa0146103985780632f745c59146103c357806332cb6b0c1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102c55780630f2cdd6c146102ee57806310da2eb91461031957806318160ddd1461034457610204565b806301ffc9a714610209578063049c5c491461024657806306fdde031461025d578063081812fc14610288575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612f51565b61082d565b60405161023d9190612f99565b60405180910390f35b34801561025257600080fd5b5061025b610977565b005b34801561026957600080fd5b50610272610a1f565b60405161027f919061304d565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906130a5565b610ab1565b6040516102bc9190613113565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061315a565b610b36565b005b3480156102fa57600080fd5b50610303610c4f565b60405161031091906131a9565b60405180910390f35b34801561032557600080fd5b5061032e610c55565b60405161033b919061304d565b60405180910390f35b34801561035057600080fd5b50610359610ce3565b60405161036691906131a9565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906131c4565b610cf9565b005b3480156103a457600080fd5b506103ad610d09565b6040516103ba91906131a9565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061315a565b610d2d565b6040516103f791906131a9565b60405180910390f35b34801561040c57600080fd5b50610415610f2b565b60405161042291906131a9565b60405180910390f35b34801561043757600080fd5b50610440610f31565b005b34801561044e57600080fd5b50610469600480360381019061046491906131c4565b611009565b005b34801561047757600080fd5b50610492600480360381019061048d91906130a5565b611029565b60405161049f91906131a9565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca919061334c565b61107c565b005b3480156104dd57600080fd5b506104f860048036038101906104f391906130a5565b611112565b6040516105059190613113565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613395565b611128565b60405161054291906131a9565b60405180910390f35b34801561055757600080fd5b50610560611211565b005b34801561056e57600080fd5b50610577611299565b6040516105849190612f99565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906130a5565b6112ac565b005b3480156105c257600080fd5b506105cb61138c565b6040516105d89190613113565b60405180910390f35b3480156105ed57600080fd5b506105f66113b6565b604051610603919061304d565b60405180910390f35b610626600480360381019061062191906130a5565b611448565b005b34801561063457600080fd5b5061064f600480360381019061064a91906133ee565b611668565b005b34801561065d57600080fd5b50610678600480360381019061067391906134cf565b6117e9565b005b34801561068657600080fd5b506106a1600480360381019061069c9190613395565b611845565b6040516106ae91906131a9565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906130a5565b61185d565b6040516106eb919061304d565b60405180910390f35b34801561070057600080fd5b50610709611904565b60405161071691906131a9565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906130a5565b61190a565b005b34801561075457600080fd5b5061076f600480360381019061076a9190613552565b611990565b60405161077c9190612f99565b60405180910390f35b34801561079157600080fd5b5061079a611a24565b6040516107a791906131a9565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613395565b611a2a565b005b3480156107e557600080fd5b5061080060048036038101906107fb91906130a5565b611b22565b005b34801561080e57600080fd5b50610817611ba8565b60405161082491906131a9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610970575061096f82611bae565b5b9050919050565b61097f611c18565b73ffffffffffffffffffffffffffffffffffffffff1661099d61138c565b73ffffffffffffffffffffffffffffffffffffffff16146109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906135de565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b606060018054610a2e9061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a9061362d565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abc82611c20565b610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906136d1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4182611112565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba990613763565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd1611c18565b73ffffffffffffffffffffffffffffffffffffffff161480610c005750610bff81610bfa611c18565b611990565b5b610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c36906137f5565b60405180910390fd5b610c4a838383611c2d565b505050565b600c5481565b60098054610c629061362d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e9061362d565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b505050505081565b60006001600054610cf49190613844565b905090565b610d04838383611cdf565b505050565b7f000000000000000000000000000000000000000000000000000000000000045781565b6000610d3883611128565b8210610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d70906138ea565b60405180910390fd5b6000610d83610ce3565b905060008060005b83811015610ee9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7d57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed55786841415610ec6578195505050505050610f25565b8380610ed19061390a565b9450505b508080610ee19061390a565b915050610d8b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c906139c5565b60405180910390fd5b92915050565b61045781565b610f39611c18565b73ffffffffffffffffffffffffffffffffffffffff16610f5761138c565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa4906135de565b60405180910390fd5b60004790506000610fbc611c18565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611004573d6000803e3d6000fd5b505050565b611024838383604051806020016040528060008152506117e9565b505050565b6000611033610ce3565b8210611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613a57565b60405180910390fd5b819050919050565b611084611c18565b73ffffffffffffffffffffffffffffffffffffffff166110a261138c565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906135de565b60405180910390fd5b806009908051906020019061110e929190612e08565b5050565b600061111d82612298565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613ae9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611219611c18565b73ffffffffffffffffffffffffffffffffffffffff1661123761138c565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611284906135de565b60405180910390fd5b611297600061249b565b565b600860149054906101000a900460ff1681565b6112b4611c18565b73ffffffffffffffffffffffffffffffffffffffff166112d261138c565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906135de565b60405180910390fd5b61045781611334610ce3565b61133e9190613b09565b111561137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690613bab565b60405180910390fd5b6113893382612561565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546113c59061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f19061362d565b801561143e5780601f106114135761010080835404028352916020019161143e565b820191906000526020600020905b81548152906001019060200180831161142157829003601f168201915b5050505050905090565b600c5481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114969190613b09565b11156114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613c17565b60405180910390fd5b600860149054906101000a900460ff16611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d90613c83565b60405180910390fd5b61045781611532610ce3565b61153c9190613b09565b111561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613bab565b60405180910390fd5b600081116115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790613cef565b60405180910390fd5b600b54811115611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613d5b565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116549190613b09565b925050819055506116653382612561565b50565b611670611c18565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d590613dc7565b60405180910390fd5b80600660006116eb611c18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611798611c18565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117dd9190612f99565b60405180910390a35050565b6117f4848484611cdf565b6118008484848461257f565b61183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613e59565b60405180910390fd5b50505050565b600d6020528060005260406000206000915090505481565b606061186882611c20565b6118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613eeb565b60405180910390fd5b60006118b1612707565b905060008151116118d157604051806020016040528060008152506118fc565b806118db84612799565b6040516020016118ec929190613f47565b6040516020818303038152906040525b915050919050565b60075481565b611912611c18565b73ffffffffffffffffffffffffffffffffffffffff1661193061138c565b73ffffffffffffffffffffffffffffffffffffffff1614611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d906135de565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611a32611c18565b73ffffffffffffffffffffffffffffffffffffffff16611a5061138c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906135de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613fdd565b60405180910390fd5b611b1f8161249b565b50565b611b2a611c18565b73ffffffffffffffffffffffffffffffffffffffff16611b4861138c565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906135de565b60405180910390fd5b80600b8190555050565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cea82612298565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d11611c18565b73ffffffffffffffffffffffffffffffffffffffff161480611d6d5750611d36611c18565b73ffffffffffffffffffffffffffffffffffffffff16611d5584610ab1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d895750611d888260000151611d83611c18565b611990565b5b905080611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc29061406f565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490614101565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490614193565b60405180910390fd5b611eba85858560016128fa565b611eca6000848460000151611c2d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f3891906141cf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fdc9190614203565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120e29190613b09565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122285761215881611c20565b15612227576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122908686866001612900565b505050505050565b6122a0612e8e565b6122a982611c20565b6122e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122df906142bb565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000457831061234c5760017f00000000000000000000000000000000000000000000000000000000000004578461233f9190613844565b6123499190613b09565b90505b60008390505b81811061245a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461244657809350505050612496565b508080612452906142db565b915050612352565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d90614377565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61257b828260405180602001604052806000815250612906565b5050565b60006125a08473ffffffffffffffffffffffffffffffffffffffff16612de5565b156126fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c9611c18565b8786866040518563ffffffff1660e01b81526004016125eb94939291906143ec565b6020604051808303816000875af192505050801561262757506040513d601f19601f82011682018060405250810190612624919061444d565b60015b6126aa573d8060008114612657576040519150601f19603f3d011682016040523d82523d6000602084013e61265c565b606091505b506000815114156126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990613e59565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126ff565b600190505b949350505050565b6060600980546127169061362d565b80601f01602080910402602001604051908101604052809291908181526020018280546127429061362d565b801561278f5780601f106127645761010080835404028352916020019161278f565b820191906000526020600020905b81548152906001019060200180831161277257829003601f168201915b5050505050905090565b606060008214156127e1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f5565b600082905060005b600082146128135780806127fc9061390a565b915050600a8261280c91906144a9565b91506127e9565b60008167ffffffffffffffff81111561282f5761282e613221565b5b6040519080825280601f01601f1916602001820160405280156128615781602001600182028036833780820191505090505b5090505b600085146128ee5760018261287a9190613844565b9150600a8561288991906144da565b60306128959190613b09565b60f81b8183815181106128ab576128aa61450b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e791906144a9565b9450612865565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561297c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612973906145ac565b60405180910390fd5b61298581611c20565b156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614618565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000457831115612a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1f906146aa565b60405180910390fd5b612a3560008583866128fa565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b329190614203565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b599190614203565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612dc857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d68600088848861257f565b612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90613e59565b60405180910390fd5b8180612db29061390a565b9250508080612dc09061390a565b915050612cf7565b5080600081905550612ddd6000878588612900565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e149061362d565b90600052602060002090601f016020900481019282612e365760008555612e7d565b82601f10612e4f57805160ff1916838001178555612e7d565b82800160010185558215612e7d579182015b82811115612e7c578251825591602001919060010190612e61565b5b509050612e8a9190612ec8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ee1576000816000905550600101612ec9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f2e81612ef9565b8114612f3957600080fd5b50565b600081359050612f4b81612f25565b92915050565b600060208284031215612f6757612f66612eef565b5b6000612f7584828501612f3c565b91505092915050565b60008115159050919050565b612f9381612f7e565b82525050565b6000602082019050612fae6000830184612f8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612fee578082015181840152602081019050612fd3565b83811115612ffd576000848401525b50505050565b6000601f19601f8301169050919050565b600061301f82612fb4565b6130298185612fbf565b9350613039818560208601612fd0565b61304281613003565b840191505092915050565b600060208201905081810360008301526130678184613014565b905092915050565b6000819050919050565b6130828161306f565b811461308d57600080fd5b50565b60008135905061309f81613079565b92915050565b6000602082840312156130bb576130ba612eef565b5b60006130c984828501613090565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130fd826130d2565b9050919050565b61310d816130f2565b82525050565b60006020820190506131286000830184613104565b92915050565b613137816130f2565b811461314257600080fd5b50565b6000813590506131548161312e565b92915050565b6000806040838503121561317157613170612eef565b5b600061317f85828601613145565b925050602061319085828601613090565b9150509250929050565b6131a38161306f565b82525050565b60006020820190506131be600083018461319a565b92915050565b6000806000606084860312156131dd576131dc612eef565b5b60006131eb86828701613145565b93505060206131fc86828701613145565b925050604061320d86828701613090565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325982613003565b810181811067ffffffffffffffff8211171561327857613277613221565b5b80604052505050565b600061328b612ee5565b90506132978282613250565b919050565b600067ffffffffffffffff8211156132b7576132b6613221565b5b6132c082613003565b9050602081019050919050565b82818337600083830152505050565b60006132ef6132ea8461329c565b613281565b90508281526020810184848401111561330b5761330a61321c565b5b6133168482856132cd565b509392505050565b600082601f83011261333357613332613217565b5b81356133438482602086016132dc565b91505092915050565b60006020828403121561336257613361612eef565b5b600082013567ffffffffffffffff8111156133805761337f612ef4565b5b61338c8482850161331e565b91505092915050565b6000602082840312156133ab576133aa612eef565b5b60006133b984828501613145565b91505092915050565b6133cb81612f7e565b81146133d657600080fd5b50565b6000813590506133e8816133c2565b92915050565b6000806040838503121561340557613404612eef565b5b600061341385828601613145565b9250506020613424858286016133d9565b9150509250929050565b600067ffffffffffffffff82111561344957613448613221565b5b61345282613003565b9050602081019050919050565b600061347261346d8461342e565b613281565b90508281526020810184848401111561348e5761348d61321c565b5b6134998482856132cd565b509392505050565b600082601f8301126134b6576134b5613217565b5b81356134c684826020860161345f565b91505092915050565b600080600080608085870312156134e9576134e8612eef565b5b60006134f787828801613145565b945050602061350887828801613145565b935050604061351987828801613090565b925050606085013567ffffffffffffffff81111561353a57613539612ef4565b5b613546878288016134a1565b91505092959194509250565b6000806040838503121561356957613568612eef565b5b600061357785828601613145565b925050602061358885828601613145565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135c8602083612fbf565b91506135d382613592565b602082019050919050565b600060208201905081810360008301526135f7816135bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061364557607f821691505b60208210811415613659576136586135fe565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006136bb602d83612fbf565b91506136c68261365f565b604082019050919050565b600060208201905081810360008301526136ea816136ae565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061374d602283612fbf565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006137df603983612fbf565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061384f8261306f565b915061385a8361306f565b92508282101561386d5761386c613815565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d4602283612fbf565b91506138df82613878565b604082019050919050565b60006020820190508181036000830152613903816138c7565b9050919050565b60006139158261306f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561394857613947613815565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006139af602e83612fbf565b91506139ba82613953565b604082019050919050565b600060208201905081810360008301526139de816139a2565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a41602383612fbf565b9150613a4c826139e5565b604082019050919050565b60006020820190508181036000830152613a7081613a34565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ad3602b83612fbf565b9150613ade82613a77565b604082019050919050565b60006020820190508181036000830152613b0281613ac6565b9050919050565b6000613b148261306f565b9150613b1f8361306f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5457613b53613815565b5b828201905092915050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b6000613b95601183612fbf565b9150613ba082613b5f565b602082019050919050565b60006020820190508181036000830152613bc481613b88565b9050919050565b7f4d696e746564206d617820666f722077616c6c65740000000000000000000000600082015250565b6000613c01601583612fbf565b9150613c0c82613bcb565b602082019050919050565b60006020820190508181036000830152613c3081613bf4565b9050919050565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b6000613c6d601483612fbf565b9150613c7882613c37565b602082019050919050565b60006020820190508181036000830152613c9c81613c60565b9050919050565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b6000613cd9601a83612fbf565b9150613ce482613ca3565b602082019050919050565b60006020820190508181036000830152613d0881613ccc565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20310000000000000000000000600082015250565b6000613d45601583612fbf565b9150613d5082613d0f565b602082019050919050565b60006020820190508181036000830152613d7481613d38565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613db1601a83612fbf565b9150613dbc82613d7b565b602082019050919050565b60006020820190508181036000830152613de081613da4565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613e43603383612fbf565b9150613e4e82613de7565b604082019050919050565b60006020820190508181036000830152613e7281613e36565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613ed5602f83612fbf565b9150613ee082613e79565b604082019050919050565b60006020820190508181036000830152613f0481613ec8565b9050919050565b600081905092915050565b6000613f2182612fb4565b613f2b8185613f0b565b9350613f3b818560208601612fd0565b80840191505092915050565b6000613f538285613f16565b9150613f5f8284613f16565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fc7602683612fbf565b9150613fd282613f6b565b604082019050919050565b60006020820190508181036000830152613ff681613fba565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614059603283612fbf565b915061406482613ffd565b604082019050919050565b600060208201905081810360008301526140888161404c565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006140eb602683612fbf565b91506140f68261408f565b604082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417d602583612fbf565b915061418882614121565b604082019050919050565b600060208201905081810360008301526141ac81614170565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006141da826141b3565b91506141e5836141b3565b9250828210156141f8576141f7613815565b5b828203905092915050565b600061420e826141b3565b9150614219836141b3565b9250826fffffffffffffffffffffffffffffffff0382111561423e5761423d613815565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006142a5602a83612fbf565b91506142b082614249565b604082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b60006142e68261306f565b915060008214156142fa576142f9613815565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614361602f83612fbf565b915061436c82614305565b604082019050919050565b6000602082019050818103600083015261439081614354565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143be82614397565b6143c881856143a2565b93506143d8818560208601612fd0565b6143e181613003565b840191505092915050565b60006080820190506144016000830187613104565b61440e6020830186613104565b61441b604083018561319a565b818103606083015261442d81846143b3565b905095945050505050565b60008151905061444781612f25565b92915050565b60006020828403121561446357614462612eef565b5b600061447184828501614438565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144b48261306f565b91506144bf8361306f565b9250826144cf576144ce61447a565b5b828204905092915050565b60006144e58261306f565b91506144f08361306f565b925082614500576144ff61447a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614596602183612fbf565b91506145a18261453a565b604082019050919050565b600060208201905081810360008301526145c581614589565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614602601d83612fbf565b915061460d826145cc565b602082019050919050565b60006020820190508181036000830152614631816145f5565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614694602283612fbf565b915061469f82614638565b604082019050919050565b600060208201905081810360008301526146c381614687565b905091905056fea2646970667358221220977f0531f83acc89b24d26a11005cdd3dd7ed379f8ecbbbf00797b39d182d33464736f6c634300080a0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.