Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
193 NOUNCATS
Holders
62
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NOUNCATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
NounCats
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ERC721 } from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import { ERC2981 } from "@openzeppelin/contracts/token/common/ERC2981.sol"; // Contract by: @backseats_eth interface IInvisibles { function isApprovedForAll(address owner, address operator) external view returns (bool); function ownerOf(uint tokenId) external returns (address); function transferFrom(address from, address to, uint tokenId) external; } // Errors error CatAlreadyMinted(); error BadID(); error CantMintZero(); error CatAlreadyExists(); error InvisibleAlreadyTransferred(uint id); error MintClosed(); error MintedOut(); error MintingTooMany(); error WrongPrice(); error WrongPriceWithNounterpart(); // The Contract contract NounCats is ERC721, ERC2981, Ownable { // Cats are free if you burn an Invisible // They're 0.025 if you use your Invisible to mint is Nounterpart Cat // Minting a cat and its corresponding Invisible is 0.05 per pair uint public price = 0.025 ether; // A private property for tracking supply. See `totalSupply()` for a public function uint _tokenSupply; // 5,000 Cats uint constant MAX_SUPPLY = 5_000; string public _baseTokenURI; bool public mintOpen; // The address of the Invisibles contract address public constant INVISIBLES = 0xB5942dB8d5bE776CE7585132616D3707f40D46e5; // The address of the team wallet that holds the Invisibles for transfer address constant TREASURY = 0xcac5cc8dbccc684C1530fF1502fD48a2fD2AFbe3; // Events event CatMinted(address indexed _by, uint indexed _tokenId); event InvisibleBurned(address indexed _by, uint indexed _tokenId); event InvisibleMinted(address indexed _by, uint indexed _tokenId); event NounterpartMinted(address indexed _to, uint indexed _tokenId); // Modifier modifier mintIsOpen() { if (mintOpen == false) revert MintClosed(); _; } // Constructor constructor() ERC721("Noun Cats", "NOUNCATS") {} // Mint // Go to the Invisibles contract and run function 10, `setApprovedForAll` to the following values: // The first value is this contract's address and the second value is `true` // https://etherscan.io/address/0xb5942db8d5be776ce7585132616d3707f40d46e5#writeContract // NOTE: This function locks your Invisible in this contract before minting, effectively burning that Invisible // You will no longer own the Invisible afterwards function burnAndReveal(uint[] calldata _ids) external mintIsOpen() { uint idsLength = _ids.length; if (idsLength == 0) revert CantMintZero(); IInvisibles invis = IInvisibles(INVISIBLES); require(invis.isApprovedForAll(msg.sender, address(this)), "Contract not approved to burn"); uint tokenSupply = _tokenSupply; uint id; for(uint i; i < idsLength;) { id = _ids[i]; if (id > MAX_SUPPLY) revert BadID(); if (invis.ownerOf(id) == msg.sender && !_exists(id)) { // Burn your Invisible to this contract, forever invis.transferFrom(msg.sender, address(this), id); emit InvisibleBurned(msg.sender, id); unchecked { ++tokenSupply; } // Reveal your Noun Cat! _mint(msg.sender, id); emit CatMinted(msg.sender, id); } unchecked { ++i; } } _tokenSupply = tokenSupply; } // Mint function that doesn't burn Invisibles and instead mints the corresponding Cat to your Invisible // (ie your Nounterpart) function mintNounterpart(uint[] calldata _ids) external payable mintIsOpen() { uint idsLength = _ids.length; if (idsLength == 0) revert CantMintZero(); IInvisibles invis = IInvisibles(INVISIBLES); // Use a count and an array of N values // count and idsToMint.length may differ if the check in the loop fails // Arrays of N length are initiated with N 0's as starting values uint count; uint[] memory idsToMint = new uint[](idsLength); for(uint i; i < idsLength;) { uint id = _ids[i]; if (id > MAX_SUPPLY) revert BadID(); if (invis.ownerOf(id) == msg.sender && !_exists(id)) { idsToMint[i] = id; unchecked { ++count; } } unchecked { ++i; } } if (count == 0) revert CantMintZero(); if (msg.value != (count * price)) revert WrongPrice(); uint tokenSupply = _tokenSupply; for (uint j; j < count;) { uint id = idsToMint[j]; if (id != 0) { unchecked { ++tokenSupply; } _mint(msg.sender, id); emit CatMinted(msg.sender, id); // An Invisible minted his Cat! emit NounterpartMinted(msg.sender, id); } unchecked { ++j; } } _tokenSupply = tokenSupply; } // Shopping! // Mint 1 or more Cats and their corresponding Invisibles (if you so choose). // The price doubles due to minting both the Cat and corresponding Invisible function mintCats(uint[] calldata _ids, bool mintNounterparts) external payable mintIsOpen() { if (totalSupply() == MAX_SUPPLY) revert MintedOut(); uint idsLength = _ids.length; if (idsLength == 0) revert CantMintZero(); if (mintNounterparts) { if (msg.value != ((idsLength * 2) * price)) revert WrongPriceWithNounterpart(); } else { if (msg.value != (idsLength * price)) revert WrongPrice(); } uint tokenSupply = _tokenSupply; uint id; for (uint i; i < idsLength;) { id = _ids[i]; // IDs 3782 and greater are for purchase if (id < 3782 || id > MAX_SUPPLY) revert BadID(); if (_exists(id)) revert CatAlreadyMinted(); if (mintNounterparts) _transferInvisible(id); unchecked { ++tokenSupply; } // Mint msg.sender the Cat _mint(msg.sender, id); emit CatMinted(msg.sender, id); unchecked { ++i; } } _tokenSupply = tokenSupply; } // Mint an Invisible function mintInvisibles(uint[] calldata _ids) external payable mintIsOpen() { if (_ids.length == 0) revert CantMintZero(); if (msg.value != (_ids.length * price)) revert WrongPrice(); uint id; for (uint i; i < _ids.length;) { id = _ids[i]; // IDs 3782 and greater are for purchase if (id < 3782 || id > MAX_SUPPLY) revert BadID(); _transferInvisible(id); unchecked { ++i; } } } function _transferInvisible(uint _id) internal { IInvisibles invis = IInvisibles(INVISIBLES); invis.transferFrom(TREASURY, msg.sender, _id); emit InvisibleMinted(msg.sender, _id); } // Owner // Allows the team to give Cats to people. Specifies IDs because of the nature of minting and matching above function promoMint(address _to, uint[] calldata _ids) external onlyOwner { if (totalSupply() == MAX_SUPPLY) revert MintedOut(); uint tokenSupply = _tokenSupply; uint id; for (uint i; i < _ids.length;) { id = _ids[i]; if (_exists(id) || id > MAX_SUPPLY) revert BadID(); _mint(_to, id); emit CatMinted(_to, id); unchecked { ++i; ++tokenSupply; } } _tokenSupply = tokenSupply; } // View function totalSupply() public view returns (uint) { return _tokenSupply; } // Setters function setRoyaltyInfo(address receiver, uint96 feeBasisPoints) external onlyOwner { _setDefaultRoyalty(receiver, feeBasisPoints); } function setBaseURI(string calldata _baseURI) external onlyOwner { _baseTokenURI = _baseURI; } function setMintOpen(bool _val) external onlyOwner { mintOpen = _val; } function setPrice(uint _newPrice) external onlyOwner { price = _newPrice; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Boilerplate function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } // Withdraw function withdraw() external onlyOwner { address w1 = 0x702457481718bEF08C5bb0124083A1369fAB4542; address w2 = 0x5390B04839C6EBaA765886E1EDe2BCE7116e462F; address w3 = 0x6d42a9542f76eFeb405d6755317C9A81dBA33EEF; address w4 = 0x3733f44e9FF13d398512449E4d96E78Bc5594708; address w5 = 0x3230086971D2D50D30642e3e344233f56BECB5C5; uint balance = address(this).balance; uint smallBal = balance * 50/1000; uint largeBal = balance * 425/1000; (bool sent, ) = w1.call{value: smallBal}(""); require(sent, "w1 Send failed"); (bool sent2, ) = w2.call{value: smallBal}(""); require(sent2, "w2 Send failed"); (bool sent3, ) = w3.call{value: smallBal}(""); require(sent3, "w3 Send failed"); (bool sent4, ) = w4.call{value: largeBal}(""); require(sent4, "w4 Send failed"); (bool sent5, ) = w5.call{value: largeBal}(""); require(sent5, "w5 Send failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) 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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BadID","type":"error"},{"inputs":[],"name":"CantMintZero","type":"error"},{"inputs":[],"name":"CatAlreadyMinted","type":"error"},{"inputs":[],"name":"MintClosed","type":"error"},{"inputs":[],"name":"MintedOut","type":"error"},{"inputs":[],"name":"WrongPrice","type":"error"},{"inputs":[],"name":"WrongPriceWithNounterpart","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_by","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"CatMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_by","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"InvisibleBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_by","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"InvisibleMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"NounterpartMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INVISIBLES","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"burnAndReveal","outputs":[],"stateMutability":"nonpayable","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":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"bool","name":"mintNounterparts","type":"bool"}],"name":"mintCats","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"mintInvisibles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"mintNounterpart","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"bool","name":"_val","type":"bool"}],"name":"setMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526658d15e176280006009553480156200001c57600080fd5b506040518060400160405280600981526020017f4e6f756e204361747300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4e4f554e434154530000000000000000000000000000000000000000000000008152508160009080519060200190620000a1929190620001b1565b508060019080519060200190620000ba929190620001b1565b505050620000dd620000d1620000e360201b60201c565b620000eb60201b60201c565b620002c5565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bf9062000290565b90600052602060002090601f016020900481019282620001e357600085556200022f565b82601f10620001fe57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022e57825182559160200191906001019062000211565b5b5090506200023e919062000242565b5090565b5b808211156200025d57600081600090555060010162000243565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a957607f821691505b602082108103620002bf57620002be62000261565b5b50919050565b614c3380620002d56000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063f2fde38b11610064578063f2fde38b146106c1578063f301aa2b146106ea578063f8004d3114610706578063ffbeaf1b1461072f576101e3565b8063b88d4fde146105f3578063c87b56dd1461061c578063cfc86f7b14610659578063e985e9c514610684576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b4114610574578063a035b1fe1461059f578063a22cb465146105ca576101e3565b8063715018a6146104c457806382e5c10f146104db5780638499984b146104f75780638da5cb5b14610520576101e3565b806324bbd0491161017a57806355f804b31161014957806355f804b3146103f85780635715a1ac146104215780636352211e1461044a57806370a0823114610487576101e3565b806324bbd0491461034f5780632a55205a1461037a5780633ccfd60b146103b857806342842e0e146103cf576101e3565b8063081812fc116101b6578063081812fc14610295578063095ea7b3146102d257806318160ddd146102fb57806323b872dd14610326576101e3565b806301ffc9a7146101e857806302fa7c471461022557806306fdde031461024e57806307fd256214610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613462565b61075a565b60405161021c91906134aa565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613567565b61076c565b005b34801561025a57600080fd5b50610263610782565b6040516102709190613640565b60405180910390f35b610293600480360381019061028e91906136f3565b610814565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613789565b610abf565b6040516102c991906137c5565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f491906137e0565b610b05565b005b34801561030757600080fd5b50610310610c1c565b60405161031d919061382f565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061384a565b610c26565b005b34801561035b57600080fd5b50610364610c86565b60405161037191906134aa565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061389d565b610c99565b6040516103af9291906138dd565b60405180910390f35b3480156103c457600080fd5b506103cd610e83565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061384a565b6112b5565b005b34801561040457600080fd5b5061041f600480360381019061041a919061395c565b6112d5565b005b34801561042d57600080fd5b50610448600480360381019061044391906139a9565b6112f3565b005b34801561045657600080fd5b50610471600480360381019061046c9190613789565b611429565b60405161047e91906137c5565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613a09565b6114da565b6040516104bb919061382f565b60405180910390f35b3480156104d057600080fd5b506104d9611591565b005b6104f560048036038101906104f09190613a36565b6115a5565b005b34801561050357600080fd5b5061051e60048036038101906105199190613a36565b611964565b005b34801561052c57600080fd5b50610535611d16565b60405161054291906137c5565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613789565b611d40565b005b34801561058057600080fd5b50610589611d52565b6040516105969190613640565b60405180910390f35b3480156105ab57600080fd5b506105b4611de4565b6040516105c1919061382f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a83565b611dea565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613bf3565b611e00565b005b34801561062857600080fd5b50610643600480360381019061063e9190613789565b611e62565b6040516106509190613640565b60405180910390f35b34801561066557600080fd5b5061066e611eca565b60405161067b9190613640565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613c76565b611f58565b6040516106b891906134aa565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613a09565b611fec565b005b61070460048036038101906106ff9190613a36565b61206f565b005b34801561071257600080fd5b5061072d60048036038101906107289190613cb6565b6121cf565b005b34801561073b57600080fd5b506107446121f4565b60405161075191906137c5565b60405180910390f35b60006107658261220c565b9050919050565b610774612286565b61077e8282612304565b5050565b60606000805461079190613d12565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90613d12565b801561080a5780601f106107df5761010080835404028352916020019161080a565b820191906000526020600020905b8154815290600101906020018083116107ed57829003601f168201915b5050505050905090565b60001515600c60009054906101000a900460ff16151503610861576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61138861086c610c1c565b036108a3576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838390509050600081036108e5576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115610942576009546002826108fb9190613d72565b6109059190613d72565b341461093d576040517fa1e3142200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610989565b600954816109509190613d72565b3414610988576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6000600a5490506000805b83811015610aaf578686828181106109af576109ae613dcc565b5b905060200201359150610ec68210806109c9575061138882115b15610a00576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0982612499565b15610a40576040517f1445949000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8415610a5057610a4f82612505565b5b826001019250610a6033836125e9565b813373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3806001019050610994565b5081600a81905550505050505050565b6000610aca826127c2565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1082611429565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790613e6d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9f61280d565b73ffffffffffffffffffffffffffffffffffffffff161480610bce5750610bcd81610bc861280d565b611f58565b5b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613eff565b60405180910390fd5b610c178383612815565b505050565b6000600a54905090565b610c37610c3161280d565b826128ce565b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613f91565b60405180910390fd5b610c81838383612963565b505050565b600c60009054906101000a900460ff1681565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e2e5760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e38612bc9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e649190613d72565b610e6e9190613fe0565b90508160000151819350935050509250929050565b610e8b612286565b600073702457481718bef08c5bb0124083a1369fab454290506000735390b04839c6ebaa765886e1ede2bce7116e462f90506000736d42a9542f76efeb405d6755317c9a81dba33eef90506000733733f44e9ff13d398512449e4d96e78bc559470890506000733230086971d2d50d30642e3e344233f56becb5c59050600047905060006103e8603283610f1f9190613d72565b610f299190613fe0565b905060006103e86101a984610f3e9190613d72565b610f489190613fe0565b905060008873ffffffffffffffffffffffffffffffffffffffff1683604051610f7090614042565b60006040518083038185875af1925050503d8060008114610fad576040519150601f19603f3d011682016040523d82523d6000602084013e610fb2565b606091505b5050905080610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906140a3565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168460405161101c90614042565b60006040518083038185875af1925050503d8060008114611059576040519150601f19603f3d011682016040523d82523d6000602084013e61105e565b606091505b50509050806110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061410f565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff16856040516110c890614042565b60006040518083038185875af1925050503d8060008114611105576040519150601f19603f3d011682016040523d82523d6000602084013e61110a565b606091505b505090508061114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061417b565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168560405161117490614042565b60006040518083038185875af1925050503d80600081146111b1576040519150601f19603f3d011682016040523d82523d6000602084013e6111b6565b606091505b50509050806111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f1906141e7565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168660405161122090614042565b60006040518083038185875af1925050503d806000811461125d576040519150601f19603f3d011682016040523d82523d6000602084013e611262565b606091505b50509050806112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90614253565b60405180910390fd5b50505050505050505050505050565b6112d083838360405180602001604052806000815250611e00565b505050565b6112dd612286565b8181600b91906112ee929190613353565b505050565b6112fb612286565b611388611306610c1c565b0361133d576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a5490506000805b8484905081101561141a5784848281811061136657611365613dcc565b5b90506020020135915061137882612499565b80611384575061138882115b156113bb576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113c586836125e9565b818673ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3806001019050826001019250611348565b5081600a819055505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906142bf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614351565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611599612286565b6115a36000612bd3565b565b60001515600c60009054906101000a900460ff161515036115f2576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082829050905060008103611634576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073b5942db8d5be776ce7585132616d3707f40d46e590506000808367ffffffffffffffff81111561166a57611669613ac8565b5b6040519080825280602002602001820160405280156116985781602001602082028036833780820191505090505b50905060005b848110156117f45760008787838181106116bb576116ba613dcc565b5b905060200201359050611388811115611700576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611750919061382f565b6020604051808303816000875af115801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190614386565b73ffffffffffffffffffffffffffffffffffffffff161480156117bc57506117ba81612499565b155b156117e857808383815181106117d5576117d4613dcc565b5b6020026020010181815250508360010193505b8160010191505061169e565b506000820361182f576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548261183d9190613d72565b3414611875576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a54905060005b8381101561195357600083828151811061189c5761189b613dcc565b5b6020026020010151905060008114611947578260010192506118be33826125e9565b803373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3803373ffffffffffffffffffffffffffffffffffffffff167fa003d3960a84ba2addf11e44a131bbc7f59cc62e679c77f04168bdbd732c009f60405160405180910390a35b8160010191505061187f565b5080600a8190555050505050505050565b60001515600c60009054906101000a900460ff161515036119b1576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828290509050600081036119f3576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073b5942db8d5be776ce7585132616d3707f40d46e590508073ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401611a479291906143b3565b602060405180830381865afa158015611a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8891906143f1565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061446a565b60405180910390fd5b6000600a5490506000805b84811015611d0657868682818110611aed57611aec613dcc565b5b905060200201359150611388821115611b32576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611b82919061382f565b6020604051808303816000875af1158015611ba1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc59190614386565b73ffffffffffffffffffffffffffffffffffffffff16148015611bee5750611bec82612499565b155b15611cfb578373ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611c309392919061448a565b600060405180830381600087803b158015611c4a57600080fd5b505af1158015611c5e573d6000803e3d6000fd5b50505050813373ffffffffffffffffffffffffffffffffffffffff167f93c575fb079df295389de6e64817bac352afd5d2bf77aefb9862f92ce0c8b71360405160405180910390a3826001019250611cb633836125e9565b813373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a35b806001019050611ad2565b5081600a81905550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d48612286565b8060098190555050565b606060018054611d6190613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8d90613d12565b8015611dda5780601f10611daf57610100808354040283529160200191611dda565b820191906000526020600020905b815481529060010190602001808311611dbd57829003601f168201915b5050505050905090565b60095481565b611dfc611df561280d565b8383612c99565b5050565b611e11611e0b61280d565b836128ce565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613f91565b60405180910390fd5b611e5c84848484612e05565b50505050565b6060611e6d826127c2565b6000611e77612e61565b90506000815111611e975760405180602001604052806000815250611ec2565b80611ea184612ef3565b604051602001611eb29291906144fd565b6040516020818303038152906040525b915050919050565b600b8054611ed790613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0390613d12565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff4612286565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614593565b60405180910390fd5b61206c81612bd3565b50565b60001515600c60009054906101000a900460ff161515036120bc576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082829050036120f9576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548282905061210a9190613d72565b3414612142576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805b838390508110156121c95783838281811061216457612163613dcc565b5b905060200201359150610ec682108061217e575061138882115b156121b5576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121be82612505565b806001019050612146565b50505050565b6121d7612286565b80600c60006101000a81548160ff02191690831515021790555050565b73b5942db8d5be776ce7585132616d3707f40d46e581565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227f575061227e82613053565b5b9050919050565b61228e61280d565b73ffffffffffffffffffffffffffffffffffffffff166122ac611d16565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906145ff565b60405180910390fd5b565b61230c612bc9565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190614691565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d0906146fd565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600073b5942db8d5be776ce7585132616d3707f40d46e590508073ffffffffffffffffffffffffffffffffffffffff166323b872dd73cac5cc8dbccc684c1530ff1502fd48a2fd2afbe333856040518463ffffffff1660e01b815260040161256f9392919061448a565b600060405180830381600087803b15801561258957600080fd5b505af115801561259d573d6000803e3d6000fd5b50505050813373ffffffffffffffffffffffffffffffffffffffff167f24e1a00a1a3749a893698343b5e1e56f8611bd1d81d083bad3cb01ca2ae1310560405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264f90614769565b60405180910390fd5b61266181612499565b156126a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612698906147d5565b60405180910390fd5b6126ad60008383613135565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fd91906147f5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127be6000838361313a565b5050565b6127cb81612499565b61280a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612801906142bf565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661288883611429565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806128da83611429565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291c575061291b8185611f58565b5b8061295a57508373ffffffffffffffffffffffffffffffffffffffff1661294284610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661298382611429565b73ffffffffffffffffffffffffffffffffffffffff16146129d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d0906148bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f9061494f565b60405180910390fd5b612a53838383613135565b612a5e600082612815565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae919061496f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0591906147f5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc483838361313a565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfe906149ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612df891906134aa565b60405180910390a3505050565b612e10848484612963565b612e1c8484848461313f565b612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614a81565b60405180910390fd5b50505050565b6060600b8054612e7090613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054612e9c90613d12565b8015612ee95780601f10612ebe57610100808354040283529160200191612ee9565b820191906000526020600020905b815481529060010190602001808311612ecc57829003601f168201915b5050505050905090565b606060008203612f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304e565b600082905060005b60008214612f6c578080612f5590614aa1565b915050600a82612f659190613fe0565b9150612f42565b60008167ffffffffffffffff811115612f8857612f87613ac8565b5b6040519080825280601f01601f191660200182016040528015612fba5781602001600182028036833780820191505090505b5090505b6000851461304757600182612fd3919061496f565b9150600a85612fe29190614ae9565b6030612fee91906147f5565b60f81b81838151811061300457613003613dcc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130409190613fe0565b9450612fbe565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061312e575061312d826132c6565b5b9050919050565b505050565b505050565b60006131608473ffffffffffffffffffffffffffffffffffffffff16613330565b156132b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261318961280d565b8786866040518563ffffffff1660e01b81526004016131ab9493929190614b6f565b6020604051808303816000875af19250505080156131e757506040513d601f19601f820116820180604052508101906131e49190614bd0565b60015b613269573d8060008114613217576040519150601f19603f3d011682016040523d82523d6000602084013e61321c565b606091505b506000815103613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890614a81565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132be565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461335f90613d12565b90600052602060002090601f01602090048101928261338157600085556133c8565b82601f1061339a57803560ff19168380011785556133c8565b828001600101855582156133c8579182015b828111156133c75782358255916020019190600101906133ac565b5b5090506133d591906133d9565b5090565b5b808211156133f25760008160009055506001016133da565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61343f8161340a565b811461344a57600080fd5b50565b60008135905061345c81613436565b92915050565b60006020828403121561347857613477613400565b5b60006134868482850161344d565b91505092915050565b60008115159050919050565b6134a48161348f565b82525050565b60006020820190506134bf600083018461349b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134f0826134c5565b9050919050565b613500816134e5565b811461350b57600080fd5b50565b60008135905061351d816134f7565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61354481613523565b811461354f57600080fd5b50565b6000813590506135618161353b565b92915050565b6000806040838503121561357e5761357d613400565b5b600061358c8582860161350e565b925050602061359d85828601613552565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135e15780820151818401526020810190506135c6565b838111156135f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613612826135a7565b61361c81856135b2565b935061362c8185602086016135c3565b613635816135f6565b840191505092915050565b6000602082019050818103600083015261365a8184613607565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261368757613686613662565b5b8235905067ffffffffffffffff8111156136a4576136a3613667565b5b6020830191508360208202830111156136c0576136bf61366c565b5b9250929050565b6136d08161348f565b81146136db57600080fd5b50565b6000813590506136ed816136c7565b92915050565b60008060006040848603121561370c5761370b613400565b5b600084013567ffffffffffffffff81111561372a57613729613405565b5b61373686828701613671565b93509350506020613749868287016136de565b9150509250925092565b6000819050919050565b61376681613753565b811461377157600080fd5b50565b6000813590506137838161375d565b92915050565b60006020828403121561379f5761379e613400565b5b60006137ad84828501613774565b91505092915050565b6137bf816134e5565b82525050565b60006020820190506137da60008301846137b6565b92915050565b600080604083850312156137f7576137f6613400565b5b60006138058582860161350e565b925050602061381685828601613774565b9150509250929050565b61382981613753565b82525050565b60006020820190506138446000830184613820565b92915050565b60008060006060848603121561386357613862613400565b5b60006138718682870161350e565b93505060206138828682870161350e565b925050604061389386828701613774565b9150509250925092565b600080604083850312156138b4576138b3613400565b5b60006138c285828601613774565b92505060206138d385828601613774565b9150509250929050565b60006040820190506138f260008301856137b6565b6138ff6020830184613820565b9392505050565b60008083601f84011261391c5761391b613662565b5b8235905067ffffffffffffffff81111561393957613938613667565b5b6020830191508360018202830111156139555761395461366c565b5b9250929050565b6000806020838503121561397357613972613400565b5b600083013567ffffffffffffffff81111561399157613990613405565b5b61399d85828601613906565b92509250509250929050565b6000806000604084860312156139c2576139c1613400565b5b60006139d08682870161350e565b935050602084013567ffffffffffffffff8111156139f1576139f0613405565b5b6139fd86828701613671565b92509250509250925092565b600060208284031215613a1f57613a1e613400565b5b6000613a2d8482850161350e565b91505092915050565b60008060208385031215613a4d57613a4c613400565b5b600083013567ffffffffffffffff811115613a6b57613a6a613405565b5b613a7785828601613671565b92509250509250929050565b60008060408385031215613a9a57613a99613400565b5b6000613aa88582860161350e565b9250506020613ab9858286016136de565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b00826135f6565b810181811067ffffffffffffffff82111715613b1f57613b1e613ac8565b5b80604052505050565b6000613b326133f6565b9050613b3e8282613af7565b919050565b600067ffffffffffffffff821115613b5e57613b5d613ac8565b5b613b67826135f6565b9050602081019050919050565b82818337600083830152505050565b6000613b96613b9184613b43565b613b28565b905082815260208101848484011115613bb257613bb1613ac3565b5b613bbd848285613b74565b509392505050565b600082601f830112613bda57613bd9613662565b5b8135613bea848260208601613b83565b91505092915050565b60008060008060808587031215613c0d57613c0c613400565b5b6000613c1b8782880161350e565b9450506020613c2c8782880161350e565b9350506040613c3d87828801613774565b925050606085013567ffffffffffffffff811115613c5e57613c5d613405565b5b613c6a87828801613bc5565b91505092959194509250565b60008060408385031215613c8d57613c8c613400565b5b6000613c9b8582860161350e565b9250506020613cac8582860161350e565b9150509250929050565b600060208284031215613ccc57613ccb613400565b5b6000613cda848285016136de565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2a57607f821691505b602082108103613d3d57613d3c613ce3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d7d82613753565b9150613d8883613753565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc157613dc0613d43565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e576021836135b2565b9150613e6282613dfb565b604082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613ee9603e836135b2565b9150613ef482613e8d565b604082019050919050565b60006020820190508181036000830152613f1881613edc565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613f7b602e836135b2565b9150613f8682613f1f565b604082019050919050565b60006020820190508181036000830152613faa81613f6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613feb82613753565b9150613ff683613753565b92508261400657614005613fb1565b5b828204905092915050565b600081905092915050565b50565b600061402c600083614011565b91506140378261401c565b600082019050919050565b600061404d8261401f565b9150819050919050565b7f77312053656e64206661696c6564000000000000000000000000000000000000600082015250565b600061408d600e836135b2565b915061409882614057565b602082019050919050565b600060208201905081810360008301526140bc81614080565b9050919050565b7f77322053656e64206661696c6564000000000000000000000000000000000000600082015250565b60006140f9600e836135b2565b9150614104826140c3565b602082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b7f77332053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614165600e836135b2565b91506141708261412f565b602082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f77342053656e64206661696c6564000000000000000000000000000000000000600082015250565b60006141d1600e836135b2565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f77352053656e64206661696c6564000000000000000000000000000000000000600082015250565b600061423d600e836135b2565b915061424882614207565b602082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006142a96018836135b2565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061433b6029836135b2565b9150614346826142df565b604082019050919050565b6000602082019050818103600083015261436a8161432e565b9050919050565b600081519050614380816134f7565b92915050565b60006020828403121561439c5761439b613400565b5b60006143aa84828501614371565b91505092915050565b60006040820190506143c860008301856137b6565b6143d560208301846137b6565b9392505050565b6000815190506143eb816136c7565b92915050565b60006020828403121561440757614406613400565b5b6000614415848285016143dc565b91505092915050565b7f436f6e7472616374206e6f7420617070726f76656420746f206275726e000000600082015250565b6000614454601d836135b2565b915061445f8261441e565b602082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b600060608201905061449f60008301866137b6565b6144ac60208301856137b6565b6144b96040830184613820565b949350505050565b600081905092915050565b60006144d7826135a7565b6144e181856144c1565b93506144f18185602086016135c3565b80840191505092915050565b600061450982856144cc565b915061451582846144cc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457d6026836135b2565b915061458882614521565b604082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145e96020836135b2565b91506145f4826145b3565b602082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061467b602a836135b2565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006146e76019836135b2565b91506146f2826146b1565b602082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147536020836135b2565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006147bf601c836135b2565b91506147ca82614789565b602082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b600061480082613753565b915061480b83613753565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148405761483f613d43565b5b828201905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148a76025836135b2565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149396024836135b2565b9150614944826148dd565b604082019050919050565b600060208201905081810360008301526149688161492c565b9050919050565b600061497a82613753565b915061498583613753565b92508282101561499857614997613d43565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149d96019836135b2565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a6b6032836135b2565b9150614a7682614a0f565b604082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b6000614aac82613753565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ade57614add613d43565b5b600182019050919050565b6000614af482613753565b9150614aff83613753565b925082614b0f57614b0e613fb1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b4182614b1a565b614b4b8185614b25565b9350614b5b8185602086016135c3565b614b64816135f6565b840191505092915050565b6000608082019050614b8460008301876137b6565b614b9160208301866137b6565b614b9e6040830185613820565b8181036060830152614bb08184614b36565b905095945050505050565b600081519050614bca81613436565b92915050565b600060208284031215614be657614be5613400565b5b6000614bf484828501614bbb565b9150509291505056fea2646970667358221220ca5c7fb5ca7e5a18701295375a5b6a8d31415af4d975d6d74738c1d54785a1a164736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063f2fde38b11610064578063f2fde38b146106c1578063f301aa2b146106ea578063f8004d3114610706578063ffbeaf1b1461072f576101e3565b8063b88d4fde146105f3578063c87b56dd1461061c578063cfc86f7b14610659578063e985e9c514610684576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b4114610574578063a035b1fe1461059f578063a22cb465146105ca576101e3565b8063715018a6146104c457806382e5c10f146104db5780638499984b146104f75780638da5cb5b14610520576101e3565b806324bbd0491161017a57806355f804b31161014957806355f804b3146103f85780635715a1ac146104215780636352211e1461044a57806370a0823114610487576101e3565b806324bbd0491461034f5780632a55205a1461037a5780633ccfd60b146103b857806342842e0e146103cf576101e3565b8063081812fc116101b6578063081812fc14610295578063095ea7b3146102d257806318160ddd146102fb57806323b872dd14610326576101e3565b806301ffc9a7146101e857806302fa7c471461022557806306fdde031461024e57806307fd256214610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613462565b61075a565b60405161021c91906134aa565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613567565b61076c565b005b34801561025a57600080fd5b50610263610782565b6040516102709190613640565b60405180910390f35b610293600480360381019061028e91906136f3565b610814565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190613789565b610abf565b6040516102c991906137c5565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f491906137e0565b610b05565b005b34801561030757600080fd5b50610310610c1c565b60405161031d919061382f565b60405180910390f35b34801561033257600080fd5b5061034d6004803603810190610348919061384a565b610c26565b005b34801561035b57600080fd5b50610364610c86565b60405161037191906134aa565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061389d565b610c99565b6040516103af9291906138dd565b60405180910390f35b3480156103c457600080fd5b506103cd610e83565b005b3480156103db57600080fd5b506103f660048036038101906103f1919061384a565b6112b5565b005b34801561040457600080fd5b5061041f600480360381019061041a919061395c565b6112d5565b005b34801561042d57600080fd5b50610448600480360381019061044391906139a9565b6112f3565b005b34801561045657600080fd5b50610471600480360381019061046c9190613789565b611429565b60405161047e91906137c5565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613a09565b6114da565b6040516104bb919061382f565b60405180910390f35b3480156104d057600080fd5b506104d9611591565b005b6104f560048036038101906104f09190613a36565b6115a5565b005b34801561050357600080fd5b5061051e60048036038101906105199190613a36565b611964565b005b34801561052c57600080fd5b50610535611d16565b60405161054291906137c5565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613789565b611d40565b005b34801561058057600080fd5b50610589611d52565b6040516105969190613640565b60405180910390f35b3480156105ab57600080fd5b506105b4611de4565b6040516105c1919061382f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190613a83565b611dea565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190613bf3565b611e00565b005b34801561062857600080fd5b50610643600480360381019061063e9190613789565b611e62565b6040516106509190613640565b60405180910390f35b34801561066557600080fd5b5061066e611eca565b60405161067b9190613640565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190613c76565b611f58565b6040516106b891906134aa565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613a09565b611fec565b005b61070460048036038101906106ff9190613a36565b61206f565b005b34801561071257600080fd5b5061072d60048036038101906107289190613cb6565b6121cf565b005b34801561073b57600080fd5b506107446121f4565b60405161075191906137c5565b60405180910390f35b60006107658261220c565b9050919050565b610774612286565b61077e8282612304565b5050565b60606000805461079190613d12565b80601f01602080910402602001604051908101604052809291908181526020018280546107bd90613d12565b801561080a5780601f106107df5761010080835404028352916020019161080a565b820191906000526020600020905b8154815290600101906020018083116107ed57829003601f168201915b5050505050905090565b60001515600c60009054906101000a900460ff16151503610861576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61138861086c610c1c565b036108a3576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838390509050600081036108e5576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115610942576009546002826108fb9190613d72565b6109059190613d72565b341461093d576040517fa1e3142200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610989565b600954816109509190613d72565b3414610988576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6000600a5490506000805b83811015610aaf578686828181106109af576109ae613dcc565b5b905060200201359150610ec68210806109c9575061138882115b15610a00576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a0982612499565b15610a40576040517f1445949000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8415610a5057610a4f82612505565b5b826001019250610a6033836125e9565b813373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3806001019050610994565b5081600a81905550505050505050565b6000610aca826127c2565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1082611429565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790613e6d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9f61280d565b73ffffffffffffffffffffffffffffffffffffffff161480610bce5750610bcd81610bc861280d565b611f58565b5b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613eff565b60405180910390fd5b610c178383612815565b505050565b6000600a54905090565b610c37610c3161280d565b826128ce565b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613f91565b60405180910390fd5b610c81838383612963565b505050565b600c60009054906101000a900460ff1681565b6000806000600760008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e2e5760066040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e38612bc9565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610e649190613d72565b610e6e9190613fe0565b90508160000151819350935050509250929050565b610e8b612286565b600073702457481718bef08c5bb0124083a1369fab454290506000735390b04839c6ebaa765886e1ede2bce7116e462f90506000736d42a9542f76efeb405d6755317c9a81dba33eef90506000733733f44e9ff13d398512449e4d96e78bc559470890506000733230086971d2d50d30642e3e344233f56becb5c59050600047905060006103e8603283610f1f9190613d72565b610f299190613fe0565b905060006103e86101a984610f3e9190613d72565b610f489190613fe0565b905060008873ffffffffffffffffffffffffffffffffffffffff1683604051610f7090614042565b60006040518083038185875af1925050503d8060008114610fad576040519150601f19603f3d011682016040523d82523d6000602084013e610fb2565b606091505b5050905080610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed906140a3565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168460405161101c90614042565b60006040518083038185875af1925050503d8060008114611059576040519150601f19603f3d011682016040523d82523d6000602084013e61105e565b606091505b50509050806110a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110999061410f565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff16856040516110c890614042565b60006040518083038185875af1925050503d8060008114611105576040519150601f19603f3d011682016040523d82523d6000602084013e61110a565b606091505b505090508061114e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111459061417b565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168560405161117490614042565b60006040518083038185875af1925050503d80600081146111b1576040519150601f19603f3d011682016040523d82523d6000602084013e6111b6565b606091505b50509050806111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f1906141e7565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168660405161122090614042565b60006040518083038185875af1925050503d806000811461125d576040519150601f19603f3d011682016040523d82523d6000602084013e611262565b606091505b50509050806112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90614253565b60405180910390fd5b50505050505050505050505050565b6112d083838360405180602001604052806000815250611e00565b505050565b6112dd612286565b8181600b91906112ee929190613353565b505050565b6112fb612286565b611388611306610c1c565b0361133d576040517f846fb9e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a5490506000805b8484905081101561141a5784848281811061136657611365613dcc565b5b90506020020135915061137882612499565b80611384575061138882115b156113bb576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113c586836125e9565b818673ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3806001019050826001019250611348565b5081600a819055505050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906142bf565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614351565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611599612286565b6115a36000612bd3565b565b60001515600c60009054906101000a900460ff161515036115f2576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082829050905060008103611634576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073b5942db8d5be776ce7585132616d3707f40d46e590506000808367ffffffffffffffff81111561166a57611669613ac8565b5b6040519080825280602002602001820160405280156116985781602001602082028036833780820191505090505b50905060005b848110156117f45760008787838181106116bb576116ba613dcc565b5b905060200201359050611388811115611700576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611750919061382f565b6020604051808303816000875af115801561176f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117939190614386565b73ffffffffffffffffffffffffffffffffffffffff161480156117bc57506117ba81612499565b155b156117e857808383815181106117d5576117d4613dcc565b5b6020026020010181815250508360010193505b8160010191505061169e565b506000820361182f576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548261183d9190613d72565b3414611875576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600a54905060005b8381101561195357600083828151811061189c5761189b613dcc565b5b6020026020010151905060008114611947578260010192506118be33826125e9565b803373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a3803373ffffffffffffffffffffffffffffffffffffffff167fa003d3960a84ba2addf11e44a131bbc7f59cc62e679c77f04168bdbd732c009f60405160405180910390a35b8160010191505061187f565b5080600a8190555050505050505050565b60001515600c60009054906101000a900460ff161515036119b1576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828290509050600081036119f3576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073b5942db8d5be776ce7585132616d3707f40d46e590508073ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401611a479291906143b3565b602060405180830381865afa158015611a64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a8891906143f1565b611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061446a565b60405180910390fd5b6000600a5490506000805b84811015611d0657868682818110611aed57611aec613dcc565b5b905060200201359150611388821115611b32576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611b82919061382f565b6020604051808303816000875af1158015611ba1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc59190614386565b73ffffffffffffffffffffffffffffffffffffffff16148015611bee5750611bec82612499565b155b15611cfb578373ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b8152600401611c309392919061448a565b600060405180830381600087803b158015611c4a57600080fd5b505af1158015611c5e573d6000803e3d6000fd5b50505050813373ffffffffffffffffffffffffffffffffffffffff167f93c575fb079df295389de6e64817bac352afd5d2bf77aefb9862f92ce0c8b71360405160405180910390a3826001019250611cb633836125e9565b813373ffffffffffffffffffffffffffffffffffffffff167fd846f14b9137a53fa8ff2a058bdccbdbceb803a7eeca204a904e461d513507c660405160405180910390a35b806001019050611ad2565b5081600a81905550505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d48612286565b8060098190555050565b606060018054611d6190613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8d90613d12565b8015611dda5780601f10611daf57610100808354040283529160200191611dda565b820191906000526020600020905b815481529060010190602001808311611dbd57829003601f168201915b5050505050905090565b60095481565b611dfc611df561280d565b8383612c99565b5050565b611e11611e0b61280d565b836128ce565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613f91565b60405180910390fd5b611e5c84848484612e05565b50505050565b6060611e6d826127c2565b6000611e77612e61565b90506000815111611e975760405180602001604052806000815250611ec2565b80611ea184612ef3565b604051602001611eb29291906144fd565b6040516020818303038152906040525b915050919050565b600b8054611ed790613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0390613d12565b8015611f505780601f10611f2557610100808354040283529160200191611f50565b820191906000526020600020905b815481529060010190602001808311611f3357829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ff4612286565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90614593565b60405180910390fd5b61206c81612bd3565b50565b60001515600c60009054906101000a900460ff161515036120bc576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082829050036120f9576040517f1880b78200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009548282905061210a9190613d72565b3414612142576040517ff7760f2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805b838390508110156121c95783838281811061216457612163613dcc565b5b905060200201359150610ec682108061217e575061138882115b156121b5576040517f766620dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121be82612505565b806001019050612146565b50505050565b6121d7612286565b80600c60006101000a81548160ff02191690831515021790555050565b73b5942db8d5be776ce7585132616d3707f40d46e581565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061227f575061227e82613053565b5b9050919050565b61228e61280d565b73ffffffffffffffffffffffffffffffffffffffff166122ac611d16565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f9906145ff565b60405180910390fd5b565b61230c612bc9565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190614691565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d0906146fd565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600660008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600073b5942db8d5be776ce7585132616d3707f40d46e590508073ffffffffffffffffffffffffffffffffffffffff166323b872dd73cac5cc8dbccc684c1530ff1502fd48a2fd2afbe333856040518463ffffffff1660e01b815260040161256f9392919061448a565b600060405180830381600087803b15801561258957600080fd5b505af115801561259d573d6000803e3d6000fd5b50505050813373ffffffffffffffffffffffffffffffffffffffff167f24e1a00a1a3749a893698343b5e1e56f8611bd1d81d083bad3cb01ca2ae1310560405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264f90614769565b60405180910390fd5b61266181612499565b156126a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612698906147d5565b60405180910390fd5b6126ad60008383613135565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126fd91906147f5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127be6000838361313a565b5050565b6127cb81612499565b61280a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612801906142bf565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661288883611429565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806128da83611429565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061291c575061291b8185611f58565b5b8061295a57508373ffffffffffffffffffffffffffffffffffffffff1661294284610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661298382611429565b73ffffffffffffffffffffffffffffffffffffffff16146129d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d0906148bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f9061494f565b60405180910390fd5b612a53838383613135565b612a5e600082612815565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae919061496f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b0591906147f5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bc483838361313a565b505050565b6000612710905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfe906149ef565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612df891906134aa565b60405180910390a3505050565b612e10848484612963565b612e1c8484848461313f565b612e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614a81565b60405180910390fd5b50505050565b6060600b8054612e7090613d12565b80601f0160208091040260200160405190810160405280929190818152602001828054612e9c90613d12565b8015612ee95780601f10612ebe57610100808354040283529160200191612ee9565b820191906000526020600020905b815481529060010190602001808311612ecc57829003601f168201915b5050505050905090565b606060008203612f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304e565b600082905060005b60008214612f6c578080612f5590614aa1565b915050600a82612f659190613fe0565b9150612f42565b60008167ffffffffffffffff811115612f8857612f87613ac8565b5b6040519080825280601f01601f191660200182016040528015612fba5781602001600182028036833780820191505090505b5090505b6000851461304757600182612fd3919061496f565b9150600a85612fe29190614ae9565b6030612fee91906147f5565b60f81b81838151811061300457613003613dcc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130409190613fe0565b9450612fbe565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061311e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061312e575061312d826132c6565b5b9050919050565b505050565b505050565b60006131608473ffffffffffffffffffffffffffffffffffffffff16613330565b156132b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261318961280d565b8786866040518563ffffffff1660e01b81526004016131ab9493929190614b6f565b6020604051808303816000875af19250505080156131e757506040513d601f19601f820116820180604052508101906131e49190614bd0565b60015b613269573d8060008114613217576040519150601f19603f3d011682016040523d82523d6000602084013e61321c565b606091505b506000815103613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890614a81565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132be565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461335f90613d12565b90600052602060002090601f01602090048101928261338157600085556133c8565b82601f1061339a57803560ff19168380011785556133c8565b828001600101855582156133c8579182015b828111156133c75782358255916020019190600101906133ac565b5b5090506133d591906133d9565b5090565b5b808211156133f25760008160009055506001016133da565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61343f8161340a565b811461344a57600080fd5b50565b60008135905061345c81613436565b92915050565b60006020828403121561347857613477613400565b5b60006134868482850161344d565b91505092915050565b60008115159050919050565b6134a48161348f565b82525050565b60006020820190506134bf600083018461349b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134f0826134c5565b9050919050565b613500816134e5565b811461350b57600080fd5b50565b60008135905061351d816134f7565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61354481613523565b811461354f57600080fd5b50565b6000813590506135618161353b565b92915050565b6000806040838503121561357e5761357d613400565b5b600061358c8582860161350e565b925050602061359d85828601613552565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135e15780820151818401526020810190506135c6565b838111156135f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613612826135a7565b61361c81856135b2565b935061362c8185602086016135c3565b613635816135f6565b840191505092915050565b6000602082019050818103600083015261365a8184613607565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261368757613686613662565b5b8235905067ffffffffffffffff8111156136a4576136a3613667565b5b6020830191508360208202830111156136c0576136bf61366c565b5b9250929050565b6136d08161348f565b81146136db57600080fd5b50565b6000813590506136ed816136c7565b92915050565b60008060006040848603121561370c5761370b613400565b5b600084013567ffffffffffffffff81111561372a57613729613405565b5b61373686828701613671565b93509350506020613749868287016136de565b9150509250925092565b6000819050919050565b61376681613753565b811461377157600080fd5b50565b6000813590506137838161375d565b92915050565b60006020828403121561379f5761379e613400565b5b60006137ad84828501613774565b91505092915050565b6137bf816134e5565b82525050565b60006020820190506137da60008301846137b6565b92915050565b600080604083850312156137f7576137f6613400565b5b60006138058582860161350e565b925050602061381685828601613774565b9150509250929050565b61382981613753565b82525050565b60006020820190506138446000830184613820565b92915050565b60008060006060848603121561386357613862613400565b5b60006138718682870161350e565b93505060206138828682870161350e565b925050604061389386828701613774565b9150509250925092565b600080604083850312156138b4576138b3613400565b5b60006138c285828601613774565b92505060206138d385828601613774565b9150509250929050565b60006040820190506138f260008301856137b6565b6138ff6020830184613820565b9392505050565b60008083601f84011261391c5761391b613662565b5b8235905067ffffffffffffffff81111561393957613938613667565b5b6020830191508360018202830111156139555761395461366c565b5b9250929050565b6000806020838503121561397357613972613400565b5b600083013567ffffffffffffffff81111561399157613990613405565b5b61399d85828601613906565b92509250509250929050565b6000806000604084860312156139c2576139c1613400565b5b60006139d08682870161350e565b935050602084013567ffffffffffffffff8111156139f1576139f0613405565b5b6139fd86828701613671565b92509250509250925092565b600060208284031215613a1f57613a1e613400565b5b6000613a2d8482850161350e565b91505092915050565b60008060208385031215613a4d57613a4c613400565b5b600083013567ffffffffffffffff811115613a6b57613a6a613405565b5b613a7785828601613671565b92509250509250929050565b60008060408385031215613a9a57613a99613400565b5b6000613aa88582860161350e565b9250506020613ab9858286016136de565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b00826135f6565b810181811067ffffffffffffffff82111715613b1f57613b1e613ac8565b5b80604052505050565b6000613b326133f6565b9050613b3e8282613af7565b919050565b600067ffffffffffffffff821115613b5e57613b5d613ac8565b5b613b67826135f6565b9050602081019050919050565b82818337600083830152505050565b6000613b96613b9184613b43565b613b28565b905082815260208101848484011115613bb257613bb1613ac3565b5b613bbd848285613b74565b509392505050565b600082601f830112613bda57613bd9613662565b5b8135613bea848260208601613b83565b91505092915050565b60008060008060808587031215613c0d57613c0c613400565b5b6000613c1b8782880161350e565b9450506020613c2c8782880161350e565b9350506040613c3d87828801613774565b925050606085013567ffffffffffffffff811115613c5e57613c5d613405565b5b613c6a87828801613bc5565b91505092959194509250565b60008060408385031215613c8d57613c8c613400565b5b6000613c9b8582860161350e565b9250506020613cac8582860161350e565b9150509250929050565b600060208284031215613ccc57613ccb613400565b5b6000613cda848285016136de565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2a57607f821691505b602082108103613d3d57613d3c613ce3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d7d82613753565b9150613d8883613753565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc157613dc0613d43565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e576021836135b2565b9150613e6282613dfb565b604082019050919050565b60006020820190508181036000830152613e8681613e4a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613ee9603e836135b2565b9150613ef482613e8d565b604082019050919050565b60006020820190508181036000830152613f1881613edc565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613f7b602e836135b2565b9150613f8682613f1f565b604082019050919050565b60006020820190508181036000830152613faa81613f6e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613feb82613753565b9150613ff683613753565b92508261400657614005613fb1565b5b828204905092915050565b600081905092915050565b50565b600061402c600083614011565b91506140378261401c565b600082019050919050565b600061404d8261401f565b9150819050919050565b7f77312053656e64206661696c6564000000000000000000000000000000000000600082015250565b600061408d600e836135b2565b915061409882614057565b602082019050919050565b600060208201905081810360008301526140bc81614080565b9050919050565b7f77322053656e64206661696c6564000000000000000000000000000000000000600082015250565b60006140f9600e836135b2565b9150614104826140c3565b602082019050919050565b60006020820190508181036000830152614128816140ec565b9050919050565b7f77332053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614165600e836135b2565b91506141708261412f565b602082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b7f77342053656e64206661696c6564000000000000000000000000000000000000600082015250565b60006141d1600e836135b2565b91506141dc8261419b565b602082019050919050565b60006020820190508181036000830152614200816141c4565b9050919050565b7f77352053656e64206661696c6564000000000000000000000000000000000000600082015250565b600061423d600e836135b2565b915061424882614207565b602082019050919050565b6000602082019050818103600083015261426c81614230565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006142a96018836135b2565b91506142b482614273565b602082019050919050565b600060208201905081810360008301526142d88161429c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061433b6029836135b2565b9150614346826142df565b604082019050919050565b6000602082019050818103600083015261436a8161432e565b9050919050565b600081519050614380816134f7565b92915050565b60006020828403121561439c5761439b613400565b5b60006143aa84828501614371565b91505092915050565b60006040820190506143c860008301856137b6565b6143d560208301846137b6565b9392505050565b6000815190506143eb816136c7565b92915050565b60006020828403121561440757614406613400565b5b6000614415848285016143dc565b91505092915050565b7f436f6e7472616374206e6f7420617070726f76656420746f206275726e000000600082015250565b6000614454601d836135b2565b915061445f8261441e565b602082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b600060608201905061449f60008301866137b6565b6144ac60208301856137b6565b6144b96040830184613820565b949350505050565b600081905092915050565b60006144d7826135a7565b6144e181856144c1565b93506144f18185602086016135c3565b80840191505092915050565b600061450982856144cc565b915061451582846144cc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061457d6026836135b2565b915061458882614521565b604082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145e96020836135b2565b91506145f4826145b3565b602082019050919050565b60006020820190508181036000830152614618816145dc565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061467b602a836135b2565b91506146868261461f565b604082019050919050565b600060208201905081810360008301526146aa8161466e565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006146e76019836135b2565b91506146f2826146b1565b602082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006147536020836135b2565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006147bf601c836135b2565b91506147ca82614789565b602082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b600061480082613753565b915061480b83613753565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148405761483f613d43565b5b828201905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006148a76025836135b2565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149396024836135b2565b9150614944826148dd565b604082019050919050565b600060208201905081810360008301526149688161492c565b9050919050565b600061497a82613753565b915061498583613753565b92508282101561499857614997613d43565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006149d96019836135b2565b91506149e4826149a3565b602082019050919050565b60006020820190508181036000830152614a08816149cc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a6b6032836135b2565b9150614a7682614a0f565b604082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b6000614aac82613753565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ade57614add613d43565b5b600182019050919050565b6000614af482613753565b9150614aff83613753565b925082614b0f57614b0e613fb1565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b4182614b1a565b614b4b8185614b25565b9350614b5b8185602086016135c3565b614b64816135f6565b840191505092915050565b6000608082019050614b8460008301876137b6565b614b9160208301866137b6565b614b9e6040830185613820565b8181036060830152614bb08184614b36565b905095945050505050565b600081519050614bca81613436565b92915050565b600060208284031215614be657614be5613400565b5b6000614bf484828501614bbb565b9150509291505056fea2646970667358221220ca5c7fb5ca7e5a18701295375a5b6a8d31415af4d975d6d74738c1d54785a1a164736f6c634300080d0033
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.