ERC-721
Overview
Max Total Supply
500 PixiePuffs
Holders
233
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 PixiePuffsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixiePuffs
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-27 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Pixie.sol //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; contract PixiePuffs is ERC721A, Ownable { uint public constant MAX_TOKENS = 3333; uint public CURR_MINT_COST = 0 ether; //---- Round based supplies string private CURR_ROUND_NAME = "Free Round"; uint private CURR_ROUND_SUPPLY = 500; uint private maxMintAmount = 2; uint private nftPerAddressLimit = 2; bool private freeRound = true; bool public hasSaleStarted = false; string public baseURI; constructor() ERC721A("Pixie Puffs", "PixiePuffs") { setBaseURI("http://pixieipfs.ddns.net/pixie/"); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function mintNFT(uint _mintAmount) external payable { require(hasSaleStarted == true, "Sale hasn't started"); require(_mintAmount > 0, "Need to mint at least 1 NFT"); require(msg.value >= CURR_MINT_COST * _mintAmount, "Insufficient funds"); require(_mintAmount <= maxMintAmount, "Max mint amount per transaction exceeded"); require((_mintAmount + balanceOf(msg.sender)) <= nftPerAddressLimit, "Max NFT per address exceeded"); if(freeRound == true) { if(_mintAmount >= CURR_ROUND_SUPPLY) { freeRound = false; _mintAmount = CURR_ROUND_SUPPLY; CURR_ROUND_SUPPLY = 2833; CURR_MINT_COST = 0.0025 ether; CURR_ROUND_NAME = "Public"; maxMintAmount = 20; nftPerAddressLimit = 100; _safeMint(msg.sender, _mintAmount); return; } } else { require(_mintAmount <= CURR_ROUND_SUPPLY, "We're at max supply!"); } CURR_ROUND_SUPPLY -= _mintAmount; _safeMint(msg.sender, _mintAmount); } function getInformations() external view returns (string memory, uint, uint, uint, uint,uint,uint, bool,bool) { return (CURR_ROUND_NAME,CURR_ROUND_SUPPLY,0,CURR_MINT_COST,maxMintAmount,nftPerAddressLimit, totalSupply(), hasSaleStarted,false); } //only owner functions function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function Giveaways(uint numTokens, address recipient) public onlyOwner { require((numTokens) <= CURR_ROUND_SUPPLY, "Exceeded supply from current round"); CURR_ROUND_SUPPLY -= numTokens; _safeMint(recipient, numTokens); } function withdraw(uint amount) public onlyOwner { require(payable(msg.sender).send(amount)); } function setSaleStarted(bool _state) public onlyOwner { hasSaleStarted = _state; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURR_MINT_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Giveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInformations","outputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintNFT","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600060095560c0604052600a608081905269119c995948149bdd5b9960b21b60a090815262000030919081620001f1565b506101f4600b556002600c819055600d55600e805461ffff191660011790553480156200005c57600080fd5b50604080518082018252600b81526a506978696520507566667360a81b60208083019182528351808501909452600a8452695069786965507566667360b01b908401528151919291620000b291600291620001f1565b508051620000c8906003906020840190620001f1565b5050600160005550620000db3362000127565b620001216040518060400160405280602081526020017f687474703a2f2f7069786965697066732e64646e732e6e65742f70697869652f8152506200017960201b60201c565b620002d4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ed90600f906020840190620001f1565b5050565b828054620001ff9062000297565b90600052602060002090601f0160209004810192826200022357600085556200026e565b82601f106200023e57805160ff19168380011785556200026e565b828001600101855582156200026e579182015b828111156200026e57825182559160200191906001019062000251565b506200027c92915062000280565b5090565b5b808211156200027c576000815560010162000281565b600181811c90821680620002ac57607f821691505b60208210811415620002ce57634e487b7160e01b600052602260045260246000fd5b50919050565b6122db80620002e46000396000f3fe6080604052600436106101ac5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063cc0b8d1511610064578063cc0b8d1514610498578063e985e9c5146104b8578063f2fde38b14610501578063f47c84c51461052157600080fd5b8063b88d4fde14610442578063c342784414610462578063c87b56dd1461047857600080fd5b806392642744116100c657806392642744146103da57806395d89b41146103ed578063a22cb46514610402578063a854ffba1461042257600080fd5b806370a0823114610387578063715018a6146103a75780638da5cb5b146103bc57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461031257806355f804b3146103325780636352211e146103525780636c0360eb1461037257600080fd5b806323b872dd146102a85780632e1a7d4d146102c85780633c5e310b146102e857600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd146102625780631c8b232d1461028957600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004611d7d565b610537565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb61061c565b6040516101dd9190611df2565b34801561021457600080fd5b50610228610223366004611e05565b6106ae565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b366004611e3a565b61070b565b005b34801561026e57600080fd5b5060015460005403600019015b6040519081526020016101dd565b34801561029557600080fd5b50600e546101d190610100900460ff1681565b3480156102b457600080fd5b506102606102c3366004611e64565b6107cb565b3480156102d457600080fd5b506102606102e3366004611e05565b6107d6565b3480156102f457600080fd5b506102fd61085d565b6040516101dd99989796959493929190611ea0565b34801561031e57600080fd5b5061026061032d366004611e64565b610949565b34801561033e57600080fd5b5061026061034d366004611f84565b610964565b34801561035e57600080fd5b5061022861036d366004611e05565b6109d5565b34801561037e57600080fd5b506101fb6109e7565b34801561039357600080fd5b5061027b6103a2366004611fcd565b610a75565b3480156103b357600080fd5b50610260610add565b3480156103c857600080fd5b506008546001600160a01b0316610228565b6102606103e8366004611e05565b610b43565b3480156103f957600080fd5b506101fb610e34565b34801561040e57600080fd5b5061026061041d366004611ff8565b610e43565b34801561042e57600080fd5b5061026061043d36600461202b565b610ef2565b34801561044e57600080fd5b5061026061045d366004612046565b610f83565b34801561046e57600080fd5b5061027b60095481565b34801561048457600080fd5b506101fb610493366004611e05565b610fed565b3480156104a457600080fd5b506102606104b33660046120c2565b61108b565b3480156104c457600080fd5b506101d16104d33660046120e5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050d57600080fd5b5061026061051c366004611fcd565b61117f565b34801561052d57600080fd5b5061027b610d0581565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105ca57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461062b9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546106579061210f565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106b98261125e565b6106ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610716826109d5565b9050806001600160a01b0316836001600160a01b03161415610764576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610784575061078281336104d3565b155b156107bb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107c68383836112b0565b505050565b6107c6838383611324565b6008546001600160a01b031633146108355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505061085a57600080fd5b50565b6060600080600080600080600080600a600b546000600954600c54600d5461088e6001546000546000199190030190565b600e60019054906101000a900460ff1660008880546108ac9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546108d89061210f565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b6107c683838360405180602001604052806000815250610f83565b6008546001600160a01b031633146109be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b80516109d190600f906020840190611cb6565b5050565b60006109e0826115b2565b5192915050565b600f80546109f49061210f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a209061210f565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b505050505081565b60006001600160a01b038216610ab7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b610b416000611748565b565b600e5460ff610100909104161515600114610ba05760405162461bcd60e51b815260206004820152601360248201527f53616c65206861736e2774207374617274656400000000000000000000000000604482015260640161082c565b60008111610bf05760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161082c565b80600954610bfe9190612160565b341015610c4d5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161082c565b600c54811115610cc55760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161082c565b600d54610cd133610a75565b610cdb908361217f565b1115610d295760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161082c565b600e5460ff16151560011415610dc057600b548110610dbb5750600e805460ff19169055600b8054610b119091556608e1bc9bf040006009556040805180820190915260068082527f5075626c696300000000000000000000000000000000000000000000000000006020909201918252610da691600a91611cb6565b506014600c556064600d5561085a33826117b2565b610e12565b600b54811115610e125760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161082c565b80600b6000828254610e249190612197565b9091555061085a905033826117b2565b60606003805461062b9061210f565b6001600160a01b038216331415610e86576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610f8e848484611324565b6001600160a01b0383163b15158015610fb05750610fae848484846117cc565b155b15610fe7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ff88261125e565b61102e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611038611918565b90508051600014156110595760405180602001604052806000815250611084565b8061106384611927565b6040516020016110749291906121ae565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b600b5482111561115d5760405162461bcd60e51b815260206004820152602260248201527f457863656564656420737570706c792066726f6d2063757272656e7420726f7560448201527f6e64000000000000000000000000000000000000000000000000000000000000606482015260840161082c565b81600b600082825461116f9190612197565b909155506109d1905081836117b2565b6008546001600160a01b031633146111d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b6001600160a01b0381166112555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082c565b61085a81611748565b600081600111158015611272575060005482105b80156106165750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061132f826115b2565b9050836001600160a01b031681600001516001600160a01b031614611380576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061139e575061139e85336104d3565b806113b95750336113ae846106ae565b6001600160a01b0316145b9050806113f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611432576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61143e600084876112b0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116611566576000548214611566578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156115e2575060005481105b1561171657600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906117145780516001600160a01b031615611680579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff161515928101929092521561170f579392505050565b611680565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109d1828260405180602001604052806000815250611a59565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061181a9033908990889088906004016121dd565b6020604051808303816000875af1925050508015611855575060408051601f3d908101601f1916820190925261185291810190612219565b60015b6118c9573d808015611883576040519150601f19603f3d011682016040523d82523d6000602084013e611888565b606091505b5080516118c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600f805461062b9061210f565b60608161196757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611991578061197b81612236565b915061198a9050600a83612267565b915061196b565b60008167ffffffffffffffff8111156119ac576119ac611ef8565b6040519080825280601f01601f1916602001820160405280156119d6576020820181803683370190505b5090505b8415611910576119eb600183612197565b91506119f8600a8661227b565b611a0390603061217f565b60f81b818381518110611a1857611a1861228f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a52600a86612267565b94506119da565b6107c683838360016000546001600160a01b038516611aa4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611adb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015611bc557506001600160a01b0387163b15155b15611c67575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c1660008884806001019550886117cc565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415611bcb578260005414611c6257600080fd5b611cad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c68575b506000556115ab565b828054611cc29061210f565b90600052602060002090601f016020900481019282611ce45760008555611d2a565b82601f10611cfd57805160ff1916838001178555611d2a565b82800160010185558215611d2a579182015b82811115611d2a578251825591602001919060010190611d0f565b50611d36929150611d3a565b5090565b5b80821115611d365760008155600101611d3b565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461085a57600080fd5b600060208284031215611d8f57600080fd5b813561108481611d4f565b60005b83811015611db5578181015183820152602001611d9d565b83811115610fe75750506000910152565b60008151808452611dde816020860160208601611d9a565b601f01601f19169290920160200192915050565b6020815260006110846020830184611dc6565b600060208284031215611e1757600080fd5b5035919050565b80356001600160a01b0381168114611e3557600080fd5b919050565b60008060408385031215611e4d57600080fd5b611e5683611e1e565b946020939093013593505050565b600080600060608486031215611e7957600080fd5b611e8284611e1e565b9250611e9060208501611e1e565b9150604084013590509250925092565b6000610120808352611eb48184018d611dc6565b602084019b909b52505060408101979097526060870195909552608086019390935260a085019190915260c0840152151560e0830152151561010090910152919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f2957611f29611ef8565b604051601f8501601f19908116603f01168101908282118183101715611f5157611f51611ef8565b81604052809350858152868686011115611f6a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b61191084823560208401611f0e565b600060208284031215611fdf57600080fd5b61108482611e1e565b80358015158114611e3557600080fd5b6000806040838503121561200b57600080fd5b61201483611e1e565b915061202260208401611fe8565b90509250929050565b60006020828403121561203d57600080fd5b61108482611fe8565b6000806000806080858703121561205c57600080fd5b61206585611e1e565b935061207360208601611e1e565b925060408501359150606085013567ffffffffffffffff81111561209657600080fd5b8501601f810187136120a757600080fd5b6120b687823560208401611f0e565b91505092959194509250565b600080604083850312156120d557600080fd5b8235915061202260208401611e1e565b600080604083850312156120f857600080fd5b61210183611e1e565b915061202260208401611e1e565b600181811c9082168061212357607f821691505b6020821081141561214457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561217a5761217a61214a565b500290565b600082198211156121925761219261214a565b500190565b6000828210156121a9576121a961214a565b500390565b600083516121c0818460208801611d9a565b8351908301906121d4818360208801611d9a565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261220f6080830184611dc6565b9695505050505050565b60006020828403121561222b57600080fd5b815161108481611d4f565b600060001982141561224a5761224a61214a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261227657612276612251565b500490565b60008261228a5761228a612251565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f52c30fe6344c8f89d4a042dda267977764941030e06d129ec7cdaac4927318064736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106101ac5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063cc0b8d1511610064578063cc0b8d1514610498578063e985e9c5146104b8578063f2fde38b14610501578063f47c84c51461052157600080fd5b8063b88d4fde14610442578063c342784414610462578063c87b56dd1461047857600080fd5b806392642744116100c657806392642744146103da57806395d89b41146103ed578063a22cb46514610402578063a854ffba1461042257600080fd5b806370a0823114610387578063715018a6146103a75780638da5cb5b146103bc57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461031257806355f804b3146103325780636352211e146103525780636c0360eb1461037257600080fd5b806323b872dd146102a85780632e1a7d4d146102c85780633c5e310b146102e857600080fd5b8063095ea7b31161018a578063095ea7b31461024057806318160ddd146102625780631c8b232d1461028957600080fd5b806301ffc9a7146101b157806306fdde03146101e6578063081812fc14610208575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004611d7d565b610537565b60405190151581526020015b60405180910390f35b3480156101f257600080fd5b506101fb61061c565b6040516101dd9190611df2565b34801561021457600080fd5b50610228610223366004611e05565b6106ae565b6040516001600160a01b0390911681526020016101dd565b34801561024c57600080fd5b5061026061025b366004611e3a565b61070b565b005b34801561026e57600080fd5b5060015460005403600019015b6040519081526020016101dd565b34801561029557600080fd5b50600e546101d190610100900460ff1681565b3480156102b457600080fd5b506102606102c3366004611e64565b6107cb565b3480156102d457600080fd5b506102606102e3366004611e05565b6107d6565b3480156102f457600080fd5b506102fd61085d565b6040516101dd99989796959493929190611ea0565b34801561031e57600080fd5b5061026061032d366004611e64565b610949565b34801561033e57600080fd5b5061026061034d366004611f84565b610964565b34801561035e57600080fd5b5061022861036d366004611e05565b6109d5565b34801561037e57600080fd5b506101fb6109e7565b34801561039357600080fd5b5061027b6103a2366004611fcd565b610a75565b3480156103b357600080fd5b50610260610add565b3480156103c857600080fd5b506008546001600160a01b0316610228565b6102606103e8366004611e05565b610b43565b3480156103f957600080fd5b506101fb610e34565b34801561040e57600080fd5b5061026061041d366004611ff8565b610e43565b34801561042e57600080fd5b5061026061043d36600461202b565b610ef2565b34801561044e57600080fd5b5061026061045d366004612046565b610f83565b34801561046e57600080fd5b5061027b60095481565b34801561048457600080fd5b506101fb610493366004611e05565b610fed565b3480156104a457600080fd5b506102606104b33660046120c2565b61108b565b3480156104c457600080fd5b506101d16104d33660046120e5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050d57600080fd5b5061026061051c366004611fcd565b61117f565b34801561052d57600080fd5b5061027b610d0581565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105ca57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061061657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606002805461062b9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546106579061210f565b80156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b5050505050905090565b60006106b98261125e565b6106ef576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610716826109d5565b9050806001600160a01b0316836001600160a01b03161415610764576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610784575061078281336104d3565b155b156107bb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107c68383836112b0565b505050565b6107c6838383611324565b6008546001600160a01b031633146108355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b604051339082156108fc029083906000818181858888f1935050505061085a57600080fd5b50565b6060600080600080600080600080600a600b546000600954600c54600d5461088e6001546000546000199190030190565b600e60019054906101000a900460ff1660008880546108ac9061210f565b80601f01602080910402602001604051908101604052809291908181526020018280546108d89061210f565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b50505050509850985098509850985098509850985098509850909192939495969798565b6107c683838360405180602001604052806000815250610f83565b6008546001600160a01b031633146109be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b80516109d190600f906020840190611cb6565b5050565b60006109e0826115b2565b5192915050565b600f80546109f49061210f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a209061210f565b8015610a6d5780601f10610a4257610100808354040283529160200191610a6d565b820191906000526020600020905b815481529060010190602001808311610a5057829003601f168201915b505050505081565b60006001600160a01b038216610ab7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b610b416000611748565b565b600e5460ff610100909104161515600114610ba05760405162461bcd60e51b815260206004820152601360248201527f53616c65206861736e2774207374617274656400000000000000000000000000604482015260640161082c565b60008111610bf05760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161082c565b80600954610bfe9190612160565b341015610c4d5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e64730000000000000000000000000000604482015260640161082c565b600c54811115610cc55760405162461bcd60e51b815260206004820152602860248201527f4d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e2060448201527f6578636565646564000000000000000000000000000000000000000000000000606482015260840161082c565b600d54610cd133610a75565b610cdb908361217f565b1115610d295760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161082c565b600e5460ff16151560011415610dc057600b548110610dbb5750600e805460ff19169055600b8054610b119091556608e1bc9bf040006009556040805180820190915260068082527f5075626c696300000000000000000000000000000000000000000000000000006020909201918252610da691600a91611cb6565b506014600c556064600d5561085a33826117b2565b610e12565b600b54811115610e125760405162461bcd60e51b815260206004820152601460248201527f5765277265206174206d617820737570706c7921000000000000000000000000604482015260640161082c565b80600b6000828254610e249190612197565b9091555061085a905033826117b2565b60606003805461062b9061210f565b6001600160a01b038216331415610e86576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b600e8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b610f8e848484611324565b6001600160a01b0383163b15158015610fb05750610fae848484846117cc565b155b15610fe7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610ff88261125e565b61102e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611038611918565b90508051600014156110595760405180602001604052806000815250611084565b8061106384611927565b6040516020016110749291906121ae565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b600b5482111561115d5760405162461bcd60e51b815260206004820152602260248201527f457863656564656420737570706c792066726f6d2063757272656e7420726f7560448201527f6e64000000000000000000000000000000000000000000000000000000000000606482015260840161082c565b81600b600082825461116f9190612197565b909155506109d1905081836117b2565b6008546001600160a01b031633146111d95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161082c565b6001600160a01b0381166112555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161082c565b61085a81611748565b600081600111158015611272575060005482105b80156106165750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061132f826115b2565b9050836001600160a01b031681600001516001600160a01b031614611380576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061139e575061139e85336104d3565b806113b95750336113ae846106ae565b6001600160a01b0316145b9050806113f2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611432576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61143e600084876112b0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116611566576000548214611566578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156115e2575060005481105b1561171657600081815260046020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906117145780516001600160a01b031615611680579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff161515928101929092521561170f579392505050565b611680565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109d1828260405180602001604052806000815250611a59565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061181a9033908990889088906004016121dd565b6020604051808303816000875af1925050508015611855575060408051601f3d908101601f1916820190925261185291810190612219565b60015b6118c9573d808015611883576040519150601f19603f3d011682016040523d82523d6000602084013e611888565b606091505b5080516118c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600f805461062b9061210f565b60608161196757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611991578061197b81612236565b915061198a9050600a83612267565b915061196b565b60008167ffffffffffffffff8111156119ac576119ac611ef8565b6040519080825280601f01601f1916602001820160405280156119d6576020820181803683370190505b5090505b8415611910576119eb600183612197565b91506119f8600a8661227b565b611a0390603061217f565b60f81b818381518110611a1857611a1861228f565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611a52600a86612267565b94506119da565b6107c683838360016000546001600160a01b038516611aa4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83611adb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015611bc557506001600160a01b0387163b15155b15611c67575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c1660008884806001019550886117cc565b611c4c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415611bcb578260005414611c6257600080fd5b611cad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611c68575b506000556115ab565b828054611cc29061210f565b90600052602060002090601f016020900481019282611ce45760008555611d2a565b82601f10611cfd57805160ff1916838001178555611d2a565b82800160010185558215611d2a579182015b82811115611d2a578251825591602001919060010190611d0f565b50611d36929150611d3a565b5090565b5b80821115611d365760008155600101611d3b565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461085a57600080fd5b600060208284031215611d8f57600080fd5b813561108481611d4f565b60005b83811015611db5578181015183820152602001611d9d565b83811115610fe75750506000910152565b60008151808452611dde816020860160208601611d9a565b601f01601f19169290920160200192915050565b6020815260006110846020830184611dc6565b600060208284031215611e1757600080fd5b5035919050565b80356001600160a01b0381168114611e3557600080fd5b919050565b60008060408385031215611e4d57600080fd5b611e5683611e1e565b946020939093013593505050565b600080600060608486031215611e7957600080fd5b611e8284611e1e565b9250611e9060208501611e1e565b9150604084013590509250925092565b6000610120808352611eb48184018d611dc6565b602084019b909b52505060408101979097526060870195909552608086019390935260a085019190915260c0840152151560e0830152151561010090910152919050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f2957611f29611ef8565b604051601f8501601f19908116603f01168101908282118183101715611f5157611f51611ef8565b81604052809350858152868686011115611f6a57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b61191084823560208401611f0e565b600060208284031215611fdf57600080fd5b61108482611e1e565b80358015158114611e3557600080fd5b6000806040838503121561200b57600080fd5b61201483611e1e565b915061202260208401611fe8565b90509250929050565b60006020828403121561203d57600080fd5b61108482611fe8565b6000806000806080858703121561205c57600080fd5b61206585611e1e565b935061207360208601611e1e565b925060408501359150606085013567ffffffffffffffff81111561209657600080fd5b8501601f810187136120a757600080fd5b6120b687823560208401611f0e565b91505092959194509250565b600080604083850312156120d557600080fd5b8235915061202260208401611e1e565b600080604083850312156120f857600080fd5b61210183611e1e565b915061202260208401611e1e565b600181811c9082168061212357607f821691505b6020821081141561214457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561217a5761217a61214a565b500290565b600082198211156121925761219261214a565b500190565b6000828210156121a9576121a961214a565b500390565b600083516121c0818460208801611d9a565b8351908301906121d4818360208801611d9a565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261220f6080830184611dc6565b9695505050505050565b60006020828403121561222b57600080fd5b815161108481611d4f565b600060001982141561224a5761224a61214a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261227657612276612251565b500490565b60008261228a5761228a612251565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f52c30fe6344c8f89d4a042dda267977764941030e06d129ec7cdaac4927318064736f6c634300080c0033
Deployed Bytecode Sourcemap
44908:2766:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;-1:-1:-1;24442:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;24442:305:0;;;;;;;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29058:204::-;;;;;;;;;;-1:-1:-1;29058:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;29058:204:0;1633:226:1;28621:371:0;;;;;;;;;;-1:-1:-1;28621:371:0;;;;;:::i;:::-;;:::i;:::-;;23691:303;;;;;;;;;;-1:-1:-1;45650:1:0;23945:12;23735:7;23929:13;:28;-1:-1:-1;;23929:46:0;23691:303;;;2470:25:1;;;2458:2;2443:18;23691:303:0;2324:177:1;45272:34:0;;;;;;;;;;-1:-1:-1;45272:34:0;;;;;;;;;;;29923:170;;;;;;;;;;-1:-1:-1;29923:170:0;;;;;:::i;:::-;;:::i;47479:99::-;;;;;;;;;;-1:-1:-1;47479:99:0;;;;;:::i;:::-;;:::i;46851:251::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;30164:185::-;;;;;;;;;;-1:-1:-1;30164:185:0;;;;;:::i;:::-;;:::i;47137:95::-;;;;;;;;;;-1:-1:-1;47137:95:0;;;;;:::i;:::-;;:::i;27363:125::-;;;;;;;;;;-1:-1:-1;27363:125:0;;;;;:::i;:::-;;:::i;45313:21::-;;;;;;;;;;;;;:::i;24811:206::-;;;;;;;;;;-1:-1:-1;24811:206:0;;;;;:::i;:::-;;:::i;43900:103::-;;;;;;;;;;;;;:::i;43249:87::-;;;;;;;;;;-1:-1:-1;43322:6:0;;-1:-1:-1;;;;;43322:6:0;43249:87;;45661:1182;;;;;;:::i;:::-;;:::i;27724:104::-;;;;;;;;;;;;;:::i;29334:287::-;;;;;;;;;;-1:-1:-1;29334:287:0;;;;;:::i;:::-;;:::i;47584:87::-;;;;;;;;;;-1:-1:-1;47584:87:0;;;;;:::i;:::-;;:::i;30420:369::-;;;;;;;;;;-1:-1:-1;30420:369:0;;;;;:::i;:::-;;:::i;44999:36::-;;;;;;;;;;;;;;;;27899:318;;;;;;;;;;-1:-1:-1;27899:318:0;;;;;:::i;:::-;;:::i;47237:237::-;;;;;;;;;;-1:-1:-1;47237:237:0;;;;;:::i;:::-;;:::i;29692:164::-;;;;;;;;;;-1:-1:-1;29692:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29813:25:0;;;29789:4;29813:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29692:164;44158:201;;;;;;;;;;-1:-1:-1;44158:201:0;;;;;:::i;:::-;;:::i;44954:38::-;;;;;;;;;;;;44988:4;44954:38;;24442:305;24544:4;24581:40;;;24596:25;24581:40;;:105;;-1:-1:-1;24638:48:0;;;24653:33;24638:48;24581:105;:158;;;-1:-1:-1;13564:25:0;13549:40;;;;24703:36;24561:178;24442:305;-1:-1:-1;;24442:305:0:o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;;;;;;;;;;;;;29146:64;-1:-1:-1;29230:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29230:24:0;;29058:204::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;-1:-1:-1;;;;;28749:11:0;:2;-1:-1:-1;;;;;28749:11:0;;28745:48;;;28769:24;;;;;;;;;;;;;;28745:48;20038:10;-1:-1:-1;;;;;28810:21:0;;;;;;:63;;-1:-1:-1;28836:37:0;28853:5;20038:10;29692:164;:::i;28836:37::-;28835:38;28810:63;28806:138;;;28897:35;;;;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28683:309;28621:371;;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;47479:99::-;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;;;;;;;;;47540:32:::1;::::0;47548:10:::1;::::0;47540:32;::::1;;;::::0;47565:6;;47540:32:::1;::::0;;;47565:6;47548:10;47540:32;::::1;;;;;;47532:41;;;::::0;::::1;;47479:99:::0;:::o;46851:251::-;46901:13;46916:4;46922;46928;46934;46939;46944;46950;46955;46976:15;46992:17;;47010:1;47012:14;;47027:13;;47041:18;;47061:13;45650:1;23945:12;23735:7;23929:13;-1:-1:-1;;23929:28:0;;;:46;;23691:303;47061:13;47076:14;;;;;;;;;;;47091:5;46968:129;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46851:251;;;;;;;;;:::o;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;47137:95::-;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;7458:356:1;43461:68:0;47206:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47137:95:::0;:::o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;27363:125;-1:-1:-1;;27363:125:0:o;45313:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24811:206::-;24875:7;-1:-1:-1;;;;;24899:19:0;;24895:60;;24927:28;;;;;;;;;;;;;;24895:60;-1:-1:-1;;;;;;24981:19:0;;;;;:12;:19;;;;;:27;;;;24811:206::o;43900:103::-;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;7458:356:1;43461:68:0;43965:30:::1;43992:1;43965:18;:30::i;:::-;43900:103::o:0;45661:1182::-;45730:14;;;;;;;;:22;;:14;:22;45722:54;;;;-1:-1:-1;;;45722:54:0;;8021:2:1;45722:54:0;;;8003:21:1;8060:2;8040:18;;;8033:30;8099:21;8079:18;;;8072:49;8138:18;;45722:54:0;7819:343:1;45722:54:0;45803:1;45789:11;:15;45781:55;;;;-1:-1:-1;;;45781:55:0;;8369:2:1;45781:55:0;;;8351:21:1;8408:2;8388:18;;;8381:30;8447:29;8427:18;;;8420:57;8494:18;;45781:55:0;8167:351:1;45781:55:0;45885:11;45868:14;;:28;;;;:::i;:::-;45855:9;:41;;45847:72;;;;-1:-1:-1;;;45847:72:0;;9147:2:1;45847:72:0;;;9129:21:1;9186:2;9166:18;;;9159:30;9225:20;9205:18;;;9198:48;9263:18;;45847:72:0;8945:342:1;45847:72:0;45953:13;;45938:11;:28;;45930:81;;;;-1:-1:-1;;;45930:81:0;;9494:2:1;45930:81:0;;;9476:21:1;9533:2;9513:18;;;9506:30;9572:34;9552:18;;;9545:62;9643:10;9623:18;;;9616:38;9671:19;;45930:81:0;9292:404:1;45930:81:0;46072:18;;46046:21;46056:10;46046:9;:21::i;:::-;46031:36;;:11;:36;:::i;:::-;46030:60;;46022:101;;;;-1:-1:-1;;;46022:101:0;;10036:2:1;46022:101:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114;10094:18;;;10087:58;10162:18;;46022:101:0;9834:352:1;46022:101:0;46141:9;;;;:17;;:9;:17;46138:619;;;46202:17;;46187:11;:32;46184:446;;-1:-1:-1;46253:9:0;:17;;-1:-1:-1;;46253:17:0;;;46303;;;46359:4;46339:24;;;46399:12;46382:14;:29;46430:26;;;;;;;;;;;;;;;;;;;;;;;:15;;:26;:::i;:::-;-1:-1:-1;46491:2:0;46475:13;:18;46533:3;46512:18;:24;46555:34;46565:10;46577:11;46555:9;:34::i;46184:446::-;46138:619;;;46703:17;;46688:11;:32;;46680:65;;;;-1:-1:-1;;;46680:65:0;;10393:2:1;46680:65:0;;;10375:21:1;10432:2;10412:18;;;10405:30;10471:22;10451:18;;;10444:50;10511:18;;46680:65:0;10191:344:1;46680:65:0;46784:11;46763:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;46800:34:0;;-1:-1:-1;46810:10:0;46822:11;46800:9;:34::i;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;29334:287::-;-1:-1:-1;;;;;29433:24:0;;20038:10;29433:24;29429:54;;;29466:17;;;;;;;;;;;;;;29429:54;20038:10;29496:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29496:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29496:53:0;;;;;;;;;;29565:48;;586:41:1;;;29496:42:0;;20038:10;29565:48;;559:18:1;29565:48:0;;;;;;;29334:287;;:::o;47584:87::-;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;7458:356:1;43461:68:0;47643:14:::1;:23:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;47584:87::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;-1:-1:-1;;;;;30630:13:0;;3652:19;:23;;30630:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;;;;;;;;;;;;;30626:156;30420:369;;;;:::o;27899:318::-;27972:13;28003:16;28011:7;28003;:16::i;:::-;27998:59;;28028:29;;;;;;;;;;;;;;27998:59;28070:21;28094:10;:8;:10::i;:::-;28070:34;;28128:7;28122:21;28147:1;28122:26;;:87;;;;;;;;;;;;;;;;;28175:7;28184:18;:7;:16;:18::i;:::-;28158:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28122:87;28115:94;27899:318;-1:-1:-1;;;27899:318:0:o;47237:237::-;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;7458:356:1;43461:68:0;47336:17:::1;;47322:9;47321:32;;47313:79;;;::::0;-1:-1:-1;;;47313:79:0;;11347:2:1;47313:79:0::1;::::0;::::1;11329:21:1::0;11386:2;11366:18;;;11359:30;11425:34;11405:18;;;11398:62;11496:4;11476:18;;;11469:32;11518:19;;47313:79:0::1;11145:398:1::0;47313:79:0::1;47424:9;47403:17;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;47438:31:0::1;::::0;-1:-1:-1;47448:9:0;47459;47438::::1;:31::i;44158:201::-:0;43322:6;;-1:-1:-1;;;;;43322:6:0;20038:10;43469:23;43461:68;;;;-1:-1:-1;;;43461:68:0;;7660:2:1;43461:68:0;;;7642:21:1;;;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7790:18;;43461:68:0;7458:356:1;43461:68:0;-1:-1:-1;;;;;44247:22:0;::::1;44239:73;;;::::0;-1:-1:-1;;;44239:73:0;;11750:2:1;44239:73:0::1;::::0;::::1;11732:21:1::0;11789:2;11769:18;;;11762:30;11828:34;11808:18;;;11801:62;11899:8;11879:18;;;11872:36;11925:19;;44239:73:0::1;11548:402:1::0;44239:73:0::1;44323:28;44342:8;44323:18;:28::i;31044:174::-:0;31101:4;31144:7;45650:1;31125:26;;:53;;;;;31165:13;;31155:7;:23;31125:53;:85;;;;-1:-1:-1;;31183:20:0;;;;:11;:20;;;;;:27;;;;;;31182:28;;31044:174::o;39201:196::-;39316:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;39316:29:0;;;;;;;;;39361:28;;39316:24;;39361:28;;;;;;;39201:196;;;:::o;34144:2130::-;34259:35;34297:21;34310:7;34297:12;:21::i;:::-;34259:59;;34357:4;-1:-1:-1;;;;;34335:26:0;:13;:18;;;-1:-1:-1;;;;;34335:26:0;;34331:67;;34370:28;;;;;;;;;;;;;;34331:67;34411:22;20038:10;-1:-1:-1;;;;;34437:20:0;;;;:73;;-1:-1:-1;34474:36:0;34491:4;20038:10;29692:164;:::i;34474:36::-;34437:126;;;-1:-1:-1;20038:10:0;34527:20;34539:7;34527:11;:20::i;:::-;-1:-1:-1;;;;;34527:36:0;;34437:126;34411:153;;34582:17;34577:66;;34608:35;;;;;;;;;;;;;;34577:66;-1:-1:-1;;;;;34658:16:0;;34654:52;;34683:23;;;;;;;;;;;;;;34654:52;34827:35;34844:1;34848:7;34857:4;34827:8;:35::i;:::-;-1:-1:-1;;;;;35158:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35158:31:0;;;;;;;-1:-1:-1;;35158:31:0;;;;;;;35204:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35204:29:0;;;;;;;;;;;35284:20;;;:11;:20;;;;;;35319:18;;35352:49;;;;;;35385:15;35352:49;;;;;;;;;;35675:11;;35735:24;;;;;35778:13;;35284:20;;35735:24;;35778:13;35774:384;;35988:13;;35973:11;:28;35969:174;;36026:20;;36095:28;;;;36069:54;;;;;;;;-1:-1:-1;;;;;36026:20:0;;36069:54;;;;35969:174;35133:1036;;;36205:7;36201:2;-1:-1:-1;;;;;36186:27:0;36195:4;-1:-1:-1;;;;;36186:27:0;;;;;;;;;;;36224:42;34248:2026;;34144:2130;;;:::o;26192:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26303:7:0;;45650:1;26352:23;;:47;;;;;26386:13;;26379:4;:20;26352:47;26348:886;;;26420:31;26454:17;;;:11;:17;;;;;;;;;26420:51;;;;;;;;;-1:-1:-1;;;;;26420:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26490:729;;26540:14;;-1:-1:-1;;;;;26540:28:0;;26536:101;;26604:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;26536:101::-;-1:-1:-1;;;26979:6:0;27024:17;;;;:11;:17;;;;;;;;;27012:29;;;;;;;;;-1:-1:-1;;;;;27012:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27072:28;27068:109;;27140:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;27068:109::-;26939:261;;;26401:833;26348:886;27262:31;;;;;;;;;;;;;;44519:191;44612:6;;;-1:-1:-1;;;;;44629:17:0;;;;;;;;;;;44662:40;;44612:6;;;44629:17;44612:6;;44662:40;;44593:16;;44662:40;44582:128;44519:191;:::o;31226:104::-;31295:27;31305:2;31309:8;31295:27;;;;;;;;;;;;:9;:27::i;39889:667::-;40073:72;;;;;40052:4;;-1:-1:-1;;;;;40073:36:0;;;;;:72;;20038:10;;40124:4;;40130:7;;40139:5;;40073:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40073:72:0;;;;;;;;-1:-1:-1;;40073:72:0;;;;;;;;;;;;:::i;:::-;;;40069:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40307:13:0;;40303:235;;40353:40;;;;;;;;;;;;;;40303:235;40496:6;40490:13;40481:6;40477:2;40473:15;40466:38;40069:480;40192:55;;40202:45;40192:55;;-1:-1:-1;40069:480:0;39889:667;;;;;;:::o;45460:99::-;45520:13;45547:7;45540:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;;;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;31693:163;31816:32;31822:2;31826:8;31836:5;31843:4;32254:20;32277:13;-1:-1:-1;;;;;32305:16:0;;32301:48;;32330:19;;;;;;;;;;;;;;32301:48;32364:13;32360:44;;32386:18;;;;;;;;;;;;;;32360:44;-1:-1:-1;;;;;32755:16:0;;;;;;:12;:16;;;;;;;;:44;;32814:49;;;32755:44;;;;;;;;32814:49;;;;-1:-1:-1;;32755:44:0;;;;;;32814:49;;;;;;;;;;;;;;;;32880:25;;;:11;:25;;;;;;:35;;32930:66;;;;;;32980:15;32930:66;;;;;;;;;;32880:25;33077:23;;;33121:4;:23;;;;-1:-1:-1;;;;;;33129:13:0;;3652:19;:23;;33129:15;33117:641;;;33165:314;33196:38;;33221:12;;-1:-1:-1;;;;;33196:38:0;;;33213:1;;33196:38;;33213:1;;33196:38;33262:69;33301:1;33305:2;33309:14;;;;;;33325:5;33262:30;:69::i;:::-;33257:174;;33367:40;;;;;;;;;;;;;;33257:174;33474:3;33458:12;:19;;33165:314;;33560:12;33543:13;;:29;33539:43;;33574:8;;;33539:43;33117:641;;;33623:120;33654:40;;33679:14;;;;;-1:-1:-1;;;;;33654:40:0;;;33671:1;;33654:40;;33671:1;;33654:40;33738:3;33722:12;:19;;33623:120;;33117:641;-1:-1:-1;33772:13:0;:28;33822:60;30420:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:1;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:1;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:835::-;3163:4;3192:3;3222:2;3211:9;3204:21;3242:45;3283:2;3272:9;3268:18;3260:6;3242:45;:::i;:::-;3318:2;3303:18;;3296:34;;;;-1:-1:-1;;3361:2:1;3346:18;;3339:34;;;;3404:2;3389:18;;3382:34;;;;3447:3;3432:19;;3425:35;;;;3491:3;3476:19;;3469:35;;;;3535:3;3520:19;;3513:35;3592:14;3585:22;3579:3;3564:19;;3557:51;3652:14;3645:22;3639:3;3624:19;;;3617:51;3234:53;2839:835;-1:-1:-1;2839:835:1:o;3679:184::-;-1:-1:-1;;;3728:1:1;3721:88;3828:4;3825:1;3818:15;3852:4;3849:1;3842:15;3868:691;3933:5;3963:18;4004:2;3996:6;3993:14;3990:40;;;4010:18;;:::i;:::-;4144:2;4138:9;4210:2;4198:15;;-1:-1:-1;;4194:24:1;;;4220:2;4190:33;4186:42;4174:55;;;4244:18;;;4264:22;;;4241:46;4238:72;;;4290:18;;:::i;:::-;4330:10;4326:2;4319:22;4359:6;4350:15;;4389:6;4381;4374:22;4429:3;4420:6;4415:3;4411:16;4408:25;4405:45;;;4446:1;4443;4436:12;4405:45;4496:6;4491:3;4484:4;4476:6;4472:17;4459:44;4551:1;4544:4;4535:6;4527;4523:19;4519:30;4512:41;;;;3868:691;;;;;:::o;4564:451::-;4633:6;4686:2;4674:9;4665:7;4661:23;4657:32;4654:52;;;4702:1;4699;4692:12;4654:52;4742:9;4729:23;4775:18;4767:6;4764:30;4761:50;;;4807:1;4804;4797:12;4761:50;4830:22;;4883:4;4875:13;;4871:27;-1:-1:-1;4861:55:1;;4912:1;4909;4902:12;4861:55;4935:74;5001:7;4996:2;4983:16;4978:2;4974;4970:11;4935:74;:::i;5020:186::-;5079:6;5132:2;5120:9;5111:7;5107:23;5103:32;5100:52;;;5148:1;5145;5138:12;5100:52;5171:29;5190:9;5171:29;:::i;5211:160::-;5276:20;;5332:13;;5325:21;5315:32;;5305:60;;5361:1;5358;5351:12;5376:254;5441:6;5449;5502:2;5490:9;5481:7;5477:23;5473:32;5470:52;;;5518:1;5515;5508:12;5470:52;5541:29;5560:9;5541:29;:::i;:::-;5531:39;;5589:35;5620:2;5609:9;5605:18;5589:35;:::i;:::-;5579:45;;5376:254;;;;;:::o;5635:180::-;5691:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:52;;;5760:1;5757;5750:12;5712:52;5783:26;5799:9;5783:26;:::i;5820:667::-;5915:6;5923;5931;5939;5992:3;5980:9;5971:7;5967:23;5963:33;5960:53;;;6009:1;6006;5999:12;5960:53;6032:29;6051:9;6032:29;:::i;:::-;6022:39;;6080:38;6114:2;6103:9;6099:18;6080:38;:::i;:::-;6070:48;;6165:2;6154:9;6150:18;6137:32;6127:42;;6220:2;6209:9;6205:18;6192:32;6247:18;6239:6;6236:30;6233:50;;;6279:1;6276;6269:12;6233:50;6302:22;;6355:4;6347:13;;6343:27;-1:-1:-1;6333:55:1;;6384:1;6381;6374:12;6333:55;6407:74;6473:7;6468:2;6455:16;6450:2;6446;6442:11;6407:74;:::i;:::-;6397:84;;;5820:667;;;;;;;:::o;6492:254::-;6560:6;6568;6621:2;6609:9;6600:7;6596:23;6592:32;6589:52;;;6637:1;6634;6627:12;6589:52;6673:9;6660:23;6650:33;;6702:38;6736:2;6725:9;6721:18;6702:38;:::i;6751:260::-;6819:6;6827;6880:2;6868:9;6859:7;6855:23;6851:32;6848:52;;;6896:1;6893;6886:12;6848:52;6919:29;6938:9;6919:29;:::i;:::-;6909:39;;6967:38;7001:2;6990:9;6986:18;6967:38;:::i;7016:437::-;7095:1;7091:12;;;;7138;;;7159:61;;7213:4;7205:6;7201:17;7191:27;;7159:61;7266:2;7258:6;7255:14;7235:18;7232:38;7229:218;;;-1:-1:-1;;;7300:1:1;7293:88;7404:4;7401:1;7394:15;7432:4;7429:1;7422:15;7229:218;;7016:437;;;:::o;8523:184::-;-1:-1:-1;;;8572:1:1;8565:88;8672:4;8669:1;8662:15;8696:4;8693:1;8686:15;8712:228;8752:7;8878:1;-1:-1:-1;;8806:74:1;8803:1;8800:81;8795:1;8788:9;8781:17;8777:105;8774:131;;;8885:18;;:::i;:::-;-1:-1:-1;8925:9:1;;8712:228::o;9701:128::-;9741:3;9772:1;9768:6;9765:1;9762:13;9759:39;;;9778:18;;:::i;:::-;-1:-1:-1;9814:9:1;;9701:128::o;10540:125::-;10580:4;10608:1;10605;10602:8;10599:34;;;10613:18;;:::i;:::-;-1:-1:-1;10650:9:1;;10540:125::o;10670:470::-;10849:3;10887:6;10881:13;10903:53;10949:6;10944:3;10937:4;10929:6;10925:17;10903:53;:::i;:::-;11019:13;;10978:16;;;;11041:57;11019:13;10978:16;11075:4;11063:17;;11041:57;:::i;:::-;11114:20;;10670:470;-1:-1:-1;;;;10670:470:1:o;11955:512::-;12149:4;-1:-1:-1;;;;;12259:2:1;12251:6;12247:15;12236:9;12229:34;12311:2;12303:6;12299:15;12294:2;12283:9;12279:18;12272:43;;12351:6;12346:2;12335:9;12331:18;12324:34;12394:3;12389:2;12378:9;12374:18;12367:31;12415:46;12456:3;12445:9;12441:19;12433:6;12415:46;:::i;:::-;12407:54;11955:512;-1:-1:-1;;;;;;11955:512:1:o;12472:249::-;12541:6;12594:2;12582:9;12573:7;12569:23;12565:32;12562:52;;;12610:1;12607;12600:12;12562:52;12642:9;12636:16;12661:30;12685:5;12661:30;:::i;12726:195::-;12765:3;-1:-1:-1;;12789:5:1;12786:77;12783:103;;;12866:18;;:::i;:::-;-1:-1:-1;12913:1:1;12902:13;;12726:195::o;12926:184::-;-1:-1:-1;;;12975:1:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13115:120;13155:1;13181;13171:35;;13186:18;;:::i;:::-;-1:-1:-1;13220:9:1;;13115:120::o;13240:112::-;13272:1;13298;13288:35;;13303:18;;:::i;:::-;-1:-1:-1;13337:9:1;;13240:112::o;13357:184::-;-1:-1:-1;;;13406:1:1;13399:88;13506:4;13503:1;13496:15;13530:4;13527:1;13520:15
Swarm Source
ipfs://f52c30fe6344c8f89d4a042dda267977764941030e06d129ec7cdaac49273180
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.