Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,629 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 20969491 | 34 days ago | IN | 0 ETH | 0.00083811 | ||||
Transfer From | 20897336 | 44 days ago | IN | 0 ETH | 0.00026503 | ||||
Set Approval For... | 20722593 | 68 days ago | IN | 0 ETH | 0.00033593 | ||||
Set Approval For... | 20617885 | 83 days ago | IN | 0 ETH | 0.00004686 | ||||
Set Approval For... | 20490497 | 100 days ago | IN | 0 ETH | 0.00010125 | ||||
Set Approval For... | 20092756 | 156 days ago | IN | 0 ETH | 0.000595 | ||||
Safe Transfer Fr... | 20089803 | 156 days ago | IN | 0 ETH | 0.00034421 | ||||
Safe Transfer Fr... | 20089750 | 156 days ago | IN | 0 ETH | 0.00051119 | ||||
Set Approval For... | 19945492 | 176 days ago | IN | 0 ETH | 0.00018604 | ||||
Safe Transfer Fr... | 19929882 | 179 days ago | IN | 0 ETH | 0.0003604 | ||||
Set Approval For... | 19279500 | 270 days ago | IN | 0 ETH | 0.00109614 | ||||
Set Approval For... | 19087048 | 297 days ago | IN | 0 ETH | 0.00046675 | ||||
Set Approval For... | 19043382 | 303 days ago | IN | 0 ETH | 0.00056216 | ||||
Set Approval For... | 19043355 | 303 days ago | IN | 0 ETH | 0.00108054 | ||||
Set Approval For... | 18995904 | 310 days ago | IN | 0 ETH | 0.00070679 | ||||
Set Approval For... | 18919555 | 320 days ago | IN | 0 ETH | 0.00037617 | ||||
Set Approval For... | 18914072 | 321 days ago | IN | 0 ETH | 0.00067865 | ||||
Set Approval For... | 18911988 | 321 days ago | IN | 0 ETH | 0.00043263 | ||||
Set Approval For... | 18908807 | 322 days ago | IN | 0 ETH | 0.00053876 | ||||
Set Approval For... | 18908401 | 322 days ago | IN | 0 ETH | 0.00030523 | ||||
Set Approval For... | 18905546 | 322 days ago | IN | 0 ETH | 0.00066328 | ||||
Set Approval For... | 18896275 | 324 days ago | IN | 0 ETH | 0.00060188 | ||||
Set Approval For... | 18894367 | 324 days ago | IN | 0 ETH | 0.00081951 | ||||
Set Approval For... | 18888332 | 325 days ago | IN | 0 ETH | 0.00087681 | ||||
Set Approval For... | 18883358 | 325 days ago | IN | 0 ETH | 0.00120106 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15147842 | 856 days ago | 89.55 ETH |
Loading...
Loading
Contract Name:
MemoriesOfAMasterpiece
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-13 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/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/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/MemoriesOfAMasterpiece.sol pragma solidity ^0.8.7; /** * @title Amber Vittoria's Memories Of A Masterpiece Contract * @author Mai Akiyoshi & Ben Yu (https://twitter.com/mai_on_chain & https://twitter.com/intenex) * @notice This contract handles minting Memories Of A Masterpiece tokens. */ contract MemoriesOfAMasterpiece is ERC721A, Ownable { using Strings for uint256; uint256 public constant price = 0.09 ether; uint256 public immutable maxSupply; uint256 public mintsAllowedPerAddress = 100; bool public isSaleActive = false; string public baseTokenURI; /** * @param name Token name * @param symbol Token symbol * @param baseTokenURI_ Base URI for all tokens */ constructor( string memory name, string memory symbol, string memory baseTokenURI_, uint256 maxSupply_ ) ERC721A(name, symbol) { require(maxSupply_ > 0, "INVALID_SUPPLY"); baseTokenURI = baseTokenURI_; maxSupply = maxSupply_; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } /** * @notice To be updated by contract owner to allow minting */ function setSaleState(bool _saleActiveState) public onlyOwner { require(isSaleActive != _saleActiveState, "NEW_STATE_IDENTICAL_TO_OLD_STATE"); isSaleActive = _saleActiveState; } /** * @notice Set the maximum mints allowed per a given address */ function setMintsAllowsPerAddress(uint256 _mintsAllowed) public onlyOwner { mintsAllowedPerAddress = _mintsAllowed; } /** * @notice Update the base token URI */ function setBaseURI(string calldata _newBaseURI) external onlyOwner { baseTokenURI = _newBaseURI; } /** * @notice Allow for minting an arbitrary number of tokens */ function mint( uint256 numTokens ) external payable { require(isSaleActive, "SALE_IS_NOT_ACTIVE"); require(_numberMinted(msg.sender) + numTokens <= mintsAllowedPerAddress, "MAX_MINTS_EXCEEDED"); require(totalSupply() + numTokens <= maxSupply, "MAX_SUPPLY_EXCEEDED"); require(msg.value >= price * numTokens, "PAYMENT_INSUFFICIENT"); _safeMint(msg.sender, numTokens); if (totalSupply() >= maxSupply) { isSaleActive = false; } } /** * @notice Allow owner to send `mintNumber` tokens without cost to multiple addresses */ function gift(address[] calldata receivers, uint256 mintNumber) external onlyOwner { require((totalSupply() + (receivers.length * mintNumber)) <= maxSupply, "MINT_TOO_LARGE"); for (uint256 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], mintNumber); } } /** * @notice Allow contract owner to withdraw funds. */ function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI_","type":"string"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256","name":"mintNumber","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintsAllowedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintsAllowed","type":"uint256"}],"name":"setMintsAllowsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActiveState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405260646009556000600a60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040516200396b3803806200396b83398181016040528101906200005791906200034c565b838381600290805190602001906200007192919062000207565b5080600390805190602001906200008a92919062000207565b506200009b6200013460201b60201c565b6000819055505050620000c3620000b76200013960201b60201c565b6200014160201b60201c565b6000811162000109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001009062000442565b60405180910390fd5b81600b90805190602001906200012192919062000207565b5080608081815250505050505062000646565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002159062000514565b90600052602060002090601f01602090048101928262000239576000855562000285565b82601f106200025457805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028457825182559160200191906001019062000267565b5b50905062000294919062000298565b5090565b5b80821115620002b357600081600090555060010162000299565b5090565b6000620002ce620002c8846200048d565b62000464565b905082815260208101848484011115620002ed57620002ec620005e3565b5b620002fa848285620004de565b509392505050565b600082601f8301126200031a5762000319620005de565b5b81516200032c848260208601620002b7565b91505092915050565b60008151905062000346816200062c565b92915050565b60008060008060808587031215620003695762000368620005ed565b5b600085015167ffffffffffffffff8111156200038a5762000389620005e8565b5b620003988782880162000302565b945050602085015167ffffffffffffffff811115620003bc57620003bb620005e8565b5b620003ca8782880162000302565b935050604085015167ffffffffffffffff811115620003ee57620003ed620005e8565b5b620003fc8782880162000302565b92505060606200040f8782880162000335565b91505092959194509250565b60006200042a600e83620004c3565b9150620004378262000603565b602082019050919050565b600060208201905081810360008301526200045d816200041b565b9050919050565b60006200047062000483565b90506200047e82826200054a565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ab57620004aa620005af565b5b620004b682620005f2565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620004fe578082015181840152602081019050620004e1565b838111156200050e576000848401525b50505050565b600060028204905060018216806200052d57607f821691505b6020821081141562000544576200054362000580565b5b50919050565b6200055582620005f2565b810181811067ffffffffffffffff82111715620005775762000576620005af565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f494e56414c49445f535550504c59000000000000000000000000000000000000600082015250565b6200063781620004d4565b81146200064357600080fd5b50565b6080516132f46200067760003960008181611103015281816111d80152818161148c015261176601526132f46000f3fe6080604052600436106101b75760003560e01c806395d89b41116100ec578063c87b56dd1161008a578063e6afcd1311610064578063e6afcd13146105d7578063e985e9c514610602578063ebcef2c01461063f578063f2fde38b14610668576101b7565b8063c87b56dd14610544578063d547cfb714610581578063d5abeb01146105ac576101b7565b8063a22cb465116100c6578063a22cb465146104a0578063b88d4fde146104c9578063c0f4af70146104f2578063c4e370951461051b576101b7565b806395d89b411461042e578063a035b1fe14610459578063a0712d6814610484576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780638da5cb5b14610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612737565b610691565b6040516101f09190612acf565b60405180910390f35b34801561020557600080fd5b5061020e610723565b60405161021b9190612aea565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127de565b6107b5565b6040516102589190612a68565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061266a565b610831565b005b34801561029657600080fd5b5061029f610972565b6040516102ac9190612c2c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612554565b610989565b005b3480156102ea57600080fd5b506102f3610cae565b005b34801561030157600080fd5b5061031c60048036038101906103179190612554565b610d7a565b005b34801561032a57600080fd5b5061034560048036038101906103409190612791565b610d9a565b005b34801561035357600080fd5b5061035c610e2c565b6040516103699190612acf565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906127de565b610e3f565b6040516103a69190612a68565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906124e7565b610e51565b6040516103e39190612c2c565b60405180910390f35b3480156103f857600080fd5b50610401610f0a565b005b34801561040f57600080fd5b50610418610f92565b6040516104259190612a68565b60405180910390f35b34801561043a57600080fd5b50610443610fbc565b6040516104509190612aea565b60405180910390f35b34801561046557600080fd5b5061046e61104e565b60405161047b9190612c2c565b60405180910390f35b61049e600480360381019061049991906127de565b61105a565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061262a565b611223565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906125a7565b61139b565b005b3480156104fe57600080fd5b50610519600480360381019061051491906126aa565b61140e565b005b34801561052757600080fd5b50610542600480360381019061053d919061270a565b611565565b005b34801561055057600080fd5b5061056b600480360381019061056691906127de565b611654565b6040516105789190612aea565b60405180910390f35b34801561058d57600080fd5b506105966116d6565b6040516105a39190612aea565b60405180910390f35b3480156105b857600080fd5b506105c1611764565b6040516105ce9190612c2c565b60405180910390f35b3480156105e357600080fd5b506105ec611788565b6040516105f99190612c2c565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612514565b61178e565b6040516106369190612acf565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906127de565b611822565b005b34801561067457600080fd5b5061068f600480360381019061068a91906124e7565b6118a8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ec57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073290612eab565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90612eab565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60006107c0826119a0565b6107f6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083c82610e3f565b90508073ffffffffffffffffffffffffffffffffffffffff1661085d6119ff565b73ffffffffffffffffffffffffffffffffffffffff16146108c057610889816108846119ff565b61178e565b6108bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097c611a07565b6001546000540303905090565b600061099482611a0c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0784611ada565b91509150610a1d8187610a186119ff565b611afc565b610a6957610a3286610a2d6119ff565b61178e565b610a68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610add8686866001611b40565b8015610ae857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb685610b92888887611b46565b7c020000000000000000000000000000000000000000000000000000000017611b6e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c3e576000600185019050600060046000838152602001908152602001600020541415610c3c576000548114610c3b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca68686866001611b99565b505050505050565b610cb6611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610cd4610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612bec565b60405180910390fd5b610d32610f92565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d77573d6000803e3d6000fd5b50565b610d958383836040518060200160405280600081525061139b565b505050565b610da2611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610dc0610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612bec565b60405180910390fd5b8181600b9190610e279291906122bf565b505050565b600a60009054906101000a900460ff1681565b6000610e4a82611a0c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f12611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610f30610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612bec565b60405180910390fd5b610f906000611ba7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fcb90612eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790612eab565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b5050505050905090565b67013fbe85edc9000081565b600a60009054906101000a900460ff166110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612b0c565b60405180910390fd5b600954816110b633611c6d565b6110c09190612ce0565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612bac565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161112b610972565b6111359190612ce0565b1115611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90612b6c565b60405180910390fd5b8067013fbe85edc9000061118a9190612d67565b3410156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612b8c565b60405180910390fd5b6111d63382611cc4565b7f00000000000000000000000000000000000000000000000000000000000000006111ff610972565b10611220576000600a60006101000a81548160ff0219169083151502179055505b50565b61122b6119ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611290576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129d6119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134a6119ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138f9190612acf565b60405180910390a35050565b6113a6848484610989565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611408576113d184848484611ce2565b611407576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611416611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611434610f92565b73ffffffffffffffffffffffffffffffffffffffff161461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612bec565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081848490506114ba9190612d67565b6114c2610972565b6114cc9190612ce0565b111561150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612c0c565b60405180910390fd5b60005b8383905081101561155f5761154c84848381811061153157611530613015565b5b905060200201602081019061154691906124e7565b83611cc4565b808061155790612f0e565b915050611510565b50505050565b61156d611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661158b610f92565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890612bec565b60405180910390fd5b801515600a60009054906101000a900460ff1615151415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90612bcc565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606061165f826119a0565b61169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612b2c565b60405180910390fd5b6116a6611e42565b6116af83611ed4565b6040516020016116c0929190612a39565b6040516020818303038152906040529050919050565b600b80546116e390612eab565b80601f016020809104026020016040519081016040528092919081815260200182805461170f90612eab565b801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182a611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611848610f92565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590612bec565b60405180910390fd5b8060098190555050565b6118b0611b9f565b73ffffffffffffffffffffffffffffffffffffffff166118ce610f92565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90612bec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90612b4c565b60405180910390fd5b61199d81611ba7565b50565b6000816119ab611a07565b111580156119ba575060005482105b80156119f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a1b611a07565b11611aa357600054811015611aa25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aa0575b6000811415611a96576004600083600190039350838152602001908152602001600020549050611a6b565b8092505050611ad5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b5d868684612035565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611cde82826040518060200160405280600081525061203e565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d086119ff565b8786866040518563ffffffff1660e01b8152600401611d2a9493929190612a83565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d7557506040513d601f19601f82011682018060405250810190611d729190612764565b60015b611def573d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50600081511415611de7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e5190612eab565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7d90612eab565b8015611eca5780601f10611e9f57610100808354040283529160200191611eca565b820191906000526020600020905b815481529060010190602001808311611ead57829003601f168201915b5050505050905090565b60606000821415611f1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612030565b600082905060005b60008214611f4e578080611f3790612f0e565b915050600a82611f479190612d36565b9150611f24565b60008167ffffffffffffffff811115611f6a57611f69613044565b5b6040519080825280601f01601f191660200182016040528015611f9c5781602001600182028036833780820191505090505b5090505b6000851461202957600182611fb59190612dc1565b9150600a85611fc49190612f57565b6030611fd09190612ce0565b60f81b818381518110611fe657611fe5613015565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120229190612d36565b9450611fa0565b8093505050505b919050565b60009392505050565b61204883836120db565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120d657600080549050600083820390505b6120886000868380600101945086611ce2565b6120be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120755781600054146120d357600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612148576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612183576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121906000848385611b40565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612207836121f86000866000611b46565b612201856122af565b17611b6e565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061222b578060008190555050506122aa6000848385611b99565b505050565b60006001821460e11b9050919050565b8280546122cb90612eab565b90600052602060002090601f0160209004810192826122ed5760008555612334565b82601f1061230657803560ff1916838001178555612334565b82800160010185558215612334579182015b82811115612333578235825591602001919060010190612318565b5b5090506123419190612345565b5090565b5b8082111561235e576000816000905550600101612346565b5090565b600061237561237084612c6c565b612c47565b90508281526020810184848401111561239157612390613082565b5b61239c848285612e69565b509392505050565b6000813590506123b381613262565b92915050565b60008083601f8401126123cf576123ce613078565b5b8235905067ffffffffffffffff8111156123ec576123eb613073565b5b6020830191508360208202830111156124085761240761307d565b5b9250929050565b60008135905061241e81613279565b92915050565b60008135905061243381613290565b92915050565b60008151905061244881613290565b92915050565b600082601f83011261246357612462613078565b5b8135612473848260208601612362565b91505092915050565b60008083601f84011261249257612491613078565b5b8235905067ffffffffffffffff8111156124af576124ae613073565b5b6020830191508360018202830111156124cb576124ca61307d565b5b9250929050565b6000813590506124e1816132a7565b92915050565b6000602082840312156124fd576124fc61308c565b5b600061250b848285016123a4565b91505092915050565b6000806040838503121561252b5761252a61308c565b5b6000612539858286016123a4565b925050602061254a858286016123a4565b9150509250929050565b60008060006060848603121561256d5761256c61308c565b5b600061257b868287016123a4565b935050602061258c868287016123a4565b925050604061259d868287016124d2565b9150509250925092565b600080600080608085870312156125c1576125c061308c565b5b60006125cf878288016123a4565b94505060206125e0878288016123a4565b93505060406125f1878288016124d2565b925050606085013567ffffffffffffffff81111561261257612611613087565b5b61261e8782880161244e565b91505092959194509250565b600080604083850312156126415761264061308c565b5b600061264f858286016123a4565b92505060206126608582860161240f565b9150509250929050565b600080604083850312156126815761268061308c565b5b600061268f858286016123a4565b92505060206126a0858286016124d2565b9150509250929050565b6000806000604084860312156126c3576126c261308c565b5b600084013567ffffffffffffffff8111156126e1576126e0613087565b5b6126ed868287016123b9565b93509350506020612700868287016124d2565b9150509250925092565b6000602082840312156127205761271f61308c565b5b600061272e8482850161240f565b91505092915050565b60006020828403121561274d5761274c61308c565b5b600061275b84828501612424565b91505092915050565b60006020828403121561277a5761277961308c565b5b600061278884828501612439565b91505092915050565b600080602083850312156127a8576127a761308c565b5b600083013567ffffffffffffffff8111156127c6576127c5613087565b5b6127d28582860161247c565b92509250509250929050565b6000602082840312156127f4576127f361308c565b5b6000612802848285016124d2565b91505092915050565b61281481612df5565b82525050565b61282381612e07565b82525050565b600061283482612c9d565b61283e8185612cb3565b935061284e818560208601612e78565b61285781613091565b840191505092915050565b600061286d82612ca8565b6128778185612cc4565b9350612887818560208601612e78565b61289081613091565b840191505092915050565b60006128a682612ca8565b6128b08185612cd5565b93506128c0818560208601612e78565b80840191505092915050565b60006128d9601283612cc4565b91506128e4826130a2565b602082019050919050565b60006128fc601f83612cc4565b9150612907826130cb565b602082019050919050565b600061291f602683612cc4565b915061292a826130f4565b604082019050919050565b6000612942601383612cc4565b915061294d82613143565b602082019050919050565b6000612965601483612cc4565b91506129708261316c565b602082019050919050565b6000612988601283612cc4565b915061299382613195565b602082019050919050565b60006129ab602083612cc4565b91506129b6826131be565b602082019050919050565b60006129ce600583612cd5565b91506129d9826131e7565b600582019050919050565b60006129f1602083612cc4565b91506129fc82613210565b602082019050919050565b6000612a14600e83612cc4565b9150612a1f82613239565b602082019050919050565b612a3381612e5f565b82525050565b6000612a45828561289b565b9150612a51828461289b565b9150612a5c826129c1565b91508190509392505050565b6000602082019050612a7d600083018461280b565b92915050565b6000608082019050612a98600083018761280b565b612aa5602083018661280b565b612ab26040830185612a2a565b8181036060830152612ac48184612829565b905095945050505050565b6000602082019050612ae4600083018461281a565b92915050565b60006020820190508181036000830152612b048184612862565b905092915050565b60006020820190508181036000830152612b25816128cc565b9050919050565b60006020820190508181036000830152612b45816128ef565b9050919050565b60006020820190508181036000830152612b6581612912565b9050919050565b60006020820190508181036000830152612b8581612935565b9050919050565b60006020820190508181036000830152612ba581612958565b9050919050565b60006020820190508181036000830152612bc58161297b565b9050919050565b60006020820190508181036000830152612be58161299e565b9050919050565b60006020820190508181036000830152612c05816129e4565b9050919050565b60006020820190508181036000830152612c2581612a07565b9050919050565b6000602082019050612c416000830184612a2a565b92915050565b6000612c51612c62565b9050612c5d8282612edd565b919050565b6000604051905090565b600067ffffffffffffffff821115612c8757612c86613044565b5b612c9082613091565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ceb82612e5f565b9150612cf683612e5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d2b57612d2a612f88565b5b828201905092915050565b6000612d4182612e5f565b9150612d4c83612e5f565b925082612d5c57612d5b612fb7565b5b828204905092915050565b6000612d7282612e5f565b9150612d7d83612e5f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612db657612db5612f88565b5b828202905092915050565b6000612dcc82612e5f565b9150612dd783612e5f565b925082821015612dea57612de9612f88565b5b828203905092915050565b6000612e0082612e3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e96578082015181840152602081019050612e7b565b83811115612ea5576000848401525b50505050565b60006002820490506001821680612ec357607f821691505b60208210811415612ed757612ed6612fe6565b5b50919050565b612ee682613091565b810181811067ffffffffffffffff82111715612f0557612f04613044565b5b80604052505050565b6000612f1982612e5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f4c57612f4b612f88565b5b600182019050919050565b6000612f6282612e5f565b9150612f6d83612e5f565b925082612f7d57612f7c612fb7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c595f455843454544454400000000000000000000000000600082015250565b7f5041594d454e545f494e53554646494349454e54000000000000000000000000600082015250565b7f4d41585f4d494e54535f45584345454445440000000000000000000000000000600082015250565b7f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d494e545f544f4f5f4c41524745000000000000000000000000000000000000600082015250565b61326b81612df5565b811461327657600080fd5b50565b61328281612e07565b811461328d57600080fd5b50565b61329981612e13565b81146132a457600080fd5b50565b6132b081612e5f565b81146132bb57600080fd5b5056fea26469706673582212200fe8e5a9bf55ee97613c6e409e3a9c8dd0745165dd95b175664bd892678b0a6264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003e700000000000000000000000000000000000000000000000000000000000000194d656d6f72696573204f662041204d617374657270696563650000000000000000000000000000000000000000000000000000000000000000000000000000044d4f414d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696334636334797a6175716b6d6c64636e686737326a6d7671666136696364787872796b7976366d7a3375616e6c706f61326e70342f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806395d89b41116100ec578063c87b56dd1161008a578063e6afcd1311610064578063e6afcd13146105d7578063e985e9c514610602578063ebcef2c01461063f578063f2fde38b14610668576101b7565b8063c87b56dd14610544578063d547cfb714610581578063d5abeb01146105ac576101b7565b8063a22cb465116100c6578063a22cb465146104a0578063b88d4fde146104c9578063c0f4af70146104f2578063c4e370951461051b576101b7565b806395d89b411461042e578063a035b1fe14610459578063a0712d6814610484576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780638da5cb5b14610403576101b7565b806342842e0e146102f557806355f804b31461031e578063564566a814610347576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780633ccfd60b146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612737565b610691565b6040516101f09190612acf565b60405180910390f35b34801561020557600080fd5b5061020e610723565b60405161021b9190612aea565b60405180910390f35b34801561023057600080fd5b5061024b600480360381019061024691906127de565b6107b5565b6040516102589190612a68565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061266a565b610831565b005b34801561029657600080fd5b5061029f610972565b6040516102ac9190612c2c565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612554565b610989565b005b3480156102ea57600080fd5b506102f3610cae565b005b34801561030157600080fd5b5061031c60048036038101906103179190612554565b610d7a565b005b34801561032a57600080fd5b5061034560048036038101906103409190612791565b610d9a565b005b34801561035357600080fd5b5061035c610e2c565b6040516103699190612acf565b60405180910390f35b34801561037e57600080fd5b50610399600480360381019061039491906127de565b610e3f565b6040516103a69190612a68565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d191906124e7565b610e51565b6040516103e39190612c2c565b60405180910390f35b3480156103f857600080fd5b50610401610f0a565b005b34801561040f57600080fd5b50610418610f92565b6040516104259190612a68565b60405180910390f35b34801561043a57600080fd5b50610443610fbc565b6040516104509190612aea565b60405180910390f35b34801561046557600080fd5b5061046e61104e565b60405161047b9190612c2c565b60405180910390f35b61049e600480360381019061049991906127de565b61105a565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061262a565b611223565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906125a7565b61139b565b005b3480156104fe57600080fd5b50610519600480360381019061051491906126aa565b61140e565b005b34801561052757600080fd5b50610542600480360381019061053d919061270a565b611565565b005b34801561055057600080fd5b5061056b600480360381019061056691906127de565b611654565b6040516105789190612aea565b60405180910390f35b34801561058d57600080fd5b506105966116d6565b6040516105a39190612aea565b60405180910390f35b3480156105b857600080fd5b506105c1611764565b6040516105ce9190612c2c565b60405180910390f35b3480156105e357600080fd5b506105ec611788565b6040516105f99190612c2c565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612514565b61178e565b6040516106369190612acf565b60405180910390f35b34801561064b57600080fd5b50610666600480360381019061066191906127de565b611822565b005b34801561067457600080fd5b5061068f600480360381019061068a91906124e7565b6118a8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ec57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073290612eab565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90612eab565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60006107c0826119a0565b6107f6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083c82610e3f565b90508073ffffffffffffffffffffffffffffffffffffffff1661085d6119ff565b73ffffffffffffffffffffffffffffffffffffffff16146108c057610889816108846119ff565b61178e565b6108bf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097c611a07565b6001546000540303905090565b600061099482611a0c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0784611ada565b91509150610a1d8187610a186119ff565b611afc565b610a6957610a3286610a2d6119ff565b61178e565b610a68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610add8686866001611b40565b8015610ae857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bb685610b92888887611b46565b7c020000000000000000000000000000000000000000000000000000000017611b6e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c3e576000600185019050600060046000838152602001908152602001600020541415610c3c576000548114610c3b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ca68686866001611b99565b505050505050565b610cb6611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610cd4610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612bec565b60405180910390fd5b610d32610f92565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d77573d6000803e3d6000fd5b50565b610d958383836040518060200160405280600081525061139b565b505050565b610da2611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610dc0610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90612bec565b60405180910390fd5b8181600b9190610e279291906122bf565b505050565b600a60009054906101000a900460ff1681565b6000610e4a82611a0c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f12611b9f565b73ffffffffffffffffffffffffffffffffffffffff16610f30610f92565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612bec565b60405180910390fd5b610f906000611ba7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fcb90612eab565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff790612eab565b80156110445780601f1061101957610100808354040283529160200191611044565b820191906000526020600020905b81548152906001019060200180831161102757829003601f168201915b5050505050905090565b67013fbe85edc9000081565b600a60009054906101000a900460ff166110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090612b0c565b60405180910390fd5b600954816110b633611c6d565b6110c09190612ce0565b1115611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890612bac565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e78161112b610972565b6111359190612ce0565b1115611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90612b6c565b60405180910390fd5b8067013fbe85edc9000061118a9190612d67565b3410156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612b8c565b60405180910390fd5b6111d63382611cc4565b7f00000000000000000000000000000000000000000000000000000000000003e76111ff610972565b10611220576000600a60006101000a81548160ff0219169083151502179055505b50565b61122b6119ff565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611290576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129d6119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134a6119ff565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138f9190612acf565b60405180910390a35050565b6113a6848484610989565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611408576113d184848484611ce2565b611407576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611416611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611434610f92565b73ffffffffffffffffffffffffffffffffffffffff161461148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190612bec565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e781848490506114ba9190612d67565b6114c2610972565b6114cc9190612ce0565b111561150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612c0c565b60405180910390fd5b60005b8383905081101561155f5761154c84848381811061153157611530613015565b5b905060200201602081019061154691906124e7565b83611cc4565b808061155790612f0e565b915050611510565b50505050565b61156d611b9f565b73ffffffffffffffffffffffffffffffffffffffff1661158b610f92565b73ffffffffffffffffffffffffffffffffffffffff16146115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890612bec565b60405180910390fd5b801515600a60009054906101000a900460ff1615151415611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90612bcc565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606061165f826119a0565b61169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612b2c565b60405180910390fd5b6116a6611e42565b6116af83611ed4565b6040516020016116c0929190612a39565b6040516020818303038152906040529050919050565b600b80546116e390612eab565b80601f016020809104026020016040519081016040528092919081815260200182805461170f90612eab565b801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505081565b7f00000000000000000000000000000000000000000000000000000000000003e781565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61182a611b9f565b73ffffffffffffffffffffffffffffffffffffffff16611848610f92565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189590612bec565b60405180910390fd5b8060098190555050565b6118b0611b9f565b73ffffffffffffffffffffffffffffffffffffffff166118ce610f92565b73ffffffffffffffffffffffffffffffffffffffff1614611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b90612bec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90612b4c565b60405180910390fd5b61199d81611ba7565b50565b6000816119ab611a07565b111580156119ba575060005482105b80156119f8575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a1b611a07565b11611aa357600054811015611aa25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611aa0575b6000811415611a96576004600083600190039350838152602001908152602001600020549050611a6b565b8092505050611ad5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b5d868684612035565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611cde82826040518060200160405280600081525061203e565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d086119ff565b8786866040518563ffffffff1660e01b8152600401611d2a9493929190612a83565b602060405180830381600087803b158015611d4457600080fd5b505af1925050508015611d7557506040513d601f19601f82011682018060405250810190611d729190612764565b60015b611def573d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50600081511415611de7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e5190612eab565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7d90612eab565b8015611eca5780601f10611e9f57610100808354040283529160200191611eca565b820191906000526020600020905b815481529060010190602001808311611ead57829003601f168201915b5050505050905090565b60606000821415611f1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612030565b600082905060005b60008214611f4e578080611f3790612f0e565b915050600a82611f479190612d36565b9150611f24565b60008167ffffffffffffffff811115611f6a57611f69613044565b5b6040519080825280601f01601f191660200182016040528015611f9c5781602001600182028036833780820191505090505b5090505b6000851461202957600182611fb59190612dc1565b9150600a85611fc49190612f57565b6030611fd09190612ce0565b60f81b818381518110611fe657611fe5613015565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120229190612d36565b9450611fa0565b8093505050505b919050565b60009392505050565b61204883836120db565b60008373ffffffffffffffffffffffffffffffffffffffff163b146120d657600080549050600083820390505b6120886000868380600101945086611ce2565b6120be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120755781600054146120d357600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612148576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612183576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121906000848385611b40565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612207836121f86000866000611b46565b612201856122af565b17611b6e565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061222b578060008190555050506122aa6000848385611b99565b505050565b60006001821460e11b9050919050565b8280546122cb90612eab565b90600052602060002090601f0160209004810192826122ed5760008555612334565b82601f1061230657803560ff1916838001178555612334565b82800160010185558215612334579182015b82811115612333578235825591602001919060010190612318565b5b5090506123419190612345565b5090565b5b8082111561235e576000816000905550600101612346565b5090565b600061237561237084612c6c565b612c47565b90508281526020810184848401111561239157612390613082565b5b61239c848285612e69565b509392505050565b6000813590506123b381613262565b92915050565b60008083601f8401126123cf576123ce613078565b5b8235905067ffffffffffffffff8111156123ec576123eb613073565b5b6020830191508360208202830111156124085761240761307d565b5b9250929050565b60008135905061241e81613279565b92915050565b60008135905061243381613290565b92915050565b60008151905061244881613290565b92915050565b600082601f83011261246357612462613078565b5b8135612473848260208601612362565b91505092915050565b60008083601f84011261249257612491613078565b5b8235905067ffffffffffffffff8111156124af576124ae613073565b5b6020830191508360018202830111156124cb576124ca61307d565b5b9250929050565b6000813590506124e1816132a7565b92915050565b6000602082840312156124fd576124fc61308c565b5b600061250b848285016123a4565b91505092915050565b6000806040838503121561252b5761252a61308c565b5b6000612539858286016123a4565b925050602061254a858286016123a4565b9150509250929050565b60008060006060848603121561256d5761256c61308c565b5b600061257b868287016123a4565b935050602061258c868287016123a4565b925050604061259d868287016124d2565b9150509250925092565b600080600080608085870312156125c1576125c061308c565b5b60006125cf878288016123a4565b94505060206125e0878288016123a4565b93505060406125f1878288016124d2565b925050606085013567ffffffffffffffff81111561261257612611613087565b5b61261e8782880161244e565b91505092959194509250565b600080604083850312156126415761264061308c565b5b600061264f858286016123a4565b92505060206126608582860161240f565b9150509250929050565b600080604083850312156126815761268061308c565b5b600061268f858286016123a4565b92505060206126a0858286016124d2565b9150509250929050565b6000806000604084860312156126c3576126c261308c565b5b600084013567ffffffffffffffff8111156126e1576126e0613087565b5b6126ed868287016123b9565b93509350506020612700868287016124d2565b9150509250925092565b6000602082840312156127205761271f61308c565b5b600061272e8482850161240f565b91505092915050565b60006020828403121561274d5761274c61308c565b5b600061275b84828501612424565b91505092915050565b60006020828403121561277a5761277961308c565b5b600061278884828501612439565b91505092915050565b600080602083850312156127a8576127a761308c565b5b600083013567ffffffffffffffff8111156127c6576127c5613087565b5b6127d28582860161247c565b92509250509250929050565b6000602082840312156127f4576127f361308c565b5b6000612802848285016124d2565b91505092915050565b61281481612df5565b82525050565b61282381612e07565b82525050565b600061283482612c9d565b61283e8185612cb3565b935061284e818560208601612e78565b61285781613091565b840191505092915050565b600061286d82612ca8565b6128778185612cc4565b9350612887818560208601612e78565b61289081613091565b840191505092915050565b60006128a682612ca8565b6128b08185612cd5565b93506128c0818560208601612e78565b80840191505092915050565b60006128d9601283612cc4565b91506128e4826130a2565b602082019050919050565b60006128fc601f83612cc4565b9150612907826130cb565b602082019050919050565b600061291f602683612cc4565b915061292a826130f4565b604082019050919050565b6000612942601383612cc4565b915061294d82613143565b602082019050919050565b6000612965601483612cc4565b91506129708261316c565b602082019050919050565b6000612988601283612cc4565b915061299382613195565b602082019050919050565b60006129ab602083612cc4565b91506129b6826131be565b602082019050919050565b60006129ce600583612cd5565b91506129d9826131e7565b600582019050919050565b60006129f1602083612cc4565b91506129fc82613210565b602082019050919050565b6000612a14600e83612cc4565b9150612a1f82613239565b602082019050919050565b612a3381612e5f565b82525050565b6000612a45828561289b565b9150612a51828461289b565b9150612a5c826129c1565b91508190509392505050565b6000602082019050612a7d600083018461280b565b92915050565b6000608082019050612a98600083018761280b565b612aa5602083018661280b565b612ab26040830185612a2a565b8181036060830152612ac48184612829565b905095945050505050565b6000602082019050612ae4600083018461281a565b92915050565b60006020820190508181036000830152612b048184612862565b905092915050565b60006020820190508181036000830152612b25816128cc565b9050919050565b60006020820190508181036000830152612b45816128ef565b9050919050565b60006020820190508181036000830152612b6581612912565b9050919050565b60006020820190508181036000830152612b8581612935565b9050919050565b60006020820190508181036000830152612ba581612958565b9050919050565b60006020820190508181036000830152612bc58161297b565b9050919050565b60006020820190508181036000830152612be58161299e565b9050919050565b60006020820190508181036000830152612c05816129e4565b9050919050565b60006020820190508181036000830152612c2581612a07565b9050919050565b6000602082019050612c416000830184612a2a565b92915050565b6000612c51612c62565b9050612c5d8282612edd565b919050565b6000604051905090565b600067ffffffffffffffff821115612c8757612c86613044565b5b612c9082613091565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ceb82612e5f565b9150612cf683612e5f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d2b57612d2a612f88565b5b828201905092915050565b6000612d4182612e5f565b9150612d4c83612e5f565b925082612d5c57612d5b612fb7565b5b828204905092915050565b6000612d7282612e5f565b9150612d7d83612e5f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612db657612db5612f88565b5b828202905092915050565b6000612dcc82612e5f565b9150612dd783612e5f565b925082821015612dea57612de9612f88565b5b828203905092915050565b6000612e0082612e3f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e96578082015181840152602081019050612e7b565b83811115612ea5576000848401525b50505050565b60006002820490506001821680612ec357607f821691505b60208210811415612ed757612ed6612fe6565b5b50919050565b612ee682613091565b810181811067ffffffffffffffff82111715612f0557612f04613044565b5b80604052505050565b6000612f1982612e5f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f4c57612f4b612f88565b5b600182019050919050565b6000612f6282612e5f565b9150612f6d83612e5f565b925082612f7d57612f7c612fb7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53414c455f49535f4e4f545f4143544956450000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c595f455843454544454400000000000000000000000000600082015250565b7f5041594d454e545f494e53554646494349454e54000000000000000000000000600082015250565b7f4d41585f4d494e54535f45584345454445440000000000000000000000000000600082015250565b7f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d494e545f544f4f5f4c41524745000000000000000000000000000000000000600082015250565b61326b81612df5565b811461327657600080fd5b50565b61328281612e07565b811461328d57600080fd5b50565b61329981612e13565b81146132a457600080fd5b50565b6132b081612e5f565b81146132bb57600080fd5b5056fea26469706673582212200fe8e5a9bf55ee97613c6e409e3a9c8dd0745165dd95b175664bd892678b0a6264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000003e700000000000000000000000000000000000000000000000000000000000000194d656d6f72696573204f662041204d617374657270696563650000000000000000000000000000000000000000000000000000000000000000000000000000044d4f414d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696334636334797a6175716b6d6c64636e686737326a6d7671666136696364787872796b7976366d7a3375616e6c706f61326e70342f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Memories Of A Masterpiece
Arg [1] : symbol (string): MOAM
Arg [2] : baseTokenURI_ (string): ipfs://bafybeic4cc4yzauqkmldcnhg72jmvqfa6icdxxrykyv6mz3uanlpoa2np4/
Arg [3] : maxSupply_ (uint256): 999
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [5] : 4d656d6f72696573204f662041204d6173746572706965636500000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4d4f414d00000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 697066733a2f2f626166796265696334636334797a6175716b6d6c64636e6867
Arg [10] : 37326a6d7671666136696364787872796b7976366d7a3375616e6c706f61326e
Arg [11] : 70342f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
50603:3062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20139:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25786:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27280:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19193:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36997:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53556:106;;;;;;;;;;;;;:::i;:::-;;28622:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52318:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50838:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25575:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20818:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25955:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50696:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52521:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28008:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28878:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53162:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51823:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51359:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50879:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50745:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50788:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28387:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52115:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20139:615;20224:4;20539:10;20524:25;;:11;:25;;;;:102;;;;20616:10;20601:25;;:11;:25;;;;20524:102;:179;;;;20693:10;20678:25;;:11;:25;;;;20524:179;20504:199;;20139:615;;;:::o;25786:100::-;25840:13;25873:5;25866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25786:100;:::o;27732:204::-;27800:7;27825:16;27833:7;27825;:16::i;:::-;27820:64;;27850:34;;;;;;;;;;;;;;27820:64;27904:15;:24;27920:7;27904:24;;;;;;;;;;;;;;;;;;;;;27897:31;;27732:204;;;:::o;27280:386::-;27353:13;27369:16;27377:7;27369;:16::i;:::-;27353:32;;27425:5;27402:28;;:19;:17;:19::i;:::-;:28;;;27398:175;;27450:44;27467:5;27474:19;:17;:19::i;:::-;27450:16;:44::i;:::-;27445:128;;27522:35;;;;;;;;;;;;;;27445:128;27398:175;27612:2;27585:15;:24;27601:7;27585:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27650:7;27646:2;27630:28;;27639:5;27630:28;;;;;;;;;;;;27342:324;27280:386;;:::o;19193:315::-;19246:7;19474:15;:13;:15::i;:::-;19459:12;;19443:13;;:28;:46;19436:53;;19193:315;:::o;36997:2800::-;37131:27;37161;37180:7;37161:18;:27::i;:::-;37131:57;;37246:4;37205:45;;37221:19;37205:45;;;37201:86;;37259:28;;;;;;;;;;;;;;37201:86;37301:27;37330:23;37357:28;37377:7;37357:19;:28::i;:::-;37300:85;;;;37485:62;37504:15;37521:4;37527:19;:17;:19::i;:::-;37485:18;:62::i;:::-;37480:174;;37567:43;37584:4;37590:19;:17;:19::i;:::-;37567:16;:43::i;:::-;37562:92;;37619:35;;;;;;;;;;;;;;37562:92;37480:174;37685:1;37671:16;;:2;:16;;;37667:52;;;37696:23;;;;;;;;;;;;;;37667:52;37732:43;37754:4;37760:2;37764:7;37773:1;37732:21;:43::i;:::-;37868:15;37865:160;;;38008:1;37987:19;37980:30;37865:160;38403:18;:24;38422:4;38403:24;;;;;;;;;;;;;;;;38401:26;;;;;;;;;;;;38472:18;:22;38491:2;38472:22;;;;;;;;;;;;;;;;38470:24;;;;;;;;;;;38794:145;38831:2;38879:45;38894:4;38900:2;38904:19;38879:14;:45::i;:::-;16421:8;38852:72;38794:18;:145::i;:::-;38765:17;:26;38783:7;38765:26;;;;;;;;;;;:174;;;;39109:1;16421:8;39059:19;:46;:51;39055:626;;;39131:19;39163:1;39153:7;:11;39131:33;;39320:1;39286:17;:30;39304:11;39286:30;;;;;;;;;;;;:35;39282:384;;;39424:13;;39409:11;:28;39405:242;;39604:19;39571:17;:30;39589:11;39571:30;;;;;;;;;;;:52;;;;39405:242;39282:384;39112:569;39055:626;39728:7;39724:2;39709:27;;39718:4;39709:27;;;;;;;;;;;;39747:42;39768:4;39774:2;39778:7;39787:1;39747:20;:42::i;:::-;37120:2677;;;36997:2800;;;:::o;53556:106::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53614:7:::1;:5;:7::i;:::-;53606:25;;:48;53632:21;53606:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53556:106::o:0;28622:185::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;:::-;28622:185;;;:::o;52318:113::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52412:11:::1;;52397:12;:26;;;;;;;:::i;:::-;;52318:113:::0;;:::o;50838:32::-;;;;;;;;;;;;;:::o;25575:144::-;25639:7;25682:27;25701:7;25682:18;:27::i;:::-;25659:52;;25575:144;;;:::o;20818:224::-;20882:7;20923:1;20906:19;;:5;:19;;;20902:60;;;20934:28;;;;;;;;;;;;;;20902:60;15373:13;20980:18;:25;20999:5;20980:25;;;;;;;;;;;;;;;;:54;20973:61;;20818:224;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;25955:104::-;26011:13;26044:7;26037:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25955:104;:::o;50696:42::-;50728:10;50696:42;:::o;52521:524::-;52606:12;;;;;;;;;;;52598:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52701:22;;52688:9;52660:25;52674:10;52660:13;:25::i;:::-;:37;;;;:::i;:::-;:63;;52652:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;52794:9;52781;52765:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;52757:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52867:9;50728:10;52859:17;;;;:::i;:::-;52846:9;:30;;52838:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52914:32;52924:10;52936:9;52914;:32::i;:::-;52980:9;52963:13;:11;:13::i;:::-;:26;52959:79;;53021:5;53006:12;;:20;;;;;;;;;;;;;;;;;;52959:79;52521:524;:::o;28008:308::-;28119:19;:17;:19::i;:::-;28107:31;;:8;:31;;;28103:61;;;28147:17;;;;;;;;;;;;;;28103:61;28229:8;28177:18;:39;28196:19;:17;:19::i;:::-;28177:39;;;;;;;;;;;;;;;:49;28217:8;28177:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28289:8;28253:55;;28268:19;:17;:19::i;:::-;28253:55;;;28299:8;28253:55;;;;;;:::i;:::-;;;;;;;;28008:308;;:::o;28878:399::-;29045:31;29058:4;29064:2;29068:7;29045:12;:31::i;:::-;29109:1;29091:2;:14;;;:19;29087:183;;29130:56;29161:4;29167:2;29171:7;29180:5;29130:30;:56::i;:::-;29125:145;;29214:40;;;;;;;;;;;;;;29125:145;29087:183;28878:399;;;;:::o;53162:312::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53317:9:::1;53301:10;53282:9;;:16;;:29;;;;:::i;:::-;53265:13;:11;:13::i;:::-;:47;;;;:::i;:::-;53264:62;;53256:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;53363:9;53358:109;53382:9;;:16;;53378:1;:20;53358:109;;;53420:35;53430:9;;53440:1;53430:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;53444:10;53420:9;:35::i;:::-;53400:3;;;;;:::i;:::-;;;;53358:109;;;;53162:312:::0;;;:::o;51823:200::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51920:16:::1;51904:32;;:12;;;;;;;;;;;:32;;;;51896:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51999:16;51984:12;;:31;;;;;;;;;;;;;;;;;;51823:200:::0;:::o;51359:252::-;51432:13;51466:16;51474:7;51466;:16::i;:::-;51458:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51562:10;:8;:10::i;:::-;51574:18;:7;:16;:18::i;:::-;51545:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51531:72;;51359:252;;;:::o;50879:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50745:34::-;;;:::o;50788:43::-;;;;:::o;28387:164::-;28484:4;28508:18;:25;28527:5;28508:25;;;;;;;;;;;;;;;:35;28534:8;28508:35;;;;;;;;;;;;;;;;;;;;;;;;;28501:42;;28387:164;;;;:::o;52115:131::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52225:13:::1;52200:22;:38;;;;52115:131:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;29532:273::-;29589:4;29645:7;29626:15;:13;:15::i;:::-;:26;;:66;;;;;29679:13;;29669:7;:23;29626:66;:152;;;;;29777:1;16143:8;29730:17;:26;29748:7;29730:26;;;;;;;;;;;;:43;:48;29626:152;29606:172;;29532:273;;;:::o;48093:105::-;48153:7;48180:10;48173:17;;48093:105;:::o;18717:92::-;18773:7;18717:92;:::o;22492:1129::-;22559:7;22579:12;22594:7;22579:22;;22662:4;22643:15;:13;:15::i;:::-;:23;22639:915;;22696:13;;22689:4;:20;22685:869;;;22734:14;22751:17;:23;22769:4;22751:23;;;;;;;;;;;;22734:40;;22867:1;16143:8;22840:6;:23;:28;22836:699;;;23359:113;23376:1;23366:6;:11;23359:113;;;23419:17;:25;23437:6;;;;;;;23419:25;;;;;;;;;;;;23410:34;;23359:113;;;23505:6;23498:13;;;;;;22836:699;22711:843;22685:869;22639:915;23582:31;;;;;;;;;;;;;;22492:1129;;;;:::o;35333:652::-;35428:27;35457:23;35498:53;35554:15;35498:71;;35740:7;35734:4;35727:21;35775:22;35769:4;35762:36;35851:4;35845;35835:21;35812:44;;35947:19;35941:26;35922:45;;35678:300;35333:652;;;:::o;36098:645::-;36240:11;36402:15;36396:4;36392:26;36384:34;;36561:15;36550:9;36546:31;36533:44;;36708:15;36697:9;36694:30;36687:4;36676:9;36673:19;36670:55;36660:65;;36098:645;;;;;:::o;46926:159::-;;;;;:::o;45238:309::-;45373:7;45393:16;16544:3;45419:19;:40;;45393:67;;16544:3;45486:31;45497:4;45503:2;45507:9;45486:10;:31::i;:::-;45478:40;;:61;;45471:68;;;45238:309;;;;;:::o;25066:447::-;25146:14;25314:15;25307:5;25303:27;25294:36;;25488:5;25474:11;25450:22;25446:40;25443:51;25436:5;25433:62;25423:72;;25066:447;;;;:::o;47744:158::-;;;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;21124:176::-;21185:7;15373:13;15510:2;21213:18;:25;21232:5;21213:25;;;;;;;;;;;;;;;;:49;;21212:80;21205:87;;21124:176;;;:::o;29889:104::-;29958:27;29968:2;29972:8;29958:27;;;;;;;;;;;;:9;:27::i;:::-;29889:104;;:::o;43748:716::-;43911:4;43957:2;43932:45;;;43978:19;:17;:19::i;:::-;43999:4;44005:7;44014:5;43932:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43928:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44232:1;44215:6;:13;:18;44211:235;;;44261:40;;;;;;;;;;;;;;44211:235;44404:6;44398:13;44389:6;44385:2;44381:15;44374:38;43928:529;44101:54;;;44091:64;;;:6;:64;;;;44084:71;;;43748:716;;;;;;:::o;51619:113::-;51679:13;51712:12;51705:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51619:113;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;46123:147::-;46260:6;46123:147;;;;;:::o;30409:681::-;30532:19;30538:2;30542:8;30532:5;:19::i;:::-;30611:1;30593:2;:14;;;:19;30589:483;;30633:11;30647:13;;30633:27;;30679:13;30701:8;30695:3;:14;30679:30;;30728:233;30759:62;30798:1;30802:2;30806:7;;;;;;30815:5;30759:30;:62::i;:::-;30754:167;;30857:40;;;;;;;;;;;;;;30754:167;30956:3;30948:5;:11;30728:233;;31043:3;31026:13;;:20;31022:34;;31048:8;;;31022:34;30614:458;;30589:483;30409:681;;;:::o;31363:1529::-;31428:20;31451:13;;31428:36;;31493:1;31479:16;;:2;:16;;;31475:48;;;31504:19;;;;;;;;;;;;;;31475:48;31550:1;31538:8;:13;31534:44;;;31560:18;;;;;;;;;;;;;;31534:44;31591:61;31621:1;31625:2;31629:12;31643:8;31591:21;:61::i;:::-;32134:1;15510:2;32105:1;:25;;32104:31;32092:8;:44;32066:18;:22;32085:2;32066:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32413:139;32450:2;32504:33;32527:1;32531:2;32535:1;32504:14;:33::i;:::-;32471:30;32492:8;32471:20;:30::i;:::-;:66;32413:18;:139::i;:::-;32379:17;:31;32397:12;32379:31;;;;;;;;;;;:173;;;;32569:15;32587:12;32569:30;;32614:11;32643:8;32628:12;:23;32614:37;;32666:101;32718:9;;;;;;32714:2;32693:35;;32710:1;32693:35;;;;;;;;;;;;32762:3;32752:7;:13;32666:101;;32799:3;32783:13;:19;;;;31840:974;;32824:60;32853:1;32857:2;32861:12;32875:8;32824:20;:60::i;:::-;31417:1475;31363:1529;;:::o;26896:322::-;26966:14;27197:1;27187:8;27184:15;27159:23;27155:45;27145:55;;26896:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:704::-;6101:6;6109;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6320:1;6309:9;6305:17;6292:31;6350:18;6342:6;6339:30;6336:117;;;6372:79;;:::i;:::-;6336:117;6485:80;6557:7;6548:6;6537:9;6533:22;6485:80;:::i;:::-;6467:98;;;;6263:312;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6006:704;;;;;:::o;6716:323::-;6772:6;6821:2;6809:9;6800:7;6796:23;6792:32;6789:119;;;6827:79;;:::i;:::-;6789:119;6947:1;6972:50;7014:7;7005:6;6994:9;6990:22;6972:50;:::i;:::-;6962:60;;6918:114;6716:323;;;;:::o;7045:327::-;7103:6;7152:2;7140:9;7131:7;7127:23;7123:32;7120:119;;;7158:79;;:::i;:::-;7120:119;7278:1;7303:52;7347:7;7338:6;7327:9;7323:22;7303:52;:::i;:::-;7293:62;;7249:116;7045:327;;;;:::o;7378:349::-;7447:6;7496:2;7484:9;7475:7;7471:23;7467:32;7464:119;;;7502:79;;:::i;:::-;7464:119;7622:1;7647:63;7702:7;7693:6;7682:9;7678:22;7647:63;:::i;:::-;7637:73;;7593:127;7378:349;;;;:::o;7733:529::-;7804:6;7812;7861:2;7849:9;7840:7;7836:23;7832:32;7829:119;;;7867:79;;:::i;:::-;7829:119;8015:1;8004:9;8000:17;7987:31;8045:18;8037:6;8034:30;8031:117;;;8067:79;;:::i;:::-;8031:117;8180:65;8237:7;8228:6;8217:9;8213:22;8180:65;:::i;:::-;8162:83;;;;7958:297;7733:529;;;;;:::o;8268:329::-;8327:6;8376:2;8364:9;8355:7;8351:23;8347:32;8344:119;;;8382:79;;:::i;:::-;8344:119;8502:1;8527:53;8572:7;8563:6;8552:9;8548:22;8527:53;:::i;:::-;8517:63;;8473:117;8268:329;;;;:::o;8603:118::-;8690:24;8708:5;8690:24;:::i;:::-;8685:3;8678:37;8603:118;;:::o;8727:109::-;8808:21;8823:5;8808:21;:::i;:::-;8803:3;8796:34;8727:109;;:::o;8842:360::-;8928:3;8956:38;8988:5;8956:38;:::i;:::-;9010:70;9073:6;9068:3;9010:70;:::i;:::-;9003:77;;9089:52;9134:6;9129:3;9122:4;9115:5;9111:16;9089:52;:::i;:::-;9166:29;9188:6;9166:29;:::i;:::-;9161:3;9157:39;9150:46;;8932:270;8842:360;;;;:::o;9208:364::-;9296:3;9324:39;9357:5;9324:39;:::i;:::-;9379:71;9443:6;9438:3;9379:71;:::i;:::-;9372:78;;9459:52;9504:6;9499:3;9492:4;9485:5;9481:16;9459:52;:::i;:::-;9536:29;9558:6;9536:29;:::i;:::-;9531:3;9527:39;9520:46;;9300:272;9208:364;;;;:::o;9578:377::-;9684:3;9712:39;9745:5;9712:39;:::i;:::-;9767:89;9849:6;9844:3;9767:89;:::i;:::-;9760:96;;9865:52;9910:6;9905:3;9898:4;9891:5;9887:16;9865:52;:::i;:::-;9942:6;9937:3;9933:16;9926:23;;9688:267;9578:377;;;;:::o;9961:366::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:400::-;12725:3;12746:84;12828:1;12823:3;12746:84;:::i;:::-;12739:91;;12839:93;12928:3;12839:93;:::i;:::-;12957:1;12952:3;12948:11;12941:18;;12565:400;;;:::o;12971:366::-;13113:3;13134:67;13198:2;13193:3;13134:67;:::i;:::-;13127:74;;13210:93;13299:3;13210:93;:::i;:::-;13328:2;13323:3;13319:12;13312:19;;12971:366;;;:::o;13343:::-;13485:3;13506:67;13570:2;13565:3;13506:67;:::i;:::-;13499:74;;13582:93;13671:3;13582:93;:::i;:::-;13700:2;13695:3;13691:12;13684:19;;13343:366;;;:::o;13715:118::-;13802:24;13820:5;13802:24;:::i;:::-;13797:3;13790:37;13715:118;;:::o;13839:701::-;14120:3;14142:95;14233:3;14224:6;14142:95;:::i;:::-;14135:102;;14254:95;14345:3;14336:6;14254:95;:::i;:::-;14247:102;;14366:148;14510:3;14366:148;:::i;:::-;14359:155;;14531:3;14524:10;;13839:701;;;;;:::o;14546:222::-;14639:4;14677:2;14666:9;14662:18;14654:26;;14690:71;14758:1;14747:9;14743:17;14734:6;14690:71;:::i;:::-;14546:222;;;;:::o;14774:640::-;14969:4;15007:3;14996:9;14992:19;14984:27;;15021:71;15089:1;15078:9;15074:17;15065:6;15021:71;:::i;:::-;15102:72;15170:2;15159:9;15155:18;15146:6;15102:72;:::i;:::-;15184;15252:2;15241:9;15237:18;15228:6;15184:72;:::i;:::-;15303:9;15297:4;15293:20;15288:2;15277:9;15273:18;15266:48;15331:76;15402:4;15393:6;15331:76;:::i;:::-;15323:84;;14774:640;;;;;;;:::o;15420:210::-;15507:4;15545:2;15534:9;15530:18;15522:26;;15558:65;15620:1;15609:9;15605:17;15596:6;15558:65;:::i;:::-;15420:210;;;;:::o;15636:313::-;15749:4;15787:2;15776:9;15772:18;15764:26;;15836:9;15830:4;15826:20;15822:1;15811:9;15807:17;15800:47;15864:78;15937:4;15928:6;15864:78;:::i;:::-;15856:86;;15636:313;;;;:::o;15955:419::-;16121:4;16159:2;16148:9;16144:18;16136:26;;16208:9;16202:4;16198:20;16194:1;16183:9;16179:17;16172:47;16236:131;16362:4;16236:131;:::i;:::-;16228:139;;15955:419;;;:::o;16380:::-;16546:4;16584:2;16573:9;16569:18;16561:26;;16633:9;16627:4;16623:20;16619:1;16608:9;16604:17;16597:47;16661:131;16787:4;16661:131;:::i;:::-;16653:139;;16380:419;;;:::o;16805:::-;16971:4;17009:2;16998:9;16994:18;16986:26;;17058:9;17052:4;17048:20;17044:1;17033:9;17029:17;17022:47;17086:131;17212:4;17086:131;:::i;:::-;17078:139;;16805:419;;;:::o;17230:::-;17396:4;17434:2;17423:9;17419:18;17411:26;;17483:9;17477:4;17473:20;17469:1;17458:9;17454:17;17447:47;17511:131;17637:4;17511:131;:::i;:::-;17503:139;;17230:419;;;:::o;17655:::-;17821:4;17859:2;17848:9;17844:18;17836:26;;17908:9;17902:4;17898:20;17894:1;17883:9;17879:17;17872:47;17936:131;18062:4;17936:131;:::i;:::-;17928:139;;17655:419;;;:::o;18080:::-;18246:4;18284:2;18273:9;18269:18;18261:26;;18333:9;18327:4;18323:20;18319:1;18308:9;18304:17;18297:47;18361:131;18487:4;18361:131;:::i;:::-;18353:139;;18080:419;;;:::o;18505:::-;18671:4;18709:2;18698:9;18694:18;18686:26;;18758:9;18752:4;18748:20;18744:1;18733:9;18729:17;18722:47;18786:131;18912:4;18786:131;:::i;:::-;18778:139;;18505:419;;;:::o;18930:::-;19096:4;19134:2;19123:9;19119:18;19111:26;;19183:9;19177:4;19173:20;19169:1;19158:9;19154:17;19147:47;19211:131;19337:4;19211:131;:::i;:::-;19203:139;;18930:419;;;:::o;19355:::-;19521:4;19559:2;19548:9;19544:18;19536:26;;19608:9;19602:4;19598:20;19594:1;19583:9;19579:17;19572:47;19636:131;19762:4;19636:131;:::i;:::-;19628:139;;19355:419;;;:::o;19780:222::-;19873:4;19911:2;19900:9;19896:18;19888:26;;19924:71;19992:1;19981:9;19977:17;19968:6;19924:71;:::i;:::-;19780:222;;;;:::o;20008:129::-;20042:6;20069:20;;:::i;:::-;20059:30;;20098:33;20126:4;20118:6;20098:33;:::i;:::-;20008:129;;;:::o;20143:75::-;20176:6;20209:2;20203:9;20193:19;;20143:75;:::o;20224:307::-;20285:4;20375:18;20367:6;20364:30;20361:56;;;20397:18;;:::i;:::-;20361:56;20435:29;20457:6;20435:29;:::i;:::-;20427:37;;20519:4;20513;20509:15;20501:23;;20224:307;;;:::o;20537:98::-;20588:6;20622:5;20616:12;20606:22;;20537:98;;;:::o;20641:99::-;20693:6;20727:5;20721:12;20711:22;;20641:99;;;:::o;20746:168::-;20829:11;20863:6;20858:3;20851:19;20903:4;20898:3;20894:14;20879:29;;20746:168;;;;:::o;20920:169::-;21004:11;21038:6;21033:3;21026:19;21078:4;21073:3;21069:14;21054:29;;20920:169;;;;:::o;21095:148::-;21197:11;21234:3;21219:18;;21095:148;;;;:::o;21249:305::-;21289:3;21308:20;21326:1;21308:20;:::i;:::-;21303:25;;21342:20;21360:1;21342:20;:::i;:::-;21337:25;;21496:1;21428:66;21424:74;21421:1;21418:81;21415:107;;;21502:18;;:::i;:::-;21415:107;21546:1;21543;21539:9;21532:16;;21249:305;;;;:::o;21560:185::-;21600:1;21617:20;21635:1;21617:20;:::i;:::-;21612:25;;21651:20;21669:1;21651:20;:::i;:::-;21646:25;;21690:1;21680:35;;21695:18;;:::i;:::-;21680:35;21737:1;21734;21730:9;21725:14;;21560:185;;;;:::o;21751:348::-;21791:7;21814:20;21832:1;21814:20;:::i;:::-;21809:25;;21848:20;21866:1;21848:20;:::i;:::-;21843:25;;22036:1;21968:66;21964:74;21961:1;21958:81;21953:1;21946:9;21939:17;21935:105;21932:131;;;22043:18;;:::i;:::-;21932:131;22091:1;22088;22084:9;22073:20;;21751:348;;;;:::o;22105:191::-;22145:4;22165:20;22183:1;22165:20;:::i;:::-;22160:25;;22199:20;22217:1;22199:20;:::i;:::-;22194:25;;22238:1;22235;22232:8;22229:34;;;22243:18;;:::i;:::-;22229:34;22288:1;22285;22281:9;22273:17;;22105:191;;;;:::o;22302:96::-;22339:7;22368:24;22386:5;22368:24;:::i;:::-;22357:35;;22302:96;;;:::o;22404:90::-;22438:7;22481:5;22474:13;22467:21;22456:32;;22404:90;;;:::o;22500:149::-;22536:7;22576:66;22569:5;22565:78;22554:89;;22500:149;;;:::o;22655:126::-;22692:7;22732:42;22725:5;22721:54;22710:65;;22655:126;;;:::o;22787:77::-;22824:7;22853:5;22842:16;;22787:77;;;:::o;22870:154::-;22954:6;22949:3;22944;22931:30;23016:1;23007:6;23002:3;22998:16;22991:27;22870:154;;;:::o;23030:307::-;23098:1;23108:113;23122:6;23119:1;23116:13;23108:113;;;23207:1;23202:3;23198:11;23192:18;23188:1;23183:3;23179:11;23172:39;23144:2;23141:1;23137:10;23132:15;;23108:113;;;23239:6;23236:1;23233:13;23230:101;;;23319:1;23310:6;23305:3;23301:16;23294:27;23230:101;23079:258;23030:307;;;:::o;23343:320::-;23387:6;23424:1;23418:4;23414:12;23404:22;;23471:1;23465:4;23461:12;23492:18;23482:81;;23548:4;23540:6;23536:17;23526:27;;23482:81;23610:2;23602:6;23599:14;23579:18;23576:38;23573:84;;;23629:18;;:::i;:::-;23573:84;23394:269;23343:320;;;:::o;23669:281::-;23752:27;23774:4;23752:27;:::i;:::-;23744:6;23740:40;23882:6;23870:10;23867:22;23846:18;23834:10;23831:34;23828:62;23825:88;;;23893:18;;:::i;:::-;23825:88;23933:10;23929:2;23922:22;23712:238;23669:281;;:::o;23956:233::-;23995:3;24018:24;24036:5;24018:24;:::i;:::-;24009:33;;24064:66;24057:5;24054:77;24051:103;;;24134:18;;:::i;:::-;24051:103;24181:1;24174:5;24170:13;24163:20;;23956:233;;;:::o;24195:176::-;24227:1;24244:20;24262:1;24244:20;:::i;:::-;24239:25;;24278:20;24296:1;24278:20;:::i;:::-;24273:25;;24317:1;24307:35;;24322:18;;:::i;:::-;24307:35;24363:1;24360;24356:9;24351:14;;24195:176;;;;:::o;24377:180::-;24425:77;24422:1;24415:88;24522:4;24519:1;24512:15;24546:4;24543:1;24536:15;24563:180;24611:77;24608:1;24601:88;24708:4;24705:1;24698:15;24732:4;24729:1;24722:15;24749:180;24797:77;24794:1;24787:88;24894:4;24891:1;24884:15;24918:4;24915:1;24908:15;24935:180;24983:77;24980:1;24973:88;25080:4;25077:1;25070:15;25104:4;25101:1;25094:15;25121:180;25169:77;25166:1;25159:88;25266:4;25263:1;25256:15;25290:4;25287:1;25280:15;25307:117;25416:1;25413;25406:12;25430:117;25539:1;25536;25529:12;25553:117;25662:1;25659;25652:12;25676:117;25785:1;25782;25775:12;25799:117;25908:1;25905;25898:12;25922:117;26031:1;26028;26021:12;26045:102;26086:6;26137:2;26133:7;26128:2;26121:5;26117:14;26113:28;26103:38;;26045:102;;;:::o;26153:168::-;26293:20;26289:1;26281:6;26277:14;26270:44;26153:168;:::o;26327:181::-;26467:33;26463:1;26455:6;26451:14;26444:57;26327:181;:::o;26514:225::-;26654:34;26650:1;26642:6;26638:14;26631:58;26723:8;26718:2;26710:6;26706:15;26699:33;26514:225;:::o;26745:169::-;26885:21;26881:1;26873:6;26869:14;26862:45;26745:169;:::o;26920:170::-;27060:22;27056:1;27048:6;27044:14;27037:46;26920:170;:::o;27096:168::-;27236:20;27232:1;27224:6;27220:14;27213:44;27096:168;:::o;27270:182::-;27410:34;27406:1;27398:6;27394:14;27387:58;27270:182;:::o;27458:155::-;27598:7;27594:1;27586:6;27582:14;27575:31;27458:155;:::o;27619:182::-;27759:34;27755:1;27747:6;27743:14;27736:58;27619:182;:::o;27807:164::-;27947:16;27943:1;27935:6;27931:14;27924:40;27807:164;:::o;27977:122::-;28050:24;28068:5;28050:24;:::i;:::-;28043:5;28040:35;28030:63;;28089:1;28086;28079:12;28030:63;27977:122;:::o;28105:116::-;28175:21;28190:5;28175:21;:::i;:::-;28168:5;28165:32;28155:60;;28211:1;28208;28201:12;28155:60;28105:116;:::o;28227:120::-;28299:23;28316:5;28299:23;:::i;:::-;28292:5;28289:34;28279:62;;28337:1;28334;28327:12;28279:62;28227:120;:::o;28353:122::-;28426:24;28444:5;28426:24;:::i;:::-;28419:5;28416:35;28406:63;;28465:1;28462;28455:12;28406:63;28353:122;:::o
Swarm Source
ipfs://0fe8e5a9bf55ee97613c6e409e3a9c8dd0745165dd95b175664bd892678b0a62
Loading...
Loading
Loading...
Loading
OVERVIEW
Titled, "Memories Of A Masterpiece," this collection of 999 artworks is inspired by the volition to capture, recreate, or relive a memory. Each piece leverages hand-cut paper, individually laid out and scanned. Leaning into the idea that moments are spontaneous and can never be replicat...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.