Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
FrogLords
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Developer : FazelPejmanfar , Twitter : @Pejmanfarfazel pragma solidity >=0.8.0 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; contract FrogLords is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer { string public baseURI; uint256 public cost = 0.005 ether; uint256 public maxSupply = 7777; uint256 public MaxperWallet = 7; bool public paused = true; mapping(address => bool) public FreeClaimed; constructor() ERC721A("Frog Lords", "FROG") {} // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public /// @dev Public mint function mint(uint256 tokens) public payable nonReentrant { require(!paused, "FROG: Contract is paused"); require(tokens <= MaxperWallet, "FROG: Max mint amount per tx exceeded"); require(totalSupply() + tokens <= maxSupply, "FROG: Sold out"); require( numberMinted(msg.sender) + tokens <= MaxperWallet, "FROG: Max NFT per wallet exceeded" ); if (!FreeClaimed[msg.sender]) { uint256 pricetopay = tokens - 1; require(msg.value >= cost * pricetopay, "FROG: Insufficient funds"); FreeClaimed[msg.sender] = true; } else { require(msg.value >= cost * tokens, "FROG: Insufficient funds"); } _safeMint(msg.sender, tokens); } /// @dev Use it for giveaway and team mint function airdrop(uint256 _mintAmount, address[] calldata destination) public onlyOwner nonReentrant { require( totalSupply() + (_mintAmount * destination.length) <= maxSupply, "Max NFT limit exceeded" ); for (uint256 i = 0; i < destination.length; i++) { _safeMint(destination[i], _mintAmount); } } /// @notice Returns metadata link of tokenId function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _toString(tokenId), ".json" ) ) : ""; } /// @notice Return the number minted by an address function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } /// @notice Return the tokens owned by an address function tokensOfOwner(address owner) public view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for ( uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i ) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } // only owner /// @dev Change the public max per wallet function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } /// @dev Change the public price (amount needs to be in wei) function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } /// @dev Cut the supply if not sold out function setMaxSupply(uint256 _newSupply) public onlyOwner { maxSupply = _newSupply; } /// @dev Set your baseURI function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } /// @dev Pause and unpause the contract (use booleans true or false) function pause(bool _state) public onlyOwner { paused = _state; } /// @dev Withdraw funds from contract function withdraw() public payable onlyOwner nonReentrant { uint256 balance = address(this).balance; // Use `call` instead of `transfer` (bool success, ) = payable(msg.sender).call{value: balance}(""); require(success, "Withdrawal failed"); } /// Opensea Royalties function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @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()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * 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; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @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 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // 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.selector); 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.selector); 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 Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @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); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // 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, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @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.selector); 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 result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_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); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (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.selector); _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; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // 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. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _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.selector); } } /** * @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.selector); } 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.selector); _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: // - `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) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // 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`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _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) ); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); 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.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData( to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked) ); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // 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`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // 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.selector); } _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 + _spotMinted` 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.selector); 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) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // 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(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // 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); }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FreeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"destination","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004b97ac9138f01ce33b542b744c6653887e6893f9268b5d6e929bfc5e89d00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000800000000000200000060041002700000042a03400197000300000031035500020000000103550000042a0040019d0000008004000039000000400040043f0000000100200190000000270000c13d000000040030008c000006180000413d000000000201043b000000e002200270000004410020009c0000005c0000213d0000045a0020009c000000cc0000a13d0000045b0020009c000001030000a13d0000045c0020009c000001650000a13d0000045d0020009c000004610000613d0000045e0020009c000004660000613d0000045f0020009c000006180000c13d0000000001000416000000000001004b000006180000c13d10a30dc90000040f0000002002000039000000400300043d000800000003001d000000000223043610a30d800000040f0000063f0000013d0000000001000416000000000001004b000006180000c13d0000000a01000039000000800010043f0000042b01000041000000a00010043f0000010001000039000000400010043f0000000401000039000000c00010043f0000042c01000041000000e00010043f0000000201000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000000560000c13d000000200020008c000000490000413d000000000010043f0000042d030000410000001f0220003900000005022002700000042e0220009a000000000003041b0000000103300039000000000023004b000000450000413d0000042f02000041000000000021041b0000000303000039000000000203041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000242013f0000000100200190000000850000613d0000049801000041000000000010043f0000002201000039000000040010043f0000048801000041000010a500010430000004420020009c000000f00000a13d000004430020009c0000012a0000a13d000004440020009c000001cf0000a13d000004450020009c000004760000613d000004460020009c0000048a0000613d000004470020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000601043b000004330060009c000006180000213d0000000901000039000000000201041a00000433032001970000000005000411000000000053004b0000061a0000c13d000000000006004b0000072c0000c13d0000047201000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000047301000041000000c40010043f0000047401000041000000e40010043f0000047501000041000010a500010430000000200010008c000000900000413d000000000030043f00000430020000410000001f011000390000000501100270000004310110009a000000000002041b0000000102200039000000000012004b0000008c0000413d0000043201000041000000000013041b0000000101000039000000000010041b000000000100041100000433061001970000000901000039000000000201041a0000043404200197000000000464019f000000000041041b000000000100041400000433052001970000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d02000039000004360400004110a310990000040f0000000100200190000006180000613d0000000a010000390000000102000039000000000021041b000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b000004300000c13d0000043f010000410000000c02000039000000000012041b00001e61010000390000000d02000039000000000012041b00000007010000390000000e02000039000000000012041b0000000f01000039000000000201041a000004ae0220019700000001022001bf000000000021041b0000002001000039000001000010044300000120000004430000044001000041000010a40001042e000004670020009c000001350000213d0000046d0020009c000001de0000213d000004700020009c000004a40000613d000004710020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000006180000c13d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000000001000039000000010100603910a30e030000040f0000000f01000039000000000201041a000004ae0220019700000008022001af000000000021041b0000000001000019000010a40001042e0000044f0020009c000001400000213d000004550020009c000002050000213d000004580020009c000004b80000613d000004590020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000101043b000004330010009c000006180000213d10a30e160000040f0000046f0000013d000004620020009c0000021a0000213d000004650020009c000004cc0000613d000004660020009c000006180000c13d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000061a0000c13d0000000a01000039000000000201041a000000020020008c000006290000613d0000000202000039000000000021041b0000049f0100004100000000001004430000000001000410000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c70000800a0200003910a3109e0000040f000000010020019000000cf80000613d000000000301043b00000000010004140000000004000411000000040040008c0000073b0000c13d00000001020000390000000101000031000008400000013d0000044a0020009c000003390000213d0000044d0020009c000004e10000613d0000044e0020009c000006180000c13d0000000001000416000000000001004b000006180000c13d0000000e01000039000005840000013d000004680020009c000003650000213d0000046b0020009c000005540000613d0000046c0020009c000006180000c13d0000000001000416000000000001004b000006180000c13d0000000c01000039000005840000013d000004500020009c000003e60000213d000004530020009c000005630000613d000004540020009c000006180000c13d0000000001000416000000000001004b000006180000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000560000c13d000000800010043f000000000004004b000006330000613d000000000030043f000000000001004b0000000002000019000006380000613d00000430030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000015d0000413d000006380000013d000004600020009c0000056c0000613d000004610020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000402100370000000000502043b0000047b0050009c000006180000213d0000002302500039000000000032004b000006180000813d0000000406500039000000000261034f000000000202043b0000047b0020009c0000084b0000213d0000001f07200039000004af077001970000003f07700039000004af07700197000004850070009c0000084b0000213d00000024055000390000008007700039000000400070043f000000800020043f0000000005520019000000000035004b000006180000213d0000002003600039000000000331034f000004af052001980000001f0620018f000000a001500039000001930000613d000000a007000039000000000803034f000000008908043c0000000007970436000000000017004b0000018f0000c13d000000000006004b000001a00000613d000000000353034f0000000305600210000000000601043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000310435000000a00120003900000000000104350000000901000039000000000101041a00000433011001970000000002000411000000000021004b000008b40000c13d000000800200043d0000047b0020009c0000084b0000213d0000000b01000039000000000501041a000000010050019000000001035002700000007f0330618f0000001f0030008c00000000060000390000000106002039000000000565013f0000000100500190000000560000c13d000000200030008c000001c70000413d000000000010043f0000001f0520003900000005055002700000049c0550009a000000200020008c0000047a050040410000001f0330003900000005033002700000049c0330009a000000000035004b000001c70000813d000000000005041b0000000105500039000000000035004b000001c30000413d0000001f0020008c00000aff0000a13d000000000010043f000004af0420019800000b280000c13d000000a0050000390000047a0300004100000b360000013d000004480020009c000005800000613d000004490020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000101043b000004330010009c000006180000213d10a30fb70000040f0000046f0000013d0000046e0020009c000005880000613d0000046f0020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000201043b000000000002004b000008020000613d000000000100041a000000000021004b000008020000a13d000700000002001d000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b000007f80000c13d0000000802000029000000000002004b000000010220008a000001ef0000c13d0000035f0000013d000004560020009c000005a70000613d000004570020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000101043b000300000001001d000004330010009c000006180000213d0000000301000029000000000001004b0000067e0000c13d0000049901000041000000000010043f0000049a01000041000010a500010430000004630020009c000005c00000613d000004640020009c000006180000c13d000000640030008c000006180000413d0000000402100370000000000202043b000700000002001d000004330020009c000006180000213d0000002402100370000000000202043b000600000002001d000004330020009c000006180000213d0000004401100370000000000201043b0000000003000411000000070030006b000007420000c13d000000a001000039000000400010043f0000008003000039000000800000043f000000000002004b0000055f0000613d000400000003001d000500000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b0000025f0000c13d000000000100041a0000000502000029000000000021004b0000055f0000a13d000800000002001d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b0000024c0000613d000800000001001d00000479001001980000055f0000c13d00000008010000290000043301100197000000070010006c00000cf90000c13d0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000100000001001d000000000101041a000300000001001d00000000010004110000043302100197000200000002001d000000070020006c0000029d0000613d0000000202000029000000030020006c0000029d0000613d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000202000029000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000ff00100190000003e20000613d000000030000006b000002a10000613d0000000101000029000000000001041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a000000010220008a000000000021041b00000006010000290000043301100197000300000001001d000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a0000000102200039000000000021041b0000048901000041000000000010044300000000010004140000042a0010009c0000042a01008041000000c0011002100000048a011001c70000800b0200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000200000001001d0000000501000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d0000000202000029000000a00220021000000003022001af0000048b022001c7000000000101043b000000000021041b00000008010000290000048b001001980000030e0000c13d00000005010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b0000030e0000c13d000000000100041a000000020010006b0000030e0000613d0000000201000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000802000029000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d0200003900000004030000390000048c0400004100000007050000290000000306000029000000050700002910a310990000040f0000000100200190000006180000613d000000030000006b00000c1d0000613d000004370100004100000000001004430000000601000029000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b000005be0000613d000000070100002900000006020000290000000503000029000000040400002910a30fcb0000040f000000000001004b000005be0000c13d0000049e01000041000000000010043f0000049a01000041000010a5000104300000044b0020009c000005c70000613d0000044c0020009c000006180000c13d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000201043b000000000002004b000008250000613d000000000100041a000000000021004b000008250000a13d000700000002001d000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b000008060000c13d0000000802000029000000000002004b000000010220008a0000034a0000c13d0000049801000041000000000010043f0000001101000039000000040010043f0000048801000041000010a500010430000004690020009c0000060b0000613d0000046a0020009c000006180000c13d000000640030008c000006180000413d0000000402100370000000000202043b000700000002001d000004330020009c000006180000213d0000002402100370000000000202043b000600000002001d000004330020009c000006180000213d0000004401100370000000000201043b0000000003000411000000070030006b0000077d0000c13d000000000002004b0000055f0000613d000500000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b000003a50000c13d000000000100041a0000000502000029000000000021004b0000055f0000a13d000800000002001d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b000003920000613d00000479001001980000055f0000c13d000800000001001d0000043301100197000000070010006c00000cf90000c13d0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000200000001001d000000000101041a000400000001001d00000000010004110000043302100197000300000002001d000000070020006c00000b9c0000613d0000000302000029000000040020006c00000b9c0000613d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000ff0010019000000b9c0000c13d000004a301000041000000000010043f0000049a01000041000010a500010430000004510020009c000006160000613d000004520020009c000006180000c13d000000440030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000402100370000000000202043b000800000002001d000004330020009c000006180000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000006180000c13d0000000001000411000000000010043f0000000701000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000802000029000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a000004ae022001970000000703000029000000000232019f000000000021041b000000400100043d00000000003104350000042a0010009c0000042a01008041000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000048d011001c70000800d0200003900000003030000390000048e040000410000000005000411000000080600002910a310990000040f0000000100200190000006180000613d000005be0000013d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b000006180000613d000000400300043d00000024013000390000043a0200004100000000002104350000043b01000041000000000013043500000000010004100000043301100197000000040230003900000000001204350000042a0030009c000800000003001d0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a310990000040f00000060031002700001042a0030019d000300000001035500000001002001900000065f0000613d00000008010000290000043e0010009c0000084b0000813d000000400010043f000000b90000013d0000000001000416000000000001004b000006180000c13d0000000f01000039000004da0000013d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000101043b10a30e2e0000040f0000043301100197000000400200043d00000000001204350000042a0020009c0000042a02008041000000400120021000000476011001c7000010a40001042e000000240030008c000006180000413d0000000001000416000000000001004b000006180000c13d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000000001000039000000010100603910a30e030000040f00000004010000390000000201100367000000000101043b0000000e02000039000000000012041b0000000001000019000010a40001042e000000440030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000402100370000000000202043b000004330020009c000006180000213d0000002401100370000000000101043b000800000001001d000004330010009c000006180000213d000000000020043f0000000701000039000000200010043f000000000100001910a310880000040f000000080200002910a30da70000040f000000000101041a000000ff001001900000000001000039000000010100c0390000046f0000013d000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000201043b000004a900200198000006180000c13d0000000101000039000004aa02200197000004ab0020009c000006130000613d000004ac0020009c000006130000613d000004ad0020009c000000000100c019000000800010043f0000047701000041000010a40001042e000000240030008c000006180000413d0000000001000416000000000001004b000006180000c13d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000000001000039000000010100603910a30e030000040f00000004010000390000000201100367000000000101043b0000000d02000039000000000012041b0000000001000019000010a40001042e000000240030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000401100370000000000101043b000004330010009c000006180000213d000000000010043f0000001001000039000000200010043f000000000100001910a310880000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000047701000041000010a40001042e000000840030008c000006180000413d0000000402100370000000000202043b000700000002001d000004330020009c000006180000213d0000002402100370000000000202043b000600000002001d000004330020009c000006180000213d0000004402100370000000000202043b000500000002001d0000006402100370000000000402043b0000047b0040009c000006180000213d0000002302400039000000000032004b000006180000813d0000000405400039000000000251034f000000000202043b0000047b0020009c0000084b0000213d0000001f07200039000004af077001970000003f07700039000004af07700197000004850070009c0000084b0000213d00000024044000390000008007700039000000400070043f000000800020043f0000000004420019000000000034004b000006180000213d0000002003500039000000000331034f000004af042001980000001f0520018f000000a001400039000005150000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005110000c13d000000000005004b000005220000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000002000411000000070020006b000009fe0000c13d000000050000006b0000055f0000613d0000000501000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000800000001001d000000000001004b00000c210000c13d000000000100041a000000050010006c0000055f0000a13d000800050000002d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b0000053f0000613d000800000001001d00000c220000013d000000440030008c000006180000413d0000000402100370000000000202043b000700000002001d000004330020009c000006180000213d0000002401100370000000000101043b000000000001004b000006d20000c13d000004a701000041000000000010043f0000049a01000041000010a5000104300000000001000416000000000001004b000006180000c13d0000000901000039000000000101041a0000043301100197000000800010043f0000047701000041000010a40001042e000000240030008c000006180000413d0000000001000416000000000001004b000006180000c13d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000000001000039000000010100603910a30e030000040f00000004010000390000000201100367000000000101043b0000000c02000039000000000012041b0000000001000019000010a40001042e0000000001000416000000000001004b000006180000c13d0000000d01000039000000000101041a000000800010043f0000047701000041000010a40001042e0000000001000416000000000001004b000006180000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000560000c13d000000800010043f000000000004004b000006330000613d000000000030043f000000000001004b0000000002000019000006380000613d0000042d030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000059f0000413d000006380000013d0000000001000416000000000001004b000006180000c13d0000000901000039000000000201041a00000433032001970000000005000411000000000053004b0000061a0000c13d0000043402200197000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d0200003900000003030000390000043604000041000000000600001910a310990000040f0000000100200190000006180000613d0000000001000019000010a40001042e0000000001000416000000000001004b000006180000c13d0000043801000041000000800010043f0000047701000041000010a40001042e000000440030008c000006180000413d0000000002000416000000000002004b000006180000c13d0000000402100370000000000202043b000700000002001d0000002402100370000000000202043b0000047b0020009c000006180000213d0000002304200039000000000034004b000006180000813d0000000404200039000000000141034f000000000101043b000600000001001d0000047b0010009c000006180000213d000500240020003d000000060100002900000005011002100000000501100029000000000031004b000006180000213d0000000901000039000000000101041a00000433011001970000000002000411000000000021004b0000061a0000c13d0000000a01000039000000000201041a000000020020008c000006290000613d0000000202000039000000000021041b0000000101000039000000000201041a000000000300041a000000060100002900000007011000b9000000070000006b000005f80000613d00000007041000fa000000060040006c0000035f0000c13d000004b0022001670000000002230019000000000012001a0000035f0000413d00000000011200190000000d02000039000000000202041a000000000021004b000009d30000a13d0000047201000041000000800010043f0000002001000039000000840010043f0000001601000039000000a40010043f0000048301000041000000c40010043f0000048401000041000010a5000104300000000001000416000000000001004b000006180000c13d0000000101000039000000000101041a000004b001100167000000000200041a0000000001120019000000800010043f0000047701000041000010a40001042e000000240030008c000006230000813d0000000001000019000010a5000104300000047201000041000000800010043f0000002001000039000000840010043f000000a40010043f0000049b01000041000000c40010043f0000048401000041000010a5000104300000000401100370000000000401043b0000000a02000039000000000102041a000000020010008c000006490000c13d0000047201000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000004a101000041000000c40010043f0000048401000041000010a500010430000004ae02200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003910a30db70000040f000000400100043d000800000001001d000000800200003910a30d920000040f000000080200002900000000012100490000042a0010009c0000042a0100804100000060011002100000042a0020009c0000042a020080410000004002200210000000000121019f000010a40001042e0000000201000039000000000012041b0000000f01000039000000000101041a000000ff00100190000007220000c13d0000000e01000039000000000501041a000000000054004b000007e30000a13d0000047201000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f0000049501000041000000c40010043f0000049601000041000000e40010043f0000047501000041000010a5000104300000042a033001970000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006670000c13d000000000005004b000006780000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000042a0020009c0000042a020080410000004002200210000000000112019f000010a500010430000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a0000047b01100197000600000001001d00000005011002100000003f021000390000049703200197000000400600043d0000000002630019000000000032004b000000000300003900000001030040390000047b0020009c0000084b0000213d00000001003001900000084b0000c13d000000400020043f00000006020000290000000002260436000200000002001d0000001f0210018f000000000001004b000006a90000613d0000000204000029000000000114001900000000030000310000000203300367000000003503043c0000000004540436000000000014004b000006a50000c13d000000000002004b000000400100043d000004850010009c0000084b0000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000060000006b000500000006001d0000093f0000c13d000000400100043d00000020020000390000000002210436000000000306043300000000003204350000004002100039000000000003004b000006c90000613d000000000400001900000005060000290000002006600039000000000506043300000000025204360000000104400039000000000034004b000006c30000413d00000000021200490000042a0020009c0000042a0200804100000060022002100000042a0010009c0000042a010080410000004001100210000000000112019f000010a40001042e000600000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b000006fa0000c13d000000000100041a0000000602000029000000000021004b0000055f0000a13d000000010220008a000800000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b0000000802000029000006e70000613d000004790010019800000006020000290000055f0000c13d000804330010019b0000000003000411000000080030006c0000091b0000c13d000000000020043f0000000601000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d00000007020000290000043306200197000000000101043b000000000201041a0000043402200197000000000262019f000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d020000390000000403000039000004a6040000410000000805000029000000060700002910a310990000040f0000000100200190000005be0000c13d000006180000013d0000047201000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f0000048f01000041000000c40010043f0000048401000041000010a5000104300000043402200197000000000262019f000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d020000390000000303000039000004360400004110a310990000040f0000000100200190000006180000613d000005be0000013d0000042a0010009c0000042a01008041000000c001100210000000000003004b000008380000c13d00000000020400190000083b0000013d000500000002001d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000400300043d000000000101043b000000000001004b000008c40000c13d0000047f0030009c0000084b0000213d0000002001300039000000400010043f000400000003001d0000000000030435000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b00000ab00000c13d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b00000cfd0000c13d00000005020000290000000403000029000002330000013d000500000002001d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b00000005020000290000037a0000613d000000400300043d000800000003001d00000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000400000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b0000290000000805700029000007b70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000007b30000c13d000000000006004b000007c40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000009880000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b00000005020000290000037a0000c13d0000048702000041000000000021043500000004021000390000000403000029000009150000013d0000000102000039000000000202041a000004b002200167000000000300041a0000000002230019000000000042001a0000035f0000413d00000000024200190000000d03000039000000000303041a000000000032004b0000085d0000a13d0000047202000041000000800020043f0000002002000039000000840020043f000000a40010043f0000049401000041000000c40010043f0000048401000041000010a50001043000000479001001980000000701000029000008020000c13d000000000010043f0000000601000039000000200010043f000000000100001910a310880000040f000000000101041a0000046e0000013d000004a801000041000000000010043f0000049a01000041000010a500010430000000400400043d0000047900100198000008250000c13d0000000b05000039000000000305041a000000010630019000000001023002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000113013f0000000100100190000000560000c13d0000000001240436000000000006004b000009e40000613d000000000050043f000000000002004b0000000003000019000009e90000613d0000047a0500004100000000030000190000000006310019000000000705041a000000000076043500000001055000390000002003300039000000000023004b0000081d0000413d000009e90000013d000000640140003900000480020000410000000000210435000000440140003900000481020000410000000000210435000000240140003900000030020000390000000000210435000004720100004100000000001404350000000401400039000000200200003900000000002104350000042a0040009c0000042a04008041000000400140021000000482011001c7000010a50001043000000435011001c70000800902000039000000000500001910a310990000040f000300000001035500000060011002700001042a0010019d0000042a01100197000000000001004b000008490000c13d0000000100200190000008510000613d00000001010000390000000a02000039000000000012041b0000000001000019000010a40001042e0000047b0010009c0000088d0000a13d0000049801000041000000000010043f0000004101000039000000040010043f0000048801000041000010a500010430000000400100043d0000004402100039000004a00300004100000000003204350000002402100039000000110300003900000000003204350000047202000041000000000021043500000004021000390000002003000039000008be0000013d000700000005001d000800000004001d00000000010004110000043301100197000600000001001d000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a00000040011002700000047b011001970000000802000029000000000021001a00000007030000290000035f0000413d0000000001210019000000000031004b000009940000a13d000000400100043d000000640210003900000492030000410000000000320435000000440210003900000493030000410000000000320435000000240210003900000021030000390000000000320435000004720200004100000000002104350000000402100039000000200300003900000000003204350000042a0010009c0000042a01008041000000400110021000000482011001c7000010a5000104300000001f04100039000004af044001970000003f04400039000004af05400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000047b0050009c0000084b0000213d00000001006001900000084b0000c13d000000400050043f0000000006140436000004af031001980000001f0410018f00000000013600190000000305000367000008a60000613d000000000705034f000000007807043c0000000006860436000000000016004b000008a20000c13d000000000004004b000008420000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000008420000013d000000400100043d00000044021000390000049b03000041000000000032043500000472020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000042a0010009c0000042a01008041000000400110021000000491011001c7000010a50001043000000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000800000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c70000043802000041000400000003001d10a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b0000290000000405700029000008eb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008e70000c13d000000000006004b000008f80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000009c70000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b00000d520000c13d000004870200004100000000002104350000000402100039000000080300002900000000003204350000042a0010009c0000042a01008041000000400110021000000488011001c7000010a5000104300000000801000029000000000010043f0000000701000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b00000000020004110000043302200197000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000ff001001900000000602000029000007010000c13d000004a501000041000000000010043f0000049a01000041000010a50001043000000001050000390000000003000019000400000000001d000009460000013d0000000105500039000000060030006c000006b90000613d000700000003001d000000400100043d000004850010009c0000084b0000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000800000005001d000000000050043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000400200043d000004850020009c000000050600002900000008050000290000084b0000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000479001001980000000004000039000000010400c0390000000000430435000000a0031002700000047b0330019700000020042000390000000000340435000004330110019700000000001204350000000703000029000009430000c13d000000000001004b00000000020100190000000402006029000400000002001d0000043301200197000000030010006c000009430000c13d0000000001060433000000000031004b00000d620000a13d0000000501300210000000020110002900000000005104350000000103300039000009430000013d0000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000098f0000c13d0000066b0000013d0000000601000029000000000010043f0000001001000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000ff0010019000000b090000c13d0000000801000029000000000001004b0000035f0000613d000000010210008a0000000c01000039000000000301041a00000000012300a9000000000003004b000009b10000613d00000000033100d9000000000023004b0000035f0000c13d0000000002000416000000000012004b00000b150000413d0000000601000029000000000010043f0000001001000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a000004ae0220019700000001022001bf000000000021041b00000b940000013d0000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009ce0000c13d0000066b0000013d000000060000006b000008440000613d0000000002000019000800000002001d000000050120021000000005011000290000000201100367000000000101043b000004330010009c000006180000213d000000070200002910a30e620000040f00000008020000290000000102200039000000060020006c000009d60000413d000008440000013d000004ae033001970000000000310435000000000002004b000000200300003900000000030060390000003f02300039000004af052001970000000002450019000000000052004b000000000500003900000001050040390000047b0020009c0000084b0000213d00000001005001900000084b0000c13d000000400020043f0000000005040433000000000005004b00000a6d0000c13d0000047f0020009c0000084b0000213d0000002001200039000000400010043f0000000000020435000000400300043d00000aad0000013d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b00000b450000c13d000004370100004100000000001004430000043801000041000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b000005270000613d000000400300043d000800000003001d00000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000400000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b000029000000080570002900000a460000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a420000c13d000000000006004b00000a530000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d740000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b000005270000c13d000007de0000013d000000a005200039000000400050043f0000008005200039000000000005043500000007090000290000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a00000000080504330000047c08800197000000000787019f0000047d077001c7000000000075043500000a720000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000004040433000000000004004b00000a8e0000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000048004b00000a870000413d000000000174001900000000000104350000000004060433000000000004004b00000a9b0000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00000a940000413d00000000011400190000047e04000041000000000041043500000000012100490000001b0410008a00000000004204350000002401100039000004af011001970000000004210019000000000014004b000000000100003900000001010040390000047b0040009c0000084b0000213d00000001001001900000084b0000c13d0000000003040019000000400040043f0000000001030019000800000003001d0000063e0000013d000000400300043d000800000003001d00000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000300000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b000029000000080570002900000ad80000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000ad40000c13d000000000006004b00000ae50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000b1c0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b0000076a0000c13d00000d4d0000013d000000000002004b000000000300001900000b030000613d000000a00300043d0000000304200210000004b00440027f000004b004400167000000000443016f000000010320021000000b410000013d0000000c01000039000000000201041a000000080300002900000000013200a9000000000002004b00000b120000613d00000000022100d9000000000032004b0000035f0000c13d0000000002000416000000000012004b00000b940000813d000000400100043d00000044021000390000049003000041000000000032043500000024021000390000001803000039000008570000013d0000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b230000c13d0000066b0000013d0000047a030000410000002006000039000000010540008a00000005055002700000049d0550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b00000b2d0000c13d000000a005700039000000000024004b00000b3f0000813d0000000304200210000000f80440018f000004b00440027f000004b0044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b0000000001000019000010a40001042e000000400300043d000800000003001d00000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000400000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b000029000000080570002900000b6d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000b690000c13d000000000006004b00000b7a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d560000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b000007de0000613d00000a0e0000013d0000000001000411000000080200002910a30e620000040f0000000a010000390000000102000039000000000021041b0000000001000019000010a40001042e000000040000006b00000ba00000613d0000000201000029000000000001041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a000000010220008a000000000021041b00000006010000290000043301100197000600000001001d000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a0000000102200039000000000021041b0000048901000041000000000010044300000000010004140000042a0010009c0000042a01008041000000c0011002100000048a011001c70000800b0200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000400000001001d0000000501000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d0000000402000029000000a00220021000000006022001af0000048b022001c7000000000101043b000000000021041b00000008010000290000048b0010019800000c0d0000c13d00000005010000290000000101100039000400000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b00000c0d0000c13d000000000100041a000000040010006b00000c0d0000613d0000000401000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000802000029000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d0200003900000004030000390000048c0400004100000007050000290000000606000029000000050700002910a310990000040f0000000100200190000006180000613d000000060000006b000005be0000c13d000004a401000041000000000010043f0000049a01000041000010a500010430000000080100002900000479001001980000055f0000c13d00000008010000290000043301100197000000070010006c00000cf90000c13d0000000501000029000000000010043f0000000601000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000200000001001d000000000101041a000400000001001d00000000010004110000043302100197000300000002001d000000070020006c00000c5f0000613d0000000302000029000000040020006c00000c5f0000613d0000000701000029000000000010043f0000000701000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000302000029000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000ff00100190000003e20000613d000000040000006b00000c630000613d0000000201000029000000000001041b0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a000000010220008a000000000021041b00000006010000290000043301100197000400000001001d000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000201041a0000000102200039000000000021041b0000048901000041000000000010044300000000010004140000042a0010009c0000042a01008041000000c0011002100000048a011001c70000800b0200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000300000001001d0000000501000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d0000000302000029000000a00220021000000004022001af0000048b022001c7000000000101043b000000000021041b00000008010000290000048b0010019800000cd00000c13d00000005010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b000000000101041a000000000001004b00000cd00000c13d000000000100041a000000030010006b00000cd00000613d0000000301000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000100200190000006180000613d000000000101043b0000000802000029000000000021041b00000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d0200003900000004030000390000048c0400004100000007050000290000000406000029000000050700002910a310990000040f0000000100200190000006180000613d000000040000006b00000c1d0000613d000004370100004100000000001004430000000601000029000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000cf80000613d000000000101043b000000000001004b000005be0000613d000000800400003900000007010000290000000602000029000000050300002910a30fcb0000040f000000000001004b000003350000613d000005be0000013d000000000001042f000004a201000041000000000010043f0000049a01000041000010a500010430000000400300043d000800000003001d00000486010000410000000000130435000000040130003900000000020004100000000000210435000000000100041100000433021001970000002401300039000300000002001d00000000002104350000042a0030009c0000042a010000410000000001034019000000400110021000000000020004140000042a0020009c0000042a02008041000000c002200210000000000112019f0000043c011001c7000004380200004110a3109e0000040f00000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b000029000000080570002900000d250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000d210000c13d000000000006004b00000d320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000d680000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c0000084b0000213d00000001002001900000084b0000c13d000000400010043f000000200030008c000006180000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000006180000c13d000000000002004b00000005020000290000000403000029000002330000c13d0000048702000041000000000021043500000004021000390000000303000029000009150000013d00000000030100190000047f0010009c000007560000a13d0000084b0000013d0000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d5d0000c13d0000066b0000013d0000049801000041000000000010043f0000003201000039000000040010043f0000048801000041000010a5000104300000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d6f0000c13d0000066b0000013d0000001f0530018f0000043d06300198000000400200043d00000000046200190000066b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d7b0000c13d0000066b0000013d00000000430104340000000001320436000000000003004b00000d8c0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000d850000413d000000000213001900000000000204350000001f02300039000004af022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000da10000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000d9a0000413d000000000312001900000000000304350000001f02200039000004af022001970000000001120019000000000001042d0000043302200197000000000020043f000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f000000010020019000000db50000613d000000000101043b000000000001042d0000000001000019000010a5000104300000001f02200039000004af022001970000000001120019000000000021004b000000000200003900000001020040390000047b0010009c00000dc30000213d000000010020019000000dc30000c13d000000400010043f000000000001042d0000049801000041000000000010043f0000004101000039000000040010043f0000048801000041000010a5000104300000000b05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00000df70000c13d000000400100043d0000000003210436000000000006004b00000de40000613d000000000050043f000000000002004b00000dea0000613d0000047a0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00000ddc0000413d00000deb0000013d000004ae044001970000000000430435000000000002004b0000002004000039000000000400603900000deb0000013d00000000040000190000003f02400039000004af032001970000000002130019000000000032004b000000000300003900000001030040390000047b0020009c00000dfd0000213d000000010030019000000dfd0000c13d000000400020043f000000000001042d0000049801000041000000000010043f0000002201000039000000040010043f0000048801000041000010a5000104300000049801000041000000000010043f0000004101000039000000040010043f0000048801000041000010a500010430000000000001004b00000e060000613d000000000001042d000000400100043d00000044021000390000049b03000041000000000032043500000472020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000042a0010009c0000042a01008041000000400110021000000491011001c7000010a500010430000004330110019800000e280000613d000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f000000010020019000000e2c0000613d000000000101043b000000000101041a0000047b01100197000000000001042d0000049901000041000000000010043f0000049a01000041000010a5000104300000000001000019000010a5000104300001000000000002000000000001004b00000e5e0000613d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f000000010020019000000e5c0000613d000000000101043b000000000101041a000000000001004b00000e590000c13d000000000100041a0000000102000029000000000021004b00000e5e0000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f000000010020019000000e5c0000613d000000000101043b000000000101041a000000000001004b000000010200002900000e460000613d000004790010019800000e5e0000c13d000000000001042d0000000001000019000010a500010430000004a701000041000000000010043f0000049a01000041000010a500010430000c000000000002000500000001001d000000400100043d000600000001001d000004b10010009c00000fa80000813d00000006010000290000002003100039000300000003001d000000400030043f0000000000010435000a00000002001d000000000002004b00000faf0000613d000000000100041a000700000001001d0000048901000041000000000010044300000000010004140000042a0010009c0000042a01008041000000c0011002100000048a011001c70000800b0200003910a3109e0000040f000000010020019000000fae0000613d000000000101043b000900000001001d0000000701000029000000000010043f0000000401000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f00000001002001900000000a0500002900000f6f0000613d000000050200002900000433042001970000000902000029000000a002200210000000010050008c00000000030000190000048b03006041000000000223019f000000000242019f000000000101043b000000000021041b000900000004001d000000000040043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f0000000a04000029000000010020019000000f6f0000613d000004b2024000d1000000000101043b000000000301041a0000000002230019000000000021041b000000090000006b00000fb30000613d000800070040002d000a00070000002d000000000100001900000ec10000013d0000000a0700002900000000010004140000042a0010009c0000042a01008041000000c00110021000000435011001c70000800d0200003900000004030000390000048c0400004100000000050000190000000906000029000a00000007001d10a310990000040f0000000100200190000000010100003900000f6f0000613d000000010010019000000eb10000613d0000000a070000290000000107700039000000080070006c00000eb20000c13d0000000801000029000000000010041b000004370100004100000000001004430000000501000029000000040010044300000000010004140000042a0010009c0000042a01008041000000c00110021000000439011001c7000080020200003910a3109e0000040f000000010020019000000fae0000613d000000000101043b000000000001004b000000030600002900000f6e0000613d00000001010000390000008007000039000004b308000041000000000200041100000433092001970000000703000029000100000007001d000200000009001d000000080030006c000000000a000039000000010a004039000000010010019000000f6b0000613d000000000b000415000000400c00043d0000006401c00039000000000071043500000000008c04350000000401c0003900000000009104350000004401c00039000700000003001d00000000003104350000002401c000390000000000010435000000060100002900000000010104330000008402c000390000000000120435000000a402c00039000000000001004b00000f020000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b00000efb0000413d0000000002210019000000000002043500000000040004140000000902000029000000040020008c00000f100000c13d00000000050004150000000c0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000f4c0000013d00050000000b001d000a0000000a001d0000001f01100039000004af01100197000000a4011000390000042a0010009c0000042a0100804100000060011002100000042a00c0009c0000042a0300004100000000030c40190000004003300210000000000131019f0000042a0040009c0000042a04008041000000c003400210000000000113019f00040000000c001d10a310990000040f000000040c00002900000060031002700000042a03300197000000200030008c00000020040000390000000004034019000000200640019000000000056c001900000f320000613d000000000701034f00000000080c0019000000007907043c0000000008980436000000000058004b00000f2e0000c13d0000001f0740019000000f3f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a0000000505500210000000010020019000000002090000290000000a0a000029000000050b00002900000f710000613d00000003060000290000008007000039000004b3080000410000001f01400039000000600210018f0000000001c20019000000000021004b000000000200003900000001020040390000047b0010009c00000fa80000213d000000010020019000000fa80000c13d000000400010043f000000200030008c00000f6f0000413d00000000010c0433000004a90010019800000f6f0000c13d000000070300002900000001033000390000000502500270000000000201001f000000000200041500000000022b00490000000002000002000004aa01100197000004b30010009c00000000010a001900000ee20000613d0000049e01000041000000000010043f0000049a01000041000010a500010430000000000100041a000000080010006c00000f6f0000c13d000000000001042d0000000001000019000010a500010430000000000003004b00000f750000c13d000000600200003900000f9c0000013d0000001f02300039000004b4022001970000003f02200039000004b504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000047b0040009c00000fa80000213d000000010050019000000fa80000c13d000000400040043f0000001f0430018f00000000063204360000043d05300198000100000006001d000000000356001900000f8f0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b00000f8b0000c13d000000000004004b00000f9c0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000000010200002900000f670000613d0000042a0020009c0000042a0200804100000040022002100000042a0010009c0000042a010080410000006001100210000000000121019f000010a5000104300000049801000041000000000010043f0000004101000039000000040010043f0000048801000041000010a500010430000000000001042f000004b701000041000000000010043f0000049a01000041000010a500010430000004b601000041000000000010043f0000049a01000041000010a5000104300000043301100197000000000010043f0000000501000039000000200010043f00000000010004140000042a0010009c0000042a01008041000000c00110021000000478011001c7000080100200003910a3109e0000040f000000010020019000000fc90000613d000000000101043b000000000101041a00000040011002700000047b01100197000000000001042d0000000001000019000010a5000104300004000000000002000000400b00043d0000006405b00039000000800800003900000000008504350000004405b00039000000000035043500000433011001970000002403b000390000000000130435000004b30100004100000000001b0435000000000100041100000433011001970000000403b0003900000000001304350000008405b0003900000000310404340000000000150435000000a404b00039000000000001004b00000fe90000613d000000000500001900000000064500190000000007530019000000000707043300000000007604350000002005500039000000000015004b00000fe20000413d0000000003410019000000000003043500000000030004140000043302200197000000040020008c00000ff70000c13d0000000005000415000000040550008a00000005055002100000000103000031000000200030008c000000200400003900000000040340190000102d0000013d000100000008001d0000001f01100039000004af01100197000000a4011000390000042a0010009c0000042a0100804100000060011002100000042a00b0009c0000042a0400004100000000040b40190000004004400210000000000141019f0000042a0030009c0000042a03008041000000c003300210000000000113019f00020000000b001d10a310990000040f000000020b00002900000060031002700000042a03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000010190000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000010150000c13d000000000006004b000010260000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000030550008a00000005055002100000000100200190000010460000613d0000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000047b0010009c000010780000213d0000000100200190000010780000c13d000000400010043f0000001f0030008c000010440000a13d00000000010b0433000004a900100198000010440000c13d0000000502500270000000000201001f000004aa01100197000004b30010009c00000000010000390000000101006039000000000001042d0000000001000019000010a500010430000000000003004b0000104a0000c13d0000006002000039000010710000013d0000001f02300039000004b4022001970000003f02200039000004b504200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000047b0040009c000010780000213d0000000100500190000010780000c13d000000400040043f0000001f0430018f00000000063204360000043d05300198000100000006001d0000000003560019000010640000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000010600000c13d000000000004004b000010710000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b0000107e0000c13d0000049e01000041000000000010043f0000049a01000041000010a5000104300000049801000041000000000010043f0000004101000039000000040010043f0000048801000041000010a50001043000000001020000290000042a0020009c0000042a0200804100000040022002100000042a0010009c0000042a010080410000006001100210000000000121019f000010a500010430000000000001042f00000000020004140000042a0020009c0000042a02008041000000c0022002100000042a0010009c0000042a010080410000004001100210000000000121019f00000478011001c7000080100200003910a3109e0000040f0000000100200190000010970000613d000000000101043b000000000001042d0000000001000019000010a5000104300000109c002104210000000102000039000000000001042d0000000002000019000000000001042d000010a1002104230000000102000039000000000001042d0000000002000019000000000001042d000010a300000432000010a40001042e000010a5000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff46726f67204c6f7264730000000000000000000000000000000000000000000046524f4700000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a53246726f67204c6f72647300000000000000000000000000000000000000000014c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a546524f4700000000000000000000000000000000000000000000000000000008000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e01806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83000000000000000000000000000000000000aaeb6d7670e522a718067333cd4e02000002000000000000000000000000000000240000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb67d3e3dbe00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000011c37937e080000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006f8b44af00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000e268e4d200000000000000000000000000000000000000000000000000000000e268e4d300000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000dc33e68100000000000000000000000000000000000000000000000000000000bdf7a8e500000000000000000000000000000000000000000000000000000000bdf7a8e600000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000bd7a1998000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000a0712d6700000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008462151c000000000000000000000000000000000000000000000000000000006f8b44b00000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000039bd17660000000000000000000000000000000000000000000000000000000044a0d689000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000006c0360eb0000000000000000000000000000000000000000000000000000000044a0d68a0000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000041f434330000000000000000000000000000000000000000000000000000000041f434340000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000039bd1767000000000000000000000000000000000000000000000000000000003ccfd60b00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000013faede60000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000002329a2908c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000800000000000000000020000000000000000000000000000000000004000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9000000000000000000000000000000000000000000000000ffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdf6f6e6578697374656e7420746f6b656e00000000000000000000000000000000455243373231414d657461646174613a2055524920717565727920666f72206e00000000000000000000000000000000000000840000000000000000000000004d6178204e4654206c696d6974206578636565646564000000000000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7fc617113400000000000000000000000000000000000000000000000000000000ede71dcc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3146524f473a20436f6e747261637420697320706175736564000000000000000046524f473a20496e73756666696369656e742066756e647300000000000000000000000000000000000000000000000000000064000000000000000000000000640000000000000000000000000000000000000000000000000000000000000046524f473a204d6178204e4654207065722077616c6c6574206578636565646546524f473a20536f6c64206f757400000000000000000000000000000000000046524f473a204d6178206d696e7420616d6f756e742070657220747820657863656564656400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fffffffffffffffe04e487b71000000000000000000000000000000000000000000000000000000008f4eb6040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572fe8a4859c7bd88fc0f24184464406785daae8e84cb1860cc4a4eff72e05fe247fe8a4859c7bd88fc0f24184464406785daae8e84cb1860cc4a4eff72e05fe246d1a57ed6000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f395769746864726177616c206661696c65640000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e40000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000001150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe02e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000008690e1c09e394855cdb55a544b3f672cc594df121581546deb68a98eaa668c83
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.