Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 FLUFFS
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 FLUFFSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoFluffs
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract CryptoFluffs is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; string public _baseTokenURI; uint256 public _presalePrice = 0.02 ether; uint256 public _price = 0.03 ether; uint256 public _maxSupply = 1000; uint256 public _maxPresaleSupply = 500; uint256 public _series = 1; bool public _preSaleIsActive = false; bool public _saleIsActive = false; Counters.Counter private _tokenSupply; address a1 = 0xb63ca07E361587172623dC43AbC8208815C24cb2; address a2 = 0x5CaE7b682101Ad2697bA6fa7a1Dc0fae6aED43AF; constructor(string memory baseURI) ERC721("CryptoFluffs", "FLUFFS") { setBaseURI(baseURI); for (uint256 i = 0; i < 50; i++) { if (i < 25) { _tokenSupply.increment(); _safeMint(a1, i); } else if (i < 50) { _tokenSupply.increment(); _safeMint(a2, i); } } } function preSaleMint(uint256 mintCount) public payable { uint256 supply = _tokenSupply.current(); require(_preSaleIsActive, "presale_not_active"); require(balanceOf(msg.sender) + mintCount <= 5, "presale_wallet_limit_met"); require(supply + mintCount <= _maxPresaleSupply, "presale_supply_exceeded"); require(msg.value >= _presalePrice * mintCount, "insufficient_payment_value"); for (uint256 i = 0; i < mintCount; i++) { _tokenSupply.increment(); _safeMint(msg.sender, supply + i); } } function mint(uint256 mintCount) public payable { uint256 supply = _tokenSupply.current(); require(_saleIsActive, "sale_not_active"); require(mintCount < 20, "max_mint_count_exceeded"); require(supply + mintCount < _maxSupply, "max_supply_exceeded"); require(msg.value >= _price * mintCount, "insufficient_payment_value"); for (uint256 i = 0; i < mintCount; i++) { _tokenSupply.increment(); _safeMint(msg.sender, supply + i); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setPrice(uint256 price) public onlyOwner { _price = price; } function preSaleStart() public onlyOwner { _preSaleIsActive = true; } function preSaleStop() public onlyOwner { _preSaleIsActive = false; } function saleStart() public onlyOwner { _saleIsActive = true; } function saleStop() public onlyOwner { _saleIsActive = false; } function setSeries(uint256 series) external onlyOwner { _series = series; } function tokensMinted() public view returns (uint256) { return _tokenSupply.current(); } function newSeries( uint256 series, uint256 price, uint256 maxSupply ) external onlyOwner { _series = series; _price = price; _maxSupply = maxSupply; } function withdrawAll() public payable onlyOwner { uint256 _each = address(this).balance / 2; require(payable(a1).send(_each)); require(payable(a2).send(_each)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxPresaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_series","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"mintCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"series","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"newSeries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintCount","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleStop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStop","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":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"series","type":"uint256"}],"name":"setSeries","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":"tokensMinted","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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405266470de4df820000600855666a94d74f4300006009556103e8600a556101f4600b556001600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555073b63ca07e361587172623dc43abc8208815c24cb2600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735cae7b682101ad2697ba6fa7a1dc0fae6aed43af601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011857600080fd5b5060405162004ff138038062004ff183398181016040528101906200013e919062000b9a565b6040518060400160405280600c81526020017f43727970746f466c7566667300000000000000000000000000000000000000008152506040518060400160405280600681526020017f464c5546465300000000000000000000000000000000000000000000000000008152508160009080519060200190620001c29291906200094d565b508060019080519060200190620001db9291906200094d565b505050620001fe620001f2620002ec60201b60201c565b620002f460201b60201c565b6200020f81620003ba60201b60201c565b60005b6032811015620002e457601981101562000277576200023d600e6200046560201b62001aa51760201c565b62000271600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200047b60201b60201c565b620002ce565b6032811015620002cd5762000298600e6200046560201b62001aa51760201c565b620002cc601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200047b60201b60201c565b5b5b8080620002db9062000c24565b91505062000212565b5050620010c9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003ca620002ec60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f0620004a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004409062000cd3565b60405180910390fd5b8060079080519060200190620004619291906200094d565b5050565b6001816000016000828254019250508190555050565b6200049d828260405180602001604052806000815250620004cb60201b60201c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004dd83836200053960201b60201c565b620004f260008484846200071f60201b60201c565b62000534576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052b9062000d6b565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a39062000ddd565b60405180910390fd5b620005bd81620008c960201b60201c565b1562000600576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f79062000e4f565b60405180910390fd5b62000614600083836200093560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000666919062000e71565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200074d8473ffffffffffffffffffffffffffffffffffffffff166200093a60201b62001abb1760201c565b15620008bc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200077f620002ec60201b60201c565b8786866040518563ffffffff1660e01b8152600401620007a3949392919062000f81565b6020604051808303816000875af1925050508015620007e257506040513d601f19601f82011682018060405250810190620007df919062001032565b60015b6200086b573d806000811462000815576040519150601f19603f3d011682016040523d82523d6000602084013e6200081a565b606091505b5060008151141562000863576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085a9062000d6b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008c1565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b8280546200095b9062001093565b90600052602060002090601f0160209004810192826200097f5760008555620009cb565b82601f106200099a57805160ff1916838001178555620009cb565b82800160010185558215620009cb579182015b82811115620009ca578251825591602001919060010190620009ad565b5b509050620009da9190620009de565b5090565b5b80821115620009f9576000816000905550600101620009df565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a668262000a1b565b810181811067ffffffffffffffff8211171562000a885762000a8762000a2c565b5b80604052505050565b600062000a9d620009fd565b905062000aab828262000a5b565b919050565b600067ffffffffffffffff82111562000ace5762000acd62000a2c565b5b62000ad98262000a1b565b9050602081019050919050565b60005b8381101562000b0657808201518184015260208101905062000ae9565b8381111562000b16576000848401525b50505050565b600062000b3362000b2d8462000ab0565b62000a91565b90508281526020810184848401111562000b525762000b5162000a16565b5b62000b5f84828562000ae6565b509392505050565b600082601f83011262000b7f5762000b7e62000a11565b5b815162000b9184826020860162000b1c565b91505092915050565b60006020828403121562000bb35762000bb262000a07565b5b600082015167ffffffffffffffff81111562000bd45762000bd362000a0c565b5b62000be28482850162000b67565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000819050919050565b600062000c318262000c1a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c675762000c6662000beb565b5b600182019050919050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000cbb60208362000c72565b915062000cc88262000c83565b602082019050919050565b6000602082019050818103600083015262000cee8162000cac565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000d5360328362000c72565b915062000d608262000cf5565b604082019050919050565b6000602082019050818103600083015262000d868162000d44565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000dc560208362000c72565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000e37601c8362000c72565b915062000e448262000dff565b602082019050919050565b6000602082019050818103600083015262000e6a8162000e28565b9050919050565b600062000e7e8262000c1a565b915062000e8b8362000c1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ec35762000ec262000beb565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000efb8262000ece565b9050919050565b62000f0d8162000eee565b82525050565b62000f1e8162000c1a565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000f4d8262000f24565b62000f59818562000f2f565b935062000f6b81856020860162000ae6565b62000f768162000a1b565b840191505092915050565b600060808201905062000f98600083018762000f02565b62000fa7602083018662000f02565b62000fb6604083018562000f13565b818103606083015262000fca818462000f40565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200100c8162000fd5565b81146200101857600080fd5b50565b6000815190506200102c8162001001565b92915050565b6000602082840312156200104b576200104a62000a07565b5b60006200105b848285016200101b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010ac57607f821691505b60208210811415620010c357620010c262001064565b5b50919050565b613f1880620010d96000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063cfc86f7b1161006f578063cfc86f7b14610702578063d8c7a7971461072d578063e985e9c514610758578063ef305cec14610795578063f2fde38b146107ac5761020f565b8063a22cb4651461065c578063ab0bcc4114610685578063b88d4fde1461069c578063c87b56dd146106c55761020f565b8063853828b6116100e7578063853828b6146105b75780638da5cb5b146105c157806391b7f5ed146105ec57806395d89b4114610615578063a0712d68146106405761020f565b806370a0823114610530578063715018a61461056d5780637835c635146105845780638078059c146105a05761020f565b806323b872dd1161019b57806355f804b31161016a57806355f804b3146104495780635d893ba0146104725780635f0d246a1461049d5780636352211e146104c85780636de9f32b146105055761020f565b806323b872dd146103a55780633d3370a2146103ce57806342842e0e146103f75780635218ff5c146104205761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630d5624b31461030d57806316a06a831461032457806322f4596f1461034f578063235b6ea11461037a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063082f3c20146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612912565b6107d5565b604051610248919061295a565b60405180910390f35b34801561025d57600080fd5b506102666108b7565b6040516102739190612a0e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612a66565b610949565b6040516102b09190612ad4565b60405180910390f35b3480156102c557600080fd5b506102ce6109ce565b6040516102db9190612afe565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612b45565b6109d4565b005b34801561031957600080fd5b50610322610aec565b005b34801561033057600080fd5b50610339610b85565b6040516103469190612afe565b60405180910390f35b34801561035b57600080fd5b50610364610b8b565b6040516103719190612afe565b60405180910390f35b34801561038657600080fd5b5061038f610b91565b60405161039c9190612afe565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612b85565b610b97565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612bd8565b610bf7565b005b34801561040357600080fd5b5061041e60048036038101906104199190612b85565b610c8d565b005b34801561042c57600080fd5b5061044760048036038101906104429190612a66565b610cad565b005b34801561045557600080fd5b50610470600480360381019061046b9190612d60565b610d33565b005b34801561047e57600080fd5b50610487610dc9565b604051610494919061295a565b60405180910390f35b3480156104a957600080fd5b506104b2610ddc565b6040516104bf9190612afe565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612a66565b610de2565b6040516104fc9190612ad4565b60405180910390f35b34801561051157600080fd5b5061051a610e94565b6040516105279190612afe565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612da9565b610ea5565b6040516105649190612afe565b60405180910390f35b34801561057957600080fd5b50610582610f5d565b005b61059e60048036038101906105999190612a66565b610fe5565b005b3480156105ac57600080fd5b506105b561117b565b005b6105bf611214565b005b3480156105cd57600080fd5b506105d6611364565b6040516105e39190612ad4565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190612a66565b61138e565b005b34801561062157600080fd5b5061062a611414565b6040516106379190612a0e565b60405180910390f35b61065a60048036038101906106559190612a66565b6114a6565b005b34801561066857600080fd5b50610683600480360381019061067e9190612e02565b611627565b005b34801561069157600080fd5b5061069a61163d565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612ee3565b6116d6565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612a66565b611738565b6040516106f99190612a0e565b60405180910390f35b34801561070e57600080fd5b506107176117df565b6040516107249190612a0e565b60405180910390f35b34801561073957600080fd5b5061074261186d565b60405161074f919061295a565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612f66565b611880565b60405161078c919061295a565b60405180910390f35b3480156107a157600080fd5b506107aa611914565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190612da9565b6119ad565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b057506108af82611ace565b5b9050919050565b6060600080546108c690612fd5565b80601f01602080910402602001604051908101604052809291908181526020018280546108f290612fd5565b801561093f5780601f106109145761010080835404028352916020019161093f565b820191906000526020600020905b81548152906001019060200180831161092257829003601f168201915b5050505050905090565b600061095482611b38565b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613079565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b5481565b60006109df82610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061310b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611ba4565b73ffffffffffffffffffffffffffffffffffffffff161480610a9e5750610a9d81610a98611ba4565b611880565b5b610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad49061319d565b60405180910390fd5b610ae78383611bac565b505050565b610af4611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610b12611364565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90613209565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b600c5481565b600a5481565b60095481565b610ba8610ba2611ba4565b82611c65565b610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde9061329b565b60405180910390fd5b610bf2838383611d43565b505050565b610bff611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610c1d611364565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613209565b60405180910390fd5b82600c819055508160098190555080600a81905550505050565b610ca8838383604051806020016040528060008152506116d6565b505050565b610cb5611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610cd3611364565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090613209565b60405180910390fd5b80600c8190555050565b610d3b611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610d59611364565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690613209565b60405180910390fd5b8060079080519060200190610dc5929190612803565b5050565b600d60019054906101000a900460ff1681565b60085481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e829061332d565b60405180910390fd5b80915050919050565b6000610ea0600e611f9f565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906133bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f65611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610f83611364565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613209565b60405180910390fd5b610fe36000611fad565b565b6000610ff1600e611f9f565b9050600d60009054906101000a900460ff16611042576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110399061342b565b60405180910390fd5b60058261104e33610ea5565b611058919061347a565b1115611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061351c565b60405180910390fd5b600b5482826110a8919061347a565b11156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613588565b60405180910390fd5b816008546110f791906135a8565b341015611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061364e565b60405180910390fd5b60005b828110156111765761114e600e611aa5565b61116333828461115e919061347a565b612073565b808061116e9061366e565b91505061113c565b505050565b611183611ba4565b73ffffffffffffffffffffffffffffffffffffffff166111a1611364565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613209565b60405180910390fd5b6000600d60016101000a81548160ff021916908315150217905550565b61121c611ba4565b73ffffffffffffffffffffffffffffffffffffffff1661123a611364565b73ffffffffffffffffffffffffffffffffffffffff1614611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613209565b60405180910390fd5b600060024761129f91906136e6565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061130157600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136157600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611396611ba4565b73ffffffffffffffffffffffffffffffffffffffff166113b4611364565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613209565b60405180910390fd5b8060098190555050565b60606001805461142390612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461144f90612fd5565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b5050505050905090565b60006114b2600e611f9f565b9050600d60019054906101000a900460ff16611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613763565b60405180910390fd5b60148210611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906137cf565b60405180910390fd5b600a548282611555919061347a565b10611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061383b565b60405180910390fd5b816009546115a391906135a8565b3410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061364e565b60405180910390fd5b60005b82811015611622576115fa600e611aa5565b61160f33828461160a919061347a565b612073565b808061161a9061366e565b9150506115e8565b505050565b611639611632611ba4565b8383612091565b5050565b611645611ba4565b73ffffffffffffffffffffffffffffffffffffffff16611663611364565b73ffffffffffffffffffffffffffffffffffffffff16146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613209565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b6116e76116e1611ba4565b83611c65565b611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d9061329b565b60405180910390fd5b611732848484846121fe565b50505050565b606061174382611b38565b611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906138cd565b60405180910390fd5b600061178c61225a565b905060008151116117ac57604051806020016040528060008152506117d7565b806117b6846122ec565b6040516020016117c7929190613929565b6040516020818303038152906040525b915050919050565b600780546117ec90612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461181890612fd5565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191c611ba4565b73ffffffffffffffffffffffffffffffffffffffff1661193a611364565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613209565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6119b5611ba4565b73ffffffffffffffffffffffffffffffffffffffff166119d3611364565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090613209565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a90906139bf565b60405180910390fd5b611aa281611fad565b50565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c1f83610de2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7082611b38565b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613a51565b60405180910390fd5b6000611cba83610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2957508373ffffffffffffffffffffffffffffffffffffffff16611d1184610949565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3a5750611d398185611880565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6382610de2565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090613ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613b75565b60405180910390fd5b611e3483838361244d565b611e3f600082611bac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8f9190613b95565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee6919061347a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208d828260405180602001604052806000815250612452565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613c15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f1919061295a565b60405180910390a3505050565b612209848484611d43565b612215848484846124ad565b612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613ca7565b60405180910390fd5b50505050565b60606007805461226990612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461229590612fd5565b80156122e25780601f106122b7576101008083540402835291602001916122e2565b820191906000526020600020905b8154815290600101906020018083116122c557829003601f168201915b5050505050905090565b60606000821415612334576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612448565b600082905060005b6000821461236657808061234f9061366e565b915050600a8261235f91906136e6565b915061233c565b60008167ffffffffffffffff81111561238257612381612c35565b5b6040519080825280601f01601f1916602001820160405280156123b45781602001600182028036833780820191505090505b5090505b60008514612441576001826123cd9190613b95565b9150600a856123dc9190613cc7565b60306123e8919061347a565b60f81b8183815181106123fe576123fd613cf8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243a91906136e6565b94506123b8565b8093505050505b919050565b505050565b61245c8383612635565b61246960008484846124ad565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613ca7565b60405180910390fd5b505050565b60006124ce8473ffffffffffffffffffffffffffffffffffffffff16611abb565b15612628578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f7611ba4565b8786866040518563ffffffff1660e01b81526004016125199493929190613d7c565b6020604051808303816000875af192505050801561255557506040513d601f19601f820116820180604052508101906125529190613ddd565b60015b6125d8573d8060008114612585576040519150601f19603f3d011682016040523d82523d6000602084013e61258a565b606091505b506000815114156125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c790613ca7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061262d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c90613e56565b60405180910390fd5b6126ae81611b38565b156126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e590613ec2565b60405180910390fd5b6126fa6000838361244d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461274a919061347a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461280f90612fd5565b90600052602060002090601f0160209004810192826128315760008555612878565b82601f1061284a57805160ff1916838001178555612878565b82800160010185558215612878579182015b8281111561287757825182559160200191906001019061285c565b5b5090506128859190612889565b5090565b5b808211156128a257600081600090555060010161288a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ef816128ba565b81146128fa57600080fd5b50565b60008135905061290c816128e6565b92915050565b600060208284031215612928576129276128b0565b5b6000612936848285016128fd565b91505092915050565b60008115159050919050565b6129548161293f565b82525050565b600060208201905061296f600083018461294b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129af578082015181840152602081019050612994565b838111156129be576000848401525b50505050565b6000601f19601f8301169050919050565b60006129e082612975565b6129ea8185612980565b93506129fa818560208601612991565b612a03816129c4565b840191505092915050565b60006020820190508181036000830152612a2881846129d5565b905092915050565b6000819050919050565b612a4381612a30565b8114612a4e57600080fd5b50565b600081359050612a6081612a3a565b92915050565b600060208284031215612a7c57612a7b6128b0565b5b6000612a8a84828501612a51565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612abe82612a93565b9050919050565b612ace81612ab3565b82525050565b6000602082019050612ae96000830184612ac5565b92915050565b612af881612a30565b82525050565b6000602082019050612b136000830184612aef565b92915050565b612b2281612ab3565b8114612b2d57600080fd5b50565b600081359050612b3f81612b19565b92915050565b60008060408385031215612b5c57612b5b6128b0565b5b6000612b6a85828601612b30565b9250506020612b7b85828601612a51565b9150509250929050565b600080600060608486031215612b9e57612b9d6128b0565b5b6000612bac86828701612b30565b9350506020612bbd86828701612b30565b9250506040612bce86828701612a51565b9150509250925092565b600080600060608486031215612bf157612bf06128b0565b5b6000612bff86828701612a51565b9350506020612c1086828701612a51565b9250506040612c2186828701612a51565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6d826129c4565b810181811067ffffffffffffffff82111715612c8c57612c8b612c35565b5b80604052505050565b6000612c9f6128a6565b9050612cab8282612c64565b919050565b600067ffffffffffffffff821115612ccb57612cca612c35565b5b612cd4826129c4565b9050602081019050919050565b82818337600083830152505050565b6000612d03612cfe84612cb0565b612c95565b905082815260208101848484011115612d1f57612d1e612c30565b5b612d2a848285612ce1565b509392505050565b600082601f830112612d4757612d46612c2b565b5b8135612d57848260208601612cf0565b91505092915050565b600060208284031215612d7657612d756128b0565b5b600082013567ffffffffffffffff811115612d9457612d936128b5565b5b612da084828501612d32565b91505092915050565b600060208284031215612dbf57612dbe6128b0565b5b6000612dcd84828501612b30565b91505092915050565b612ddf8161293f565b8114612dea57600080fd5b50565b600081359050612dfc81612dd6565b92915050565b60008060408385031215612e1957612e186128b0565b5b6000612e2785828601612b30565b9250506020612e3885828601612ded565b9150509250929050565b600067ffffffffffffffff821115612e5d57612e5c612c35565b5b612e66826129c4565b9050602081019050919050565b6000612e86612e8184612e42565b612c95565b905082815260208101848484011115612ea257612ea1612c30565b5b612ead848285612ce1565b509392505050565b600082601f830112612eca57612ec9612c2b565b5b8135612eda848260208601612e73565b91505092915050565b60008060008060808587031215612efd57612efc6128b0565b5b6000612f0b87828801612b30565b9450506020612f1c87828801612b30565b9350506040612f2d87828801612a51565b925050606085013567ffffffffffffffff811115612f4e57612f4d6128b5565b5b612f5a87828801612eb5565b91505092959194509250565b60008060408385031215612f7d57612f7c6128b0565b5b6000612f8b85828601612b30565b9250506020612f9c85828601612b30565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fed57607f821691505b6020821081141561300157613000612fa6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613063602c83612980565b915061306e82613007565b604082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130f5602183612980565b915061310082613099565b604082019050919050565b60006020820190508181036000830152613124816130e8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613187603883612980565b91506131928261312b565b604082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131f3602083612980565b91506131fe826131bd565b602082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613285603183612980565b915061329082613229565b604082019050919050565b600060208201905081810360008301526132b481613278565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613317602983612980565b9150613322826132bb565b604082019050919050565b600060208201905081810360008301526133468161330a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006133a9602a83612980565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f70726573616c655f6e6f745f6163746976650000000000000000000000000000600082015250565b6000613415601283612980565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061348582612a30565b915061349083612a30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c461344b565b5b828201905092915050565b7f70726573616c655f77616c6c65745f6c696d69745f6d65740000000000000000600082015250565b6000613506601883612980565b9150613511826134d0565b602082019050919050565b60006020820190508181036000830152613535816134f9565b9050919050565b7f70726573616c655f737570706c795f6578636565646564000000000000000000600082015250565b6000613572601783612980565b915061357d8261353c565b602082019050919050565b600060208201905081810360008301526135a181613565565b9050919050565b60006135b382612a30565b91506135be83612a30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f7576135f661344b565b5b828202905092915050565b7f696e73756666696369656e745f7061796d656e745f76616c7565000000000000600082015250565b6000613638601a83612980565b915061364382613602565b602082019050919050565b600060208201905081810360008301526136678161362b565b9050919050565b600061367982612a30565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ac576136ab61344b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f182612a30565b91506136fc83612a30565b92508261370c5761370b6136b7565b5b828204905092915050565b7f73616c655f6e6f745f6163746976650000000000000000000000000000000000600082015250565b600061374d600f83612980565b915061375882613717565b602082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f6d61785f6d696e745f636f756e745f6578636565646564000000000000000000600082015250565b60006137b9601783612980565b91506137c482613783565b602082019050919050565b600060208201905081810360008301526137e8816137ac565b9050919050565b7f6d61785f737570706c795f657863656564656400000000000000000000000000600082015250565b6000613825601383612980565b9150613830826137ef565b602082019050919050565b6000602082019050818103600083015261385481613818565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006138b7602f83612980565b91506138c28261385b565b604082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b600081905092915050565b600061390382612975565b61390d81856138ed565b935061391d818560208601612991565b80840191505092915050565b600061393582856138f8565b915061394182846138f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139a9602683612980565b91506139b48261394d565b604082019050919050565b600060208201905081810360008301526139d88161399c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a3b602c83612980565b9150613a46826139df565b604082019050919050565b60006020820190508181036000830152613a6a81613a2e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613acd602983612980565b9150613ad882613a71565b604082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b5f602483612980565b9150613b6a82613b03565b604082019050919050565b60006020820190508181036000830152613b8e81613b52565b9050919050565b6000613ba082612a30565b9150613bab83612a30565b925082821015613bbe57613bbd61344b565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bff601983612980565b9150613c0a82613bc9565b602082019050919050565b60006020820190508181036000830152613c2e81613bf2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c91603283612980565b9150613c9c82613c35565b604082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b6000613cd282612a30565b9150613cdd83612a30565b925082613ced57613cec6136b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d4e82613d27565b613d588185613d32565b9350613d68818560208601612991565b613d71816129c4565b840191505092915050565b6000608082019050613d916000830187612ac5565b613d9e6020830186612ac5565b613dab6040830185612aef565b8181036060830152613dbd8184613d43565b905095945050505050565b600081519050613dd7816128e6565b92915050565b600060208284031215613df357613df26128b0565b5b6000613e0184828501613dc8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613e40602083612980565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613eac601c83612980565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b905091905056fea26469706673582212201518ca923a36f5379f7c7d0f0f61ca68b32b1e40a5654cb4cb18e28af7fd3d4564736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63727970746f666c756666732e636f6d2f6170692f666c756666732f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063cfc86f7b1161006f578063cfc86f7b14610702578063d8c7a7971461072d578063e985e9c514610758578063ef305cec14610795578063f2fde38b146107ac5761020f565b8063a22cb4651461065c578063ab0bcc4114610685578063b88d4fde1461069c578063c87b56dd146106c55761020f565b8063853828b6116100e7578063853828b6146105b75780638da5cb5b146105c157806391b7f5ed146105ec57806395d89b4114610615578063a0712d68146106405761020f565b806370a0823114610530578063715018a61461056d5780637835c635146105845780638078059c146105a05761020f565b806323b872dd1161019b57806355f804b31161016a57806355f804b3146104495780635d893ba0146104725780635f0d246a1461049d5780636352211e146104c85780636de9f32b146105055761020f565b806323b872dd146103a55780633d3370a2146103ce57806342842e0e146103f75780635218ff5c146104205761020f565b8063095ea7b3116101e2578063095ea7b3146102e45780630d5624b31461030d57806316a06a831461032457806322f4596f1461034f578063235b6ea11461037a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063082f3c20146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612912565b6107d5565b604051610248919061295a565b60405180910390f35b34801561025d57600080fd5b506102666108b7565b6040516102739190612a0e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612a66565b610949565b6040516102b09190612ad4565b60405180910390f35b3480156102c557600080fd5b506102ce6109ce565b6040516102db9190612afe565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612b45565b6109d4565b005b34801561031957600080fd5b50610322610aec565b005b34801561033057600080fd5b50610339610b85565b6040516103469190612afe565b60405180910390f35b34801561035b57600080fd5b50610364610b8b565b6040516103719190612afe565b60405180910390f35b34801561038657600080fd5b5061038f610b91565b60405161039c9190612afe565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190612b85565b610b97565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612bd8565b610bf7565b005b34801561040357600080fd5b5061041e60048036038101906104199190612b85565b610c8d565b005b34801561042c57600080fd5b5061044760048036038101906104429190612a66565b610cad565b005b34801561045557600080fd5b50610470600480360381019061046b9190612d60565b610d33565b005b34801561047e57600080fd5b50610487610dc9565b604051610494919061295a565b60405180910390f35b3480156104a957600080fd5b506104b2610ddc565b6040516104bf9190612afe565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612a66565b610de2565b6040516104fc9190612ad4565b60405180910390f35b34801561051157600080fd5b5061051a610e94565b6040516105279190612afe565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612da9565b610ea5565b6040516105649190612afe565b60405180910390f35b34801561057957600080fd5b50610582610f5d565b005b61059e60048036038101906105999190612a66565b610fe5565b005b3480156105ac57600080fd5b506105b561117b565b005b6105bf611214565b005b3480156105cd57600080fd5b506105d6611364565b6040516105e39190612ad4565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190612a66565b61138e565b005b34801561062157600080fd5b5061062a611414565b6040516106379190612a0e565b60405180910390f35b61065a60048036038101906106559190612a66565b6114a6565b005b34801561066857600080fd5b50610683600480360381019061067e9190612e02565b611627565b005b34801561069157600080fd5b5061069a61163d565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612ee3565b6116d6565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190612a66565b611738565b6040516106f99190612a0e565b60405180910390f35b34801561070e57600080fd5b506107176117df565b6040516107249190612a0e565b60405180910390f35b34801561073957600080fd5b5061074261186d565b60405161074f919061295a565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612f66565b611880565b60405161078c919061295a565b60405180910390f35b3480156107a157600080fd5b506107aa611914565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190612da9565b6119ad565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108b057506108af82611ace565b5b9050919050565b6060600080546108c690612fd5565b80601f01602080910402602001604051908101604052809291908181526020018280546108f290612fd5565b801561093f5780601f106109145761010080835404028352916020019161093f565b820191906000526020600020905b81548152906001019060200180831161092257829003601f168201915b5050505050905090565b600061095482611b38565b610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613079565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b5481565b60006109df82610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a479061310b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611ba4565b73ffffffffffffffffffffffffffffffffffffffff161480610a9e5750610a9d81610a98611ba4565b611880565b5b610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad49061319d565b60405180910390fd5b610ae78383611bac565b505050565b610af4611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610b12611364565b73ffffffffffffffffffffffffffffffffffffffff1614610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90613209565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b600c5481565b600a5481565b60095481565b610ba8610ba2611ba4565b82611c65565b610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde9061329b565b60405180910390fd5b610bf2838383611d43565b505050565b610bff611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610c1d611364565b73ffffffffffffffffffffffffffffffffffffffff1614610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613209565b60405180910390fd5b82600c819055508160098190555080600a81905550505050565b610ca8838383604051806020016040528060008152506116d6565b505050565b610cb5611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610cd3611364565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2090613209565b60405180910390fd5b80600c8190555050565b610d3b611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610d59611364565b73ffffffffffffffffffffffffffffffffffffffff1614610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690613209565b60405180910390fd5b8060079080519060200190610dc5929190612803565b5050565b600d60019054906101000a900460ff1681565b60085481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e829061332d565b60405180910390fd5b80915050919050565b6000610ea0600e611f9f565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906133bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f65611ba4565b73ffffffffffffffffffffffffffffffffffffffff16610f83611364565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613209565b60405180910390fd5b610fe36000611fad565b565b6000610ff1600e611f9f565b9050600d60009054906101000a900460ff16611042576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110399061342b565b60405180910390fd5b60058261104e33610ea5565b611058919061347a565b1115611099576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110909061351c565b60405180910390fd5b600b5482826110a8919061347a565b11156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090613588565b60405180910390fd5b816008546110f791906135a8565b341015611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061364e565b60405180910390fd5b60005b828110156111765761114e600e611aa5565b61116333828461115e919061347a565b612073565b808061116e9061366e565b91505061113c565b505050565b611183611ba4565b73ffffffffffffffffffffffffffffffffffffffff166111a1611364565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613209565b60405180910390fd5b6000600d60016101000a81548160ff021916908315150217905550565b61121c611ba4565b73ffffffffffffffffffffffffffffffffffffffff1661123a611364565b73ffffffffffffffffffffffffffffffffffffffff1614611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613209565b60405180910390fd5b600060024761129f91906136e6565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061130157600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136157600080fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611396611ba4565b73ffffffffffffffffffffffffffffffffffffffff166113b4611364565b73ffffffffffffffffffffffffffffffffffffffff161461140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613209565b60405180910390fd5b8060098190555050565b60606001805461142390612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461144f90612fd5565b801561149c5780601f106114715761010080835404028352916020019161149c565b820191906000526020600020905b81548152906001019060200180831161147f57829003601f168201915b5050505050905090565b60006114b2600e611f9f565b9050600d60019054906101000a900460ff16611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90613763565b60405180910390fd5b60148210611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906137cf565b60405180910390fd5b600a548282611555919061347a565b10611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061383b565b60405180910390fd5b816009546115a391906135a8565b3410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061364e565b60405180910390fd5b60005b82811015611622576115fa600e611aa5565b61160f33828461160a919061347a565b612073565b808061161a9061366e565b9150506115e8565b505050565b611639611632611ba4565b8383612091565b5050565b611645611ba4565b73ffffffffffffffffffffffffffffffffffffffff16611663611364565b73ffffffffffffffffffffffffffffffffffffffff16146116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090613209565b60405180910390fd5b6001600d60016101000a81548160ff021916908315150217905550565b6116e76116e1611ba4565b83611c65565b611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d9061329b565b60405180910390fd5b611732848484846121fe565b50505050565b606061174382611b38565b611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906138cd565b60405180910390fd5b600061178c61225a565b905060008151116117ac57604051806020016040528060008152506117d7565b806117b6846122ec565b6040516020016117c7929190613929565b6040516020818303038152906040525b915050919050565b600780546117ec90612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461181890612fd5565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61191c611ba4565b73ffffffffffffffffffffffffffffffffffffffff1661193a611364565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613209565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6119b5611ba4565b73ffffffffffffffffffffffffffffffffffffffff166119d3611364565b73ffffffffffffffffffffffffffffffffffffffff1614611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090613209565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a90906139bf565b60405180910390fd5b611aa281611fad565b50565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c1f83610de2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7082611b38565b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613a51565b60405180910390fd5b6000611cba83610de2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2957508373ffffffffffffffffffffffffffffffffffffffff16611d1184610949565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3a5750611d398185611880565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d6382610de2565b73ffffffffffffffffffffffffffffffffffffffff1614611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db090613ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090613b75565b60405180910390fd5b611e3483838361244d565b611e3f600082611bac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8f9190613b95565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee6919061347a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61208d828260405180602001604052806000815250612452565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f790613c15565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121f1919061295a565b60405180910390a3505050565b612209848484611d43565b612215848484846124ad565b612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613ca7565b60405180910390fd5b50505050565b60606007805461226990612fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461229590612fd5565b80156122e25780601f106122b7576101008083540402835291602001916122e2565b820191906000526020600020905b8154815290600101906020018083116122c557829003601f168201915b5050505050905090565b60606000821415612334576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612448565b600082905060005b6000821461236657808061234f9061366e565b915050600a8261235f91906136e6565b915061233c565b60008167ffffffffffffffff81111561238257612381612c35565b5b6040519080825280601f01601f1916602001820160405280156123b45781602001600182028036833780820191505090505b5090505b60008514612441576001826123cd9190613b95565b9150600a856123dc9190613cc7565b60306123e8919061347a565b60f81b8183815181106123fe576123fd613cf8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561243a91906136e6565b94506123b8565b8093505050505b919050565b505050565b61245c8383612635565b61246960008484846124ad565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613ca7565b60405180910390fd5b505050565b60006124ce8473ffffffffffffffffffffffffffffffffffffffff16611abb565b15612628578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f7611ba4565b8786866040518563ffffffff1660e01b81526004016125199493929190613d7c565b6020604051808303816000875af192505050801561255557506040513d601f19601f820116820180604052508101906125529190613ddd565b60015b6125d8573d8060008114612585576040519150601f19603f3d011682016040523d82523d6000602084013e61258a565b606091505b506000815114156125d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c790613ca7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061262d565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c90613e56565b60405180910390fd5b6126ae81611b38565b156126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e590613ec2565b60405180910390fd5b6126fa6000838361244d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461274a919061347a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461280f90612fd5565b90600052602060002090601f0160209004810192826128315760008555612878565b82601f1061284a57805160ff1916838001178555612878565b82800160010185558215612878579182015b8281111561287757825182559160200191906001019061285c565b5b5090506128859190612889565b5090565b5b808211156128a257600081600090555060010161288a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ef816128ba565b81146128fa57600080fd5b50565b60008135905061290c816128e6565b92915050565b600060208284031215612928576129276128b0565b5b6000612936848285016128fd565b91505092915050565b60008115159050919050565b6129548161293f565b82525050565b600060208201905061296f600083018461294b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129af578082015181840152602081019050612994565b838111156129be576000848401525b50505050565b6000601f19601f8301169050919050565b60006129e082612975565b6129ea8185612980565b93506129fa818560208601612991565b612a03816129c4565b840191505092915050565b60006020820190508181036000830152612a2881846129d5565b905092915050565b6000819050919050565b612a4381612a30565b8114612a4e57600080fd5b50565b600081359050612a6081612a3a565b92915050565b600060208284031215612a7c57612a7b6128b0565b5b6000612a8a84828501612a51565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612abe82612a93565b9050919050565b612ace81612ab3565b82525050565b6000602082019050612ae96000830184612ac5565b92915050565b612af881612a30565b82525050565b6000602082019050612b136000830184612aef565b92915050565b612b2281612ab3565b8114612b2d57600080fd5b50565b600081359050612b3f81612b19565b92915050565b60008060408385031215612b5c57612b5b6128b0565b5b6000612b6a85828601612b30565b9250506020612b7b85828601612a51565b9150509250929050565b600080600060608486031215612b9e57612b9d6128b0565b5b6000612bac86828701612b30565b9350506020612bbd86828701612b30565b9250506040612bce86828701612a51565b9150509250925092565b600080600060608486031215612bf157612bf06128b0565b5b6000612bff86828701612a51565b9350506020612c1086828701612a51565b9250506040612c2186828701612a51565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c6d826129c4565b810181811067ffffffffffffffff82111715612c8c57612c8b612c35565b5b80604052505050565b6000612c9f6128a6565b9050612cab8282612c64565b919050565b600067ffffffffffffffff821115612ccb57612cca612c35565b5b612cd4826129c4565b9050602081019050919050565b82818337600083830152505050565b6000612d03612cfe84612cb0565b612c95565b905082815260208101848484011115612d1f57612d1e612c30565b5b612d2a848285612ce1565b509392505050565b600082601f830112612d4757612d46612c2b565b5b8135612d57848260208601612cf0565b91505092915050565b600060208284031215612d7657612d756128b0565b5b600082013567ffffffffffffffff811115612d9457612d936128b5565b5b612da084828501612d32565b91505092915050565b600060208284031215612dbf57612dbe6128b0565b5b6000612dcd84828501612b30565b91505092915050565b612ddf8161293f565b8114612dea57600080fd5b50565b600081359050612dfc81612dd6565b92915050565b60008060408385031215612e1957612e186128b0565b5b6000612e2785828601612b30565b9250506020612e3885828601612ded565b9150509250929050565b600067ffffffffffffffff821115612e5d57612e5c612c35565b5b612e66826129c4565b9050602081019050919050565b6000612e86612e8184612e42565b612c95565b905082815260208101848484011115612ea257612ea1612c30565b5b612ead848285612ce1565b509392505050565b600082601f830112612eca57612ec9612c2b565b5b8135612eda848260208601612e73565b91505092915050565b60008060008060808587031215612efd57612efc6128b0565b5b6000612f0b87828801612b30565b9450506020612f1c87828801612b30565b9350506040612f2d87828801612a51565b925050606085013567ffffffffffffffff811115612f4e57612f4d6128b5565b5b612f5a87828801612eb5565b91505092959194509250565b60008060408385031215612f7d57612f7c6128b0565b5b6000612f8b85828601612b30565b9250506020612f9c85828601612b30565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fed57607f821691505b6020821081141561300157613000612fa6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613063602c83612980565b915061306e82613007565b604082019050919050565b6000602082019050818103600083015261309281613056565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006130f5602183612980565b915061310082613099565b604082019050919050565b60006020820190508181036000830152613124816130e8565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613187603883612980565b91506131928261312b565b604082019050919050565b600060208201905081810360008301526131b68161317a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131f3602083612980565b91506131fe826131bd565b602082019050919050565b60006020820190508181036000830152613222816131e6565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613285603183612980565b915061329082613229565b604082019050919050565b600060208201905081810360008301526132b481613278565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613317602983612980565b9150613322826132bb565b604082019050919050565b600060208201905081810360008301526133468161330a565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006133a9602a83612980565b91506133b48261334d565b604082019050919050565b600060208201905081810360008301526133d88161339c565b9050919050565b7f70726573616c655f6e6f745f6163746976650000000000000000000000000000600082015250565b6000613415601283612980565b9150613420826133df565b602082019050919050565b6000602082019050818103600083015261344481613408565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061348582612a30565b915061349083612a30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c461344b565b5b828201905092915050565b7f70726573616c655f77616c6c65745f6c696d69745f6d65740000000000000000600082015250565b6000613506601883612980565b9150613511826134d0565b602082019050919050565b60006020820190508181036000830152613535816134f9565b9050919050565b7f70726573616c655f737570706c795f6578636565646564000000000000000000600082015250565b6000613572601783612980565b915061357d8261353c565b602082019050919050565b600060208201905081810360008301526135a181613565565b9050919050565b60006135b382612a30565b91506135be83612a30565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f7576135f661344b565b5b828202905092915050565b7f696e73756666696369656e745f7061796d656e745f76616c7565000000000000600082015250565b6000613638601a83612980565b915061364382613602565b602082019050919050565b600060208201905081810360008301526136678161362b565b9050919050565b600061367982612a30565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ac576136ab61344b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136f182612a30565b91506136fc83612a30565b92508261370c5761370b6136b7565b5b828204905092915050565b7f73616c655f6e6f745f6163746976650000000000000000000000000000000000600082015250565b600061374d600f83612980565b915061375882613717565b602082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f6d61785f6d696e745f636f756e745f6578636565646564000000000000000000600082015250565b60006137b9601783612980565b91506137c482613783565b602082019050919050565b600060208201905081810360008301526137e8816137ac565b9050919050565b7f6d61785f737570706c795f657863656564656400000000000000000000000000600082015250565b6000613825601383612980565b9150613830826137ef565b602082019050919050565b6000602082019050818103600083015261385481613818565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006138b7602f83612980565b91506138c28261385b565b604082019050919050565b600060208201905081810360008301526138e6816138aa565b9050919050565b600081905092915050565b600061390382612975565b61390d81856138ed565b935061391d818560208601612991565b80840191505092915050565b600061393582856138f8565b915061394182846138f8565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139a9602683612980565b91506139b48261394d565b604082019050919050565b600060208201905081810360008301526139d88161399c565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613a3b602c83612980565b9150613a46826139df565b604082019050919050565b60006020820190508181036000830152613a6a81613a2e565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613acd602983612980565b9150613ad882613a71565b604082019050919050565b60006020820190508181036000830152613afc81613ac0565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613b5f602483612980565b9150613b6a82613b03565b604082019050919050565b60006020820190508181036000830152613b8e81613b52565b9050919050565b6000613ba082612a30565b9150613bab83612a30565b925082821015613bbe57613bbd61344b565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613bff601983612980565b9150613c0a82613bc9565b602082019050919050565b60006020820190508181036000830152613c2e81613bf2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613c91603283612980565b9150613c9c82613c35565b604082019050919050565b60006020820190508181036000830152613cc081613c84565b9050919050565b6000613cd282612a30565b9150613cdd83612a30565b925082613ced57613cec6136b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613d4e82613d27565b613d588185613d32565b9350613d68818560208601612991565b613d71816129c4565b840191505092915050565b6000608082019050613d916000830187612ac5565b613d9e6020830186612ac5565b613dab6040830185612aef565b8181036060830152613dbd8184613d43565b905095945050505050565b600081519050613dd7816128e6565b92915050565b600060208284031215613df357613df26128b0565b5b6000613e0184828501613dc8565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613e40602083612980565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613eac601c83612980565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b905091905056fea26469706673582212201518ca923a36f5379f7c7d0f0f61ca68b32b1e40a5654cb4cb18e28af7fd3d4564736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f63727970746f666c756666732e636f6d2f6170692f666c756666732f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://cryptofluffs.com/api/fluffs/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f63727970746f666c756666732e636f6d2f6170692f666c75
Arg [3] : 6666732f00000000000000000000000000000000000000000000000000000000
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.