Source Code
Overview
APE Balance
0 APE
More Info
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Base URI | 14151185 | 38 hrs ago | IN | 0 APE | 0.00000075 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
testape222
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at curtis.apescan.io on 2024-12-24 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ 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 { 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) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: testape.sol pragma solidity ^0.8.20; contract testape222 is ERC721A, Ownable { using Strings for uint256; // uint256 public MAX_SUPPLY = 333; // uint256 public constant MAX_PER_WALLET = 10; // uint256 public PRICE = 1 ether; // ape // string public baseURI; constructor(string memory _initialBaseURI) ERC721A("testape222", "testape222") { baseURI = _initialBaseURI; } // function mint(uint256 quantity) external payable { require(totalSupply() + quantity <= MAX_SUPPLY, "Exceeds max supply"); require(balanceOf(msg.sender) + quantity <= MAX_PER_WALLET, "Exceeds max per wallet"); require(msg.value >= PRICE * quantity, "Insufficient payment"); _mint(msg.sender, quantity); // (bool success, ) = payable(owner()).call{ value: msg.value }(""); require(success, "Transfer failed"); } // function reduceMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "New max supply must be less than current max supply"); require(totalSupply() <= newMaxSupply, "New max supply must be greater than total supply"); MAX_SUPPLY = newMaxSupply; } // function updatePrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } // function _baseURI() internal view override returns (string memory) { return baseURI; } // function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } // function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString(), ".json")) : ""; } // function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No funds to withdraw"); (bool success, ) = payable(owner()).call{ value: balance }(""); require(success, "Withdraw failed"); } }
[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261014d600955670de0b6b3a7640000600a55348015610021575f5ffd5b506040516134e23803806134e283398181016040528101906100439190610334565b6040518060400160405280600a81526020017f74657374617065323232000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f746573746170653232320000000000000000000000000000000000000000000081525081600290816100be919061058b565b5080600390816100ce919061058b565b506100dd61011660201b60201c565b5f8190555050506101006100f561011d60201b60201c565b61012460201b60201c565b80600b908161010f919061058b565b505061065a565b5f5f905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f5ffd5b5f5ffd5b5f5ffd5b5f5ffd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61024682610200565b810181811067ffffffffffffffff8211171561026557610264610210565b5b80604052505050565b5f6102776101e7565b9050610283828261023d565b919050565b5f67ffffffffffffffff8211156102a2576102a1610210565b5b6102ab82610200565b9050602081019050919050565b8281835e5f83830152505050565b5f6102d86102d384610288565b61026e565b9050828152602081018484840111156102f4576102f36101fc565b5b6102ff8482856102b8565b509392505050565b5f82601f83011261031b5761031a6101f8565b5b815161032b8482602086016102c6565b91505092915050565b5f60208284031215610349576103486101f0565b5b5f82015167ffffffffffffffff811115610366576103656101f4565b5b61037284828501610307565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103c957607f821691505b6020821081036103dc576103db610385565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261043e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610403565b6104488683610403565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61048c61048761048284610460565b610469565b610460565b9050919050565b5f819050919050565b6104a583610472565b6104b96104b182610493565b84845461040f565b825550505050565b5f5f905090565b6104d06104c1565b6104db81848461049c565b505050565b5b818110156104fe576104f35f826104c8565b6001810190506104e1565b5050565b601f82111561054357610514816103e2565b61051d846103f4565b8101602085101561052c578190505b610540610538856103f4565b8301826104e0565b50505b505050565b5f82821c905092915050565b5f6105635f1984600802610548565b1980831691505092915050565b5f61057b8383610554565b9150826002028217905092915050565b6105948261037b565b67ffffffffffffffff8111156105ad576105ac610210565b5b6105b782546103b2565b6105c2828285610502565b5f60209050601f8311600181146105f3575f84156105e1578287015190505b6105eb8582610570565b865550610652565b601f198416610601866103e2565b5f5b8281101561062857848901518255600182019150602085019450602081019050610603565b868310156106455784890151610641601f891682610554565b8355505b6001600288020188555050505b505050505050565b612e7b806106675f395ff3fe608060405260043610610180575f3560e01c806370a08231116100d057806395d89b4111610089578063b88d4fde11610063578063b88d4fde14610500578063c87b56dd1461051c578063e985e9c514610558578063f2fde38b1461059457610180565b806395d89b4114610492578063a0712d68146104bc578063a22cb465146104d857610180565b806370a082311461039c578063715018a6146103d857806373532802146103ee5780638d6cc56d146104165780638d859f3e1461043e5780638da5cb5b1461046857610180565b806323b872dd1161013d57806342842e0e1161011757806342842e0e146102f257806355f804b31461030e5780636352211e146103365780636c0360eb1461037257610180565b806323b872dd1461029657806332cb6b0c146102b25780633ccfd60b146102dc57610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024257806318160ddd1461026c575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a59190611e0d565b6105bc565b6040516101b79190611e52565b60405180910390f35b3480156101cb575f5ffd5b506101d461064d565b6040516101e19190611edb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b9190611f2e565b6106dd565b60405161021d9190611f98565b60405180910390f35b610240600480360381019061023b9190611fdb565b610757565b005b34801561024d575f5ffd5b50610256610896565b6040516102639190612028565b60405180910390f35b348015610277575f5ffd5b5061028061089b565b60405161028d9190612028565b60405180910390f35b6102b060048036038101906102ab9190612041565b6108b0565b005b3480156102bd575f5ffd5b506102c6610bbe565b6040516102d39190612028565b60405180910390f35b3480156102e7575f5ffd5b506102f0610bc4565b005b61030c60048036038101906103079190612041565b610cc5565b005b348015610319575f5ffd5b50610334600480360381019061032f91906121bd565b610ce4565b005b348015610341575f5ffd5b5061035c60048036038101906103579190611f2e565b610cff565b6040516103699190611f98565b60405180910390f35b34801561037d575f5ffd5b50610386610d10565b6040516103939190611edb565b60405180910390f35b3480156103a7575f5ffd5b506103c260048036038101906103bd9190612204565b610d9c565b6040516103cf9190612028565b60405180910390f35b3480156103e3575f5ffd5b506103ec610e51565b005b3480156103f9575f5ffd5b50610414600480360381019061040f9190611f2e565b610e64565b005b348015610421575f5ffd5b5061043c60048036038101906104379190611f2e565b610f04565b005b348015610449575f5ffd5b50610452610f16565b60405161045f9190612028565b60405180910390f35b348015610473575f5ffd5b5061047c610f1c565b6040516104899190611f98565b60405180910390f35b34801561049d575f5ffd5b506104a6610f44565b6040516104b39190611edb565b60405180910390f35b6104d660048036038101906104d19190611f2e565b610fd4565b005b3480156104e3575f5ffd5b506104fe60048036038101906104f99190612259565b61118f565b005b61051a60048036038101906105159190612335565b611295565b005b348015610527575f5ffd5b50610542600480360381019061053d9190611f2e565b611307565b60405161054f9190611edb565b60405180910390f35b348015610563575f5ffd5b5061057e600480360381019061057991906123b5565b6113ab565b60405161058b9190611e52565b60405180910390f35b34801561059f575f5ffd5b506105ba60048036038101906105b59190612204565b611439565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106465750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065c90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461068890612420565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b5f6106e7826114bb565b61071d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61076182610cff565b90508073ffffffffffffffffffffffffffffffffffffffff16610782611515565b73ffffffffffffffffffffffffffffffffffffffff16146107e5576107ae816107a9611515565b6113ab565b6107e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f6108a461151c565b6001545f540303905090565b5f6108ba82611523565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f61092c846115e6565b91509150610942818761093d611515565b611609565b61098e5761095786610952611515565b6113ab565b61098d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a00868686600161164c565b8015610a0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ad285610aae888887611652565b7c020000000000000000000000000000000000000000000000000000000017611679565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610b4e575f6001850190505f60045f8381526020019081526020015f205403610b4c575f548114610b4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bb686868660016116a3565b505050505050565b60095481565b610bcc6116a9565b5f4790505f8111610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061249a565b60405180910390fd5b5f610c1b610f1c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c3e906124e5565b5f6040518083038185875af1925050503d805f8114610c78576040519150601f19603f3d011682016040523d82523d5f602084013e610c7d565b606091505b5050905080610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612543565b60405180910390fd5b5050565b610cdf83838360405180602001604052805f815250611295565b505050565b610cec6116a9565b80600b9081610cfb9190612701565b5050565b5f610d0982611523565b9050919050565b600b8054610d1d90612420565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990612420565b8015610d945780601f10610d6b57610100808354040283529160200191610d94565b820191905f5260205f20905b815481529060010190602001808311610d7757829003601f168201915b505050505081565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e596116a9565b610e625f611727565b565b610e6c6116a9565b6009548110610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612840565b60405180910390fd5b80610eb961089b565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906128ce565b60405180910390fd5b8060098190555050565b610f0c6116a9565b80600a8190555050565b600a5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5390612420565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f90612420565b8015610fca5780601f10610fa157610100808354040283529160200191610fca565b820191905f5260205f20905b815481529060010190602001808311610fad57829003601f168201915b5050505050905090565b60095481610fe061089b565b610fea9190612919565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612996565b60405180910390fd5b600a8161103733610d9c565b6110419190612919565b1115611082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611079906129fe565b60405180910390fd5b80600a546110909190612a1c565b3410156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612aa7565b60405180910390fd5b6110dc33826117ea565b5f6110e5610f1c565b73ffffffffffffffffffffffffffffffffffffffff1634604051611108906124e5565b5f6040518083038185875af1925050503d805f8114611142576040519150601f19603f3d011682016040523d82523d5f602084013e611147565b606091505b505090508061118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612b0f565b60405180910390fd5b5050565b8060075f61119b611515565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611244611515565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112899190611e52565b60405180910390a35050565b6112a08484846108b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611301576112ca84848484611993565b611300576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611312826114bb565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612b77565b60405180910390fd5b5f61135a611ade565b90505f8151116113785760405180602001604052805f8152506113a3565b8061138284611b6e565b604051602001611393929190612c19565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114416116a9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612cb7565b60405180910390fd5b6114b881611727565b50565b5f816114c561151c565b111580156114d357505f5482105b801561150e57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f5f905090565b5f5f8290508061153161151c565b116115af575f548110156115ae575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115ac575b5f81036115a25760045f836001900393508381526020019081526020015f2054905061157b565b80925050506115e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f5f5f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f5f60e883901c905060e8611668868684611c38565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116b1611c40565b73ffffffffffffffffffffffffffffffffffffffff166116cf610f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90612d1f565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f5490505f8203611828576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118345f84838561164c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506118a6836118975f865f611652565b6118a085611c47565b17611679565b60045f8381526020019081526020015f20819055505f5f838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600183015b8181146119405780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600181019050611907565b505f820361197a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061198e5f8483856116a3565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119b8611515565b8786866040518563ffffffff1660e01b81526004016119da9493929190612d8f565b6020604051808303815f875af1925050508015611a1557506040513d601f19601f82011682018060405250810190611a129190612ded565b60015b611a8b573d805f8114611a43576040519150601f19603f3d011682016040523d82523d5f602084013e611a48565b606091505b505f815103611a83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611aed90612420565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1990612420565b8015611b645780601f10611b3b57610100808354040283529160200191611b64565b820191905f5260205f20905b815481529060010190602001808311611b4757829003601f168201915b5050505050905090565b60605f6001611b7c84611c56565b0190505f8167ffffffffffffffff811115611b9a57611b99612099565b5b6040519080825280601f01601f191660200182016040528015611bcc5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611c2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c2257611c21612e18565b5b0494505f8503611bd9575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611cb2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ca857611ca7612e18565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cef576d04ee2d6d415b85acef81000000008381611ce557611ce4612e18565b5b0492506020810190505b662386f26fc100008310611d1e57662386f26fc100008381611d1457611d13612e18565b5b0492506010810190505b6305f5e1008310611d47576305f5e1008381611d3d57611d3c612e18565b5b0492506008810190505b6127108310611d6c576127108381611d6257611d61612e18565b5b0492506004810190505b60648310611d8f5760648381611d8557611d84612e18565b5b0492506002810190505b600a8310611d9e576001810190505b80915050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dec81611db8565b8114611df6575f5ffd5b50565b5f81359050611e0781611de3565b92915050565b5f60208284031215611e2257611e21611db0565b5b5f611e2f84828501611df9565b91505092915050565b5f8115159050919050565b611e4c81611e38565b82525050565b5f602082019050611e655f830184611e43565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611ead82611e6b565b611eb78185611e75565b9350611ec7818560208601611e85565b611ed081611e93565b840191505092915050565b5f6020820190508181035f830152611ef38184611ea3565b905092915050565b5f819050919050565b611f0d81611efb565b8114611f17575f5ffd5b50565b5f81359050611f2881611f04565b92915050565b5f60208284031215611f4357611f42611db0565b5b5f611f5084828501611f1a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f8282611f59565b9050919050565b611f9281611f78565b82525050565b5f602082019050611fab5f830184611f89565b92915050565b611fba81611f78565b8114611fc4575f5ffd5b50565b5f81359050611fd581611fb1565b92915050565b5f5f60408385031215611ff157611ff0611db0565b5b5f611ffe85828601611fc7565b925050602061200f85828601611f1a565b9150509250929050565b61202281611efb565b82525050565b5f60208201905061203b5f830184612019565b92915050565b5f5f5f6060848603121561205857612057611db0565b5b5f61206586828701611fc7565b935050602061207686828701611fc7565b925050604061208786828701611f1a565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6120cf82611e93565b810181811067ffffffffffffffff821117156120ee576120ed612099565b5b80604052505050565b5f612100611da7565b905061210c82826120c6565b919050565b5f67ffffffffffffffff82111561212b5761212a612099565b5b61213482611e93565b9050602081019050919050565b828183375f83830152505050565b5f61216161215c84612111565b6120f7565b90508281526020810184848401111561217d5761217c612095565b5b612188848285612141565b509392505050565b5f82601f8301126121a4576121a3612091565b5b81356121b484826020860161214f565b91505092915050565b5f602082840312156121d2576121d1611db0565b5b5f82013567ffffffffffffffff8111156121ef576121ee611db4565b5b6121fb84828501612190565b91505092915050565b5f6020828403121561221957612218611db0565b5b5f61222684828501611fc7565b91505092915050565b61223881611e38565b8114612242575f5ffd5b50565b5f813590506122538161222f565b92915050565b5f5f6040838503121561226f5761226e611db0565b5b5f61227c85828601611fc7565b925050602061228d85828601612245565b9150509250929050565b5f67ffffffffffffffff8211156122b1576122b0612099565b5b6122ba82611e93565b9050602081019050919050565b5f6122d96122d484612297565b6120f7565b9050828152602081018484840111156122f5576122f4612095565b5b612300848285612141565b509392505050565b5f82601f83011261231c5761231b612091565b5b813561232c8482602086016122c7565b91505092915050565b5f5f5f5f6080858703121561234d5761234c611db0565b5b5f61235a87828801611fc7565b945050602061236b87828801611fc7565b935050604061237c87828801611f1a565b925050606085013567ffffffffffffffff81111561239d5761239c611db4565b5b6123a987828801612308565b91505092959194509250565b5f5f604083850312156123cb576123ca611db0565b5b5f6123d885828601611fc7565b92505060206123e985828601611fc7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061243757607f821691505b60208210810361244a576124496123f3565b5b50919050565b7f4e6f2066756e647320746f2077697468647261770000000000000000000000005f82015250565b5f612484601483611e75565b915061248f82612450565b602082019050919050565b5f6020820190508181035f8301526124b181612478565b9050919050565b5f81905092915050565b50565b5f6124d05f836124b8565b91506124db826124c2565b5f82019050919050565b5f6124ef826124c5565b9150819050919050565b7f5769746864726177206661696c656400000000000000000000000000000000005f82015250565b5f61252d600f83611e75565b9150612538826124f9565b602082019050919050565b5f6020820190508181035f83015261255a81612521565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612582565b6125c78683612582565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6126026125fd6125f884611efb565b6125df565b611efb565b9050919050565b5f819050919050565b61261b836125e8565b61262f61262782612609565b84845461258e565b825550505050565b5f5f905090565b612646612637565b612651818484612612565b505050565b5b81811015612674576126695f8261263e565b600181019050612657565b5050565b601f8211156126b95761268a81612561565b61269384612573565b810160208510156126a2578190505b6126b66126ae85612573565b830182612656565b50505b505050565b5f82821c905092915050565b5f6126d95f19846008026126be565b1980831691505092915050565b5f6126f183836126ca565b9150826002028217905092915050565b61270a82611e6b565b67ffffffffffffffff81111561272357612722612099565b5b61272d8254612420565b612738828285612678565b5f60209050601f831160018114612769575f8415612757578287015190505b61276185826126e6565b8655506127c8565b601f19841661277786612561565b5f5b8281101561279e57848901518255600182019150602085019450602081019050612779565b868310156127bb57848901516127b7601f8916826126ca565b8355505b6001600288020188555050505b505050505050565b7f4e6577206d617820737570706c79206d757374206265206c657373207468616e5f8201527f2063757272656e74206d617820737570706c7900000000000000000000000000602082015250565b5f61282a603383611e75565b9150612835826127d0565b604082019050919050565b5f6020820190508181035f8301526128578161281e565b9050919050565b7f4e6577206d617820737570706c79206d757374206265206772656174657220745f8201527f68616e20746f74616c20737570706c7900000000000000000000000000000000602082015250565b5f6128b8603083611e75565b91506128c38261285e565b604082019050919050565b5f6020820190508181035f8301526128e5816128ac565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61292382611efb565b915061292e83611efb565b9250828201905080821115612946576129456128ec565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612980601283611e75565b915061298b8261294c565b602082019050919050565b5f6020820190508181035f8301526129ad81612974565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f6129e8601683611e75565b91506129f3826129b4565b602082019050919050565b5f6020820190508181035f830152612a15816129dc565b9050919050565b5f612a2682611efb565b9150612a3183611efb565b9250828202612a3f81611efb565b91508282048414831517612a5657612a556128ec565b5b5092915050565b7f496e73756666696369656e74207061796d656e740000000000000000000000005f82015250565b5f612a91601483611e75565b9150612a9c82612a5d565b602082019050919050565b5f6020820190508181035f830152612abe81612a85565b9050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f612af9600f83611e75565b9150612b0482612ac5565b602082019050919050565b5f6020820190508181035f830152612b2681612aed565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612b61601f83611e75565b9150612b6c82612b2d565b602082019050919050565b5f6020820190508181035f830152612b8e81612b55565b9050919050565b5f81905092915050565b5f612ba982611e6b565b612bb38185612b95565b9350612bc3818560208601611e85565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c03600583612b95565b9150612c0e82612bcf565b600582019050919050565b5f612c248285612b9f565b9150612c308284612b9f565b9150612c3b82612bf7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ca1602683611e75565b9150612cac82612c47565b604082019050919050565b5f6020820190508181035f830152612cce81612c95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d09602083611e75565b9150612d1482612cd5565b602082019050919050565b5f6020820190508181035f830152612d3681612cfd565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d6182612d3d565b612d6b8185612d47565b9350612d7b818560208601611e85565b612d8481611e93565b840191505092915050565b5f608082019050612da25f830187611f89565b612daf6020830186611f89565b612dbc6040830185612019565b8181036060830152612dce8184612d57565b905095945050505050565b5f81519050612de781611de3565b92915050565b5f60208284031215612e0257612e01611db0565b5b5f612e0f84828501612dd9565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220a652d929b27029bfcf4917299fec81f77d37efc3d4eed62d2615d4ea229144cb64736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000027777000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610180575f3560e01c806370a08231116100d057806395d89b4111610089578063b88d4fde11610063578063b88d4fde14610500578063c87b56dd1461051c578063e985e9c514610558578063f2fde38b1461059457610180565b806395d89b4114610492578063a0712d68146104bc578063a22cb465146104d857610180565b806370a082311461039c578063715018a6146103d857806373532802146103ee5780638d6cc56d146104165780638d859f3e1461043e5780638da5cb5b1461046857610180565b806323b872dd1161013d57806342842e0e1161011757806342842e0e146102f257806355f804b31461030e5780636352211e146103365780636c0360eb1461037257610180565b806323b872dd1461029657806332cb6b0c146102b25780633ccfd60b146102dc57610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024257806318160ddd1461026c575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a59190611e0d565b6105bc565b6040516101b79190611e52565b60405180910390f35b3480156101cb575f5ffd5b506101d461064d565b6040516101e19190611edb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b9190611f2e565b6106dd565b60405161021d9190611f98565b60405180910390f35b610240600480360381019061023b9190611fdb565b610757565b005b34801561024d575f5ffd5b50610256610896565b6040516102639190612028565b60405180910390f35b348015610277575f5ffd5b5061028061089b565b60405161028d9190612028565b60405180910390f35b6102b060048036038101906102ab9190612041565b6108b0565b005b3480156102bd575f5ffd5b506102c6610bbe565b6040516102d39190612028565b60405180910390f35b3480156102e7575f5ffd5b506102f0610bc4565b005b61030c60048036038101906103079190612041565b610cc5565b005b348015610319575f5ffd5b50610334600480360381019061032f91906121bd565b610ce4565b005b348015610341575f5ffd5b5061035c60048036038101906103579190611f2e565b610cff565b6040516103699190611f98565b60405180910390f35b34801561037d575f5ffd5b50610386610d10565b6040516103939190611edb565b60405180910390f35b3480156103a7575f5ffd5b506103c260048036038101906103bd9190612204565b610d9c565b6040516103cf9190612028565b60405180910390f35b3480156103e3575f5ffd5b506103ec610e51565b005b3480156103f9575f5ffd5b50610414600480360381019061040f9190611f2e565b610e64565b005b348015610421575f5ffd5b5061043c60048036038101906104379190611f2e565b610f04565b005b348015610449575f5ffd5b50610452610f16565b60405161045f9190612028565b60405180910390f35b348015610473575f5ffd5b5061047c610f1c565b6040516104899190611f98565b60405180910390f35b34801561049d575f5ffd5b506104a6610f44565b6040516104b39190611edb565b60405180910390f35b6104d660048036038101906104d19190611f2e565b610fd4565b005b3480156104e3575f5ffd5b506104fe60048036038101906104f99190612259565b61118f565b005b61051a60048036038101906105159190612335565b611295565b005b348015610527575f5ffd5b50610542600480360381019061053d9190611f2e565b611307565b60405161054f9190611edb565b60405180910390f35b348015610563575f5ffd5b5061057e600480360381019061057991906123b5565b6113ab565b60405161058b9190611e52565b60405180910390f35b34801561059f575f5ffd5b506105ba60048036038101906105b59190612204565b611439565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106465750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065c90612420565b80601f016020809104026020016040519081016040528092919081815260200182805461068890612420565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b5f6106e7826114bb565b61071d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61076182610cff565b90508073ffffffffffffffffffffffffffffffffffffffff16610782611515565b73ffffffffffffffffffffffffffffffffffffffff16146107e5576107ae816107a9611515565b6113ab565b6107e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f6108a461151c565b6001545f540303905090565b5f6108ba82611523565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5f61092c846115e6565b91509150610942818761093d611515565b611609565b61098e5761095786610952611515565b6113ab565b61098d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a00868686600161164c565b8015610a0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ad285610aae888887611652565b7c020000000000000000000000000000000000000000000000000000000017611679565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610b4e575f6001850190505f60045f8381526020019081526020015f205403610b4c575f548114610b4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bb686868660016116a3565b505050505050565b60095481565b610bcc6116a9565b5f4790505f8111610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061249a565b60405180910390fd5b5f610c1b610f1c565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c3e906124e5565b5f6040518083038185875af1925050503d805f8114610c78576040519150601f19603f3d011682016040523d82523d5f602084013e610c7d565b606091505b5050905080610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890612543565b60405180910390fd5b5050565b610cdf83838360405180602001604052805f815250611295565b505050565b610cec6116a9565b80600b9081610cfb9190612701565b5050565b5f610d0982611523565b9050919050565b600b8054610d1d90612420565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4990612420565b8015610d945780601f10610d6b57610100808354040283529160200191610d94565b820191905f5260205f20905b815481529060010190602001808311610d7757829003601f168201915b505050505081565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e596116a9565b610e625f611727565b565b610e6c6116a9565b6009548110610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612840565b60405180910390fd5b80610eb961089b565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef1906128ce565b60405180910390fd5b8060098190555050565b610f0c6116a9565b80600a8190555050565b600a5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f5390612420565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7f90612420565b8015610fca5780601f10610fa157610100808354040283529160200191610fca565b820191905f5260205f20905b815481529060010190602001808311610fad57829003601f168201915b5050505050905090565b60095481610fe061089b565b610fea9190612919565b111561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612996565b60405180910390fd5b600a8161103733610d9c565b6110419190612919565b1115611082576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611079906129fe565b60405180910390fd5b80600a546110909190612a1c565b3410156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612aa7565b60405180910390fd5b6110dc33826117ea565b5f6110e5610f1c565b73ffffffffffffffffffffffffffffffffffffffff1634604051611108906124e5565b5f6040518083038185875af1925050503d805f8114611142576040519150601f19603f3d011682016040523d82523d5f602084013e611147565b606091505b505090508061118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612b0f565b60405180910390fd5b5050565b8060075f61119b611515565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611244611515565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112899190611e52565b60405180910390a35050565b6112a08484846108b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611301576112ca84848484611993565b611300576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611312826114bb565b611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612b77565b60405180910390fd5b5f61135a611ade565b90505f8151116113785760405180602001604052805f8152506113a3565b8061138284611b6e565b604051602001611393929190612c19565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6114416116a9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a690612cb7565b60405180910390fd5b6114b881611727565b50565b5f816114c561151c565b111580156114d357505f5482105b801561150e57505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f5f905090565b5f5f8290508061153161151c565b116115af575f548110156115ae575f60045f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036115ac575b5f81036115a25760045f836001900393508381526020019081526020015f2054905061157b565b80925050506115e1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f5f5f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f5f60e883901c905060e8611668868684611c38565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6116b1611c40565b73ffffffffffffffffffffffffffffffffffffffff166116cf610f1c565b73ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90612d1f565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f5f5490505f8203611828576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118345f84838561164c565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055506118a6836118975f865f611652565b6118a085611c47565b17611679565b60045f8381526020019081526020015f20819055505f5f838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600183015b8181146119405780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f5fa4600181019050611907565b505f820361197a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f81905550505061198e5f8483856116a3565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119b8611515565b8786866040518563ffffffff1660e01b81526004016119da9493929190612d8f565b6020604051808303815f875af1925050508015611a1557506040513d601f19601f82011682018060405250810190611a129190612ded565b60015b611a8b573d805f8114611a43576040519150601f19603f3d011682016040523d82523d5f602084013e611a48565b606091505b505f815103611a83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611aed90612420565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1990612420565b8015611b645780601f10611b3b57610100808354040283529160200191611b64565b820191905f5260205f20905b815481529060010190602001808311611b4757829003601f168201915b5050505050905090565b60605f6001611b7c84611c56565b0190505f8167ffffffffffffffff811115611b9a57611b99612099565b5b6040519080825280601f01601f191660200182016040528015611bcc5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611c2d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c2257611c21612e18565b5b0494505f8503611bd9575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f5f5f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611cb2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ca857611ca7612e18565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611cef576d04ee2d6d415b85acef81000000008381611ce557611ce4612e18565b5b0492506020810190505b662386f26fc100008310611d1e57662386f26fc100008381611d1457611d13612e18565b5b0492506010810190505b6305f5e1008310611d47576305f5e1008381611d3d57611d3c612e18565b5b0492506008810190505b6127108310611d6c576127108381611d6257611d61612e18565b5b0492506004810190505b60648310611d8f5760648381611d8557611d84612e18565b5b0492506002810190505b600a8310611d9e576001810190505b80915050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611dec81611db8565b8114611df6575f5ffd5b50565b5f81359050611e0781611de3565b92915050565b5f60208284031215611e2257611e21611db0565b5b5f611e2f84828501611df9565b91505092915050565b5f8115159050919050565b611e4c81611e38565b82525050565b5f602082019050611e655f830184611e43565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611ead82611e6b565b611eb78185611e75565b9350611ec7818560208601611e85565b611ed081611e93565b840191505092915050565b5f6020820190508181035f830152611ef38184611ea3565b905092915050565b5f819050919050565b611f0d81611efb565b8114611f17575f5ffd5b50565b5f81359050611f2881611f04565b92915050565b5f60208284031215611f4357611f42611db0565b5b5f611f5084828501611f1a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611f8282611f59565b9050919050565b611f9281611f78565b82525050565b5f602082019050611fab5f830184611f89565b92915050565b611fba81611f78565b8114611fc4575f5ffd5b50565b5f81359050611fd581611fb1565b92915050565b5f5f60408385031215611ff157611ff0611db0565b5b5f611ffe85828601611fc7565b925050602061200f85828601611f1a565b9150509250929050565b61202281611efb565b82525050565b5f60208201905061203b5f830184612019565b92915050565b5f5f5f6060848603121561205857612057611db0565b5b5f61206586828701611fc7565b935050602061207686828701611fc7565b925050604061208786828701611f1a565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6120cf82611e93565b810181811067ffffffffffffffff821117156120ee576120ed612099565b5b80604052505050565b5f612100611da7565b905061210c82826120c6565b919050565b5f67ffffffffffffffff82111561212b5761212a612099565b5b61213482611e93565b9050602081019050919050565b828183375f83830152505050565b5f61216161215c84612111565b6120f7565b90508281526020810184848401111561217d5761217c612095565b5b612188848285612141565b509392505050565b5f82601f8301126121a4576121a3612091565b5b81356121b484826020860161214f565b91505092915050565b5f602082840312156121d2576121d1611db0565b5b5f82013567ffffffffffffffff8111156121ef576121ee611db4565b5b6121fb84828501612190565b91505092915050565b5f6020828403121561221957612218611db0565b5b5f61222684828501611fc7565b91505092915050565b61223881611e38565b8114612242575f5ffd5b50565b5f813590506122538161222f565b92915050565b5f5f6040838503121561226f5761226e611db0565b5b5f61227c85828601611fc7565b925050602061228d85828601612245565b9150509250929050565b5f67ffffffffffffffff8211156122b1576122b0612099565b5b6122ba82611e93565b9050602081019050919050565b5f6122d96122d484612297565b6120f7565b9050828152602081018484840111156122f5576122f4612095565b5b612300848285612141565b509392505050565b5f82601f83011261231c5761231b612091565b5b813561232c8482602086016122c7565b91505092915050565b5f5f5f5f6080858703121561234d5761234c611db0565b5b5f61235a87828801611fc7565b945050602061236b87828801611fc7565b935050604061237c87828801611f1a565b925050606085013567ffffffffffffffff81111561239d5761239c611db4565b5b6123a987828801612308565b91505092959194509250565b5f5f604083850312156123cb576123ca611db0565b5b5f6123d885828601611fc7565b92505060206123e985828601611fc7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061243757607f821691505b60208210810361244a576124496123f3565b5b50919050565b7f4e6f2066756e647320746f2077697468647261770000000000000000000000005f82015250565b5f612484601483611e75565b915061248f82612450565b602082019050919050565b5f6020820190508181035f8301526124b181612478565b9050919050565b5f81905092915050565b50565b5f6124d05f836124b8565b91506124db826124c2565b5f82019050919050565b5f6124ef826124c5565b9150819050919050565b7f5769746864726177206661696c656400000000000000000000000000000000005f82015250565b5f61252d600f83611e75565b9150612538826124f9565b602082019050919050565b5f6020820190508181035f83015261255a81612521565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026125bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612582565b6125c78683612582565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6126026125fd6125f884611efb565b6125df565b611efb565b9050919050565b5f819050919050565b61261b836125e8565b61262f61262782612609565b84845461258e565b825550505050565b5f5f905090565b612646612637565b612651818484612612565b505050565b5b81811015612674576126695f8261263e565b600181019050612657565b5050565b601f8211156126b95761268a81612561565b61269384612573565b810160208510156126a2578190505b6126b66126ae85612573565b830182612656565b50505b505050565b5f82821c905092915050565b5f6126d95f19846008026126be565b1980831691505092915050565b5f6126f183836126ca565b9150826002028217905092915050565b61270a82611e6b565b67ffffffffffffffff81111561272357612722612099565b5b61272d8254612420565b612738828285612678565b5f60209050601f831160018114612769575f8415612757578287015190505b61276185826126e6565b8655506127c8565b601f19841661277786612561565b5f5b8281101561279e57848901518255600182019150602085019450602081019050612779565b868310156127bb57848901516127b7601f8916826126ca565b8355505b6001600288020188555050505b505050505050565b7f4e6577206d617820737570706c79206d757374206265206c657373207468616e5f8201527f2063757272656e74206d617820737570706c7900000000000000000000000000602082015250565b5f61282a603383611e75565b9150612835826127d0565b604082019050919050565b5f6020820190508181035f8301526128578161281e565b9050919050565b7f4e6577206d617820737570706c79206d757374206265206772656174657220745f8201527f68616e20746f74616c20737570706c7900000000000000000000000000000000602082015250565b5f6128b8603083611e75565b91506128c38261285e565b604082019050919050565b5f6020820190508181035f8301526128e5816128ac565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61292382611efb565b915061292e83611efb565b9250828201905080821115612946576129456128ec565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612980601283611e75565b915061298b8261294c565b602082019050919050565b5f6020820190508181035f8301526129ad81612974565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f6129e8601683611e75565b91506129f3826129b4565b602082019050919050565b5f6020820190508181035f830152612a15816129dc565b9050919050565b5f612a2682611efb565b9150612a3183611efb565b9250828202612a3f81611efb565b91508282048414831517612a5657612a556128ec565b5b5092915050565b7f496e73756666696369656e74207061796d656e740000000000000000000000005f82015250565b5f612a91601483611e75565b9150612a9c82612a5d565b602082019050919050565b5f6020820190508181035f830152612abe81612a85565b9050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f612af9600f83611e75565b9150612b0482612ac5565b602082019050919050565b5f6020820190508181035f830152612b2681612aed565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612b61601f83611e75565b9150612b6c82612b2d565b602082019050919050565b5f6020820190508181035f830152612b8e81612b55565b9050919050565b5f81905092915050565b5f612ba982611e6b565b612bb38185612b95565b9350612bc3818560208601611e85565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c03600583612b95565b9150612c0e82612bcf565b600582019050919050565b5f612c248285612b9f565b9150612c308284612b9f565b9150612c3b82612bf7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ca1602683611e75565b9150612cac82612c47565b604082019050919050565b5f6020820190508181035f830152612cce81612c95565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d09602083611e75565b9150612d1482612cd5565b602082019050919050565b5f6020820190508181035f830152612d3681612cfd565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612d6182612d3d565b612d6b8185612d47565b9350612d7b818560208601611e85565b612d8481611e93565b840191505092915050565b5f608082019050612da25f830187611f89565b612daf6020830186611f89565b612dbc6040830185612019565b8181036060830152612dce8184612d57565b905095945050505050565b5f81519050612de781611de3565b92915050565b5f60208284031215612e0257612e01611db0565b5b5f612e0f84828501612dd9565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220a652d929b27029bfcf4917299fec81f77d37efc3d4eed62d2615d4ea229144cb64736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000027777000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialBaseURI (string): ww
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 7777000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70287:2225:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70419:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70377:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72238:271;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71750:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70528:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54211:103;;;;;;;;;;;;;:::i;:::-;;71196:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71523:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70473:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53563:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70698:482;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71873:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54469:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;70419:43::-;70460:2;70419:43;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;70377:31::-;;;;:::o;72238:271::-;53449:13;:11;:13::i;:::-;72288:15:::1;72306:21;72288:39;;72356:1;72346:7;:11;72338:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;72394:12;72420:7;:5;:7::i;:::-;72412:21;;72442:7;72412:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72393:62;;;72474:7;72466:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;72277:232;;72238:271::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;71750:106::-;53449:13;:11;:13::i;:::-;71837:11:::1;71827:7;:21;;;;;;:::i;:::-;;71750:106:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;70528:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;54211:103::-;53449:13;:11;:13::i;:::-;54276:30:::1;54303:1;54276:18;:30::i;:::-;54211:103::o:0;71196:311::-;53449:13;:11;:13::i;:::-;71296:10:::1;;71281:12;:25;71273:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;71398:12;71381:13;:11;:13::i;:::-;:29;;71373:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;71487:12;71474:10;:25;;;;71196:311:::0;:::o;71523:93::-;53449:13;:11;:13::i;:::-;71600:8:::1;71592:5;:16;;;;71523:93:::0;:::o;70473:30::-;;;;:::o;53563:87::-;53609:7;53636:6;;;;;;;;;;;53629:13;;53563:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;70698:482::-;70794:10;;70782:8;70766:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;70758:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70460:2;70870:8;70846:21;70856:10;70846:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;70838:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;70963:8;70955:5;;:16;;;;:::i;:::-;70942:9;:29;;70934:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71009:27;71015:10;71027:8;71009:5;:27::i;:::-;71063:12;71089:7;:5;:7::i;:::-;71081:21;;71111:9;71081:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71062:64;;;71145:7;71137:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;70747:433;70698:482;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;71873:348::-;71938:13;71972:16;71980:7;71972;:16::i;:::-;71964:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72035:22;72060:10;:8;:10::i;:::-;72035:35;;72113:1;72094:8;72088:22;:26;:125;;;;;;;;;;;;;;;;;72155:8;72165:18;:7;:16;:18::i;:::-;72138:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72088:125;72081:132;;;71873:348;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;54469:201::-;53449:13;:11;:13::i;:::-;54578:1:::1;54558:22;;:8;:22;;::::0;54550:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54634:28;54653:8;54634:18;:28::i;:::-;54469:201:::0;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14656:1;14649:8;;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;53728:132::-;53803:12;:10;:12::i;:::-;53792:23;;:7;:5;:7::i;:::-;:23;;;53784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53728:132::o;54830:191::-;54904:16;54923:6;;;;;;;;;;;54904:25;;54949:8;54940:6;;:17;;;;;;;;;;;;;;;;;;55004:8;54973:40;;54994:8;54973:40;;;;;;;;;;;;54893:128;54830:191;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;71633:100::-;71685:13;71718:7;71711:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71633:100;:::o;68333:716::-;68389:13;68440:14;68477:1;68457:17;68468:5;68457:10;:17::i;:::-;:21;68440:38;;68493:20;68527:6;68516:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68493:41;;68549:11;68678:6;68674:2;68670:15;68662:6;68658:28;68651:35;;68715:288;68722:4;68715:288;;;68747:5;;;;;;;;68889:8;68884:2;68877:5;68873:14;68868:30;68863:3;68855:44;68945:2;68936:11;;;;;;:::i;:::-;;;;;68979:1;68970:5;:10;68715:288;68966:21;68715:288;69024:6;69017:13;;;;;68333:716;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;52114:98::-;52167:7;52194:10;52187:17;;52114:98;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;65199:922::-;65252:7;65272:14;65289:1;65272:18;;65339:6;65330:5;:15;65326:102;;65375:6;65366:15;;;;;;:::i;:::-;;;;;65410:2;65400:12;;;;65326:102;65455:6;65446:5;:15;65442:102;;65491:6;65482:15;;;;;;:::i;:::-;;;;;65526:2;65516:12;;;;65442:102;65571:6;65562:5;:15;65558:102;;65607:6;65598:15;;;;;;:::i;:::-;;;;;65642:2;65632:12;;;;65558:102;65687:5;65678;:14;65674:99;;65722:5;65713:14;;;;;;:::i;:::-;;;;;65756:1;65746:11;;;;65674:99;65800:5;65791;:14;65787:99;;65835:5;65826:14;;;;;;:::i;:::-;;;;;65869:1;65859:11;;;;65787:99;65913:5;65904;:14;65900:99;;65948:5;65939:14;;;;;;:::i;:::-;;;;;65982:1;65972:11;;;;65900:99;66026:5;66017;:14;66013:66;;66062:1;66052:11;;;;66013:66;66107:6;66100:13;;;65199:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:180::-;12034:77;12031:1;12024:88;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12172:320;12216:6;12253:1;12247:4;12243:12;12233:22;;12300:1;12294:4;12290:12;12321:18;12311:81;;12377:4;12369:6;12365:17;12355:27;;12311:81;12439:2;12431:6;12428:14;12408:18;12405:38;12402:84;;12458:18;;:::i;:::-;12402:84;12223:269;12172:320;;;:::o;12498:170::-;12638:22;12634:1;12626:6;12622:14;12615:46;12498:170;:::o;12674:366::-;12816:3;12837:67;12901:2;12896:3;12837:67;:::i;:::-;12830:74;;12913:93;13002:3;12913:93;:::i;:::-;13031:2;13026:3;13022:12;13015:19;;12674:366;;;:::o;13046:419::-;13212:4;13250:2;13239:9;13235:18;13227:26;;13299:9;13293:4;13289:20;13285:1;13274:9;13270:17;13263:47;13327:131;13453:4;13327:131;:::i;:::-;13319:139;;13046:419;;;:::o;13471:147::-;13572:11;13609:3;13594:18;;13471:147;;;;:::o;13624:114::-;;:::o;13744:398::-;13903:3;13924:83;14005:1;14000:3;13924:83;:::i;:::-;13917:90;;14016:93;14105:3;14016:93;:::i;:::-;14134:1;14129:3;14125:11;14118:18;;13744:398;;;:::o;14148:379::-;14332:3;14354:147;14497:3;14354:147;:::i;:::-;14347:154;;14518:3;14511:10;;14148:379;;;:::o;14533:165::-;14673:17;14669:1;14661:6;14657:14;14650:41;14533:165;:::o;14704:366::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:419::-;15242:4;15280:2;15269:9;15265:18;15257:26;;15329:9;15323:4;15319:20;15315:1;15304:9;15300:17;15293:47;15357:131;15483:4;15357:131;:::i;:::-;15349:139;;15076:419;;;:::o;15501:141::-;15550:4;15573:3;15565:11;;15596:3;15593:1;15586:14;15630:4;15627:1;15617:18;15609:26;;15501:141;;;:::o;15648:93::-;15685:6;15732:2;15727;15720:5;15716:14;15712:23;15702:33;;15648:93;;;:::o;15747:107::-;15791:8;15841:5;15835:4;15831:16;15810:37;;15747:107;;;;:::o;15860:393::-;15929:6;15979:1;15967:10;15963:18;16002:97;16032:66;16021:9;16002:97;:::i;:::-;16120:39;16150:8;16139:9;16120:39;:::i;:::-;16108:51;;16192:4;16188:9;16181:5;16177:21;16168:30;;16241:4;16231:8;16227:19;16220:5;16217:30;16207:40;;15936:317;;15860:393;;;;;:::o;16259:60::-;16287:3;16308:5;16301:12;;16259:60;;;:::o;16325:142::-;16375:9;16408:53;16426:34;16435:24;16453:5;16435:24;:::i;:::-;16426:34;:::i;:::-;16408:53;:::i;:::-;16395:66;;16325:142;;;:::o;16473:75::-;16516:3;16537:5;16530:12;;16473:75;;;:::o;16554:269::-;16664:39;16695:7;16664:39;:::i;:::-;16725:91;16774:41;16798:16;16774:41;:::i;:::-;16766:6;16759:4;16753:11;16725:91;:::i;:::-;16719:4;16712:105;16630:193;16554:269;;;:::o;16829:73::-;16874:3;16895:1;16888:8;;16829:73;:::o;16908:189::-;16985:32;;:::i;:::-;17026:65;17084:6;17076;17070:4;17026:65;:::i;:::-;16961:136;16908:189;;:::o;17103:186::-;17163:120;17180:3;17173:5;17170:14;17163:120;;;17234:39;17271:1;17264:5;17234:39;:::i;:::-;17207:1;17200:5;17196:13;17187:22;;17163:120;;;17103:186;;:::o;17295:543::-;17396:2;17391:3;17388:11;17385:446;;;17430:38;17462:5;17430:38;:::i;:::-;17514:29;17532:10;17514:29;:::i;:::-;17504:8;17500:44;17697:2;17685:10;17682:18;17679:49;;;17718:8;17703:23;;17679:49;17741:80;17797:22;17815:3;17797:22;:::i;:::-;17787:8;17783:37;17770:11;17741:80;:::i;:::-;17400:431;;17385:446;17295:543;;;:::o;17844:117::-;17898:8;17948:5;17942:4;17938:16;17917:37;;17844:117;;;;:::o;17967:169::-;18011:6;18044:51;18092:1;18088:6;18080:5;18077:1;18073:13;18044:51;:::i;:::-;18040:56;18125:4;18119;18115:15;18105:25;;18018:118;17967:169;;;;:::o;18141:295::-;18217:4;18363:29;18388:3;18382:4;18363:29;:::i;:::-;18355:37;;18425:3;18422:1;18418:11;18412:4;18409:21;18401:29;;18141:295;;;;:::o;18441:1395::-;18558:37;18591:3;18558:37;:::i;:::-;18660:18;18652:6;18649:30;18646:56;;;18682:18;;:::i;:::-;18646:56;18726:38;18758:4;18752:11;18726:38;:::i;:::-;18811:67;18871:6;18863;18857:4;18811:67;:::i;:::-;18905:1;18929:4;18916:17;;18961:2;18953:6;18950:14;18978:1;18973:618;;;;19635:1;19652:6;19649:77;;;19701:9;19696:3;19692:19;19686:26;19677:35;;19649:77;19752:67;19812:6;19805:5;19752:67;:::i;:::-;19746:4;19739:81;19608:222;18943:887;;18973:618;19025:4;19021:9;19013:6;19009:22;19059:37;19091:4;19059:37;:::i;:::-;19118:1;19132:208;19146:7;19143:1;19140:14;19132:208;;;19225:9;19220:3;19216:19;19210:26;19202:6;19195:42;19276:1;19268:6;19264:14;19254:24;;19323:2;19312:9;19308:18;19295:31;;19169:4;19166:1;19162:12;19157:17;;19132:208;;;19368:6;19359:7;19356:19;19353:179;;;19426:9;19421:3;19417:19;19411:26;19469:48;19511:4;19503:6;19499:17;19488:9;19469:48;:::i;:::-;19461:6;19454:64;19376:156;19353:179;19578:1;19574;19566:6;19562:14;19558:22;19552:4;19545:36;18980:611;;;18943:887;;18533:1303;;;18441:1395;;:::o;19842:238::-;19982:34;19978:1;19970:6;19966:14;19959:58;20051:21;20046:2;20038:6;20034:15;20027:46;19842:238;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:235::-;21023:34;21019:1;21011:6;21007:14;21000:58;21092:18;21087:2;21079:6;21075:15;21068:43;20883:235;:::o;21124:366::-;21266:3;21287:67;21351:2;21346:3;21287:67;:::i;:::-;21280:74;;21363:93;21452:3;21363:93;:::i;:::-;21481:2;21476:3;21472:12;21465:19;;21124:366;;;:::o;21496:419::-;21662:4;21700:2;21689:9;21685:18;21677:26;;21749:9;21743:4;21739:20;21735:1;21724:9;21720:17;21713:47;21777:131;21903:4;21777:131;:::i;:::-;21769:139;;21496:419;;;:::o;21921:180::-;21969:77;21966:1;21959:88;22066:4;22063:1;22056:15;22090:4;22087:1;22080:15;22107:191;22147:3;22166:20;22184:1;22166:20;:::i;:::-;22161:25;;22200:20;22218:1;22200:20;:::i;:::-;22195:25;;22243:1;22240;22236:9;22229:16;;22264:3;22261:1;22258:10;22255:36;;;22271:18;;:::i;:::-;22255:36;22107:191;;;;:::o;22304:168::-;22444:20;22440:1;22432:6;22428:14;22421:44;22304:168;:::o;22478:366::-;22620:3;22641:67;22705:2;22700:3;22641:67;:::i;:::-;22634:74;;22717:93;22806:3;22717:93;:::i;:::-;22835:2;22830:3;22826:12;22819:19;;22478:366;;;:::o;22850:419::-;23016:4;23054:2;23043:9;23039:18;23031:26;;23103:9;23097:4;23093:20;23089:1;23078:9;23074:17;23067:47;23131:131;23257:4;23131:131;:::i;:::-;23123:139;;22850:419;;;:::o;23275:172::-;23415:24;23411:1;23403:6;23399:14;23392:48;23275:172;:::o;23453:366::-;23595:3;23616:67;23680:2;23675:3;23616:67;:::i;:::-;23609:74;;23692:93;23781:3;23692:93;:::i;:::-;23810:2;23805:3;23801:12;23794:19;;23453:366;;;:::o;23825:419::-;23991:4;24029:2;24018:9;24014:18;24006:26;;24078:9;24072:4;24068:20;24064:1;24053:9;24049:17;24042:47;24106:131;24232:4;24106:131;:::i;:::-;24098:139;;23825:419;;;:::o;24250:410::-;24290:7;24313:20;24331:1;24313:20;:::i;:::-;24308:25;;24347:20;24365:1;24347:20;:::i;:::-;24342:25;;24402:1;24399;24395:9;24424:30;24442:11;24424:30;:::i;:::-;24413:41;;24603:1;24594:7;24590:15;24587:1;24584:22;24564:1;24557:9;24537:83;24514:139;;24633:18;;:::i;:::-;24514:139;24298:362;24250:410;;;;:::o;24666:170::-;24806:22;24802:1;24794:6;24790:14;24783:46;24666:170;:::o;24842:366::-;24984:3;25005:67;25069:2;25064:3;25005:67;:::i;:::-;24998:74;;25081:93;25170:3;25081:93;:::i;:::-;25199:2;25194:3;25190:12;25183:19;;24842:366;;;:::o;25214:419::-;25380:4;25418:2;25407:9;25403:18;25395:26;;25467:9;25461:4;25457:20;25453:1;25442:9;25438:17;25431:47;25495:131;25621:4;25495:131;:::i;:::-;25487:139;;25214:419;;;:::o;25639:165::-;25779:17;25775:1;25767:6;25763:14;25756:41;25639:165;:::o;25810:366::-;25952:3;25973:67;26037:2;26032:3;25973:67;:::i;:::-;25966:74;;26049:93;26138:3;26049:93;:::i;:::-;26167:2;26162:3;26158:12;26151:19;;25810:366;;;:::o;26182:419::-;26348:4;26386:2;26375:9;26371:18;26363:26;;26435:9;26429:4;26425:20;26421:1;26410:9;26406:17;26399:47;26463:131;26589:4;26463:131;:::i;:::-;26455:139;;26182:419;;;:::o;26607:181::-;26747:33;26743:1;26735:6;26731:14;26724:57;26607:181;:::o;26794:366::-;26936:3;26957:67;27021:2;27016:3;26957:67;:::i;:::-;26950:74;;27033:93;27122:3;27033:93;:::i;:::-;27151:2;27146:3;27142:12;27135:19;;26794:366;;;:::o;27166:419::-;27332:4;27370:2;27359:9;27355:18;27347:26;;27419:9;27413:4;27409:20;27405:1;27394:9;27390:17;27383:47;27447:131;27573:4;27447:131;:::i;:::-;27439:139;;27166:419;;;:::o;27591:148::-;27693:11;27730:3;27715:18;;27591:148;;;;:::o;27745:390::-;27851:3;27879:39;27912:5;27879:39;:::i;:::-;27934:89;28016:6;28011:3;27934:89;:::i;:::-;27927:96;;28032:65;28090:6;28085:3;28078:4;28071:5;28067:16;28032:65;:::i;:::-;28122:6;28117:3;28113:16;28106:23;;27855:280;27745:390;;;;:::o;28141:155::-;28281:7;28277:1;28269:6;28265:14;28258:31;28141:155;:::o;28302:400::-;28462:3;28483:84;28565:1;28560:3;28483:84;:::i;:::-;28476:91;;28576:93;28665:3;28576:93;:::i;:::-;28694:1;28689:3;28685:11;28678:18;;28302:400;;;:::o;28708:701::-;28989:3;29011:95;29102:3;29093:6;29011:95;:::i;:::-;29004:102;;29123:95;29214:3;29205:6;29123:95;:::i;:::-;29116:102;;29235:148;29379:3;29235:148;:::i;:::-;29228:155;;29400:3;29393:10;;28708:701;;;;;:::o;29415:225::-;29555:34;29551:1;29543:6;29539:14;29532:58;29624:8;29619:2;29611:6;29607:15;29600:33;29415:225;:::o;29646:366::-;29788:3;29809:67;29873:2;29868:3;29809:67;:::i;:::-;29802:74;;29885:93;29974:3;29885:93;:::i;:::-;30003:2;29998:3;29994:12;29987:19;;29646:366;;;:::o;30018:419::-;30184:4;30222:2;30211:9;30207:18;30199:26;;30271:9;30265:4;30261:20;30257:1;30246:9;30242:17;30235:47;30299:131;30425:4;30299:131;:::i;:::-;30291:139;;30018:419;;;:::o;30443:182::-;30583:34;30579:1;30571:6;30567:14;30560:58;30443:182;:::o;30631:366::-;30773:3;30794:67;30858:2;30853:3;30794:67;:::i;:::-;30787:74;;30870:93;30959:3;30870:93;:::i;:::-;30988:2;30983:3;30979:12;30972:19;;30631:366;;;:::o;31003:419::-;31169:4;31207:2;31196:9;31192:18;31184:26;;31256:9;31250:4;31246:20;31242:1;31231:9;31227:17;31220:47;31284:131;31410:4;31284:131;:::i;:::-;31276:139;;31003:419;;;:::o;31428:98::-;31479:6;31513:5;31507:12;31497:22;;31428:98;;;:::o;31532:168::-;31615:11;31649:6;31644:3;31637:19;31689:4;31684:3;31680:14;31665:29;;31532:168;;;;:::o;31706:373::-;31792:3;31820:38;31852:5;31820:38;:::i;:::-;31874:70;31937:6;31932:3;31874:70;:::i;:::-;31867:77;;31953:65;32011:6;32006:3;31999:4;31992:5;31988:16;31953:65;:::i;:::-;32043:29;32065:6;32043:29;:::i;:::-;32038:3;32034:39;32027:46;;31796:283;31706:373;;;;:::o;32085:640::-;32280:4;32318:3;32307:9;32303:19;32295:27;;32332:71;32400:1;32389:9;32385:17;32376:6;32332:71;:::i;:::-;32413:72;32481:2;32470:9;32466:18;32457:6;32413:72;:::i;:::-;32495;32563:2;32552:9;32548:18;32539:6;32495:72;:::i;:::-;32614:9;32608:4;32604:20;32599:2;32588:9;32584:18;32577:48;32642:76;32713:4;32704:6;32642:76;:::i;:::-;32634:84;;32085:640;;;;;;;:::o;32731:141::-;32787:5;32818:6;32812:13;32803:22;;32834:32;32860:5;32834:32;:::i;:::-;32731:141;;;;:::o;32878:349::-;32947:6;32996:2;32984:9;32975:7;32971:23;32967:32;32964:119;;;33002:79;;:::i;:::-;32964:119;33122:1;33147:63;33202:7;33193:6;33182:9;33178:22;33147:63;:::i;:::-;33137:73;;33093:127;32878:349;;;;:::o;33233:180::-;33281:77;33278:1;33271:88;33378:4;33375:1;33368:15;33402:4;33399:1;33392:15
Swarm Source
ipfs://a652d929b27029bfcf4917299fec81f77d37efc3d4eed62d2615d4ea229144cb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.