ERC-721
Overview
Max Total Supply
129 FLGEN
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 FLGENLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FloydiesGenerative
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-15 */ // File: @rarible/royalties/contracts/LibRoyaltiesV2.sol pragma solidity ^0.8.0; library LibRoyaltiesV2 { /* * bytes4(keccak256('getRoyalties(LibAsset.AssetType)')) == 0x44c74bcc */ bytes4 constant _INTERFACE_ID_ROYALTIES = 0x44c74bcc; } // File: @rarible/royalties/contracts/LibPart.sol pragma solidity ^0.8.0; library LibPart { bytes32 public constant TYPE_HASH = keccak256("Part(address account,uint96 value)"); struct Part { address payable account; uint96 value; } function hash(Part memory part) internal pure returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, part.account, part.value)); } } // File: @rarible/royalties/contracts/RoyaltiesV2.sol pragma solidity ^0.8.0; interface RoyaltiesV2 { event RoyaltiesSet(uint256 tokenId, LibPart.Part[] royalties); function getRaribleV2Royalties(uint256 id) external view returns (LibPart.Part[] memory); } // File: @rarible/royalties/contracts/impl/AbstractRoyalties.sol pragma solidity ^0.8.0; abstract contract AbstractRoyalties { mapping (uint256 => LibPart.Part[]) public royalties; function _saveRoyalties(uint256 _id, LibPart.Part[] memory _royalties) internal { for (uint i = 0; i < _royalties.length; i++) { require(_royalties[i].account != address(0x0), "Recipient should be present"); require(_royalties[i].value != 0, "Royalty value should be positive"); royalties[_id].push(_royalties[i]); } _onRoyaltiesSet(_id, _royalties); } function _updateAccount(uint256 _id, address _from, address _to) internal { uint length = royalties[_id].length; for(uint i = 0; i < length; i++) { if (royalties[_id][i].account == _from) { royalties[_id][i].account = payable(address(uint160(_to))); } } } function _onRoyaltiesSet(uint256 _id, LibPart.Part[] memory _royalties) virtual internal; } // File: @rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol pragma solidity ^0.8.0; contract RoyaltiesV2Impl is AbstractRoyalties, RoyaltiesV2 { function getRaribleV2Royalties(uint256 id) override external view returns (LibPart.Part[] memory) { return royalties[id]; } function _onRoyaltiesSet(uint256 _id, LibPart.Part[] memory _royalties) override internal { emit RoyaltiesSet(_id, _royalties); } } // File: @openzeppelin/[email protected]/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/[email protected]/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/[email protected]/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: @openzeppelin/[email protected]/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: @openzeppelin/[email protected]/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/[email protected]/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/[email protected]/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contract-064c192eb5.sol pragma solidity ^0.8.2; contract FloydiesGenerative is ERC721, ERC721Enumerable, Pausable, Ownable, RoyaltiesV2Impl{ using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; constructor() ERC721("Floydies - Generative", "FLGEN") {} function _baseURI() internal pure override returns (string memory) { return "ipfs://QmSYuxsBNdRk9ssiRomyNADw6pfdn4a6dXLCyN3Mhsx2P1/"; } function mint(uint256 numberOfTokens) public payable { uint256 supply = totalSupply(); uint256 tokencount = supply; require(numberOfTokens < 11, "You can mint a maximum of 10" ); require((supply + numberOfTokens) < 5000, "Your order exceeds the maximum supply of 5,000 Floydies!"); require( msg.value >= 0.006 ether * numberOfTokens, "Not enough ETH paid, make sure to pay 0.006" ); LibPart.Part[] memory _royalties = new LibPart.Part[](1); _royalties[0].value = 1000; _royalties[0].account = payable(0x6088E23001ADEB5219Cf396bf7A7344211d1b21A); for(uint256 i; i < numberOfTokens; i++){ _saveRoyalties(tokencount + i, _royalties); _safeMint( msg.sender, supply + i ); } } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function withdraw(address payable recipient) public onlyOwner { uint256 balance = address(this).balance; recipient.transfer(balance); } // The following functions are overrides required by Solidity. // Royalties functions function setRoyalties(uint _tokenId, address payable _royaltiesReceipientAddress, uint96 _percentageBasisPoints) public onlyOwner { LibPart.Part[] memory _royalties = new LibPart.Part[](1); _royalties[0].value = _percentageBasisPoints; _royalties[0].account = _royaltiesReceipientAddress; _saveRoyalties(_tokenId, _royalties); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { if(interfaceId == LibRoyaltiesV2._INTERFACE_ID_ROYALTIES) { return true; } if(interfaceId == _INTERFACE_ID_ERC2981) { return true; } return super.supportsInterface(interfaceId); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) { LibPart.Part[] memory _royalties = royalties[_tokenId]; if(_royalties.length > 0) { return (_royalties[0].account, (_salePrice * _royalties[0].value)/10000); } return (address(0), 0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"indexed":false,"internalType":"struct LibPart.Part[]","name":"royalties","type":"tuple[]"}],"name":"RoyaltiesSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getRaribleV2Royalties","outputs":[{"components":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"internalType":"struct LibPart.Part[]","name":"","type":"tuple[]"}],"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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"royalties","outputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint96","name":"value","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address payable","name":"_royaltiesReceipientAddress","type":"address"},{"internalType":"uint96","name":"_percentageBasisPoints","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601581527f466c6f7964696573202d2047656e657261746976650000000000000000000000602080830191825283518085019094526005845264232623a2a760d91b908401528151919291620000749160009162000102565b5080516200008a90600190602084019062000102565b5050600a805460ff1916905550620000a233620000a8565b620001e5565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011090620001a8565b90600052602060002090601f0160209004810192826200013457600085556200017f565b82601f106200014f57805160ff19168380011785556200017f565b828001600101855582156200017f579182015b828111156200017f57825182559160200191906001019062000162565b506200018d92915062000191565b5090565b5b808211156200018d576000815560010162000192565b600181811c90821680620001bd57607f821691505b60208210811415620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b61275680620001f56000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104f4578063cad96cca14610514578063e985e9c514610541578063f2fde38b1461058a57600080fd5b8063a0712d68146104a1578063a22cb465146104b4578063b88d4fde146104d457600080fd5b80638456cb59116100c65780638456cb591461040d5780638924af74146104225780638da5cb5b1461046957806395d89b411461048c57600080fd5b80636352211e146103b857806370a08231146103d8578063715018a6146103f857600080fd5b80632a55205a1161015957806342842e0e1161013357806342842e0e146103405780634f6ccce71461036057806351cff8d9146103805780635c975abb146103a057600080fd5b80632a55205a146102cc5780632f745c591461030b5780633f4ba83a1461032b57600080fd5b8063095ea7b311610195578063095ea7b31461024b578063143094db1461026d57806318160ddd1461028d57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461228f565b6105aa565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105fd565b6040516101e89190612455565b34801561021f57600080fd5b5061023361022e3660046122c9565b61068f565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004612263565b610729565b005b34801561027957600080fd5b5061026b6102883660046122e2565b61083f565b34801561029957600080fd5b506008545b6040519081526020016101e8565b3480156102b857600080fd5b5061026b6102c736600461210f565b610923565b3480156102d857600080fd5b506102ec6102e7366004612330565b610954565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561031757600080fd5b5061029e610326366004612263565b610a5a565b34801561033757600080fd5b5061026b610af0565b34801561034c57600080fd5b5061026b61035b36600461210f565b610b2a565b34801561036c57600080fd5b5061029e61037b3660046122c9565b610b45565b34801561038c57600080fd5b5061026b61039b3660046120b9565b610bd8565b3480156103ac57600080fd5b50600a5460ff166101dc565b3480156103c457600080fd5b506102336103d33660046122c9565b610c40565b3480156103e457600080fd5b5061029e6103f33660046120b9565b610cb7565b34801561040457600080fd5b5061026b610d3e565b34801561041957600080fd5b5061026b610d78565b34801561042e57600080fd5b5061044261043d366004612330565b610db0565b604080516001600160a01b0390931683526001600160601b039091166020830152016101e8565b34801561047557600080fd5b50600a5461010090046001600160a01b0316610233565b34801561049857600080fd5b50610206610df9565b61026b6104af3660046122c9565b610e08565b3480156104c057600080fd5b5061026b6104cf366004612230565b61105e565b3480156104e057600080fd5b5061026b6104ef366004612150565b61106d565b34801561050057600080fd5b5061020661050f3660046122c9565b61109f565b34801561052057600080fd5b5061053461052f3660046122c9565b61117a565b6040516101e89190612442565b34801561054d57600080fd5b506101dc61055c3660046120d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059657600080fd5b5061026b6105a53660046120b9565b611209565b60006001600160e01b03198216631131d2f360e21b14156105cd57506001919050565b6001600160e01b0319821663152a902d60e11b14156105ee57506001919050565b6105f7826112aa565b92915050565b60606000805461060c906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610638906125e7565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073482610c40565b9050806001600160a01b0316836001600160a01b031614156107a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610704565b336001600160a01b03821614806107be57506107be813361055c565b6108305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610704565b61083a83836112cf565b505050565b600a546001600160a01b0361010090910416331461086f5760405162461bcd60e51b8152600401610704906124ba565b604080516001808252818301909252600091816020015b604080518082019091526000808252602082015281526020019060019003908161088657905050905081816000815181106108c3576108c3612693565b6020026020010151602001906001600160601b031690816001600160601b03168152505082816000815181106108fb576108fb612693565b60209081029190910101516001600160a01b03909116905261091d848261133d565b50505050565b61092d33826114c1565b6109495760405162461bcd60e51b8152600401610704906124ef565b61083a8383836115b8565b6000828152600b60209081526040808320805482518185028101850190935280835284938493929190849084015b828210156109d157600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610982565b505050509050600081511115610a4a57806000815181106109f4576109f4612693565b60200260200101516000015161271082600081518110610a1657610a16612693565b6020026020010151602001516001600160601b031686610a369190612585565b610a409190612571565b9250925050610a53565b60008092509250505b9250929050565b6000610a6583610cb7565b8210610ac75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610704565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610b205760405162461bcd60e51b8152600401610704906124ba565b610b28611763565b565b61083a8383836040518060200160405280600081525061106d565b6000610b5060085490565b8210610bb35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610704565b60088281548110610bc657610bc6612693565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610c085760405162461bcd60e51b8152600401610704906124ba565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561083a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806105f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610704565b60006001600160a01b038216610d225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610704565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610d6e5760405162461bcd60e51b8152600401610704906124ba565b610b2860006117f6565b600a546001600160a01b03610100909104163314610da85760405162461bcd60e51b8152600401610704906124ba565b610b28611850565b600b6020528160005260406000208181548110610dcc57600080fd5b6000918252602090912001546001600160a01b0381169250600160a01b90046001600160601b0316905082565b60606001805461060c906125e7565b6000610e1360085490565b905080600b8310610e665760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f66203130000000006044820152606401610704565b611388610e738484612559565b10610ee65760405162461bcd60e51b815260206004820152603860248201527f596f7572206f72646572206578636565647320746865206d6178696d756d207360448201527f7570706c79206f6620352c30303020466c6f79646965732100000000000000006064820152608401610704565b610ef783661550f7dca70000612585565b341015610f5a5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f7567682045544820706169642c206d616b652073757265207460448201526a37903830bc90181718181b60a91b6064820152608401610704565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610f715790505090506103e881600081518110610fb057610fb0612693565b6020026020010151602001906001600160601b031690816001600160601b031681525050736088e23001adeb5219cf396bf7a7344211d1b21a81600081518110610ffc57610ffc612693565b60209081029190910101516001600160a01b03909116905260005b848110156110575761103261102c8285612559565b8361133d565b611045336110408387612559565b6118cb565b8061104f81612622565b915050611017565b5050505050565b6110693383836118e5565b5050565b61107733836114c1565b6110935760405162461bcd60e51b8152600401610704906124ef565b61091d848484846119b4565b6000818152600260205260409020546060906001600160a01b031661111e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610704565b60006111286119e7565b905060008151116111485760405180602001604052806000815250611173565b8061115284611a07565b6040516020016111639291906123d6565b6040516020818303038152906040525b9392505050565b6060600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156111fe57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016111af565b505050509050919050565b600a546001600160a01b036101009091041633146112395760405162461bcd60e51b8152600401610704906124ba565b6001600160a01b03811661129e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b6112a7816117f6565b50565b60006001600160e01b0319821663780e9d6360e01b14806105f757506105f782611b05565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061130482610c40565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b81518110156114b65760006001600160a01b031682828151811061136657611366612693565b6020026020010151600001516001600160a01b031614156113c95760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e7400000000006044820152606401610704565b8181815181106113db576113db612693565b6020026020010151602001516001600160601b0316600014156114405760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f7369746976656044820152606401610704565b6000838152600b60205260409020825183908390811061146257611462612693565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b0390911617910155806114ae81612622565b915050611340565b506110698282611b55565b6000818152600260205260408120546001600160a01b031661153a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b600061154583610c40565b9050806001600160a01b0316846001600160a01b031614806115805750836001600160a01b03166115758461068f565b6001600160a01b0316145b806115b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cb82610c40565b6001600160a01b0316146116335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610704565b6001600160a01b0382166116955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b6116a0838383611b92565b6116ab6000826112cf565b6001600160a01b03831660009081526003602052604081208054600192906116d49084906125a4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611702908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166117ac5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610704565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156118965760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610704565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117d93390565b611069828260405180602001604052806000815250611be3565b816001600160a01b0316836001600160a01b031614156119475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610704565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119bf8484846115b8565b6119cb84848484611c16565b61091d5760405162461bcd60e51b815260040161070490612468565b60606040518060600160405280603681526020016126eb60369139905090565b606081611a2b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a555780611a3f81612622565b9150611a4e9050600a83612571565b9150611a2f565b60008167ffffffffffffffff811115611a7057611a706126a9565b6040519080825280601f01601f191660200182016040528015611a9a576020820181803683370190505b5090505b84156115b057611aaf6001836125a4565b9150611abc600a8661263d565b611ac7906030612559565b60f81b818381518110611adc57611adc612693565b60200101906001600160f81b031916908160001a905350611afe600a86612571565b9450611a9e565b60006001600160e01b031982166380ac58cd60e01b1480611b3657506001600160e01b03198216635b5e139f60e01b145b806105f757506301ffc9a760e01b6001600160e01b03198316146105f7565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051611b86929190612540565b60405180910390a15050565b600a5460ff1615611bd85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610704565b61083a838383611d23565b611bed8383611ddb565b611bfa6000848484611c16565b61083a5760405162461bcd60e51b815260040161070490612468565b60006001600160a01b0384163b15611d1857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5a903390899088908890600401612405565b602060405180830381600087803b158015611c7457600080fd5b505af1925050508015611ca4575060408051601f3d908101601f19168201909252611ca1918101906122ac565b60015b611cfe573d808015611cd2576040519150601f19603f3d011682016040523d82523d6000602084013e611cd7565b606091505b508051611cf65760405162461bcd60e51b815260040161070490612468565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b0565b506001949350505050565b6001600160a01b038316611d7e57611d7981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da1565b816001600160a01b0316836001600160a01b031614611da157611da18382611f29565b6001600160a01b038216611db85761083a81611fc6565b826001600160a01b0316826001600160a01b03161461083a5761083a8282612075565b6001600160a01b038216611e315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610704565b6000818152600260205260409020546001600160a01b031615611e965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610704565b611ea260008383611b92565b6001600160a01b0382166000908152600360205260408120805460019290611ecb908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3684610cb7565b611f4091906125a4565b600083815260076020526040902054909150808214611f93576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fd8906001906125a4565b6000838152600960205260408120546008805493945090928490811061200057612000612693565b90600052602060002001549050806008838154811061202157612021612693565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120595761205961267d565b6001900381819060005260206000200160009055905550505050565b600061208083610cb7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000602082840312156120cb57600080fd5b8135611173816126bf565b600080604083850312156120e957600080fd5b82356120f4816126bf565b91506020830135612104816126bf565b809150509250929050565b60008060006060848603121561212457600080fd5b833561212f816126bf565b9250602084013561213f816126bf565b929592945050506040919091013590565b6000806000806080858703121561216657600080fd5b8435612171816126bf565b93506020850135612181816126bf565b925060408501359150606085013567ffffffffffffffff808211156121a557600080fd5b818701915087601f8301126121b957600080fd5b8135818111156121cb576121cb6126a9565b604051601f8201601f19908116603f011681019083821181831017156121f3576121f36126a9565b816040528281528a602084870101111561220c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561224357600080fd5b823561224e816126bf565b91506020830135801515811461210457600080fd5b6000806040838503121561227657600080fd5b8235612281816126bf565b946020939093013593505050565b6000602082840312156122a157600080fd5b8135611173816126d4565b6000602082840312156122be57600080fd5b8151611173816126d4565b6000602082840312156122db57600080fd5b5035919050565b6000806000606084860312156122f757600080fd5b833592506020840135612309816126bf565b915060408401356001600160601b038116811461232557600080fd5b809150509250925092565b6000806040838503121561234357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561239f57815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101612366565b509495945050505050565b600081518084526123c28160208601602086016125bb565b601f01601f19169290920160200192915050565b600083516123e88184602088016125bb565b8351908301906123fc8183602088016125bb565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612438908301846123aa565b9695505050505050565b6020815260006111736020830184612352565b60208152600061117360208301846123aa565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8281526040602082015260006115b06040830184612352565b6000821982111561256c5761256c612651565b500190565b60008261258057612580612667565b500490565b600081600019048311821515161561259f5761259f612651565b500290565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b8381111561091d5750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112a757600080fd5b6001600160e01b0319811681146112a757600080fdfe697066733a2f2f516d5359757873424e64526b39737369526f6d794e414477367066646e34613664584c43794e334d6873783250312fa26469706673582212207ff9059f1517cc3a9131967ae0aed022603a8d823ae9a9f716ca16ab0073a88264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104f4578063cad96cca14610514578063e985e9c514610541578063f2fde38b1461058a57600080fd5b8063a0712d68146104a1578063a22cb465146104b4578063b88d4fde146104d457600080fd5b80638456cb59116100c65780638456cb591461040d5780638924af74146104225780638da5cb5b1461046957806395d89b411461048c57600080fd5b80636352211e146103b857806370a08231146103d8578063715018a6146103f857600080fd5b80632a55205a1161015957806342842e0e1161013357806342842e0e146103405780634f6ccce71461036057806351cff8d9146103805780635c975abb146103a057600080fd5b80632a55205a146102cc5780632f745c591461030b5780633f4ba83a1461032b57600080fd5b8063095ea7b311610195578063095ea7b31461024b578063143094db1461026d57806318160ddd1461028d57806323b872dd146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461228f565b6105aa565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105fd565b6040516101e89190612455565b34801561021f57600080fd5b5061023361022e3660046122c9565b61068f565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004612263565b610729565b005b34801561027957600080fd5b5061026b6102883660046122e2565b61083f565b34801561029957600080fd5b506008545b6040519081526020016101e8565b3480156102b857600080fd5b5061026b6102c736600461210f565b610923565b3480156102d857600080fd5b506102ec6102e7366004612330565b610954565b604080516001600160a01b0390931683526020830191909152016101e8565b34801561031757600080fd5b5061029e610326366004612263565b610a5a565b34801561033757600080fd5b5061026b610af0565b34801561034c57600080fd5b5061026b61035b36600461210f565b610b2a565b34801561036c57600080fd5b5061029e61037b3660046122c9565b610b45565b34801561038c57600080fd5b5061026b61039b3660046120b9565b610bd8565b3480156103ac57600080fd5b50600a5460ff166101dc565b3480156103c457600080fd5b506102336103d33660046122c9565b610c40565b3480156103e457600080fd5b5061029e6103f33660046120b9565b610cb7565b34801561040457600080fd5b5061026b610d3e565b34801561041957600080fd5b5061026b610d78565b34801561042e57600080fd5b5061044261043d366004612330565b610db0565b604080516001600160a01b0390931683526001600160601b039091166020830152016101e8565b34801561047557600080fd5b50600a5461010090046001600160a01b0316610233565b34801561049857600080fd5b50610206610df9565b61026b6104af3660046122c9565b610e08565b3480156104c057600080fd5b5061026b6104cf366004612230565b61105e565b3480156104e057600080fd5b5061026b6104ef366004612150565b61106d565b34801561050057600080fd5b5061020661050f3660046122c9565b61109f565b34801561052057600080fd5b5061053461052f3660046122c9565b61117a565b6040516101e89190612442565b34801561054d57600080fd5b506101dc61055c3660046120d6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059657600080fd5b5061026b6105a53660046120b9565b611209565b60006001600160e01b03198216631131d2f360e21b14156105cd57506001919050565b6001600160e01b0319821663152a902d60e11b14156105ee57506001919050565b6105f7826112aa565b92915050565b60606000805461060c906125e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610638906125e7565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661070d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061073482610c40565b9050806001600160a01b0316836001600160a01b031614156107a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610704565b336001600160a01b03821614806107be57506107be813361055c565b6108305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610704565b61083a83836112cf565b505050565b600a546001600160a01b0361010090910416331461086f5760405162461bcd60e51b8152600401610704906124ba565b604080516001808252818301909252600091816020015b604080518082019091526000808252602082015281526020019060019003908161088657905050905081816000815181106108c3576108c3612693565b6020026020010151602001906001600160601b031690816001600160601b03168152505082816000815181106108fb576108fb612693565b60209081029190910101516001600160a01b03909116905261091d848261133d565b50505050565b61092d33826114c1565b6109495760405162461bcd60e51b8152600401610704906124ef565b61083a8383836115b8565b6000828152600b60209081526040808320805482518185028101850190935280835284938493929190849084015b828210156109d157600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b031681830152825260019092019101610982565b505050509050600081511115610a4a57806000815181106109f4576109f4612693565b60200260200101516000015161271082600081518110610a1657610a16612693565b6020026020010151602001516001600160601b031686610a369190612585565b610a409190612571565b9250925050610a53565b60008092509250505b9250929050565b6000610a6583610cb7565b8210610ac75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610704565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03610100909104163314610b205760405162461bcd60e51b8152600401610704906124ba565b610b28611763565b565b61083a8383836040518060200160405280600081525061106d565b6000610b5060085490565b8210610bb35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610704565b60088281548110610bc657610bc6612693565b90600052602060002001549050919050565b600a546001600160a01b03610100909104163314610c085760405162461bcd60e51b8152600401610704906124ba565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561083a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806105f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610704565b60006001600160a01b038216610d225760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610704565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03610100909104163314610d6e5760405162461bcd60e51b8152600401610704906124ba565b610b2860006117f6565b600a546001600160a01b03610100909104163314610da85760405162461bcd60e51b8152600401610704906124ba565b610b28611850565b600b6020528160005260406000208181548110610dcc57600080fd5b6000918252602090912001546001600160a01b0381169250600160a01b90046001600160601b0316905082565b60606001805461060c906125e7565b6000610e1360085490565b905080600b8310610e665760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e206d696e742061206d6178696d756d206f66203130000000006044820152606401610704565b611388610e738484612559565b10610ee65760405162461bcd60e51b815260206004820152603860248201527f596f7572206f72646572206578636565647320746865206d6178696d756d207360448201527f7570706c79206f6620352c30303020466c6f79646965732100000000000000006064820152608401610704565b610ef783661550f7dca70000612585565b341015610f5a5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f7567682045544820706169642c206d616b652073757265207460448201526a37903830bc90181718181b60a91b6064820152608401610704565b604080516001808252818301909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081610f715790505090506103e881600081518110610fb057610fb0612693565b6020026020010151602001906001600160601b031690816001600160601b031681525050736088e23001adeb5219cf396bf7a7344211d1b21a81600081518110610ffc57610ffc612693565b60209081029190910101516001600160a01b03909116905260005b848110156110575761103261102c8285612559565b8361133d565b611045336110408387612559565b6118cb565b8061104f81612622565b915050611017565b5050505050565b6110693383836118e5565b5050565b61107733836114c1565b6110935760405162461bcd60e51b8152600401610704906124ef565b61091d848484846119b4565b6000818152600260205260409020546060906001600160a01b031661111e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610704565b60006111286119e7565b905060008151116111485760405180602001604052806000815250611173565b8061115284611a07565b6040516020016111639291906123d6565b6040516020818303038152906040525b9392505050565b6060600b6000838152602001908152602001600020805480602002602001604051908101604052809291908181526020016000905b828210156111fe57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b90046001600160601b0316818301528252600190920191016111af565b505050509050919050565b600a546001600160a01b036101009091041633146112395760405162461bcd60e51b8152600401610704906124ba565b6001600160a01b03811661129e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b6112a7816117f6565b50565b60006001600160e01b0319821663780e9d6360e01b14806105f757506105f782611b05565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061130482610c40565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60005b81518110156114b65760006001600160a01b031682828151811061136657611366612693565b6020026020010151600001516001600160a01b031614156113c95760405162461bcd60e51b815260206004820152601b60248201527f526563697069656e742073686f756c642062652070726573656e7400000000006044820152606401610704565b8181815181106113db576113db612693565b6020026020010151602001516001600160601b0316600014156114405760405162461bcd60e51b815260206004820181905260248201527f526f79616c74792076616c75652073686f756c6420626520706f7369746976656044820152606401610704565b6000838152600b60205260409020825183908390811061146257611462612693565b6020908102919091018101518254600181018455600093845292829020815191909201516001600160601b0316600160a01b026001600160a01b0390911617910155806114ae81612622565b915050611340565b506110698282611b55565b6000818152600260205260408120546001600160a01b031661153a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b600061154583610c40565b9050806001600160a01b0316846001600160a01b031614806115805750836001600160a01b03166115758461068f565b6001600160a01b0316145b806115b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cb82610c40565b6001600160a01b0316146116335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610704565b6001600160a01b0382166116955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b6116a0838383611b92565b6116ab6000826112cf565b6001600160a01b03831660009081526003602052604081208054600192906116d49084906125a4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611702908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166117ac5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610704565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156118965760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610704565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117d93390565b611069828260405180602001604052806000815250611be3565b816001600160a01b0316836001600160a01b031614156119475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610704565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119bf8484846115b8565b6119cb84848484611c16565b61091d5760405162461bcd60e51b815260040161070490612468565b60606040518060600160405280603681526020016126eb60369139905090565b606081611a2b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a555780611a3f81612622565b9150611a4e9050600a83612571565b9150611a2f565b60008167ffffffffffffffff811115611a7057611a706126a9565b6040519080825280601f01601f191660200182016040528015611a9a576020820181803683370190505b5090505b84156115b057611aaf6001836125a4565b9150611abc600a8661263d565b611ac7906030612559565b60f81b818381518110611adc57611adc612693565b60200101906001600160f81b031916908160001a905350611afe600a86612571565b9450611a9e565b60006001600160e01b031982166380ac58cd60e01b1480611b3657506001600160e01b03198216635b5e139f60e01b145b806105f757506301ffc9a760e01b6001600160e01b03198316146105f7565b7f3fa96d7b6bcbfe71ef171666d84db3cf52fa2d1c8afdb1cc8e486177f208b7df8282604051611b86929190612540565b60405180910390a15050565b600a5460ff1615611bd85760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610704565b61083a838383611d23565b611bed8383611ddb565b611bfa6000848484611c16565b61083a5760405162461bcd60e51b815260040161070490612468565b60006001600160a01b0384163b15611d1857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5a903390899088908890600401612405565b602060405180830381600087803b158015611c7457600080fd5b505af1925050508015611ca4575060408051601f3d908101601f19168201909252611ca1918101906122ac565b60015b611cfe573d808015611cd2576040519150601f19603f3d011682016040523d82523d6000602084013e611cd7565b606091505b508051611cf65760405162461bcd60e51b815260040161070490612468565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b0565b506001949350505050565b6001600160a01b038316611d7e57611d7981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611da1565b816001600160a01b0316836001600160a01b031614611da157611da18382611f29565b6001600160a01b038216611db85761083a81611fc6565b826001600160a01b0316826001600160a01b03161461083a5761083a8282612075565b6001600160a01b038216611e315760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610704565b6000818152600260205260409020546001600160a01b031615611e965760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610704565b611ea260008383611b92565b6001600160a01b0382166000908152600360205260408120805460019290611ecb908490612559565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611f3684610cb7565b611f4091906125a4565b600083815260076020526040902054909150808214611f93576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fd8906001906125a4565b6000838152600960205260408120546008805493945090928490811061200057612000612693565b90600052602060002001549050806008838154811061202157612021612693565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806120595761205961267d565b6001900381819060005260206000200160009055905550505050565b600061208083610cb7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000602082840312156120cb57600080fd5b8135611173816126bf565b600080604083850312156120e957600080fd5b82356120f4816126bf565b91506020830135612104816126bf565b809150509250929050565b60008060006060848603121561212457600080fd5b833561212f816126bf565b9250602084013561213f816126bf565b929592945050506040919091013590565b6000806000806080858703121561216657600080fd5b8435612171816126bf565b93506020850135612181816126bf565b925060408501359150606085013567ffffffffffffffff808211156121a557600080fd5b818701915087601f8301126121b957600080fd5b8135818111156121cb576121cb6126a9565b604051601f8201601f19908116603f011681019083821181831017156121f3576121f36126a9565b816040528281528a602084870101111561220c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561224357600080fd5b823561224e816126bf565b91506020830135801515811461210457600080fd5b6000806040838503121561227657600080fd5b8235612281816126bf565b946020939093013593505050565b6000602082840312156122a157600080fd5b8135611173816126d4565b6000602082840312156122be57600080fd5b8151611173816126d4565b6000602082840312156122db57600080fd5b5035919050565b6000806000606084860312156122f757600080fd5b833592506020840135612309816126bf565b915060408401356001600160601b038116811461232557600080fd5b809150509250925092565b6000806040838503121561234357600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561239f57815180516001600160a01b031688528301516001600160601b03168388015260409096019590820190600101612366565b509495945050505050565b600081518084526123c28160208601602086016125bb565b601f01601f19169290920160200192915050565b600083516123e88184602088016125bb565b8351908301906123fc8183602088016125bb565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612438908301846123aa565b9695505050505050565b6020815260006111736020830184612352565b60208152600061117360208301846123aa565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b8281526040602082015260006115b06040830184612352565b6000821982111561256c5761256c612651565b500190565b60008261258057612580612667565b500490565b600081600019048311821515161561259f5761259f612651565b500290565b6000828210156125b6576125b6612651565b500390565b60005b838110156125d65781810151838201526020016125be565b8381111561091d5750506000910152565b600181811c908216806125fb57607f821691505b6020821081141561261c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263657612636612651565b5060010190565b60008261264c5761264c612667565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112a757600080fd5b6001600160e01b0319811681146112a757600080fdfe697066733a2f2f516d5359757873424e64526b39737369526f6d794e414477367066646e34613664584c43794e334d6873783250312fa26469706673582212207ff9059f1517cc3a9131967ae0aed022603a8d823ae9a9f716ca16ab0073a88264736f6c63430008070033
Deployed Bytecode Sourcemap
50880:3056:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53183:374;;;;;;;;;;-1:-1:-1;53183:374:0;;;;;:::i;:::-;;:::i;:::-;;;7958:14:1;;7951:22;7933:41;;7921:2;7906:18;53183:374:0;;;;;;;;32139:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33698:221::-;;;;;;;;;;-1:-1:-1;33698:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6341:32:1;;;6323:51;;6311:2;6296:18;33698:221:0;6177:203:1;33221:411:0;;;;;;;;;;-1:-1:-1;33221:411:0;;;;;:::i;:::-;;:::i;:::-;;52804:369;;;;;;;;;;-1:-1:-1;52804:369:0;;;;;:::i;:::-;;:::i;45291:113::-;;;;;;;;;;-1:-1:-1;45379:10:0;:17;45291:113;;;18167:25:1;;;18155:2;18140:18;45291:113:0;18021:177:1;34448:339:0;;;;;;;;;;-1:-1:-1;34448:339:0;;;;;:::i;:::-;;:::i;53567:366::-;;;;;;;;;;-1:-1:-1;53567:366:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7396:32:1;;;7378:51;;7460:2;7445:18;;7438:34;;;;7351:18;53567:366:0;7204:274:1;44959:256:0;;;;;;;;;;-1:-1:-1;44959:256:0;;;;;:::i;:::-;;:::i;52221:65::-;;;;;;;;;;;;;:::i;34858:185::-;;;;;;;;;;-1:-1:-1;34858:185:0;;;;;:::i;:::-;;:::i;45481:233::-;;;;;;;;;;-1:-1:-1;45481:233:0;;;;;:::i;:::-;;:::i;52531:160::-;;;;;;;;;;-1:-1:-1;52531:160:0;;;;;:::i;:::-;;:::i;10692:86::-;;;;;;;;;;-1:-1:-1;10763:7:0;;;;10692:86;;31833:239;;;;;;;;;;-1:-1:-1;31833:239:0;;;;;:::i;:::-;;:::i;31563:208::-;;;;;;;;;;-1:-1:-1;31563:208:0;;;;;:::i;:::-;;:::i;8737:103::-;;;;;;;;;;;;;:::i;52152:61::-;;;;;;;;;;;;;:::i;1134:52::-;;;;;;;;;;-1:-1:-1;1134:52:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6591:32:1;;;6573:51;;-1:-1:-1;;;;;6660:39:1;;;6655:2;6640:18;;6633:67;6546:18;1134:52:0;6385:321:1;8086:87:0;;;;;;;;;;-1:-1:-1;8159:6:0;;;;;-1:-1:-1;;;;;8159:6:0;8086:87;;32308:104;;;;;;;;;;;;;:::i;51358:788::-;;;;;;:::i;:::-;;:::i;33991:155::-;;;;;;;;;;-1:-1:-1;33991:155:0;;;;;:::i;:::-;;:::i;35114:328::-;;;;;;;;;;-1:-1:-1;35114:328:0;;;;;:::i;:::-;;:::i;32483:334::-;;;;;;;;;;-1:-1:-1;32483:334:0;;;;;:::i;:::-;;:::i;2225:137::-;;;;;;;;;;-1:-1:-1;2225:137:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34217:164::-;;;;;;;;;;-1:-1:-1;34217:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34338:25:0;;;34314:4;34338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34217:164;8995:201;;;;;;;;;;-1:-1:-1;8995:201:0;;;;;:::i;:::-;;:::i;53183:374::-;53294:4;-1:-1:-1;;;;;;53314:53:0;;-1:-1:-1;;;53314:53:0;53311:96;;;-1:-1:-1;53391:4:0;;53183:374;-1:-1:-1;53183:374:0:o;53311:96::-;-1:-1:-1;;;;;;53420:36:0;;-1:-1:-1;;;53420:36:0;53417:79;;;-1:-1:-1;53480:4:0;;53183:374;-1:-1:-1;53183:374:0:o;53417:79::-;53513:36;53537:11;53513:23;:36::i;:::-;53506:43;53183:374;-1:-1:-1;;53183:374:0:o;32139:100::-;32193:13;32226:5;32219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32139:100;:::o;33698:221::-;33774:7;37041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37041:16:0;33794:73;;;;-1:-1:-1;;;33794:73:0;;14677:2:1;33794:73:0;;;14659:21:1;14716:2;14696:18;;;14689:30;14755:34;14735:18;;;14728:62;-1:-1:-1;;;14806:18:1;;;14799:42;14858:19;;33794:73:0;;;;;;;;;-1:-1:-1;33887:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33887:24:0;;33698:221::o;33221:411::-;33302:13;33318:23;33333:7;33318:14;:23::i;:::-;33302:39;;33366:5;-1:-1:-1;;;;;33360:11:0;:2;-1:-1:-1;;;;;33360:11:0;;;33352:57;;;;-1:-1:-1;;;33352:57:0;;16277:2:1;33352:57:0;;;16259:21:1;16316:2;16296:18;;;16289:30;16355:34;16335:18;;;16328:62;-1:-1:-1;;;16406:18:1;;;16399:31;16447:19;;33352:57:0;16075:397:1;33352:57:0;6884:10;-1:-1:-1;;;;;33444:21:0;;;;:62;;-1:-1:-1;33469:37:0;33486:5;6884:10;34217:164;:::i;33469:37::-;33422:168;;;;-1:-1:-1;;;33422:168:0;;13070:2:1;33422:168:0;;;13052:21:1;13109:2;13089:18;;;13082:30;13148:34;13128:18;;;13121:62;13219:26;13199:18;;;13192:54;13263:19;;33422:168:0;12868:420:1;33422:168:0;33603:21;33612:2;33616:7;33603:8;:21::i;:::-;33291:341;33221:411;;:::o;52804:369::-;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;52980:21:::1;::::0;;52999:1:::1;52980:21:::0;;;;;::::1;::::0;;;52945:32:::1;::::0;52980:21:::1;;;;-1:-1:-1::0;;;;;;;;;;;;;;;;;52980:21:0::1;;;;;;;;;;;;;;;52945:56;;53034:22;53012:10;53023:1;53012:13;;;;;;;;:::i;:::-;;;;;;;:19;;:44;-1:-1:-1::0;;;;;53012:44:0::1;;;-1:-1:-1::0;;;;;53012:44:0::1;;;::::0;::::1;53091:27;53067:10;53078:1;53067:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;53067:51:0;;::::1;::::0;;53129:36:::1;53144:8:::0;53154:10;53129:14:::1;:36::i;:::-;52934:239;52804:369:::0;;;:::o;34448:339::-;34643:41;6884:10;34676:7;34643:18;:41::i;:::-;34635:103;;;;-1:-1:-1;;;34635:103:0;;;;;;;:::i;:::-;34751:28;34761:4;34767:2;34771:7;34751:9;:28::i;53567:366::-;53649:16;53736:19;;;:9;:19;;;;;;;;53701:54;;;;;;;;;;;;;;;;;53649:16;;;;53701:54;53736:19;53701:54;53649:16;;53701:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53701:54:0;;;;-1:-1:-1;;;53701:54:0;;-1:-1:-1;;;;;53701:54:0;;;;;;;;;;;;;;;;;;;;;;53789:1;53769:10;:17;:21;53766:125;;;53815:10;53826:1;53815:13;;;;;;;;:::i;:::-;;;;;;;:21;;;53873:5;53852:10;53863:1;53852:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;53839:32:0;:10;:32;;;;:::i;:::-;53838:40;;;;:::i;:::-;53807:72;;;;;;;53766:125;53917:1;53921;53901:22;;;;;53567:366;;;;;;:::o;44959:256::-;45056:7;45092:23;45109:5;45092:16;:23::i;:::-;45084:5;:31;45076:87;;;;-1:-1:-1;;;45076:87:0;;8760:2:1;45076:87:0;;;8742:21:1;8799:2;8779:18;;;8772:30;8838:34;8818:18;;;8811:62;-1:-1:-1;;;8889:18:1;;;8882:41;8940:19;;45076:87:0;8558:407:1;45076:87:0;-1:-1:-1;;;;;;45181:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44959:256::o;52221:65::-;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;52268:10:::1;:8;:10::i;:::-;52221:65::o:0;34858:185::-;34996:39;35013:4;35019:2;35023:7;34996:39;;;;;;;;;;;;:16;:39::i;45481:233::-;45556:7;45592:30;45379:10;:17;;45291:113;45592:30;45584:5;:38;45576:95;;;;-1:-1:-1;;;45576:95:0;;17097:2:1;45576:95:0;;;17079:21:1;17136:2;17116:18;;;17109:30;17175:34;17155:18;;;17148:62;-1:-1:-1;;;17226:18:1;;;17219:42;17278:19;;45576:95:0;16895:408:1;45576:95:0;45689:10;45700:5;45689:17;;;;;;;;:::i;:::-;;;;;;;;;45682:24;;45481:233;;;:::o;52531:160::-;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;52654:27:::1;::::0;52622:21:::1;::::0;-1:-1:-1;;;;;52654:18:0;::::1;::::0;:27;::::1;;;::::0;52622:21;;52604:15:::1;52654:27:::0;52604:15;52654:27;52622:21;52654:18;:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;31833:239:::0;31905:7;31941:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31941:16:0;31976:19;31968:73;;;;-1:-1:-1;;;31968:73:0;;13906:2:1;31968:73:0;;;13888:21:1;13945:2;13925:18;;;13918:30;13984:34;13964:18;;;13957:62;-1:-1:-1;;;14035:18:1;;;14028:39;14084:19;;31968:73:0;13704:405:1;31563:208:0;31635:7;-1:-1:-1;;;;;31663:19:0;;31655:74;;;;-1:-1:-1;;;31655:74:0;;13495:2:1;31655:74:0;;;13477:21:1;13534:2;13514:18;;;13507:30;13573:34;13553:18;;;13546:62;-1:-1:-1;;;13624:18:1;;;13617:40;13674:19;;31655:74:0;13293:406:1;31655:74:0;-1:-1:-1;;;;;;31747:16:0;;;;;:9;:16;;;;;;;31563:208::o;8737:103::-;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;8802:30:::1;8829:1;8802:18;:30::i;52152:61::-:0;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;52197:8:::1;:6;:8::i;1134:52::-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1134:52:0;;;-1:-1:-1;;;;1134:52:0;;-1:-1:-1;;;;;1134:52:0;;-1:-1:-1;1134:52:0;:::o;32308:104::-;32364:13;32397:7;32390:14;;;;;:::i;51358:788::-;51422:14;51439:13;45379:10;:17;;45291:113;51439:13;51422:30;-1:-1:-1;51422:30:0;51526:2;51509:19;;51501:61;;;;-1:-1:-1;;;51501:61:0;;17510:2:1;51501:61:0;;;17492:21:1;17549:2;17529:18;;;17522:30;17588;17568:18;;;17561:58;17636:18;;51501:61:0;17308:352:1;51501:61:0;51609:4;51582:23;51591:14;51582:6;:23;:::i;:::-;51581:32;51573:101;;;;-1:-1:-1;;;51573:101:0;;9998:2:1;51573:101:0;;;9980:21:1;10037:2;10017:18;;;10010:30;10076:34;10056:18;;;10049:62;10147:26;10127:18;;;10120:54;10191:19;;51573:101:0;9796:420:1;51573:101:0;51707:28;51721:14;51707:11;:28;:::i;:::-;51694:9;:41;;51685:99;;;;-1:-1:-1;;;51685:99:0;;12313:2:1;51685:99:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:34;12371:18;;;12364:62;-1:-1:-1;;;12442:18:1;;;12435:41;12493:19;;51685:99:0;12111:407:1;51685:99:0;51830:21;;;51849:1;51830:21;;;;;;;;;51795:32;;51830:21;;;;-1:-1:-1;;;;;;;;;;;;;;;;;51830:21:0;;;;;;;;;;;;;;;51795:56;;51884:4;51862:10;51873:1;51862:13;;;;;;;;:::i;:::-;;;;;;;:19;;:26;-1:-1:-1;;;;;51862:26:0;;;-1:-1:-1;;;;;51862:26:0;;;;;51932:42;51899:10;51910:1;51899:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;51899:76:0;;;;;:21;51986:156;52005:14;52001:1;:18;51986:156;;;52036:42;52051:14;52064:1;52051:10;:14;:::i;:::-;52067:10;52036:14;:42::i;:::-;52089:35;52100:10;52112;52121:1;52112:6;:10;:::i;:::-;52089:9;:35::i;:::-;52021:3;;;;:::i;:::-;;;;51986:156;;;;51411:735;;;51358:788;:::o;33991:155::-;34086:52;6884:10;34119:8;34129;34086:18;:52::i;:::-;33991:155;;:::o;35114:328::-;35289:41;6884:10;35322:7;35289:18;:41::i;:::-;35281:103;;;;-1:-1:-1;;;35281:103:0;;;;;;;:::i;:::-;35395:39;35409:4;35415:2;35419:7;35428:5;35395:13;:39::i;32483:334::-;37017:4;37041:16;;;:7;:16;;;;;;32556:13;;-1:-1:-1;;;;;37041:16:0;32582:76;;;;-1:-1:-1;;;32582:76:0;;15861:2:1;32582:76:0;;;15843:21:1;15900:2;15880:18;;;15873:30;15939:34;15919:18;;;15912:62;-1:-1:-1;;;15990:18:1;;;15983:45;16045:19;;32582:76:0;15659:411:1;32582:76:0;32671:21;32695:10;:8;:10::i;:::-;32671:34;;32747:1;32729:7;32723:21;:25;:86;;;;;;;;;;;;;;;;;32775:7;32784:18;:7;:16;:18::i;:::-;32758:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32723:86;32716:93;32483:334;-1:-1:-1;;;32483:334:0:o;2225:137::-;2300:21;2341:9;:13;2351:2;2341:13;;;;;;;;;;;2334:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2334:20:0;;;;-1:-1:-1;;;2334:20:0;;-1:-1:-1;;;;;2334:20:0;;;;;;;;;;;;;;;;;;;;;;2225:137;;;:::o;8995:201::-;8159:6;;-1:-1:-1;;;;;8159:6:0;;;;;6884:10;8306:23;8298:68;;;;-1:-1:-1;;;8298:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9084:22:0;::::1;9076:73;;;::::0;-1:-1:-1;;;9076:73:0;;9591:2:1;9076:73:0::1;::::0;::::1;9573:21:1::0;9630:2;9610:18;;;9603:30;9669:34;9649:18;;;9642:62;-1:-1:-1;;;9720:18:1;;;9713:36;9766:19;;9076:73:0::1;9389:402:1::0;9076:73:0::1;9160:28;9179:8;9160:18;:28::i;:::-;8995:201:::0;:::o;44651:224::-;44753:4;-1:-1:-1;;;;;;44777:50:0;;-1:-1:-1;;;44777:50:0;;:90;;;44831:36;44855:11;44831:23;:36::i;40934:174::-;41009:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41009:29:0;-1:-1:-1;;;;;41009:29:0;;;;;;;;:24;;41063:23;41009:24;41063:14;:23::i;:::-;-1:-1:-1;;;;;41054:46:0;;;;;;;;;;;40934:174;;:::o;1195:423::-;1291:6;1286:282;1307:10;:17;1303:1;:21;1286:282;;;1387:3;-1:-1:-1;;;;;1354:37:0;:10;1365:1;1354:13;;;;;;;;:::i;:::-;;;;;;;:21;;;-1:-1:-1;;;;;1354:37:0;;;1346:77;;;;-1:-1:-1;;;1346:77:0;;17867:2:1;1346:77:0;;;17849:21:1;17906:2;17886:18;;;17879:30;17945:29;17925:18;;;17918:57;17992:18;;1346:77:0;17665:351:1;1346:77:0;1446:10;1457:1;1446:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;1446:24:0;1469:1;1446:24;;1438:69;;;;-1:-1:-1;;;1438:69:0;;11952:2:1;1438:69:0;;;11934:21:1;;;11971:18;;;11964:30;12030:34;12010:18;;;12003:62;12082:18;;1438:69:0;11750:356:1;1438:69:0;1522:14;;;;:9;:14;;;;;1542:13;;:10;;1553:1;;1542:13;;;;;;:::i;:::-;;;;;;;;;;;;1522:34;;;;;;;-1:-1:-1;1522:34:0;;;;;;;;;;;;;;-1:-1:-1;;;;;1522:34:0;-1:-1:-1;;;1522:34:0;-1:-1:-1;;;;;1522:34:0;;;;;;;1326:3;;;;:::i;:::-;;;;1286:282;;;;1578:32;1594:3;1599:10;1578:15;:32::i;37246:348::-;37339:4;37041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37041:16:0;37356:73;;;;-1:-1:-1;;;37356:73:0;;11539:2:1;37356:73:0;;;11521:21:1;11578:2;11558:18;;;11551:30;11617:34;11597:18;;;11590:62;-1:-1:-1;;;11668:18:1;;;11661:42;11720:19;;37356:73:0;11337:408:1;37356:73:0;37440:13;37456:23;37471:7;37456:14;:23::i;:::-;37440:39;;37509:5;-1:-1:-1;;;;;37498:16:0;:7;-1:-1:-1;;;;;37498:16:0;;:51;;;;37542:7;-1:-1:-1;;;;;37518:31:0;:20;37530:7;37518:11;:20::i;:::-;-1:-1:-1;;;;;37518:31:0;;37498:51;:87;;;-1:-1:-1;;;;;;34338:25:0;;;34314:4;34338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37553:32;37490:96;37246:348;-1:-1:-1;;;;37246:348:0:o;40238:578::-;40397:4;-1:-1:-1;;;;;40370:31:0;:23;40385:7;40370:14;:23::i;:::-;-1:-1:-1;;;;;40370:31:0;;40362:85;;;;-1:-1:-1;;;40362:85:0;;15451:2:1;40362:85:0;;;15433:21:1;15490:2;15470:18;;;15463:30;15529:34;15509:18;;;15502:62;-1:-1:-1;;;15580:18:1;;;15573:39;15629:19;;40362:85:0;15249:405:1;40362:85:0;-1:-1:-1;;;;;40466:16:0;;40458:65;;;;-1:-1:-1;;;40458:65:0;;10780:2:1;40458:65:0;;;10762:21:1;10819:2;10799:18;;;10792:30;10858:34;10838:18;;;10831:62;-1:-1:-1;;;10909:18:1;;;10902:34;10953:19;;40458:65:0;10578:400:1;40458:65:0;40536:39;40557:4;40563:2;40567:7;40536:20;:39::i;:::-;40640:29;40657:1;40661:7;40640:8;:29::i;:::-;-1:-1:-1;;;;;40682:15:0;;;;;;:9;:15;;;;;:20;;40701:1;;40682:15;:20;;40701:1;;40682:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40713:13:0;;;;;;:9;:13;;;;;:18;;40730:1;;40713:13;:18;;40730:1;;40713:18;:::i;:::-;;;;-1:-1:-1;;40742:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40742:21:0;-1:-1:-1;;;;;40742:21:0;;;;;;;;;40781:27;;40742:16;;40781:27;;;;;;;40238:578;;;:::o;11751:120::-;10763:7;;;;11287:41;;;;-1:-1:-1;;;11287:41:0;;8411:2:1;11287:41:0;;;8393:21:1;8450:2;8430:18;;;8423:30;-1:-1:-1;;;8469:18:1;;;8462:50;8529:18;;11287:41:0;8209:344:1;11287:41:0;11810:7:::1;:15:::0;;-1:-1:-1;;11810:15:0::1;::::0;;11841:22:::1;6884:10:::0;11850:12:::1;11841:22;::::0;-1:-1:-1;;;;;6341:32:1;;;6323:51;;6311:2;6296:18;11841:22:0::1;;;;;;;11751:120::o:0;9356:191::-;9449:6;;;-1:-1:-1;;;;;9466:17:0;;;9449:6;9466:17;;;-1:-1:-1;;;;;;9466:17:0;;;;;;9499:40;;9449:6;;;;;;;;9499:40;;9430:16;;9499:40;9419:128;9356:191;:::o;11492:118::-;10763:7;;;;11017:9;11009:38;;;;-1:-1:-1;;;11009:38:0;;12725:2:1;11009:38:0;;;12707:21:1;12764:2;12744:18;;;12737:30;-1:-1:-1;;;12783:18:1;;;12776:46;12839:18;;11009:38:0;12523:340:1;11009:38:0;11552:7:::1;:14:::0;;-1:-1:-1;;11552:14:0::1;11562:4;11552:14;::::0;;11582:20:::1;11589:12;6884:10:::0;;6804:98;37936:110;38012:26;38022:2;38026:7;38012:26;;;;;;;;;;;;:9;:26::i;41250:315::-;41405:8;-1:-1:-1;;;;;41396:17:0;:5;-1:-1:-1;;;;;41396:17:0;;;41388:55;;;;-1:-1:-1;;;41388:55:0;;11185:2:1;41388:55:0;;;11167:21:1;11224:2;11204:18;;;11197:30;11263:27;11243:18;;;11236:55;11308:18;;41388:55:0;10983:349:1;41388:55:0;-1:-1:-1;;;;;41454:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41454:46:0;;;;;;;;;;41516:41;;7933::1;;;41516::0;;7906:18:1;41516:41:0;;;;;;;41250:315;;;:::o;36324:::-;36481:28;36491:4;36497:2;36501:7;36481:9;:28::i;:::-;36528:48;36551:4;36557:2;36561:7;36570:5;36528:22;:48::i;:::-;36520:111;;;;-1:-1:-1;;;36520:111:0;;;;;;;:::i;51201:149::-;51253:13;51279:63;;;;;;;;;;;;;;;;;;;51201:149;:::o;4360:723::-;4416:13;4637:10;4633:53;;-1:-1:-1;;4664:10:0;;;;;;;;;;;;-1:-1:-1;;;4664:10:0;;;;;4360:723::o;4633:53::-;4711:5;4696:12;4752:78;4759:9;;4752:78;;4785:8;;;;:::i;:::-;;-1:-1:-1;4808:10:0;;-1:-1:-1;4816:2:0;4808:10;;:::i;:::-;;;4752:78;;;4840:19;4872:6;4862:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4862:17:0;;4840:39;;4890:154;4897:10;;4890:154;;4924:11;4934:1;4924:11;;:::i;:::-;;-1:-1:-1;4993:10:0;5001:2;4993:5;:10;:::i;:::-;4980:24;;:2;:24;:::i;:::-;4967:39;;4950:6;4957;4950:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4950:56:0;;;;;;;;-1:-1:-1;5021:11:0;5030:2;5021:11;;:::i;:::-;;;4890:154;;31194:305;31296:4;-1:-1:-1;;;;;;31333:40:0;;-1:-1:-1;;;31333:40:0;;:105;;-1:-1:-1;;;;;;;31390:48:0;;-1:-1:-1;;;31390:48:0;31333:105;:158;;;-1:-1:-1;;;;;;;;;;22975:40:0;;;31455:36;22866:157;2370:143;2476:29;2489:3;2494:10;2476:29;;;;;;;:::i;:::-;;;;;;;;2370:143;;:::o;52294:227::-;10763:7;;;;11017:9;11009:38;;;;-1:-1:-1;;;11009:38:0;;12725:2:1;11009:38:0;;;12707:21:1;12764:2;12744:18;;;12737:30;-1:-1:-1;;;12783:18:1;;;12776:46;12839:18;;11009:38:0;12523:340:1;11009:38:0;52468:45:::1;52495:4;52501:2;52505:7;52468:26;:45::i;38273:321::-:0;38403:18;38409:2;38413:7;38403:5;:18::i;:::-;38454:54;38485:1;38489:2;38493:7;38502:5;38454:22;:54::i;:::-;38432:154;;;;-1:-1:-1;;;38432:154:0;;;;;;;:::i;42130:799::-;42285:4;-1:-1:-1;;;;;42306:13:0;;13027:20;13075:8;42302:620;;42342:72;;-1:-1:-1;;;42342:72:0;;-1:-1:-1;;;;;42342:36:0;;;;;:72;;6884:10;;42393:4;;42399:7;;42408:5;;42342:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42342:72:0;;;;;;;;-1:-1:-1;;42342:72:0;;;;;;;;;;;;:::i;:::-;;;42338:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42584:13:0;;42580:272;;42627:60;;-1:-1:-1;;;42627:60:0;;;;;;;:::i;42580:272::-;42802:6;42796:13;42787:6;42783:2;42779:15;42772:38;42338:529;-1:-1:-1;;;;;;42465:51:0;-1:-1:-1;;;42465:51:0;;-1:-1:-1;42458:58:0;;42302:620;-1:-1:-1;42906:4:0;42130:799;;;;;;:::o;46327:589::-;-1:-1:-1;;;;;46533:18:0;;46529:187;;46568:40;46600:7;47743:10;:17;;47716:24;;;;:15;:24;;;;;:44;;;47771:24;;;;;;;;;;;;47639:164;46568:40;46529:187;;;46638:2;-1:-1:-1;;;;;46630:10:0;:4;-1:-1:-1;;;;;46630:10:0;;46626:90;;46657:47;46690:4;46696:7;46657:32;:47::i;:::-;-1:-1:-1;;;;;46730:16:0;;46726:183;;46763:45;46800:7;46763:36;:45::i;46726:183::-;46836:4;-1:-1:-1;;;;;46830:10:0;:2;-1:-1:-1;;;;;46830:10:0;;46826:83;;46857:40;46885:2;46889:7;46857:27;:40::i;38930:382::-;-1:-1:-1;;;;;39010:16:0;;39002:61;;;;-1:-1:-1;;;39002:61:0;;14316:2:1;39002:61:0;;;14298:21:1;;;14335:18;;;14328:30;14394:34;14374:18;;;14367:62;14446:18;;39002:61:0;14114:356:1;39002:61:0;37017:4;37041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37041:16:0;:30;39074:58;;;;-1:-1:-1;;;39074:58:0;;10423:2:1;39074:58:0;;;10405:21:1;10462:2;10442:18;;;10435:30;10501;10481:18;;;10474:58;10549:18;;39074:58:0;10221:352:1;39074:58:0;39145:45;39174:1;39178:2;39182:7;39145:20;:45::i;:::-;-1:-1:-1;;;;;39203:13:0;;;;;;:9;:13;;;;;:18;;39220:1;;39203:13;:18;;39220:1;;39203:18;:::i;:::-;;;;-1:-1:-1;;39232:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39232:21:0;-1:-1:-1;;;;;39232:21:0;;;;;;;;39271:33;;39232:16;;;39271:33;;39232:16;;39271:33;38930:382;;:::o;48430:988::-;48696:22;48746:1;48721:22;48738:4;48721:16;:22::i;:::-;:26;;;;:::i;:::-;48758:18;48779:26;;;:17;:26;;;;;;48696:51;;-1:-1:-1;48912:28:0;;;48908:328;;-1:-1:-1;;;;;48979:18:0;;48957:19;48979:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49030:30;;;;;;:44;;;49147:30;;:17;:30;;;;;:43;;;48908:328;-1:-1:-1;49332:26:0;;;;:17;:26;;;;;;;;49325:33;;;-1:-1:-1;;;;;49376:18:0;;;;;:12;:18;;;;;:34;;;;;;;49369:41;48430:988::o;49713:1079::-;49991:10;:17;49966:22;;49991:21;;50011:1;;49991:21;:::i;:::-;50023:18;50044:24;;;:15;:24;;;;;;50417:10;:26;;49966:46;;-1:-1:-1;50044:24:0;;49966:46;;50417:26;;;;;;:::i;:::-;;;;;;;;;50395:48;;50481:11;50456:10;50467;50456:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50561:28;;;:15;:28;;;;;;;:41;;;50733:24;;;;;50726:31;50768:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49784:1008;;;49713:1079;:::o;47217:221::-;47302:14;47319:20;47336:2;47319:16;:20::i;:::-;-1:-1:-1;;;;;47350:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47395:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47217:221:0:o;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;526:388::-;594:6;602;655:2;643:9;634:7;630:23;626:32;623:52;;;671:1;668;661:12;623:52;710:9;697:23;729:31;754:5;729:31;:::i;:::-;779:5;-1:-1:-1;836:2:1;821:18;;808:32;849:33;808:32;849:33;:::i;:::-;901:7;891:17;;;526:388;;;;;:::o;919:456::-;996:6;1004;1012;1065:2;1053:9;1044:7;1040:23;1036:32;1033:52;;;1081:1;1078;1071:12;1033:52;1120:9;1107:23;1139:31;1164:5;1139:31;:::i;:::-;1189:5;-1:-1:-1;1246:2:1;1231:18;;1218:32;1259:33;1218:32;1259:33;:::i;:::-;919:456;;1311:7;;-1:-1:-1;;;1365:2:1;1350:18;;;;1337:32;;919:456::o;1380:1266::-;1475:6;1483;1491;1499;1552:3;1540:9;1531:7;1527:23;1523:33;1520:53;;;1569:1;1566;1559:12;1520:53;1608:9;1595:23;1627:31;1652:5;1627:31;:::i;:::-;1677:5;-1:-1:-1;1734:2:1;1719:18;;1706:32;1747:33;1706:32;1747:33;:::i;:::-;1799:7;-1:-1:-1;1853:2:1;1838:18;;1825:32;;-1:-1:-1;1908:2:1;1893:18;;1880:32;1931:18;1961:14;;;1958:34;;;1988:1;1985;1978:12;1958:34;2026:6;2015:9;2011:22;2001:32;;2071:7;2064:4;2060:2;2056:13;2052:27;2042:55;;2093:1;2090;2083:12;2042:55;2129:2;2116:16;2151:2;2147;2144:10;2141:36;;;2157:18;;:::i;:::-;2232:2;2226:9;2200:2;2286:13;;-1:-1:-1;;2282:22:1;;;2306:2;2278:31;2274:40;2262:53;;;2330:18;;;2350:22;;;2327:46;2324:72;;;2376:18;;:::i;:::-;2416:10;2412:2;2405:22;2451:2;2443:6;2436:18;2491:7;2486:2;2481;2477;2473:11;2469:20;2466:33;2463:53;;;2512:1;2509;2502:12;2463:53;2568:2;2563;2559;2555:11;2550:2;2542:6;2538:15;2525:46;2613:1;2608:2;2603;2595:6;2591:15;2587:24;2580:35;2634:6;2624:16;;;;;;;1380:1266;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:1;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:64;;3031:1;3028;3021:12;3072:315;3140:6;3148;3201:2;3189:9;3180:7;3176:23;3172:32;3169:52;;;3217:1;3214;3207:12;3169:52;3256:9;3243:23;3275:31;3300:5;3275:31;:::i;:::-;3325:5;3377:2;3362:18;;;;3349:32;;-1:-1:-1;;;3072:315:1:o;3392:245::-;3450:6;3503:2;3491:9;3482:7;3478:23;3474:32;3471:52;;;3519:1;3516;3509:12;3471:52;3558:9;3545:23;3577:30;3601:5;3577:30;:::i;3642:249::-;3711:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:52;;;3780:1;3777;3770:12;3732:52;3812:9;3806:16;3831:30;3855:5;3831:30;:::i;3896:180::-;3955:6;4008:2;3996:9;3987:7;3983:23;3979:32;3976:52;;;4024:1;4021;4014:12;3976:52;-1:-1:-1;4047:23:1;;3896:180;-1:-1:-1;3896:180:1:o;4081:511::-;4165:6;4173;4181;4234:2;4222:9;4213:7;4209:23;4205:32;4202:52;;;4250:1;4247;4240:12;4202:52;4286:9;4273:23;4263:33;;4346:2;4335:9;4331:18;4318:32;4359:31;4384:5;4359:31;:::i;:::-;4409:5;-1:-1:-1;4466:2:1;4451:18;;4438:32;-1:-1:-1;;;;;4501:40:1;;4489:53;;4479:81;;4556:1;4553;4546:12;4479:81;4579:7;4569:17;;;4081:511;;;;;:::o;4597:248::-;4665:6;4673;4726:2;4714:9;4705:7;4701:23;4697:32;4694:52;;;4742:1;4739;4732:12;4694:52;-1:-1:-1;;4765:23:1;;;4835:2;4820:18;;;4807:32;;-1:-1:-1;4597:248:1:o;4850:585::-;4907:3;4945:5;4939:12;4972:6;4967:3;4960:19;4998:4;5027:2;5022:3;5018:12;5011:19;;5064:2;5057:5;5053:14;5085:1;5095:315;5109:6;5106:1;5103:13;5095:315;;;5168:13;;5210:9;;-1:-1:-1;;;;;5206:35:1;5194:48;;5286:11;;5280:18;-1:-1:-1;;;;;5276:51:1;5262:12;;;5255:73;5357:4;5348:14;;;;5385:15;;;;5238:1;5124:9;5095:315;;;-1:-1:-1;5426:3:1;;4850:585;-1:-1:-1;;;;;4850:585:1:o;5440:257::-;5481:3;5519:5;5513:12;5546:6;5541:3;5534:19;5562:63;5618:6;5611:4;5606:3;5602:14;5595:4;5588:5;5584:16;5562:63;:::i;:::-;5679:2;5658:15;-1:-1:-1;;5654:29:1;5645:39;;;;5686:4;5641:50;;5440:257;-1:-1:-1;;5440:257:1:o;5702:470::-;5881:3;5919:6;5913:13;5935:53;5981:6;5976:3;5969:4;5961:6;5957:17;5935:53;:::i;:::-;6051:13;;6010:16;;;;6073:57;6051:13;6010:16;6107:4;6095:17;;6073:57;:::i;:::-;6146:20;;5702:470;-1:-1:-1;;;;5702:470:1:o;6711:488::-;-1:-1:-1;;;;;6980:15:1;;;6962:34;;7032:15;;7027:2;7012:18;;7005:43;7079:2;7064:18;;7057:34;;;7127:3;7122:2;7107:18;;7100:31;;;6905:4;;7148:45;;7173:19;;7165:6;7148:45;:::i;:::-;7140:53;6711:488;-1:-1:-1;;;;;;6711:488:1:o;7483:305::-;7702:2;7691:9;7684:21;7665:4;7722:60;7778:2;7767:9;7763:18;7755:6;7722:60;:::i;7985:219::-;8134:2;8123:9;8116:21;8097:4;8154:44;8194:2;8183:9;8179:18;8171:6;8154:44;:::i;8970:414::-;9172:2;9154:21;;;9211:2;9191:18;;;9184:30;9250:34;9245:2;9230:18;;9223:62;-1:-1:-1;;;9316:2:1;9301:18;;9294:48;9374:3;9359:19;;8970:414::o;14888:356::-;15090:2;15072:21;;;15109:18;;;15102:30;15168:34;15163:2;15148:18;;15141:62;15235:2;15220:18;;14888:356::o;16477:413::-;16679:2;16661:21;;;16718:2;16698:18;;;16691:30;16757:34;16752:2;16737:18;;16730:62;-1:-1:-1;;;16823:2:1;16808:18;;16801:47;16880:3;16865:19;;16477:413::o;18203:376::-;18450:6;18439:9;18432:25;18493:2;18488;18477:9;18473:18;18466:30;18413:4;18513:60;18569:2;18558:9;18554:18;18546:6;18513:60;:::i;18584:128::-;18624:3;18655:1;18651:6;18648:1;18645:13;18642:39;;;18661:18;;:::i;:::-;-1:-1:-1;18697:9:1;;18584:128::o;18717:120::-;18757:1;18783;18773:35;;18788:18;;:::i;:::-;-1:-1:-1;18822:9:1;;18717:120::o;18842:168::-;18882:7;18948:1;18944;18940:6;18936:14;18933:1;18930:21;18925:1;18918:9;18911:17;18907:45;18904:71;;;18955:18;;:::i;:::-;-1:-1:-1;18995:9:1;;18842:168::o;19015:125::-;19055:4;19083:1;19080;19077:8;19074:34;;;19088:18;;:::i;:::-;-1:-1:-1;19125:9:1;;19015:125::o;19145:258::-;19217:1;19227:113;19241:6;19238:1;19235:13;19227:113;;;19317:11;;;19311:18;19298:11;;;19291:39;19263:2;19256:10;19227:113;;;19358:6;19355:1;19352:13;19349:48;;;-1:-1:-1;;19393:1:1;19375:16;;19368:27;19145:258::o;19408:380::-;19487:1;19483:12;;;;19530;;;19551:61;;19605:4;19597:6;19593:17;19583:27;;19551:61;19658:2;19650:6;19647:14;19627:18;19624:38;19621:161;;;19704:10;19699:3;19695:20;19692:1;19685:31;19739:4;19736:1;19729:15;19767:4;19764:1;19757:15;19621:161;;19408:380;;;:::o;19793:135::-;19832:3;-1:-1:-1;;19853:17:1;;19850:43;;;19873:18;;:::i;:::-;-1:-1:-1;19920:1:1;19909:13;;19793:135::o;19933:112::-;19965:1;19991;19981:35;;19996:18;;:::i;:::-;-1:-1:-1;20030:9:1;;19933:112::o;20050:127::-;20111:10;20106:3;20102:20;20099:1;20092:31;20142:4;20139:1;20132:15;20166:4;20163:1;20156:15;20182:127;20243:10;20238:3;20234:20;20231:1;20224:31;20274:4;20271:1;20264:15;20298:4;20295:1;20288:15;20314:127;20375:10;20370:3;20366:20;20363:1;20356:31;20406:4;20403:1;20396:15;20430:4;20427:1;20420:15;20446:127;20507:10;20502:3;20498:20;20495:1;20488:31;20538:4;20535:1;20528:15;20562:4;20559:1;20552:15;20578:127;20639:10;20634:3;20630:20;20627:1;20620:31;20670:4;20667:1;20660:15;20694:4;20691:1;20684:15;20710:131;-1:-1:-1;;;;;20785:31:1;;20775:42;;20765:70;;20831:1;20828;20821:12;20846:131;-1:-1:-1;;;;;;20920:32:1;;20910:43;;20900:71;;20967:1;20964;20957:12
Swarm Source
ipfs://7ff9059f1517cc3a9131967ae0aed022603a8d823ae9a9f716ca16ab0073a882
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.