Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
8,420 BKSHZ
Holders
1,708
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BKSHZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BakedShellz
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.0; import "./ERC721EnumerableB.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract BakedShellz is ERC721EnumerableB, Ownable { using Strings for uint256; string public PROVENANCE = ""; uint256 public maxSupply = 8420; uint256 public price = 0 ether; //free uint256 public maxBuy; //max per purchase, set after deploy //sale active bool public paused = true; bool public revealed = true; //instant reveal enabled //add after deploy string private _baseTokenURI = ""; string private _tokenURISuffix = ""; constructor() ERC721B("Baked Shellz", "BKSHZ") {} //external fallback() external payable {} receive() external payable {} function mint(uint256 quantity) external payable { uint256 balance = totalSupply(); require(!paused, "Sale is locked"); require(balance + quantity <= maxSupply, "Exceeds supply"); require(quantity <= maxBuy, "Exceeds maxiumum buy"); require(msg.value >= price * quantity, "Ether sent is not correct"); for (uint256 i; i < quantity; ++i) { _safeMint(msg.sender, balance + i + 1); } } function gift(uint256 quantity, address recipient) external onlyOwner { uint256 balance = totalSupply(); require(balance + quantity <= maxSupply, "Exceeds supply"); for (uint256 i; i < quantity; ++i) { _safeMint(recipient, balance + i); } } function setMaxBuy(uint256 newMaxBuy) external onlyOwner { maxBuy = newMaxBuy; } function setLocked(bool paused_) external onlyOwner { paused = paused_; } function reveal() external onlyOwner { revealed = true; } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setProvenance(string memory provenanceHash) external onlyOwner { PROVENANCE = provenanceHash; } function withdraw() external onlyOwner { require(address(this).balance >= 0, "No funds available"); Address.sendValue(payable(owner()), address(this).balance); } function setBaseURI(string memory baseURI, string memory suffix) external onlyOwner { _baseTokenURI = baseURI; _tokenURISuffix = suffix; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: TOKEN DOES NOT EXIST" ); return string( abi.encodePacked( _baseTokenURI, tokenId.toString(), _tokenURISuffix ) ); } }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.0; import "./ERC721B.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721EnumerableB is ERC721B, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require( index < ERC721B.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); uint256 count; for (uint256 i; i < _owners.length; ++i) { if (owner == _owners[i]) { if (count == index) return i; else ++count; } } require(false, "ERC721Enumerable: owner index out of bounds"); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721EnumerableB.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return index; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.0; /******************** * @author: Squeebo * ********************/ import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata { using Address for address; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address address[] internal _owners; // 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"); uint count; for( uint i = 0; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721B.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _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 = ERC721B.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); _owners.push(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 = ERC721B.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); 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(ERC721B.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); _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(ERC721B.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused_","type":"bool"}],"name":"setLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180602001604052806000815250600690805190602001906200002b9291906200025f565b506120e460075560006008556001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600b9080519060200190620000949291906200025f565b5060405180602001604052806000815250600c9080519060200190620000bc9291906200025f565b50348015620000ca57600080fd5b506040518060400160405280600c81526020017f42616b6564205368656c6c7a00000000000000000000000000000000000000008152506040518060400160405280600581526020017f424b53485a00000000000000000000000000000000000000000000000000000081525081600090805190602001906200014f9291906200025f565b508060019080519060200190620001689291906200025f565b5050506200018b6200017f6200019160201b60201c565b6200019960201b60201c565b62000374565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d906200030f565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b600060028204905060018216806200032857607f821691505b602082108114156200033f576200033e62000345565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e1b80620003846000396000f3fe6080604052600436106101fd5760003560e01c806370db69d61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610706578063e985e9c514610731578063f2fde38b1461076e578063f53bc83514610797578063ffe630b5146107c057610204565b8063a22cb46514610660578063a475b5dd14610689578063b88d4fde146106a0578063c87b56dd146106c957610204565b806391b7f5ed116100dc57806391b7f5ed146105c557806395d89b41146105ee578063a035b1fe14610619578063a0712d681461064457610204565b806370db69d61461052f578063715018a61461055a57806383a076be146105715780638da5cb5b1461059a57610204565b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146104365780636352211e146104615780636373a6b11461049e5780636790a9de146104c957806370a08231146104f257610204565b80633ccfd60b1461038e57806342842e0e146103a55780634f6ccce7146103ce578063518302271461040b57610204565b806318160ddd116101cc57806318160ddd146102d4578063211e28b6146102ff57806323b872dd146103285780632f745c591461035157610204565b806301ffc9a71461020657806306fdde0314610243578063081812fc1461026e578063095ea7b3146102ab57610204565b3661020457005b005b34801561021257600080fd5b5061022d60048036038101906102289190612886565b6107e9565b60405161023a9190612f74565b60405180910390f35b34801561024f57600080fd5b50610258610863565b6040516102659190612f8f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612985565b6108f5565b6040516102a29190612f0d565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612821565b61097a565b005b3480156102e057600080fd5b506102e9610a92565b6040516102f691906132d1565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061285d565b610a9f565b005b34801561033457600080fd5b5061034f600480360381019061034a919061271b565b610ac4565b005b34801561035d57600080fd5b5061037860048036038101906103739190612821565b610b24565b60405161038591906132d1565b60405180910390f35b34801561039a57600080fd5b506103a3610c93565b005b3480156103b157600080fd5b506103cc60048036038101906103c7919061271b565b610cf2565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612985565b610d12565b60405161040291906132d1565b60405180910390f35b34801561041757600080fd5b50610420610d65565b60405161042d9190612f74565b60405180910390f35b34801561044257600080fd5b5061044b610d78565b6040516104589190612f74565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612985565b610d8b565b6040516104959190612f0d565b60405180910390f35b3480156104aa57600080fd5b506104b3610e6e565b6040516104c09190612f8f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612919565b610efc565b005b3480156104fe57600080fd5b50610519600480360381019061051491906126b6565b610f36565b60405161052691906132d1565b60405180910390f35b34801561053b57600080fd5b5061054461107c565b60405161055191906132d1565b60405180910390f35b34801561056657600080fd5b5061056f611082565b005b34801561057d57600080fd5b50610598600480360381019061059391906129ae565b611096565b005b3480156105a657600080fd5b506105af611131565b6040516105bc9190612f0d565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612985565b61115b565b005b3480156105fa57600080fd5b5061060361116d565b6040516106109190612f8f565b60405180910390f35b34801561062557600080fd5b5061062e6111ff565b60405161063b91906132d1565b60405180910390f35b61065e60048036038101906106599190612985565b611205565b005b34801561066c57600080fd5b50610687600480360381019061068291906127e5565b611388565b005b34801561069557600080fd5b5061069e611509565b005b3480156106ac57600080fd5b506106c760048036038101906106c2919061276a565b61152e565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612985565b611590565b6040516106fd9190612f8f565b60405180910390f35b34801561071257600080fd5b5061071b61160f565b60405161072891906132d1565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906126df565b611615565b6040516107659190612f74565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906126b6565b6116a9565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612985565b61172d565b005b3480156107cc57600080fd5b506107e760048036038101906107e291906128d8565b61173f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611761565b5b9050919050565b606060008054610872906135a1565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906135a1565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611843565b61093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906131b1565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098582610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613211565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a156118f1565b73ffffffffffffffffffffffffffffffffffffffff161480610a445750610a4381610a3e6118f1565b611615565b5b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613131565b60405180910390fd5b610a8d83836118f9565b505050565b6000600280549050905090565b610aa76119b2565b80600a60006101000a81548160ff02191690831515021790555050565b610ad5610acf6118f1565b82611a30565b610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613251565b60405180910390fd5b610b1f838383611b0e565b505050565b6000610b2f83610f36565b8210610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790612ff1565b60405180910390fd5b6000805b600280549050811015610c495760028181548110610bbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c385783821415610c2b578092505050610c8d565b81610c3590613604565b91505b80610c4290613604565b9050610b74565b506000610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290612ff1565b60405180910390fd5b505b92915050565b610c9b6119b2565b6000471015610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612fd1565b60405180910390fd5b610cf0610cea611131565b47611ced565b565b610d0d8383836040518060200160405280600081525061152e565b505050565b6000610d1c610a92565b8210610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613271565b60405180910390fd5b819050919050565b600a60019054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60008060028381548110610dc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613171565b60405180910390fd5b80915050919050565b60068054610e7b906135a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea7906135a1565b8015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b505050505081565b610f046119b2565b81600b9080519060200190610f1a9291906124da565b5080600c9080519060200190610f319291906124da565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613151565b60405180910390fd5b600080600090505b6002805490508110156110725760028181548110610ff6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611061578161105e90613604565b91505b8061106b90613604565b9050610faf565b5080915050919050565b60095481565b61108a6119b2565b6110946000611de1565b565b61109e6119b2565b60006110a8610a92565b905060075483826110b991906133d6565b11156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612fb1565b60405180910390fd5b60005b8381101561112b5761111a83828461111591906133d6565b611ea7565b8061112490613604565b90506110fd565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111636119b2565b8060088190555050565b60606001805461117c906135a1565b80601f01602080910402602001604051908101604052809291908181526020018280546111a8906135a1565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b60085481565b600061120f610a92565b9050600a60009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906132b1565b60405180910390fd5b600754828261127091906133d6565b11156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612fb1565b60405180910390fd5b6009548211156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613291565b60405180910390fd5b81600854611304919061345d565b341015611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613231565b60405180910390fd5b60005b8281101561138357611372336001838561136391906133d6565b61136d91906133d6565b611ea7565b8061137c90613604565b9050611349565b505050565b6113906118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906130b1565b60405180910390fd5b806004600061140b6118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b86118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fd9190612f74565b60405180910390a35050565b6115116119b2565b6001600a60016101000a81548160ff021916908315150217905550565b61153f6115396118f1565b83611a30565b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613251565b60405180910390fd5b61158a84848484611ec5565b50505050565b606061159b82611843565b6115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613071565b60405180910390fd5b600b6115e583611f21565b600c6040516020016115f993929190612ec7565b6040516020818303038152906040529050919050565b60075481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116b16119b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613031565b60405180910390fd5b61172a81611de1565b50565b6117356119b2565b8060098190555050565b6117476119b2565b806006908051906020019061175d9291906124da565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061182c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061183c575061183b826120ce565b5b9050919050565b6000600280549050821080156118ea5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106118a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196c83610d8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119ba6118f1565b73ffffffffffffffffffffffffffffffffffffffff166119d8611131565b73ffffffffffffffffffffffffffffffffffffffff1614611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906131d1565b60405180910390fd5b565b6000611a3b82611843565b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613111565b60405180910390fd5b6000611a8583610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af457508373ffffffffffffffffffffffffffffffffffffffff16611adc846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b055750611b048185611615565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b2e82610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b906131f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613091565b60405180910390fd5b611bff838383612138565b611c0a6000826118f9565b8160028281548110611c45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906130f1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d5690612ef8565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5050905080611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906130d1565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec182826040518060200160405280600081525061213d565b5050565b611ed0848484611b0e565b611edc84848484612198565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613011565b60405180910390fd5b50505050565b60606000821415611f69576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c9565b600082905060005b60008214611f9b578080611f8490613604565b915050600a82611f94919061342c565b9150611f71565b60008167ffffffffffffffff811115611fdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561200f5781602001600182028036833780820191505090505b5090505b600085146120c25760018261202891906134b7565b9150600a85612037919061364d565b603061204391906133d6565b60f81b81838151811061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120bb919061342c565b9450612013565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b612147838361232f565b6121546000848484612198565b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90613011565b60405180910390fd5b505050565b60006121b98473ffffffffffffffffffffffffffffffffffffffff166124b7565b15612322578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e26118f1565b8786866040518563ffffffff1660e01b81526004016122049493929190612f28565b602060405180830381600087803b15801561221e57600080fd5b505af192505050801561224f57506040513d601f19601f8201168201806040525081019061224c91906128af565b60015b6122d2573d806000811461227f576040519150601f19603f3d011682016040523d82523d6000602084013e612284565b606091505b506000815114156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613011565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612327565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613191565b60405180910390fd5b6123a881611843565b156123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90613051565b60405180910390fd5b6123f460008383612138565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124e6906135a1565b90600052602060002090601f016020900481019282612508576000855561254f565b82601f1061252157805160ff191683800117855561254f565b8280016001018555821561254f579182015b8281111561254e578251825591602001919060010190612533565b5b50905061255c9190612560565b5090565b5b80821115612579576000816000905550600101612561565b5090565b600061259061258b84613311565b6132ec565b9050828152602081018484840111156125a857600080fd5b6125b384828561355f565b509392505050565b60006125ce6125c984613342565b6132ec565b9050828152602081018484840111156125e657600080fd5b6125f184828561355f565b509392505050565b60008135905061260881613d89565b92915050565b60008135905061261d81613da0565b92915050565b60008135905061263281613db7565b92915050565b60008151905061264781613db7565b92915050565b600082601f83011261265e57600080fd5b813561266e84826020860161257d565b91505092915050565b600082601f83011261268857600080fd5b81356126988482602086016125bb565b91505092915050565b6000813590506126b081613dce565b92915050565b6000602082840312156126c857600080fd5b60006126d6848285016125f9565b91505092915050565b600080604083850312156126f257600080fd5b6000612700858286016125f9565b9250506020612711858286016125f9565b9150509250929050565b60008060006060848603121561273057600080fd5b600061273e868287016125f9565b935050602061274f868287016125f9565b9250506040612760868287016126a1565b9150509250925092565b6000806000806080858703121561278057600080fd5b600061278e878288016125f9565b945050602061279f878288016125f9565b93505060406127b0878288016126a1565b925050606085013567ffffffffffffffff8111156127cd57600080fd5b6127d98782880161264d565b91505092959194509250565b600080604083850312156127f857600080fd5b6000612806858286016125f9565b92505060206128178582860161260e565b9150509250929050565b6000806040838503121561283457600080fd5b6000612842858286016125f9565b9250506020612853858286016126a1565b9150509250929050565b60006020828403121561286f57600080fd5b600061287d8482850161260e565b91505092915050565b60006020828403121561289857600080fd5b60006128a684828501612623565b91505092915050565b6000602082840312156128c157600080fd5b60006128cf84828501612638565b91505092915050565b6000602082840312156128ea57600080fd5b600082013567ffffffffffffffff81111561290457600080fd5b61291084828501612677565b91505092915050565b6000806040838503121561292c57600080fd5b600083013567ffffffffffffffff81111561294657600080fd5b61295285828601612677565b925050602083013567ffffffffffffffff81111561296f57600080fd5b61297b85828601612677565b9150509250929050565b60006020828403121561299757600080fd5b60006129a5848285016126a1565b91505092915050565b600080604083850312156129c157600080fd5b60006129cf858286016126a1565b92505060206129e0858286016125f9565b9150509250929050565b6129f3816134eb565b82525050565b612a02816134fd565b82525050565b6000612a1382613388565b612a1d818561339e565b9350612a2d81856020860161356e565b612a368161373a565b840191505092915050565b6000612a4c82613393565b612a5681856133ba565b9350612a6681856020860161356e565b612a6f8161373a565b840191505092915050565b6000612a8582613393565b612a8f81856133cb565b9350612a9f81856020860161356e565b80840191505092915050565b60008154612ab8816135a1565b612ac281866133cb565b94506001821660008114612add5760018114612aee57612b21565b60ff19831686528186019350612b21565b612af785613373565b60005b83811015612b1957815481890152600182019150602081019050612afa565b838801955050505b50505092915050565b6000612b37600e836133ba565b9150612b428261374b565b602082019050919050565b6000612b5a6012836133ba565b9150612b6582613774565b602082019050919050565b6000612b7d602b836133ba565b9150612b888261379d565b604082019050919050565b6000612ba06032836133ba565b9150612bab826137ec565b604082019050919050565b6000612bc36026836133ba565b9150612bce8261383b565b604082019050919050565b6000612be6601c836133ba565b9150612bf18261388a565b602082019050919050565b6000612c096024836133ba565b9150612c14826138b3565b604082019050919050565b6000612c2c6024836133ba565b9150612c3782613902565b604082019050919050565b6000612c4f6019836133ba565b9150612c5a82613951565b602082019050919050565b6000612c72603a836133ba565b9150612c7d8261397a565b604082019050919050565b6000612c95601d836133ba565b9150612ca0826139c9565b602082019050919050565b6000612cb8602c836133ba565b9150612cc3826139f2565b604082019050919050565b6000612cdb6038836133ba565b9150612ce682613a41565b604082019050919050565b6000612cfe602a836133ba565b9150612d0982613a90565b604082019050919050565b6000612d216029836133ba565b9150612d2c82613adf565b604082019050919050565b6000612d446020836133ba565b9150612d4f82613b2e565b602082019050919050565b6000612d67602c836133ba565b9150612d7282613b57565b604082019050919050565b6000612d8a6020836133ba565b9150612d9582613ba6565b602082019050919050565b6000612dad6029836133ba565b9150612db882613bcf565b604082019050919050565b6000612dd06021836133ba565b9150612ddb82613c1e565b604082019050919050565b6000612df36019836133ba565b9150612dfe82613c6d565b602082019050919050565b6000612e166000836133af565b9150612e2182613c96565b600082019050919050565b6000612e396031836133ba565b9150612e4482613c99565b604082019050919050565b6000612e5c602c836133ba565b9150612e6782613ce8565b604082019050919050565b6000612e7f6014836133ba565b9150612e8a82613d37565b602082019050919050565b6000612ea2600e836133ba565b9150612ead82613d60565b602082019050919050565b612ec181613555565b82525050565b6000612ed38286612aab565b9150612edf8285612a7a565b9150612eeb8284612aab565b9150819050949350505050565b6000612f0382612e09565b9150819050919050565b6000602082019050612f2260008301846129ea565b92915050565b6000608082019050612f3d60008301876129ea565b612f4a60208301866129ea565b612f576040830185612eb8565b8181036060830152612f698184612a08565b905095945050505050565b6000602082019050612f8960008301846129f9565b92915050565b60006020820190508181036000830152612fa98184612a41565b905092915050565b60006020820190508181036000830152612fca81612b2a565b9050919050565b60006020820190508181036000830152612fea81612b4d565b9050919050565b6000602082019050818103600083015261300a81612b70565b9050919050565b6000602082019050818103600083015261302a81612b93565b9050919050565b6000602082019050818103600083015261304a81612bb6565b9050919050565b6000602082019050818103600083015261306a81612bd9565b9050919050565b6000602082019050818103600083015261308a81612bfc565b9050919050565b600060208201905081810360008301526130aa81612c1f565b9050919050565b600060208201905081810360008301526130ca81612c42565b9050919050565b600060208201905081810360008301526130ea81612c65565b9050919050565b6000602082019050818103600083015261310a81612c88565b9050919050565b6000602082019050818103600083015261312a81612cab565b9050919050565b6000602082019050818103600083015261314a81612cce565b9050919050565b6000602082019050818103600083015261316a81612cf1565b9050919050565b6000602082019050818103600083015261318a81612d14565b9050919050565b600060208201905081810360008301526131aa81612d37565b9050919050565b600060208201905081810360008301526131ca81612d5a565b9050919050565b600060208201905081810360008301526131ea81612d7d565b9050919050565b6000602082019050818103600083015261320a81612da0565b9050919050565b6000602082019050818103600083015261322a81612dc3565b9050919050565b6000602082019050818103600083015261324a81612de6565b9050919050565b6000602082019050818103600083015261326a81612e2c565b9050919050565b6000602082019050818103600083015261328a81612e4f565b9050919050565b600060208201905081810360008301526132aa81612e72565b9050919050565b600060208201905081810360008301526132ca81612e95565b9050919050565b60006020820190506132e66000830184612eb8565b92915050565b60006132f6613307565b905061330282826135d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561332c5761332b61370b565b5b6133358261373a565b9050602081019050919050565b600067ffffffffffffffff82111561335d5761335c61370b565b5b6133668261373a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133e182613555565b91506133ec83613555565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134215761342061367e565b5b828201905092915050565b600061343782613555565b915061344283613555565b925082613452576134516136ad565b5b828204905092915050565b600061346882613555565b915061347383613555565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134ac576134ab61367e565b5b828202905092915050565b60006134c282613555565b91506134cd83613555565b9250828210156134e0576134df61367e565b5b828203905092915050565b60006134f682613535565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358c578082015181840152602081019050613571565b8381111561359b576000848401525b50505050565b600060028204905060018216806135b957607f821691505b602082108114156135cd576135cc6136dc565b5b50919050565b6135dc8261373a565b810181811067ffffffffffffffff821117156135fb576135fa61370b565b5b80604052505050565b600061360f82613555565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136425761364161367e565b5b600182019050919050565b600061365882613555565b915061366383613555565b925082613673576136726136ad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20544f4b454e20444f4553204e4f54204560008201527f5849535400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45786365656473206d617869756d756d20627579000000000000000000000000600082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b613d92816134eb565b8114613d9d57600080fd5b50565b613da9816134fd565b8114613db457600080fd5b50565b613dc081613509565b8114613dcb57600080fd5b50565b613dd781613555565b8114613de257600080fd5b5056fea2646970667358221220b3a495bc45c103392c5f6b2509b6930d0ac9d440a612b8523861a4567e04e76264736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c806370db69d61161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610706578063e985e9c514610731578063f2fde38b1461076e578063f53bc83514610797578063ffe630b5146107c057610204565b8063a22cb46514610660578063a475b5dd14610689578063b88d4fde146106a0578063c87b56dd146106c957610204565b806391b7f5ed116100dc57806391b7f5ed146105c557806395d89b41146105ee578063a035b1fe14610619578063a0712d681461064457610204565b806370db69d61461052f578063715018a61461055a57806383a076be146105715780638da5cb5b1461059a57610204565b80633ccfd60b116101905780635c975abb1161015f5780635c975abb146104365780636352211e146104615780636373a6b11461049e5780636790a9de146104c957806370a08231146104f257610204565b80633ccfd60b1461038e57806342842e0e146103a55780634f6ccce7146103ce578063518302271461040b57610204565b806318160ddd116101cc57806318160ddd146102d4578063211e28b6146102ff57806323b872dd146103285780632f745c591461035157610204565b806301ffc9a71461020657806306fdde0314610243578063081812fc1461026e578063095ea7b3146102ab57610204565b3661020457005b005b34801561021257600080fd5b5061022d60048036038101906102289190612886565b6107e9565b60405161023a9190612f74565b60405180910390f35b34801561024f57600080fd5b50610258610863565b6040516102659190612f8f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612985565b6108f5565b6040516102a29190612f0d565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612821565b61097a565b005b3480156102e057600080fd5b506102e9610a92565b6040516102f691906132d1565b60405180910390f35b34801561030b57600080fd5b506103266004803603810190610321919061285d565b610a9f565b005b34801561033457600080fd5b5061034f600480360381019061034a919061271b565b610ac4565b005b34801561035d57600080fd5b5061037860048036038101906103739190612821565b610b24565b60405161038591906132d1565b60405180910390f35b34801561039a57600080fd5b506103a3610c93565b005b3480156103b157600080fd5b506103cc60048036038101906103c7919061271b565b610cf2565b005b3480156103da57600080fd5b506103f560048036038101906103f09190612985565b610d12565b60405161040291906132d1565b60405180910390f35b34801561041757600080fd5b50610420610d65565b60405161042d9190612f74565b60405180910390f35b34801561044257600080fd5b5061044b610d78565b6040516104589190612f74565b60405180910390f35b34801561046d57600080fd5b5061048860048036038101906104839190612985565b610d8b565b6040516104959190612f0d565b60405180910390f35b3480156104aa57600080fd5b506104b3610e6e565b6040516104c09190612f8f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612919565b610efc565b005b3480156104fe57600080fd5b50610519600480360381019061051491906126b6565b610f36565b60405161052691906132d1565b60405180910390f35b34801561053b57600080fd5b5061054461107c565b60405161055191906132d1565b60405180910390f35b34801561056657600080fd5b5061056f611082565b005b34801561057d57600080fd5b50610598600480360381019061059391906129ae565b611096565b005b3480156105a657600080fd5b506105af611131565b6040516105bc9190612f0d565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612985565b61115b565b005b3480156105fa57600080fd5b5061060361116d565b6040516106109190612f8f565b60405180910390f35b34801561062557600080fd5b5061062e6111ff565b60405161063b91906132d1565b60405180910390f35b61065e60048036038101906106599190612985565b611205565b005b34801561066c57600080fd5b50610687600480360381019061068291906127e5565b611388565b005b34801561069557600080fd5b5061069e611509565b005b3480156106ac57600080fd5b506106c760048036038101906106c2919061276a565b61152e565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612985565b611590565b6040516106fd9190612f8f565b60405180910390f35b34801561071257600080fd5b5061071b61160f565b60405161072891906132d1565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906126df565b611615565b6040516107659190612f74565b60405180910390f35b34801561077a57600080fd5b50610795600480360381019061079091906126b6565b6116a9565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612985565b61172d565b005b3480156107cc57600080fd5b506107e760048036038101906107e291906128d8565b61173f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085c575061085b82611761565b5b9050919050565b606060008054610872906135a1565b80601f016020809104026020016040519081016040528092919081815260200182805461089e906135a1565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b5050505050905090565b600061090082611843565b61093f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610936906131b1565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098582610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90613211565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a156118f1565b73ffffffffffffffffffffffffffffffffffffffff161480610a445750610a4381610a3e6118f1565b611615565b5b610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613131565b60405180910390fd5b610a8d83836118f9565b505050565b6000600280549050905090565b610aa76119b2565b80600a60006101000a81548160ff02191690831515021790555050565b610ad5610acf6118f1565b82611a30565b610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90613251565b60405180910390fd5b610b1f838383611b0e565b505050565b6000610b2f83610f36565b8210610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790612ff1565b60405180910390fd5b6000805b600280549050811015610c495760028181548110610bbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c385783821415610c2b578092505050610c8d565b81610c3590613604565b91505b80610c4290613604565b9050610b74565b506000610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8290612ff1565b60405180910390fd5b505b92915050565b610c9b6119b2565b6000471015610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612fd1565b60405180910390fd5b610cf0610cea611131565b47611ced565b565b610d0d8383836040518060200160405280600081525061152e565b505050565b6000610d1c610a92565b8210610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613271565b60405180910390fd5b819050919050565b600a60019054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b60008060028381548110610dc8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613171565b60405180910390fd5b80915050919050565b60068054610e7b906135a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea7906135a1565b8015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b505050505081565b610f046119b2565b81600b9080519060200190610f1a9291906124da565b5080600c9080519060200190610f319291906124da565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90613151565b60405180910390fd5b600080600090505b6002805490508110156110725760028181548110610ff6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611061578161105e90613604565b91505b8061106b90613604565b9050610faf565b5080915050919050565b60095481565b61108a6119b2565b6110946000611de1565b565b61109e6119b2565b60006110a8610a92565b905060075483826110b991906133d6565b11156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190612fb1565b60405180910390fd5b60005b8381101561112b5761111a83828461111591906133d6565b611ea7565b8061112490613604565b90506110fd565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111636119b2565b8060088190555050565b60606001805461117c906135a1565b80601f01602080910402602001604051908101604052809291908181526020018280546111a8906135a1565b80156111f55780601f106111ca576101008083540402835291602001916111f5565b820191906000526020600020905b8154815290600101906020018083116111d857829003601f168201915b5050505050905090565b60085481565b600061120f610a92565b9050600a60009054906101000a900460ff1615611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906132b1565b60405180910390fd5b600754828261127091906133d6565b11156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a890612fb1565b60405180910390fd5b6009548211156112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613291565b60405180910390fd5b81600854611304919061345d565b341015611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90613231565b60405180910390fd5b60005b8281101561138357611372336001838561136391906133d6565b61136d91906133d6565b611ea7565b8061137c90613604565b9050611349565b505050565b6113906118f1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906130b1565b60405180910390fd5b806004600061140b6118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b86118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fd9190612f74565b60405180910390a35050565b6115116119b2565b6001600a60016101000a81548160ff021916908315150217905550565b61153f6115396118f1565b83611a30565b61157e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157590613251565b60405180910390fd5b61158a84848484611ec5565b50505050565b606061159b82611843565b6115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190613071565b60405180910390fd5b600b6115e583611f21565b600c6040516020016115f993929190612ec7565b6040516020818303038152906040529050919050565b60075481565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116b16119b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613031565b60405180910390fd5b61172a81611de1565b50565b6117356119b2565b8060098190555050565b6117476119b2565b806006908051906020019061175d9291906124da565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061182c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061183c575061183b826120ce565b5b9050919050565b6000600280549050821080156118ea5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106118a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661196c83610d8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119ba6118f1565b73ffffffffffffffffffffffffffffffffffffffff166119d8611131565b73ffffffffffffffffffffffffffffffffffffffff1614611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906131d1565b60405180910390fd5b565b6000611a3b82611843565b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613111565b60405180910390fd5b6000611a8583610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611af457508373ffffffffffffffffffffffffffffffffffffffff16611adc846108f5565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b055750611b048185611615565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b2e82610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b906131f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613091565b60405180910390fd5b611bff838383612138565b611c0a6000826118f9565b8160028281548110611c45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d27906130f1565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d5690612ef8565b60006040518083038185875af1925050503d8060008114611d93576040519150601f19603f3d011682016040523d82523d6000602084013e611d98565b606091505b5050905080611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd3906130d1565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ec182826040518060200160405280600081525061213d565b5050565b611ed0848484611b0e565b611edc84848484612198565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613011565b60405180910390fd5b50505050565b60606000821415611f69576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c9565b600082905060005b60008214611f9b578080611f8490613604565b915050600a82611f94919061342c565b9150611f71565b60008167ffffffffffffffff811115611fdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561200f5781602001600182028036833780820191505090505b5090505b600085146120c25760018261202891906134b7565b9150600a85612037919061364d565b603061204391906133d6565b60f81b81838151811061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120bb919061342c565b9450612013565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b612147838361232f565b6121546000848484612198565b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90613011565b60405180910390fd5b505050565b60006121b98473ffffffffffffffffffffffffffffffffffffffff166124b7565b15612322578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e26118f1565b8786866040518563ffffffff1660e01b81526004016122049493929190612f28565b602060405180830381600087803b15801561221e57600080fd5b505af192505050801561224f57506040513d601f19601f8201168201806040525081019061224c91906128af565b60015b6122d2573d806000811461227f576040519150601f19603f3d011682016040523d82523d6000602084013e612284565b606091505b506000815114156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613011565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612327565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690613191565b60405180910390fd5b6123a881611843565b156123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df90613051565b60405180910390fd5b6123f460008383612138565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546124e6906135a1565b90600052602060002090601f016020900481019282612508576000855561254f565b82601f1061252157805160ff191683800117855561254f565b8280016001018555821561254f579182015b8281111561254e578251825591602001919060010190612533565b5b50905061255c9190612560565b5090565b5b80821115612579576000816000905550600101612561565b5090565b600061259061258b84613311565b6132ec565b9050828152602081018484840111156125a857600080fd5b6125b384828561355f565b509392505050565b60006125ce6125c984613342565b6132ec565b9050828152602081018484840111156125e657600080fd5b6125f184828561355f565b509392505050565b60008135905061260881613d89565b92915050565b60008135905061261d81613da0565b92915050565b60008135905061263281613db7565b92915050565b60008151905061264781613db7565b92915050565b600082601f83011261265e57600080fd5b813561266e84826020860161257d565b91505092915050565b600082601f83011261268857600080fd5b81356126988482602086016125bb565b91505092915050565b6000813590506126b081613dce565b92915050565b6000602082840312156126c857600080fd5b60006126d6848285016125f9565b91505092915050565b600080604083850312156126f257600080fd5b6000612700858286016125f9565b9250506020612711858286016125f9565b9150509250929050565b60008060006060848603121561273057600080fd5b600061273e868287016125f9565b935050602061274f868287016125f9565b9250506040612760868287016126a1565b9150509250925092565b6000806000806080858703121561278057600080fd5b600061278e878288016125f9565b945050602061279f878288016125f9565b93505060406127b0878288016126a1565b925050606085013567ffffffffffffffff8111156127cd57600080fd5b6127d98782880161264d565b91505092959194509250565b600080604083850312156127f857600080fd5b6000612806858286016125f9565b92505060206128178582860161260e565b9150509250929050565b6000806040838503121561283457600080fd5b6000612842858286016125f9565b9250506020612853858286016126a1565b9150509250929050565b60006020828403121561286f57600080fd5b600061287d8482850161260e565b91505092915050565b60006020828403121561289857600080fd5b60006128a684828501612623565b91505092915050565b6000602082840312156128c157600080fd5b60006128cf84828501612638565b91505092915050565b6000602082840312156128ea57600080fd5b600082013567ffffffffffffffff81111561290457600080fd5b61291084828501612677565b91505092915050565b6000806040838503121561292c57600080fd5b600083013567ffffffffffffffff81111561294657600080fd5b61295285828601612677565b925050602083013567ffffffffffffffff81111561296f57600080fd5b61297b85828601612677565b9150509250929050565b60006020828403121561299757600080fd5b60006129a5848285016126a1565b91505092915050565b600080604083850312156129c157600080fd5b60006129cf858286016126a1565b92505060206129e0858286016125f9565b9150509250929050565b6129f3816134eb565b82525050565b612a02816134fd565b82525050565b6000612a1382613388565b612a1d818561339e565b9350612a2d81856020860161356e565b612a368161373a565b840191505092915050565b6000612a4c82613393565b612a5681856133ba565b9350612a6681856020860161356e565b612a6f8161373a565b840191505092915050565b6000612a8582613393565b612a8f81856133cb565b9350612a9f81856020860161356e565b80840191505092915050565b60008154612ab8816135a1565b612ac281866133cb565b94506001821660008114612add5760018114612aee57612b21565b60ff19831686528186019350612b21565b612af785613373565b60005b83811015612b1957815481890152600182019150602081019050612afa565b838801955050505b50505092915050565b6000612b37600e836133ba565b9150612b428261374b565b602082019050919050565b6000612b5a6012836133ba565b9150612b6582613774565b602082019050919050565b6000612b7d602b836133ba565b9150612b888261379d565b604082019050919050565b6000612ba06032836133ba565b9150612bab826137ec565b604082019050919050565b6000612bc36026836133ba565b9150612bce8261383b565b604082019050919050565b6000612be6601c836133ba565b9150612bf18261388a565b602082019050919050565b6000612c096024836133ba565b9150612c14826138b3565b604082019050919050565b6000612c2c6024836133ba565b9150612c3782613902565b604082019050919050565b6000612c4f6019836133ba565b9150612c5a82613951565b602082019050919050565b6000612c72603a836133ba565b9150612c7d8261397a565b604082019050919050565b6000612c95601d836133ba565b9150612ca0826139c9565b602082019050919050565b6000612cb8602c836133ba565b9150612cc3826139f2565b604082019050919050565b6000612cdb6038836133ba565b9150612ce682613a41565b604082019050919050565b6000612cfe602a836133ba565b9150612d0982613a90565b604082019050919050565b6000612d216029836133ba565b9150612d2c82613adf565b604082019050919050565b6000612d446020836133ba565b9150612d4f82613b2e565b602082019050919050565b6000612d67602c836133ba565b9150612d7282613b57565b604082019050919050565b6000612d8a6020836133ba565b9150612d9582613ba6565b602082019050919050565b6000612dad6029836133ba565b9150612db882613bcf565b604082019050919050565b6000612dd06021836133ba565b9150612ddb82613c1e565b604082019050919050565b6000612df36019836133ba565b9150612dfe82613c6d565b602082019050919050565b6000612e166000836133af565b9150612e2182613c96565b600082019050919050565b6000612e396031836133ba565b9150612e4482613c99565b604082019050919050565b6000612e5c602c836133ba565b9150612e6782613ce8565b604082019050919050565b6000612e7f6014836133ba565b9150612e8a82613d37565b602082019050919050565b6000612ea2600e836133ba565b9150612ead82613d60565b602082019050919050565b612ec181613555565b82525050565b6000612ed38286612aab565b9150612edf8285612a7a565b9150612eeb8284612aab565b9150819050949350505050565b6000612f0382612e09565b9150819050919050565b6000602082019050612f2260008301846129ea565b92915050565b6000608082019050612f3d60008301876129ea565b612f4a60208301866129ea565b612f576040830185612eb8565b8181036060830152612f698184612a08565b905095945050505050565b6000602082019050612f8960008301846129f9565b92915050565b60006020820190508181036000830152612fa98184612a41565b905092915050565b60006020820190508181036000830152612fca81612b2a565b9050919050565b60006020820190508181036000830152612fea81612b4d565b9050919050565b6000602082019050818103600083015261300a81612b70565b9050919050565b6000602082019050818103600083015261302a81612b93565b9050919050565b6000602082019050818103600083015261304a81612bb6565b9050919050565b6000602082019050818103600083015261306a81612bd9565b9050919050565b6000602082019050818103600083015261308a81612bfc565b9050919050565b600060208201905081810360008301526130aa81612c1f565b9050919050565b600060208201905081810360008301526130ca81612c42565b9050919050565b600060208201905081810360008301526130ea81612c65565b9050919050565b6000602082019050818103600083015261310a81612c88565b9050919050565b6000602082019050818103600083015261312a81612cab565b9050919050565b6000602082019050818103600083015261314a81612cce565b9050919050565b6000602082019050818103600083015261316a81612cf1565b9050919050565b6000602082019050818103600083015261318a81612d14565b9050919050565b600060208201905081810360008301526131aa81612d37565b9050919050565b600060208201905081810360008301526131ca81612d5a565b9050919050565b600060208201905081810360008301526131ea81612d7d565b9050919050565b6000602082019050818103600083015261320a81612da0565b9050919050565b6000602082019050818103600083015261322a81612dc3565b9050919050565b6000602082019050818103600083015261324a81612de6565b9050919050565b6000602082019050818103600083015261326a81612e2c565b9050919050565b6000602082019050818103600083015261328a81612e4f565b9050919050565b600060208201905081810360008301526132aa81612e72565b9050919050565b600060208201905081810360008301526132ca81612e95565b9050919050565b60006020820190506132e66000830184612eb8565b92915050565b60006132f6613307565b905061330282826135d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561332c5761332b61370b565b5b6133358261373a565b9050602081019050919050565b600067ffffffffffffffff82111561335d5761335c61370b565b5b6133668261373a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133e182613555565b91506133ec83613555565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134215761342061367e565b5b828201905092915050565b600061343782613555565b915061344283613555565b925082613452576134516136ad565b5b828204905092915050565b600061346882613555565b915061347383613555565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134ac576134ab61367e565b5b828202905092915050565b60006134c282613555565b91506134cd83613555565b9250828210156134e0576134df61367e565b5b828203905092915050565b60006134f682613535565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561358c578082015181840152602081019050613571565b8381111561359b576000848401525b50505050565b600060028204905060018216806135b957607f821691505b602082108114156135cd576135cc6136dc565b5b50919050565b6135dc8261373a565b810181811067ffffffffffffffff821117156135fb576135fa61370b565b5b80604052505050565b600061360f82613555565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136425761364161367e565b5b600182019050919050565b600061365882613555565b915061366383613555565b925082613673576136726136ad565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4e6f2066756e647320617661696c61626c650000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732314d657461646174613a20544f4b454e20444f4553204e4f54204560008201527f5849535400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f45786365656473206d617869756d756d20627579000000000000000000000000600082015250565b7f53616c65206973206c6f636b6564000000000000000000000000000000000000600082015250565b613d92816134eb565b8114613d9d57600080fd5b50565b613da9816134fd565b8114613db457600080fd5b50565b613dc081613509565b8114613dcb57600080fd5b50565b613dd781613555565b8114613de257600080fd5b5056fea2646970667358221220b3a495bc45c103392c5f6b2509b6930d0ac9d440a612b8523861a4567e04e76264736f6c63430008040033
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.