ERC-721
Overview
Max Total Supply
6,191 LBLC
Holders
2,933
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LBLCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LuckyBuddhaLuckyClub
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./ERC721Pausable.sol"; contract LuckyBuddhaLuckyClub is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; uint256 public constant MAX_ELEMENTS = 10000; uint256 public constant PRICE = 8.88 * 10**16; // (WEI) 0.0888 Ether uint256 public constant MAX_BY_MINT = 20; address public constant devAddress = 0xfc69C0a005279D19e6938247baF24184586ef99C; address public constant artAddress = 0xB6d370B74853adFf9EF7BAFc5C54B0A5F73d3E5E; address public constant creatorAddress = 0x596d5B9529d62B44187EeeaF82e728848022F7c8; string public baseTokenURI; event CreateBuddha(uint256 indexed id); constructor() ERC721("Lucky Buddha Lucky Club", "LBLC") { setBaseURI('https://api.luckybuddhaluckyclub.io/buddha/'); pause(true); } modifier saleIsOpen { require(_totalSupply() <= MAX_ELEMENTS, "Sale end"); if (_msgSender() != owner()) { require(!paused(), "Pausable: paused"); } _; } function _totalSupply() internal view returns (uint) { return _tokenIdTracker.current(); } function totalMint() public view returns (uint256) { return _totalSupply(); } function mint(address _to, uint256 _count) public payable saleIsOpen { uint256 total = _totalSupply(); require(total + _count <= MAX_ELEMENTS, "Max limit"); require(total <= MAX_ELEMENTS, "Sale end"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintAnElement(_to); } } function _mintAnElement(address _to) private { uint id = _totalSupply(); _tokenIdTracker.increment(); _safeMint(_to, id); emit CreateBuddha(id); } function price(uint256 _count) public pure returns (uint256) { return PRICE.mul(_count); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function pause(bool val) public onlyOwner { if (val == true) { _pause(); return; } _unpause(); } function withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; uint256 devShare = balance.mul(20).div(100); uint256 artShare = balance.mul(30).div(100); uint256 creatorShare = balance.mul(50).div(100); require(balance > 0); _withdraw(devAddress, devShare); _withdraw(artAddress, artShare); _withdraw(creatorAddress, creatorShare); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT 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 tokenId); /** * @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 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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 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 pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Ownable, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (_msgSender() != owner()) { require(!paused(), "ERC721Pausable: token transfer while paused"); } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":"uint256","name":"id","type":"uint256"}],"name":"CreateBuddha","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":[],"name":"artAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601781526020017f4c75636b7920427564646861204c75636b7920436c75620000000000000000008152506040518060400160405280600481526020017f4c424c43000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200051f565b508060019080519060200190620000af9291906200051f565b505050620000d2620000c66200012f60201b60201c565b6200013760201b60201c565b6000600a60146101000a81548160ff021916908315150217905550620001176040518060600160405280602b815260200162005259602b9139620001fd60201b60201c565b620001296001620002a860201b60201c565b620007fd565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200020d6200012f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002336200036f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028390620006b6565b60405180910390fd5b80600c9080519060200190620002a49291906200051f565b5050565b620002b86200012f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002de6200036f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000337576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032e90620006b6565b60405180910390fd5b6001151581151514156200035b57620003556200039960201b60201c565b6200036c565b6200036b6200045160201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003a96200050860201b60201c565b15620003ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e39062000694565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004386200012f60201b60201c565b60405162000447919062000655565b60405180910390a1565b620004616200050860201b60201c565b620004a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049a9062000672565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa620004ef6200012f60201b60201c565b604051620004fe919062000655565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b8280546200052d906200071d565b90600052602060002090601f0160209004810192826200055157600085556200059d565b82601f106200056c57805160ff19168380011785556200059d565b828001600101855582156200059d579182015b828111156200059c5782518255916020019190600101906200057f565b5b509050620005ac9190620005b0565b5090565b5b80821115620005cb576000816000905550600101620005b1565b5090565b620005da81620006e9565b82525050565b6000620005ef601483620006d8565b9150620005fc8262000782565b602082019050919050565b600062000616601083620006d8565b91506200062382620007ab565b602082019050919050565b60006200063d602083620006d8565b91506200064a82620007d4565b602082019050919050565b60006020820190506200066c6000830184620005cf565b92915050565b600060208201905081810360008301526200068d81620005e0565b9050919050565b60006020820190508181036000830152620006af8162000607565b9050919050565b60006020820190508181036000830152620006d1816200062e565b9050919050565b600082825260208201905092915050565b6000620006f682620006fd565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200073657607f821691505b602082108114156200074d576200074c62000753565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a4c806200080d6000396000f3fe6080604052600436106102045760003560e01c806359a7715a11610118578063932c1cae116100a0578063c87b56dd1161006f578063c87b56dd1461074f578063d547cfb71461078c578063e927fc5c146107b7578063e985e9c5146107e2578063f2fde38b1461081f57610204565b8063932c1cae146106a757806395d89b41146106d2578063a22cb465146106fd578063b88d4fde1461072657610204565b8063715018a6116100e7578063715018a614610605578063853828b61461061c5780638ad5de28146106265780638d859f3e146106515780638da5cb5b1461067c57610204565b806359a7715a146105355780635c975abb146105605780636352211e1461058b57806370a08231146105c857610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461044057806342966c6814610469578063438b6300146104925780634f6ccce7146104cf57806355f804b31461050c57610204565b80632f745c59146103915780633502a716146103ce5780633ad10ef6146103f957806340c10f191461042457610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806326a49e371461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061339c565b610848565b60405161023d9190613a57565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061336f565b61085a565b005b34801561027b57600080fd5b506102846108fc565b6040516102919190613a72565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061343f565b61098e565b6040516102ce91906139ce565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061332f565b610a13565b005b34801561030c57600080fd5b50610315610b2b565b6040516103229190613df4565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613219565b610b38565b005b34801561036057600080fd5b5061037b6004803603810190610376919061343f565b610b98565b6040516103889190613df4565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061332f565b610bbc565b6040516103c59190613df4565b60405180910390f35b3480156103da57600080fd5b506103e3610c61565b6040516103f09190613df4565b60405180910390f35b34801561040557600080fd5b5061040e610c67565b60405161041b91906139ce565b60405180910390f35b61043e6004803603810190610439919061332f565b610c7f565b005b34801561044c57600080fd5b5061046760048036038101906104629190613219565b610eb2565b005b34801561047557600080fd5b50610490600480360381019061048b919061343f565b610ed2565b005b34801561049e57600080fd5b506104b960048036038101906104b491906131ac565b610f2e565b6040516104c69190613a35565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061343f565b610fdc565b6040516105039190613df4565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906133f6565b61104d565b005b34801561054157600080fd5b5061054a6110e3565b6040516105579190613df4565b60405180910390f35b34801561056c57600080fd5b506105756110f2565b6040516105829190613a57565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061343f565b611109565b6040516105bf91906139ce565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906131ac565b6111bb565b6040516105fc9190613df4565b60405180910390f35b34801561061157600080fd5b5061061a611273565b005b6106246112fb565b005b34801561063257600080fd5b5061063b61146a565b6040516106489190613df4565b60405180910390f35b34801561065d57600080fd5b5061066661146f565b6040516106739190613df4565b60405180910390f35b34801561068857600080fd5b5061069161147b565b60405161069e91906139ce565b60405180910390f35b3480156106b357600080fd5b506106bc6114a5565b6040516106c991906139ce565b60405180910390f35b3480156106de57600080fd5b506106e76114bd565b6040516106f49190613a72565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906132ef565b61154f565b005b34801561073257600080fd5b5061074d6004803603810190610748919061326c565b6116d0565b005b34801561075b57600080fd5b506107766004803603810190610771919061343f565b611732565b6040516107839190613a72565b60405180910390f35b34801561079857600080fd5b506107a16117d9565b6040516107ae9190613a72565b60405180910390f35b3480156107c357600080fd5b506107cc611867565b6040516107d991906139ce565b60405180910390f35b3480156107ee57600080fd5b50610809600480360381019061080491906131d9565b61187f565b6040516108169190613a57565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906131ac565b611913565b005b600061085382611a0b565b9050919050565b610862611a85565b73ffffffffffffffffffffffffffffffffffffffff1661088061147b565b73ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90613cd4565b60405180910390fd5b6001151581151514156108f0576108eb611a8d565b6108f9565b6108f8611b30565b5b50565b60606000805461090b906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906140e8565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b600061099982611bd2565b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613cb4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1e82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613d54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aae611a85565b73ffffffffffffffffffffffffffffffffffffffff161480610add5750610adc81610ad7611a85565b61187f565b5b610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613c14565b60405180910390fd5b610b268383611c3e565b505050565b6000600880549050905090565b610b49610b43611a85565b82611cf7565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613d94565b60405180910390fd5b610b93838383611dd5565b505050565b6000610bb58267013b7b21280e000061203190919063ffffffff16565b9050919050565b6000610bc7836111bb565b8210610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613af4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b73fc69c0a005279d19e6938247baf24184586ef99c81565b612710610c8a612047565b1115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613c94565b60405180910390fd5b610cd361147b565b73ffffffffffffffffffffffffffffffffffffffff16610cf1611a85565b73ffffffffffffffffffffffffffffffffffffffff1614610d5557610d146110f2565b15610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613bf4565b60405180910390fd5b5b6000610d5f612047565b90506127108282610d709190613f1d565b1115610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890613bb4565b60405180910390fd5b612710811115610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613c94565b60405180910390fd5b6014821115610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613ad4565b60405180910390fd5b610e4382610b98565b341015610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613d34565b60405180910390fd5b60005b82811015610eac57610e9984612058565b8080610ea49061414b565b915050610e88565b50505050565b610ecd838383604051806020016040528060008152506116d0565b505050565b610ee3610edd611a85565b82611cf7565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613dd4565b60405180910390fd5b610f2b816120a9565b50565b60606000610f3b836111bb565b905060008167ffffffffffffffff811115610f5957610f586142b0565b5b604051908082528060200260200182016040528015610f875781602001602082028036833780820191505090505b50905060005b82811015610fd157610f9f8582610bbc565b828281518110610fb257610fb1614281565b5b6020026020010181815250508080610fc99061414b565b915050610f8d565b508092505050919050565b6000610fe6610b2b565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613db4565b60405180910390fd5b6008828154811061103b5761103a614281565b5b90600052602060002001549050919050565b611055611a85565b73ffffffffffffffffffffffffffffffffffffffff1661107361147b565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613cd4565b60405180910390fd5b80600c90805190602001906110df929190612fc0565b5050565b60006110ed612047565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990613c54565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613c34565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127b611a85565b73ffffffffffffffffffffffffffffffffffffffff1661129961147b565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613cd4565b60405180910390fd5b6112f960006121ba565b565b611303611a85565b73ffffffffffffffffffffffffffffffffffffffff1661132161147b565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613cd4565b60405180910390fd5b600047905060006113a5606461139760148561203190919063ffffffff16565b61228090919063ffffffff16565b905060006113d060646113c2601e8661203190919063ffffffff16565b61228090919063ffffffff16565b905060006113fb60646113ed60328761203190919063ffffffff16565b61228090919063ffffffff16565b90506000841161140a57600080fd5b61142873fc69c0a005279d19e6938247baf24184586ef99c84612296565b61144673b6d370b74853adff9ef7bafc5c54b0a5f73d3e5e83612296565b61146473596d5b9529d62b44187eeeaf82e728848022f7c882612296565b50505050565b601481565b67013b7b21280e000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73b6d370b74853adff9ef7bafc5c54b0a5f73d3e5e81565b6060600180546114cc906140e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114f8906140e8565b80156115455780601f1061151a57610100808354040283529160200191611545565b820191906000526020600020905b81548152906001019060200180831161152857829003601f168201915b5050505050905090565b611557611a85565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613b94565b60405180910390fd5b80600560006115d2611a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167f611a85565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c49190613a57565b60405180910390a35050565b6116e16116db611a85565b83611cf7565b611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613d94565b60405180910390fd5b61172c84848484612347565b50505050565b606061173d82611bd2565b61177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390613d14565b60405180910390fd5b60006117866123a3565b905060008151116117a657604051806020016040528060008152506117d1565b806117b084612435565b6040516020016117c1929190613995565b6040516020818303038152906040525b915050919050565b600c80546117e6906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611812906140e8565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b505050505081565b73596d5b9529d62b44187eeeaf82e728848022f7c881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191b611a85565b73ffffffffffffffffffffffffffffffffffffffff1661193961147b565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613cd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613b34565b60405180910390fd5b611a08816121ba565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7e5750611a7d82612596565b5b9050919050565b600033905090565b611a956110f2565b15611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bf4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b19611a85565b604051611b2691906139ce565b60405180910390a1565b611b386110f2565b611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613ab4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bbb611a85565b604051611bc891906139ce565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cb183611109565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d0282611bd2565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613bd4565b60405180910390fd5b6000611d4c83611109565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dbb57508373ffffffffffffffffffffffffffffffffffffffff16611da38461098e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dcc5750611dcb818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df582611109565b73ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4290613cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290613b74565b60405180910390fd5b611ec6838383612678565b611ed1600082611c3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f219190613ffe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f789190613f1d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361203f9190613fa4565b905092915050565b6000612053600b612688565b905090565b6000612062612047565b905061206e600b612696565b61207882826126ac565b807f1b380aaa5688c2bb7dc1aa6ca1a55194aa2fc90991a974fe2bcb6c094f1122e260405160405180910390a25050565b60006120b482611109565b90506120c281600084612678565b6120cd600083611c3e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211d9190613ffe565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361228e9190613f73565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516122bc906139b9565b60006040518083038185875af1925050503d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b5050905080612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990613d74565b60405180910390fd5b505050565b612352848484611dd5565b61235e848484846126ca565b61239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490613b14565b60405180910390fd5b50505050565b6060600c80546123b2906140e8565b80601f01602080910402602001604051908101604052809291908181526020018280546123de906140e8565b801561242b5780601f106124005761010080835404028352916020019161242b565b820191906000526020600020905b81548152906001019060200180831161240e57829003601f168201915b5050505050905090565b6060600082141561247d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b600082146124af5780806124989061414b565b915050600a826124a89190613f73565b9150612485565b60008167ffffffffffffffff8111156124cb576124ca6142b0565b5b6040519080825280601f01601f1916602001820160405280156124fd5781602001600182028036833780820191505090505b5090505b6000851461258a576001826125169190613ffe565b9150600a856125259190614194565b60306125319190613f1d565b60f81b81838151811061254757612546614281565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125839190613f73565b9450612501565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612671575061267082612861565b5b9050919050565b6126838383836128cb565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6126c6828260405180602001604052806000815250612965565b5050565b60006126eb8473ffffffffffffffffffffffffffffffffffffffff166129c0565b15612854578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612714611a85565b8786866040518563ffffffff1660e01b815260040161273694939291906139e9565b602060405180830381600087803b15801561275057600080fd5b505af192505050801561278157506040513d601f19601f8201168201806040525081019061277e91906133c9565b60015b612804573d80600081146127b1576040519150601f19603f3d011682016040523d82523d6000602084013e6127b6565b606091505b506000815114156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390613b14565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612859565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128d68383836129d3565b6128de61147b565b73ffffffffffffffffffffffffffffffffffffffff166128fc611a85565b73ffffffffffffffffffffffffffffffffffffffff16146129605761291f6110f2565b1561295f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295690613a94565b60405180910390fd5b5b505050565b61296f8383612ae7565b61297c60008484846126ca565b6129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b290613b14565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6129de838383612cb5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2157612a1c81612cba565b612a60565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a5f57612a5e8382612d03565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa357612a9e81612e70565b612ae2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ae157612ae08282612f41565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90613c74565b60405180910390fd5b612b6081611bd2565b15612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613b54565b60405180910390fd5b612bac60008383612678565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bfc9190613f1d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d10846111bb565b612d1a9190613ffe565b9050600060076000848152602001908152602001600020549050818114612dff576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e849190613ffe565b9050600060096000848152602001908152602001600020549050600060088381548110612eb457612eb3614281565b5b906000526020600020015490508060088381548110612ed657612ed5614281565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f2557612f24614252565b5b6001900381819060005260206000200160009055905550505050565b6000612f4c836111bb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612fcc906140e8565b90600052602060002090601f016020900481019282612fee5760008555613035565b82601f1061300757805160ff1916838001178555613035565b82800160010185558215613035579182015b82811115613034578251825591602001919060010190613019565b5b5090506130429190613046565b5090565b5b8082111561305f576000816000905550600101613047565b5090565b600061307661307184613e34565b613e0f565b905082815260208101848484011115613092576130916142e4565b5b61309d8482856140a6565b509392505050565b60006130b86130b384613e65565b613e0f565b9050828152602081018484840111156130d4576130d36142e4565b5b6130df8482856140a6565b509392505050565b6000813590506130f6816149ba565b92915050565b60008135905061310b816149d1565b92915050565b600081359050613120816149e8565b92915050565b600081519050613135816149e8565b92915050565b600082601f8301126131505761314f6142df565b5b8135613160848260208601613063565b91505092915050565b600082601f83011261317e5761317d6142df565b5b813561318e8482602086016130a5565b91505092915050565b6000813590506131a6816149ff565b92915050565b6000602082840312156131c2576131c16142ee565b5b60006131d0848285016130e7565b91505092915050565b600080604083850312156131f0576131ef6142ee565b5b60006131fe858286016130e7565b925050602061320f858286016130e7565b9150509250929050565b600080600060608486031215613232576132316142ee565b5b6000613240868287016130e7565b9350506020613251868287016130e7565b925050604061326286828701613197565b9150509250925092565b60008060008060808587031215613286576132856142ee565b5b6000613294878288016130e7565b94505060206132a5878288016130e7565b93505060406132b687828801613197565b925050606085013567ffffffffffffffff8111156132d7576132d66142e9565b5b6132e38782880161313b565b91505092959194509250565b60008060408385031215613306576133056142ee565b5b6000613314858286016130e7565b9250506020613325858286016130fc565b9150509250929050565b60008060408385031215613346576133456142ee565b5b6000613354858286016130e7565b925050602061336585828601613197565b9150509250929050565b600060208284031215613385576133846142ee565b5b6000613393848285016130fc565b91505092915050565b6000602082840312156133b2576133b16142ee565b5b60006133c084828501613111565b91505092915050565b6000602082840312156133df576133de6142ee565b5b60006133ed84828501613126565b91505092915050565b60006020828403121561340c5761340b6142ee565b5b600082013567ffffffffffffffff81111561342a576134296142e9565b5b61343684828501613169565b91505092915050565b600060208284031215613455576134546142ee565b5b600061346384828501613197565b91505092915050565b60006134788383613977565b60208301905092915050565b61348d81614032565b82525050565b600061349e82613ea6565b6134a88185613ed4565b93506134b383613e96565b8060005b838110156134e45781516134cb888261346c565b97506134d683613ec7565b9250506001810190506134b7565b5085935050505092915050565b6134fa81614044565b82525050565b600061350b82613eb1565b6135158185613ee5565b93506135258185602086016140b5565b61352e816142f3565b840191505092915050565b600061354482613ebc565b61354e8185613f01565b935061355e8185602086016140b5565b613567816142f3565b840191505092915050565b600061357d82613ebc565b6135878185613f12565b93506135978185602086016140b5565b80840191505092915050565b60006135b0602b83613f01565b91506135bb82614304565b604082019050919050565b60006135d3601483613f01565b91506135de82614353565b602082019050919050565b60006135f6600e83613f01565b91506136018261437c565b602082019050919050565b6000613619602b83613f01565b9150613624826143a5565b604082019050919050565b600061363c603283613f01565b9150613647826143f4565b604082019050919050565b600061365f602683613f01565b915061366a82614443565b604082019050919050565b6000613682601c83613f01565b915061368d82614492565b602082019050919050565b60006136a5602483613f01565b91506136b0826144bb565b604082019050919050565b60006136c8601983613f01565b91506136d38261450a565b602082019050919050565b60006136eb600983613f01565b91506136f682614533565b602082019050919050565b600061370e602c83613f01565b91506137198261455c565b604082019050919050565b6000613731601083613f01565b915061373c826145ab565b602082019050919050565b6000613754603883613f01565b915061375f826145d4565b604082019050919050565b6000613777602a83613f01565b915061378282614623565b604082019050919050565b600061379a602983613f01565b91506137a582614672565b604082019050919050565b60006137bd602083613f01565b91506137c8826146c1565b602082019050919050565b60006137e0600883613f01565b91506137eb826146ea565b602082019050919050565b6000613803602c83613f01565b915061380e82614713565b604082019050919050565b6000613826602083613f01565b915061383182614762565b602082019050919050565b6000613849602983613f01565b91506138548261478b565b604082019050919050565b600061386c602f83613f01565b9150613877826147da565b604082019050919050565b600061388f601183613f01565b915061389a82614829565b602082019050919050565b60006138b2602183613f01565b91506138bd82614852565b604082019050919050565b60006138d5600083613ef6565b91506138e0826148a1565b600082019050919050565b60006138f8601083613f01565b9150613903826148a4565b602082019050919050565b600061391b603183613f01565b9150613926826148cd565b604082019050919050565b600061393e602c83613f01565b91506139498261491c565b604082019050919050565b6000613961603083613f01565b915061396c8261496b565b604082019050919050565b6139808161409c565b82525050565b61398f8161409c565b82525050565b60006139a18285613572565b91506139ad8284613572565b91508190509392505050565b60006139c4826138c8565b9150819050919050565b60006020820190506139e36000830184613484565b92915050565b60006080820190506139fe6000830187613484565b613a0b6020830186613484565b613a186040830185613986565b8181036060830152613a2a8184613500565b905095945050505050565b60006020820190508181036000830152613a4f8184613493565b905092915050565b6000602082019050613a6c60008301846134f1565b92915050565b60006020820190508181036000830152613a8c8184613539565b905092915050565b60006020820190508181036000830152613aad816135a3565b9050919050565b60006020820190508181036000830152613acd816135c6565b9050919050565b60006020820190508181036000830152613aed816135e9565b9050919050565b60006020820190508181036000830152613b0d8161360c565b9050919050565b60006020820190508181036000830152613b2d8161362f565b9050919050565b60006020820190508181036000830152613b4d81613652565b9050919050565b60006020820190508181036000830152613b6d81613675565b9050919050565b60006020820190508181036000830152613b8d81613698565b9050919050565b60006020820190508181036000830152613bad816136bb565b9050919050565b60006020820190508181036000830152613bcd816136de565b9050919050565b60006020820190508181036000830152613bed81613701565b9050919050565b60006020820190508181036000830152613c0d81613724565b9050919050565b60006020820190508181036000830152613c2d81613747565b9050919050565b60006020820190508181036000830152613c4d8161376a565b9050919050565b60006020820190508181036000830152613c6d8161378d565b9050919050565b60006020820190508181036000830152613c8d816137b0565b9050919050565b60006020820190508181036000830152613cad816137d3565b9050919050565b60006020820190508181036000830152613ccd816137f6565b9050919050565b60006020820190508181036000830152613ced81613819565b9050919050565b60006020820190508181036000830152613d0d8161383c565b9050919050565b60006020820190508181036000830152613d2d8161385f565b9050919050565b60006020820190508181036000830152613d4d81613882565b9050919050565b60006020820190508181036000830152613d6d816138a5565b9050919050565b60006020820190508181036000830152613d8d816138eb565b9050919050565b60006020820190508181036000830152613dad8161390e565b9050919050565b60006020820190508181036000830152613dcd81613931565b9050919050565b60006020820190508181036000830152613ded81613954565b9050919050565b6000602082019050613e096000830184613986565b92915050565b6000613e19613e2a565b9050613e25828261411a565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4f57613e4e6142b0565b5b613e58826142f3565b9050602081019050919050565b600067ffffffffffffffff821115613e8057613e7f6142b0565b5b613e89826142f3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f288261409c565b9150613f338361409c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6857613f676141c5565b5b828201905092915050565b6000613f7e8261409c565b9150613f898361409c565b925082613f9957613f986141f4565b5b828204905092915050565b6000613faf8261409c565b9150613fba8361409c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff357613ff26141c5565b5b828202905092915050565b60006140098261409c565b91506140148361409c565b925082821015614027576140266141c5565b5b828203905092915050565b600061403d8261407c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d35780820151818401526020810190506140b8565b838111156140e2576000848401525b50505050565b6000600282049050600182168061410057607f821691505b6020821081141561411457614113614223565b5b50919050565b614123826142f3565b810181811067ffffffffffffffff82111715614142576141416142b0565b5b80604052505050565b60006141568261409c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614189576141886141c5565b5b600182019050919050565b600061419f8261409c565b91506141aa8361409c565b9250826141ba576141b96141f4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b6149c381614032565b81146149ce57600080fd5b50565b6149da81614044565b81146149e557600080fd5b50565b6149f181614050565b81146149fc57600080fd5b50565b614a088161409c565b8114614a1357600080fd5b5056fea2646970667358221220b3488a4edf374c4254e0ea7116384ee213b07d3d430e2fdca0716d891139086e64736f6c6343000807003368747470733a2f2f6170692e6c75636b796275646468616c75636b79636c75622e696f2f6275646468612f
Deployed Bytecode
0x6080604052600436106102045760003560e01c806359a7715a11610118578063932c1cae116100a0578063c87b56dd1161006f578063c87b56dd1461074f578063d547cfb71461078c578063e927fc5c146107b7578063e985e9c5146107e2578063f2fde38b1461081f57610204565b8063932c1cae146106a757806395d89b41146106d2578063a22cb465146106fd578063b88d4fde1461072657610204565b8063715018a6116100e7578063715018a614610605578063853828b61461061c5780638ad5de28146106265780638d859f3e146106515780638da5cb5b1461067c57610204565b806359a7715a146105355780635c975abb146105605780636352211e1461058b57806370a08231146105c857610204565b80632f745c591161019b57806342842e0e1161016a57806342842e0e1461044057806342966c6814610469578063438b6300146104925780634f6ccce7146104cf57806355f804b31461050c57610204565b80632f745c59146103915780633502a716146103ce5780633ad10ef6146103f957806340c10f191461042457610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd1461030057806323b872dd1461032b57806326a49e371461035457610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061339c565b610848565b60405161023d9190613a57565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061336f565b61085a565b005b34801561027b57600080fd5b506102846108fc565b6040516102919190613a72565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061343f565b61098e565b6040516102ce91906139ce565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061332f565b610a13565b005b34801561030c57600080fd5b50610315610b2b565b6040516103229190613df4565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613219565b610b38565b005b34801561036057600080fd5b5061037b6004803603810190610376919061343f565b610b98565b6040516103889190613df4565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061332f565b610bbc565b6040516103c59190613df4565b60405180910390f35b3480156103da57600080fd5b506103e3610c61565b6040516103f09190613df4565b60405180910390f35b34801561040557600080fd5b5061040e610c67565b60405161041b91906139ce565b60405180910390f35b61043e6004803603810190610439919061332f565b610c7f565b005b34801561044c57600080fd5b5061046760048036038101906104629190613219565b610eb2565b005b34801561047557600080fd5b50610490600480360381019061048b919061343f565b610ed2565b005b34801561049e57600080fd5b506104b960048036038101906104b491906131ac565b610f2e565b6040516104c69190613a35565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061343f565b610fdc565b6040516105039190613df4565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906133f6565b61104d565b005b34801561054157600080fd5b5061054a6110e3565b6040516105579190613df4565b60405180910390f35b34801561056c57600080fd5b506105756110f2565b6040516105829190613a57565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad919061343f565b611109565b6040516105bf91906139ce565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea91906131ac565b6111bb565b6040516105fc9190613df4565b60405180910390f35b34801561061157600080fd5b5061061a611273565b005b6106246112fb565b005b34801561063257600080fd5b5061063b61146a565b6040516106489190613df4565b60405180910390f35b34801561065d57600080fd5b5061066661146f565b6040516106739190613df4565b60405180910390f35b34801561068857600080fd5b5061069161147b565b60405161069e91906139ce565b60405180910390f35b3480156106b357600080fd5b506106bc6114a5565b6040516106c991906139ce565b60405180910390f35b3480156106de57600080fd5b506106e76114bd565b6040516106f49190613a72565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906132ef565b61154f565b005b34801561073257600080fd5b5061074d6004803603810190610748919061326c565b6116d0565b005b34801561075b57600080fd5b506107766004803603810190610771919061343f565b611732565b6040516107839190613a72565b60405180910390f35b34801561079857600080fd5b506107a16117d9565b6040516107ae9190613a72565b60405180910390f35b3480156107c357600080fd5b506107cc611867565b6040516107d991906139ce565b60405180910390f35b3480156107ee57600080fd5b50610809600480360381019061080491906131d9565b61187f565b6040516108169190613a57565b60405180910390f35b34801561082b57600080fd5b50610846600480360381019061084191906131ac565b611913565b005b600061085382611a0b565b9050919050565b610862611a85565b73ffffffffffffffffffffffffffffffffffffffff1661088061147b565b73ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90613cd4565b60405180910390fd5b6001151581151514156108f0576108eb611a8d565b6108f9565b6108f8611b30565b5b50565b60606000805461090b906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906140e8565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b600061099982611bd2565b6109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90613cb4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1e82611109565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613d54565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aae611a85565b73ffffffffffffffffffffffffffffffffffffffff161480610add5750610adc81610ad7611a85565b61187f565b5b610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1390613c14565b60405180910390fd5b610b268383611c3e565b505050565b6000600880549050905090565b610b49610b43611a85565b82611cf7565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613d94565b60405180910390fd5b610b93838383611dd5565b505050565b6000610bb58267013b7b21280e000061203190919063ffffffff16565b9050919050565b6000610bc7836111bb565b8210610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90613af4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b73fc69c0a005279d19e6938247baf24184586ef99c81565b612710610c8a612047565b1115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290613c94565b60405180910390fd5b610cd361147b565b73ffffffffffffffffffffffffffffffffffffffff16610cf1611a85565b73ffffffffffffffffffffffffffffffffffffffff1614610d5557610d146110f2565b15610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613bf4565b60405180910390fd5b5b6000610d5f612047565b90506127108282610d709190613f1d565b1115610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890613bb4565b60405180910390fd5b612710811115610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613c94565b60405180910390fd5b6014821115610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190613ad4565b60405180910390fd5b610e4382610b98565b341015610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613d34565b60405180910390fd5b60005b82811015610eac57610e9984612058565b8080610ea49061414b565b915050610e88565b50505050565b610ecd838383604051806020016040528060008152506116d0565b505050565b610ee3610edd611a85565b82611cf7565b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613dd4565b60405180910390fd5b610f2b816120a9565b50565b60606000610f3b836111bb565b905060008167ffffffffffffffff811115610f5957610f586142b0565b5b604051908082528060200260200182016040528015610f875781602001602082028036833780820191505090505b50905060005b82811015610fd157610f9f8582610bbc565b828281518110610fb257610fb1614281565b5b6020026020010181815250508080610fc99061414b565b915050610f8d565b508092505050919050565b6000610fe6610b2b565b8210611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613db4565b60405180910390fd5b6008828154811061103b5761103a614281565b5b90600052602060002001549050919050565b611055611a85565b73ffffffffffffffffffffffffffffffffffffffff1661107361147b565b73ffffffffffffffffffffffffffffffffffffffff16146110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613cd4565b60405180910390fd5b80600c90805190602001906110df929190612fc0565b5050565b60006110ed612047565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990613c54565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561122c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122390613c34565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127b611a85565b73ffffffffffffffffffffffffffffffffffffffff1661129961147b565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613cd4565b60405180910390fd5b6112f960006121ba565b565b611303611a85565b73ffffffffffffffffffffffffffffffffffffffff1661132161147b565b73ffffffffffffffffffffffffffffffffffffffff1614611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e90613cd4565b60405180910390fd5b600047905060006113a5606461139760148561203190919063ffffffff16565b61228090919063ffffffff16565b905060006113d060646113c2601e8661203190919063ffffffff16565b61228090919063ffffffff16565b905060006113fb60646113ed60328761203190919063ffffffff16565b61228090919063ffffffff16565b90506000841161140a57600080fd5b61142873fc69c0a005279d19e6938247baf24184586ef99c84612296565b61144673b6d370b74853adff9ef7bafc5c54b0a5f73d3e5e83612296565b61146473596d5b9529d62b44187eeeaf82e728848022f7c882612296565b50505050565b601481565b67013b7b21280e000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73b6d370b74853adff9ef7bafc5c54b0a5f73d3e5e81565b6060600180546114cc906140e8565b80601f01602080910402602001604051908101604052809291908181526020018280546114f8906140e8565b80156115455780601f1061151a57610100808354040283529160200191611545565b820191906000526020600020905b81548152906001019060200180831161152857829003601f168201915b5050505050905090565b611557611a85565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90613b94565b60405180910390fd5b80600560006115d2611a85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167f611a85565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c49190613a57565b60405180910390a35050565b6116e16116db611a85565b83611cf7565b611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613d94565b60405180910390fd5b61172c84848484612347565b50505050565b606061173d82611bd2565b61177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390613d14565b60405180910390fd5b60006117866123a3565b905060008151116117a657604051806020016040528060008152506117d1565b806117b084612435565b6040516020016117c1929190613995565b6040516020818303038152906040525b915050919050565b600c80546117e6906140e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611812906140e8565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b505050505081565b73596d5b9529d62b44187eeeaf82e728848022f7c881565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191b611a85565b73ffffffffffffffffffffffffffffffffffffffff1661193961147b565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690613cd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613b34565b60405180910390fd5b611a08816121ba565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7e5750611a7d82612596565b5b9050919050565b600033905090565b611a956110f2565b15611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90613bf4565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b19611a85565b604051611b2691906139ce565b60405180910390a1565b611b386110f2565b611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613ab4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bbb611a85565b604051611bc891906139ce565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cb183611109565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d0282611bd2565b611d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3890613bd4565b60405180910390fd5b6000611d4c83611109565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dbb57508373ffffffffffffffffffffffffffffffffffffffff16611da38461098e565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dcc5750611dcb818561187f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611df582611109565b73ffffffffffffffffffffffffffffffffffffffff1614611e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4290613cf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290613b74565b60405180910390fd5b611ec6838383612678565b611ed1600082611c3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f219190613ffe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f789190613f1d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361203f9190613fa4565b905092915050565b6000612053600b612688565b905090565b6000612062612047565b905061206e600b612696565b61207882826126ac565b807f1b380aaa5688c2bb7dc1aa6ca1a55194aa2fc90991a974fe2bcb6c094f1122e260405160405180910390a25050565b60006120b482611109565b90506120c281600084612678565b6120cd600083611c3e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461211d9190613ffe565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361228e9190613f73565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516122bc906139b9565b60006040518083038185875af1925050503d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b5050905080612342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233990613d74565b60405180910390fd5b505050565b612352848484611dd5565b61235e848484846126ca565b61239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490613b14565b60405180910390fd5b50505050565b6060600c80546123b2906140e8565b80601f01602080910402602001604051908101604052809291908181526020018280546123de906140e8565b801561242b5780601f106124005761010080835404028352916020019161242b565b820191906000526020600020905b81548152906001019060200180831161240e57829003601f168201915b5050505050905090565b6060600082141561247d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612591565b600082905060005b600082146124af5780806124989061414b565b915050600a826124a89190613f73565b9150612485565b60008167ffffffffffffffff8111156124cb576124ca6142b0565b5b6040519080825280601f01601f1916602001820160405280156124fd5781602001600182028036833780820191505090505b5090505b6000851461258a576001826125169190613ffe565b9150600a856125259190614194565b60306125319190613f1d565b60f81b81838151811061254757612546614281565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125839190613f73565b9450612501565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061266157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612671575061267082612861565b5b9050919050565b6126838383836128cb565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6126c6828260405180602001604052806000815250612965565b5050565b60006126eb8473ffffffffffffffffffffffffffffffffffffffff166129c0565b15612854578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612714611a85565b8786866040518563ffffffff1660e01b815260040161273694939291906139e9565b602060405180830381600087803b15801561275057600080fd5b505af192505050801561278157506040513d601f19601f8201168201806040525081019061277e91906133c9565b60015b612804573d80600081146127b1576040519150601f19603f3d011682016040523d82523d6000602084013e6127b6565b606091505b506000815114156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390613b14565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612859565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128d68383836129d3565b6128de61147b565b73ffffffffffffffffffffffffffffffffffffffff166128fc611a85565b73ffffffffffffffffffffffffffffffffffffffff16146129605761291f6110f2565b1561295f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295690613a94565b60405180910390fd5b5b505050565b61296f8383612ae7565b61297c60008484846126ca565b6129bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b290613b14565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6129de838383612cb5565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a2157612a1c81612cba565b612a60565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a5f57612a5e8382612d03565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aa357612a9e81612e70565b612ae2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ae157612ae08282612f41565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90613c74565b60405180910390fd5b612b6081611bd2565b15612ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9790613b54565b60405180910390fd5b612bac60008383612678565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bfc9190613f1d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d10846111bb565b612d1a9190613ffe565b9050600060076000848152602001908152602001600020549050818114612dff576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e849190613ffe565b9050600060096000848152602001908152602001600020549050600060088381548110612eb457612eb3614281565b5b906000526020600020015490508060088381548110612ed657612ed5614281565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f2557612f24614252565b5b6001900381819060005260206000200160009055905550505050565b6000612f4c836111bb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612fcc906140e8565b90600052602060002090601f016020900481019282612fee5760008555613035565b82601f1061300757805160ff1916838001178555613035565b82800160010185558215613035579182015b82811115613034578251825591602001919060010190613019565b5b5090506130429190613046565b5090565b5b8082111561305f576000816000905550600101613047565b5090565b600061307661307184613e34565b613e0f565b905082815260208101848484011115613092576130916142e4565b5b61309d8482856140a6565b509392505050565b60006130b86130b384613e65565b613e0f565b9050828152602081018484840111156130d4576130d36142e4565b5b6130df8482856140a6565b509392505050565b6000813590506130f6816149ba565b92915050565b60008135905061310b816149d1565b92915050565b600081359050613120816149e8565b92915050565b600081519050613135816149e8565b92915050565b600082601f8301126131505761314f6142df565b5b8135613160848260208601613063565b91505092915050565b600082601f83011261317e5761317d6142df565b5b813561318e8482602086016130a5565b91505092915050565b6000813590506131a6816149ff565b92915050565b6000602082840312156131c2576131c16142ee565b5b60006131d0848285016130e7565b91505092915050565b600080604083850312156131f0576131ef6142ee565b5b60006131fe858286016130e7565b925050602061320f858286016130e7565b9150509250929050565b600080600060608486031215613232576132316142ee565b5b6000613240868287016130e7565b9350506020613251868287016130e7565b925050604061326286828701613197565b9150509250925092565b60008060008060808587031215613286576132856142ee565b5b6000613294878288016130e7565b94505060206132a5878288016130e7565b93505060406132b687828801613197565b925050606085013567ffffffffffffffff8111156132d7576132d66142e9565b5b6132e38782880161313b565b91505092959194509250565b60008060408385031215613306576133056142ee565b5b6000613314858286016130e7565b9250506020613325858286016130fc565b9150509250929050565b60008060408385031215613346576133456142ee565b5b6000613354858286016130e7565b925050602061336585828601613197565b9150509250929050565b600060208284031215613385576133846142ee565b5b6000613393848285016130fc565b91505092915050565b6000602082840312156133b2576133b16142ee565b5b60006133c084828501613111565b91505092915050565b6000602082840312156133df576133de6142ee565b5b60006133ed84828501613126565b91505092915050565b60006020828403121561340c5761340b6142ee565b5b600082013567ffffffffffffffff81111561342a576134296142e9565b5b61343684828501613169565b91505092915050565b600060208284031215613455576134546142ee565b5b600061346384828501613197565b91505092915050565b60006134788383613977565b60208301905092915050565b61348d81614032565b82525050565b600061349e82613ea6565b6134a88185613ed4565b93506134b383613e96565b8060005b838110156134e45781516134cb888261346c565b97506134d683613ec7565b9250506001810190506134b7565b5085935050505092915050565b6134fa81614044565b82525050565b600061350b82613eb1565b6135158185613ee5565b93506135258185602086016140b5565b61352e816142f3565b840191505092915050565b600061354482613ebc565b61354e8185613f01565b935061355e8185602086016140b5565b613567816142f3565b840191505092915050565b600061357d82613ebc565b6135878185613f12565b93506135978185602086016140b5565b80840191505092915050565b60006135b0602b83613f01565b91506135bb82614304565b604082019050919050565b60006135d3601483613f01565b91506135de82614353565b602082019050919050565b60006135f6600e83613f01565b91506136018261437c565b602082019050919050565b6000613619602b83613f01565b9150613624826143a5565b604082019050919050565b600061363c603283613f01565b9150613647826143f4565b604082019050919050565b600061365f602683613f01565b915061366a82614443565b604082019050919050565b6000613682601c83613f01565b915061368d82614492565b602082019050919050565b60006136a5602483613f01565b91506136b0826144bb565b604082019050919050565b60006136c8601983613f01565b91506136d38261450a565b602082019050919050565b60006136eb600983613f01565b91506136f682614533565b602082019050919050565b600061370e602c83613f01565b91506137198261455c565b604082019050919050565b6000613731601083613f01565b915061373c826145ab565b602082019050919050565b6000613754603883613f01565b915061375f826145d4565b604082019050919050565b6000613777602a83613f01565b915061378282614623565b604082019050919050565b600061379a602983613f01565b91506137a582614672565b604082019050919050565b60006137bd602083613f01565b91506137c8826146c1565b602082019050919050565b60006137e0600883613f01565b91506137eb826146ea565b602082019050919050565b6000613803602c83613f01565b915061380e82614713565b604082019050919050565b6000613826602083613f01565b915061383182614762565b602082019050919050565b6000613849602983613f01565b91506138548261478b565b604082019050919050565b600061386c602f83613f01565b9150613877826147da565b604082019050919050565b600061388f601183613f01565b915061389a82614829565b602082019050919050565b60006138b2602183613f01565b91506138bd82614852565b604082019050919050565b60006138d5600083613ef6565b91506138e0826148a1565b600082019050919050565b60006138f8601083613f01565b9150613903826148a4565b602082019050919050565b600061391b603183613f01565b9150613926826148cd565b604082019050919050565b600061393e602c83613f01565b91506139498261491c565b604082019050919050565b6000613961603083613f01565b915061396c8261496b565b604082019050919050565b6139808161409c565b82525050565b61398f8161409c565b82525050565b60006139a18285613572565b91506139ad8284613572565b91508190509392505050565b60006139c4826138c8565b9150819050919050565b60006020820190506139e36000830184613484565b92915050565b60006080820190506139fe6000830187613484565b613a0b6020830186613484565b613a186040830185613986565b8181036060830152613a2a8184613500565b905095945050505050565b60006020820190508181036000830152613a4f8184613493565b905092915050565b6000602082019050613a6c60008301846134f1565b92915050565b60006020820190508181036000830152613a8c8184613539565b905092915050565b60006020820190508181036000830152613aad816135a3565b9050919050565b60006020820190508181036000830152613acd816135c6565b9050919050565b60006020820190508181036000830152613aed816135e9565b9050919050565b60006020820190508181036000830152613b0d8161360c565b9050919050565b60006020820190508181036000830152613b2d8161362f565b9050919050565b60006020820190508181036000830152613b4d81613652565b9050919050565b60006020820190508181036000830152613b6d81613675565b9050919050565b60006020820190508181036000830152613b8d81613698565b9050919050565b60006020820190508181036000830152613bad816136bb565b9050919050565b60006020820190508181036000830152613bcd816136de565b9050919050565b60006020820190508181036000830152613bed81613701565b9050919050565b60006020820190508181036000830152613c0d81613724565b9050919050565b60006020820190508181036000830152613c2d81613747565b9050919050565b60006020820190508181036000830152613c4d8161376a565b9050919050565b60006020820190508181036000830152613c6d8161378d565b9050919050565b60006020820190508181036000830152613c8d816137b0565b9050919050565b60006020820190508181036000830152613cad816137d3565b9050919050565b60006020820190508181036000830152613ccd816137f6565b9050919050565b60006020820190508181036000830152613ced81613819565b9050919050565b60006020820190508181036000830152613d0d8161383c565b9050919050565b60006020820190508181036000830152613d2d8161385f565b9050919050565b60006020820190508181036000830152613d4d81613882565b9050919050565b60006020820190508181036000830152613d6d816138a5565b9050919050565b60006020820190508181036000830152613d8d816138eb565b9050919050565b60006020820190508181036000830152613dad8161390e565b9050919050565b60006020820190508181036000830152613dcd81613931565b9050919050565b60006020820190508181036000830152613ded81613954565b9050919050565b6000602082019050613e096000830184613986565b92915050565b6000613e19613e2a565b9050613e25828261411a565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4f57613e4e6142b0565b5b613e58826142f3565b9050602081019050919050565b600067ffffffffffffffff821115613e8057613e7f6142b0565b5b613e89826142f3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f288261409c565b9150613f338361409c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f6857613f676141c5565b5b828201905092915050565b6000613f7e8261409c565b9150613f898361409c565b925082613f9957613f986141f4565b5b828204905092915050565b6000613faf8261409c565b9150613fba8361409c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ff357613ff26141c5565b5b828202905092915050565b60006140098261409c565b91506140148361409c565b925082821015614027576140266141c5565b5b828203905092915050565b600061403d8261407c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140d35780820151818401526020810190506140b8565b838111156140e2576000848401525b50505050565b6000600282049050600182168061410057607f821691505b6020821081141561411457614113614223565b5b50919050565b614123826142f3565b810181811067ffffffffffffffff82111715614142576141416142b0565b5b80604052505050565b60006141568261409c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614189576141886141c5565b5b600182019050919050565b600061419f8261409c565b91506141aa8361409c565b9250826141ba576141b96141f4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45786365656473206e756d626572000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b6149c381614032565b81146149ce57600080fd5b50565b6149da81614044565b81146149e557600080fd5b50565b6149f181614050565b81146149fc57600080fd5b50565b614a088161409c565b8114614a1357600080fd5b5056fea2646970667358221220b3488a4edf374c4254e0ea7116384ee213b07d3d430e2fdca0716d891139086e64736f6c63430008070033
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.