Token
Abstractions (ABSX)
ERC-721
Overview
Max Total Supply
600 ABSX
Holders
506
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 ABSXLoading...
Loading
Loading...
Loading
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:
Abstractions
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.28; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol"; import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; error MaxSupplyExceeded(); error PublicSaleClosed(); error TransfersLocked(); error NotAllowedByRegistry(); error RegistryNotSet(); error WrongWeiSent(); error MaxFeeExceeded(); error InputLengthsMismatch(); error InvalidMerkleProof(); interface IRegistry { function isAllowedOperator(address operator) external view returns (bool); } contract Abstractions is Ownable, OperatorFilterer, ERC2981, ERC721A { using BitMaps for BitMaps.BitMap; uint256 public maxSupply = 1513; bool public operatorFilteringEnabled = true; bool public initialTransferLockOn = true; bool public isRegistryActive; address public registryAddress; string private _baseTokenURI = ""; // 1 variables uint256 public startTimePhase1 = 1738173600; uint256 public endTimePhase1 = 1738180800; uint256 public maxSupplyPhase1 = 913; uint256 public totalSupplyPhase1; uint256 public pricePhase1 = 29000000000000000; uint256 public maxPerWalletPhase1 = 3; bytes32 public merkleRootPhase1 = 0x88034c20f625c469d5ce7a9550602fe0a6dbd2a1dfa36b8d3dc1f34ea1af3029; mapping(address => uint256) public walletMintsPhase1; // 2 variables uint256 public startTimePhase2 = 1738180800; uint256 public endTimePhase2 = 1738184400; uint256 public maxSupplyPhase2 = 0; uint256 public totalSupplyPhase2; uint256 public pricePhase2 = 29000000000000000; uint256 public maxPerWalletPhase2 = 3; bytes32 public merkleRootPhase2 = 0x0; mapping(address => uint256) public walletMintsPhase2; constructor() ERC721A("Abstractions", "ABSX") Ownable() { // Register operator filtering _registerForOperatorFiltering(); // Set initial 2% royalty _setDefaultRoyalty(owner(), 250); } // 1 Mint function mintPhase1(bytes32[] calldata merkleProof, uint256 quantity) external payable { // Check if mint has started if (startTimePhase1 != 0 && block.timestamp < startTimePhase1) { revert PublicSaleClosed(); } // Check if mint has ended if (endTimePhase1 != 0 && block.timestamp > endTimePhase1) { revert PublicSaleClosed(); } // Check if the mint will exceed total max supply, if set. if (maxSupply > 0 && totalSupply() + quantity > maxSupply) { revert MaxSupplyExceeded(); } // If phase max supply is set, check if it's exceeded if (maxSupplyPhase1 != 0 && totalSupplyPhase1 + quantity > maxSupplyPhase1) { revert MaxSupplyExceeded(); } // Check if the price is correct if (msg.value != (pricePhase1 * quantity)) { revert WrongWeiSent(); } // Check if the proof is set, and if it is valid if (merkleRootPhase1 != bytes32(0)) { // Using Merkle Tree bytes32 node = keccak256(abi.encodePacked(msg.sender, quantity)); if (!MerkleProof.verify(merkleProof, merkleRootPhase1, node)) { revert InvalidMerkleProof(); } } // If allowlist is not set, check if we have exceeded phase max per wallet if set. else if (maxPerWalletPhase1 > 0 && walletMintsPhase1[msg.sender] + quantity > maxPerWalletPhase1) { revert MaxSupplyExceeded(); } // Mint the tokens totalSupplyPhase1 += quantity; _mint(msg.sender, quantity); } // 2 Mint function mintPhase2(uint256 quantity) external payable { // Check if mint has started if (startTimePhase2 != 0 && block.timestamp < startTimePhase2) { revert PublicSaleClosed(); } // Check if mint has ended if (endTimePhase2 != 0 && block.timestamp > endTimePhase2) { revert PublicSaleClosed(); } // Check if the mint will exceed total max supply, if set. if (maxSupply > 0 && totalSupply() + quantity > maxSupply) { revert MaxSupplyExceeded(); } // If phase max supply is set, check if it's exceeded if (maxSupplyPhase2 != 0 && totalSupplyPhase2 + quantity > maxSupplyPhase2) { revert MaxSupplyExceeded(); } // Check if the price is correct if (msg.value != (pricePhase2 * quantity)) { revert WrongWeiSent(); } // If allowlist is not set, check if we have exceeded phase max per wallet if set. else if (maxPerWalletPhase2 > 0 && walletMintsPhase2[msg.sender] + quantity > maxPerWalletPhase2) { revert MaxSupplyExceeded(); } // Mint the tokens totalSupplyPhase2 += quantity; _mint(msg.sender, quantity); } // ========================================================================= // Owner Only Functions // ========================================================================= // Owner airdrop function airDrop(address[] memory users, uint256[] memory amounts) external onlyOwner { // iterate over users and amounts if (users.length != amounts.length) { revert InputLengthsMismatch(); } for (uint256 i; i < users.length;) { if (maxSupply != 0 && totalSupply() + amounts[i] > maxSupply) { revert MaxSupplyExceeded(); } _mint(users[i], amounts[i]); unchecked { ++i; } } } // Owner unrestricted mint function ownerMint(address to, uint256 quantity) external onlyOwner { if (maxSupply != 0 && totalSupply() + quantity > maxSupply) { revert MaxSupplyExceeded(); } _mint(to, quantity); } // Set max supply function setMaxSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } // Withdraw Balance to owner function withdraw() public onlyOwner { (bool success, ) = payable(owner()).call{value: address(this).balance}(""); if (!success) { revert("Transfer failed."); } } // Withdraw Balance to Address function withdrawTo(address payable _to) public onlyOwner { (bool success, ) = payable(_to).call{value: address(this).balance}(""); if (!success) { revert("Transfer failed."); } } // Break Transfer Lock function breakLock() external onlyOwner { initialTransferLockOn = false; } // Set the start time for the phase function setStartTimePhase1(uint256 newStartTime) external onlyOwner { startTimePhase1 = newStartTime; } // Set the end time for the phase function setEndTime1(uint256 newEndTime) external onlyOwner { endTimePhase1 = newEndTime; } // Set the max supply for the phase function setMaxSupplyPhase1(uint256 newMaxSupply) external onlyOwner { maxSupplyPhase1 = newMaxSupply; } // Set max per wallet for the phase function setMaxPerWalletPhase1(uint256 newMaxPerWallet) external onlyOwner { maxPerWalletPhase1 = newMaxPerWallet; } // Set the price for the phase function setPricePhase1(uint256 newPrice) external onlyOwner { pricePhase1 = newPrice; } // Set the merkle root for the phase function setMerkleRootPhase1(bytes32 newMerkleRoot) external onlyOwner { merkleRootPhase1 = newMerkleRoot; }// Set the start time for the phase function setStartTimePhase2(uint256 newStartTime) external onlyOwner { startTimePhase2 = newStartTime; } // Set the end time for the phase function setEndTime2(uint256 newEndTime) external onlyOwner { endTimePhase2 = newEndTime; } // Set the max supply for the phase function setMaxSupplyPhase2(uint256 newMaxSupply) external onlyOwner { maxSupplyPhase2 = newMaxSupply; } // Set max per wallet for the phase function setMaxPerWalletPhase2(uint256 newMaxPerWallet) external onlyOwner { maxPerWalletPhase2 = newMaxPerWallet; } // Set the price for the phase function setPricePhase2(uint256 newPrice) external onlyOwner { pricePhase2 = newPrice; } // Set the merkle root for the phase function setMerkleRootPhase2(bytes32 newMerkleRoot) external onlyOwner { merkleRootPhase2 = newMerkleRoot; } // ========================================================================= // ERC721A Misc // ========================================================================= function _startTokenId() internal pure override returns (uint256) { return 1; } // ========================================================================= // Operator filtering // ========================================================================= function setApprovalForAll(address operator, bool approved) public override (ERC721A) onlyAllowedOperatorApproval(operator) { if (initialTransferLockOn) { revert TransfersLocked(); } super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperatorApproval(operator) { if (initialTransferLockOn) { revert TransfersLocked(); } super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override (ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override (ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function _operatorFilteringEnabled() internal view override returns (bool) { return operatorFilteringEnabled; } // ========================================================================= // Registry Check // ========================================================================= function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal override { if (initialTransferLockOn && from != address(0) && to != address(0)) { revert TransfersLocked(); } if (_isValidAgainstRegistry(msg.sender)) { super._beforeTokenTransfers(from, to, startTokenId, quantity); } else { revert NotAllowedByRegistry(); } } function _isValidAgainstRegistry(address operator) internal view returns (bool) { if (isRegistryActive) { IRegistry registry = IRegistry(registryAddress); return registry.isAllowedOperator(operator); } return true; } function setIsRegistryActive(bool _isRegistryActive) external onlyOwner { if (registryAddress == address(0)) revert RegistryNotSet(); isRegistryActive = _isRegistryActive; } function setRegistryAddress(address _registryAddress) external onlyOwner { registryAddress = _registryAddress; } // ========================================================================= // ERC165 // ========================================================================= function supportsInterface(bytes4 interfaceId) public view override (ERC721A, ERC2981) returns (bool) { // Supports the following interfaceIds: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } // ========================================================================= // ERC2891 // ========================================================================= function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner { if (feeNumerator > 1000) { revert MaxFeeExceeded(); } _setDefaultRoyalty(receiver, feeNumerator); } function setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) external onlyOwner { if (feeNumerator > 1000) { revert MaxFeeExceeded(); } _setTokenRoyalty(tokenId, receiver, feeNumerator); } // ========================================================================= // Metadata // ========================================================================= function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, "/", _toString(tokenId), ".json")) : ""; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // 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()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken(); // 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; return packed; } } // Otherwise, the data exists and is not burned. 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. return packed; } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. 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(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // 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) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _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(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/BitMaps.sol) pragma solidity ^0.8.0; /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get(BitMap storage bitmap, uint256 index) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo(BitMap storage bitmap, uint256 index, bool value) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] &= ~mask; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// 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 // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@rari-capital/solmate/=lib/solmate/", "ds-test/=lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "@openzeppelin/=lib/openzeppelin-contracts/", "solarray/=lib/solarray/src/", "solady/=lib/solady/", "seaport-sol/=lib/seaport-sol/", "seaport-types/=lib/seaport-types/", "seaport-core/=lib/seaport-core/", "seaport/=contracts/", "closedsea/=lib/closedsea/", "erc721a/=lib/closedsea/lib/erc721a/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "erc721a-upgradeable/=lib/closedsea/lib/erc721a-upgradeable/contracts/", "openzeppelin-contracts-upgradeable/=lib/closedsea/lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "operator-filter-registry/=lib/closedsea/lib/operator-filter-registry/", "solmate/=lib/solmate/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InputLengthsMismatch","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MaxFeeExceeded","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotAllowedByRegistry","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PublicSaleClosed","type":"error"},{"inputs":[],"name":"RegistryNotSet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransfersLocked","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WrongWeiSent","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":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breakLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTimePhase2","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":[],"name":"initialTransferLockOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isRegistryActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase1","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPhase2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTime1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newEndTime","type":"uint256"}],"name":"setEndTime2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRegistryActive","type":"bool"}],"name":"setIsRegistryActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWalletPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRootPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPricePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registryAddress","type":"address"}],"name":"setRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"}],"name":"setStartTimePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimePhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTimePhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMintsPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100061f18aea5e54d8ef1cb2b5837ab59fcc13afa24feddcf63df681fc6000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000a0000000000020000006004100270000005500340019700030000003103550002000000010355000005500040019d0000008004000039000000400040043f00000001002001900000002b0000c13d000900000004001d000000040030008c00000bff0000413d000000000201043b000000e002200270000005710020009c000000520000a13d000005720020009c000000920000a13d000005730020009c000000d40000a13d000005740020009c000002d00000a13d000005750020009c000004e80000a13d000005760020009c0000092e0000613d000005770020009c000009330000613d000005780020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000000f0100003900000ae30000013d0000000001000416000000000001004b00000bff0000c13d0000000c01000039000000800010043f0000055101000041000000a00010043f0000010001000039000000400010043f0000000401000039000000c00010043f0000055201000041000000e00010043f0000000006000411000000000100041a0000055302100197000000000262019f000000000020041b00000000020004140000055405100197000005500020009c0000055002008041000000c00120021000000555011001c70000800d0200003900000003030000390000055604000041153b15310000040f000000010020019000000bff0000613d000000800400043d000005570040009c000000820000413d000005f801000041000000000010043f0000004101000039000000040010043f000005e5010000410000153d00010430000005a20020009c000000a10000213d000005ba0020009c000001040000213d000005c60020009c000002db0000213d000005cc0020009c000003b50000213d000005cf0020009c0000093e0000613d000005d00020009c00000bff0000c13d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000202043b000005540020009c00000bff0000213d0000002401100370000000000101043b000a00000001001d000005fb0010009c00000bff0000213d0000000003020019000000000100041a00000554011001970000000002000411000000000021004b00000b1a0000c13d0000000a01000029000003e90010008c00000a260000813d000900000003001d000000000003004b00000d0d0000c13d0000056f01000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000056e01000041000000c40010043f000005fd010000410000153d000104300000000506000039000000000106041a000000010310019000000001021002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000013004b000000b00000613d000005f801000041000000000010043f0000002201000039000000040010043f000005e5010000410000153d000104300000058b0020009c000000f10000213d000005970020009c0000024f0000213d0000059d0020009c000003be0000213d000005a00020009c000005530000613d000005a10020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000140100003900000b2c0000013d000005a30020009c000002260000213d000005af0020009c000003580000213d000005b50020009c000003cd0000213d000005b80020009c000009580000613d000005b90020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000000f0100003900000b2c0000013d000000200020008c000000c00000413d0000001f014000390000000501100270000005580110009a000000200040008c00000559010040410000001f022000390000000502200270000005580220009a000000000021004b000000c00000813d000000000001041b0000000101100039000000000021004b000000bc0000413d0000001f0040008c000002330000a13d000a00000004001d000000000060043f0000000001000414000005500010009c0000055001008041000000c0011002100000055a011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000a070000290000061502700198000000000101043b000005080000c13d00000020030000390000000506000039000005150000013d000005800020009c0000023e0000213d000005860020009c000003930000213d000005890020009c000005630000613d0000058a0020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d000005540010009c00000bff0000213d153b13000000040f0000000a010000290000001801100210000005ec011001970000000c02000039000000000302041a000005ed03300197000000000113019f000000000012041b00000000010000190000153c0001042e0000058c0020009c0000026c0000213d000005920020009c000003dc0000213d000005950020009c0000056e0000613d000005960020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000100100003900000ae30000013d000005bb0020009c000003770000213d000005c10020009c000003ff0000213d000005c40020009c000009750000613d000005c50020009c00000bff0000c13d000000640030008c00000bff0000413d0000000402100370000000000202043b000900000002001d000005540020009c00000bff0000213d0000002402100370000000000202043b000800000002001d000005540020009c00000bff0000213d0000004401100370000000000201043b0000000003000411000000090030006b000001360000613d0000000c01000039000000000101041a000000ff00100190000001360000613d000700000002001d000005e001000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000d180000613d0000003a0000043f0000000702000029000000000002004b00000cdd0000613d000700000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000005d70010019800000cdd0000c13d000000000001004b000001640000c13d0000000301000039000000000101041a0000000702000029000000000021004b00000cdd0000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b000001510000613d000a00000001001d0000055401100197000000090010006c00000da90000c13d0000000701000029000000000010043f0000000901000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000400000001001d000000000101041a000500000001001d00000000010004110000055402100197000600000002001d000000090020006c0000019f0000613d0000000602000029000000050020006c0000019f0000613d0000000901000029000000000010043f0000000a01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000ff0010019000000aca0000613d0000000801000029000805540010019c00000f740000613d0000000c01000039000000000101041a000000090000006b000001a80000613d0000ff0000100190000010050000c13d000005e3001001980000112d0000c13d000000050000006b000001ae0000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000801000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a0000000102200039000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000602000029000000a00220021000000008022001af000005e8022001c7000000000101043b000000000021041b0000000a01000029000005e8001001980000021a0000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b0000021a0000c13d0000000301000039000000000101041a000000060010006b0000021a0000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e904000041000000090500002900000008060000290000000707000029000002680000013d000005a40020009c000003880000213d000005aa0020009c000004420000213d000005ad0020009c000009810000613d000005ae0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000110100003900000b2c0000013d000000000004004b0000000001000019000002370000613d000000a00100043d0000000302400210000006160220027f0000061602200167000000000121016f0000000102400210000000000121019f000005210000013d000005810020009c000003ac0000213d000005840020009c000005f30000613d000005850020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000180100003900000ae30000013d000005980020009c000004840000213d0000059b0020009c000007440000613d0000059c0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000000100041a00000554021001970000000005000411000000000052004b00000b1a0000c13d0000055301100197000000000010041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d02000039000000030300003900000556040000410000000006000019153b15310000040f000000010020019000000d650000c13d00000bff0000013d0000058d0020009c0000048d0000213d000005900020009c000007530000613d000005910020009c00000bff0000c13d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000202043b000a00000002001d000005540020009c00000bff0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b00000bff0000c13d0000000c01000039000000000101041a000000ff001001900000029d0000613d000005e001000041000000000010043f00000000010004100000001a0010043f0000000a010000290000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000c7f0000613d0000003a0000043f0000000c01000039000000000101041a0000ff0000100190000010050000c13d0000000001000411000000000010043f0000000a01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a00000617022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000005500010009c000005500100804100000040011002100000000002000414000005500020009c0000055002008041000000c002200210000000000112019f0000055a011001c70000800d020000390000000303000039000005ee0400004100000000050004110000000a06000029000002680000013d0000057b0020009c000004960000213d0000057e0020009c0000075e0000613d0000057f0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000130100003900000b2c0000013d000005c70020009c000004b50000213d000005ca0020009c000009860000613d000005cb0020009c00000bff0000c13d000000440030008c00000bff0000413d0000000402100370000000000202043b000900000002001d000005540020009c00000bff0000213d0000002401100370000000000201043b0000000c01000039000000000101041a000000ff00100190000003050000613d000800000002001d000005e001000041000000000010043f00000000010004100000001a0010043f00000009010000290000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000c4a0000613d0000003a0000043f0000000c01000039000000000101041a00000008020000290000ff0000100190000010050000c13d000000000002004b00000cdd0000613d000800000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000005d70010019800000cdd0000c13d000000000001004b000003350000c13d0000000301000039000000000101041a0000000802000029000000000021004b00000cdd0000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b000003220000613d000a05540010019b00000000020004110000000a0020006c00000e440000c13d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d00000009020000290000055406200197000000000101043b000000000201041a0000055302200197000000000262019f000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d0200003900000004030000390000060c040000410000000a050000290000000807000029000002680000013d000005b00020009c000004c00000213d000005b30020009c000009ad0000613d000005b40020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000200041a00000554022001970000000003000411000000000032004b00000b1a0000c13d0000000c02000039000000000302041a000005ec0030019800000c630000c13d0000060001000041000000000010043f000005de010000410000153d00010430000005bc0020009c000004cf0000213d000005bf0020009c000009b80000613d000005c00020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000001a0100003900000ae30000013d000005a50020009c000004df0000213d000005a80020009c00000a100000613d000005a90020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000001b0100003900000b2c0000013d000005870020009c000007690000613d000005880020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b00000bff0000c13d153b13000000040f0000000c01000039000000000201041a00000617022001970000000a022001af000000000021041b00000000010000190000153c0001042e000005820020009c000007700000613d000005830020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000000b0100003900000b2c0000013d000005cd0020009c00000a2a0000613d000005ce0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000100100003900000b2c0000013d0000059e0020009c000007ab0000613d0000059f0020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000000b0100003900000ae30000013d000005b60020009c00000a490000613d000005b70020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000170100003900000ae30000013d000005930020009c000008f60000613d000005940020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000000603000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000008c0000c13d000000800010043f000000000004004b00000b5f0000613d000000000030043f000000000001004b000000000200001900000b640000613d0000055d030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000003f70000413d00000b640000013d000005c20020009c00000ace0000613d000005c30020009c00000bff0000c13d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000002402100370000000000202043b000a00000002001d0000000401100370000000000101043b000000000010043f0000000201000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000400400043d0000056b0040009c0000004c0000213d000000000101043b0000004002400039000000400020043f000000000101041a0000002003400039000000a002100270000000000023043500000554011001980000000000140435000004320000c13d000000400400043d0000056b0040009c0000004c0000213d0000004001400039000000400010043f0000000101000039000000000101041a0000002003400039000000a002100270000000000023043500000554011001970000000000140435000900000004001d0000000a01000029153b12e80000040f00000009020000290000000002020433000027100110011a000000400300043d0000002004300039000000000014043500000554012001970000000000130435000005500030009c0000055003008041000000400130021000000605011001c70000153c0001042e000005ab0020009c00000ad90000613d000005ac0020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000402043b0000055b0040009c00000bff0000213d0000002302400039000000000032004b00000bff0000813d0000000405400039000000000251034f000000000202043b0000055b0020009c00000bff0000213d00000024044000390000000006420019000000000036004b00000bff0000213d000000000300041a00000554033001970000000006000411000000000063004b00000b1a0000c13d0000000d03000039000000000703041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f00000001007001900000008c0000c13d000000200060008c0000047c0000413d000000000030043f0000001f072000390000000507700270000005600770009a000000200020008c0000055f070040410000001f066000390000000506600270000005600660009a000000000067004b0000047c0000813d000000000007041b0000000107700039000000000067004b000004780000413d0000001f0020008c00000dad0000a13d000000000030043f000006150620019800000dd30000c13d0000055f05000041000000000700001900000ddd0000013d000005990020009c000008fb0000613d0000059a0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d000000170100003900000b2c0000013d0000058e0020009c0000091f0000613d0000058f0020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000000e0100003900000b2c0000013d0000057c0020009c000009290000613d0000057d0020009c00000bff0000c13d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000202043b000005540020009c00000bff0000213d0000002401100370000000000101043b000a00000001001d000005540010009c00000bff0000213d000000000020043f0000000a01000039000000200010043f00000040020000390000000001000019153b151c0000040f0000000a02000029153b12ba0000040f000000000101041a000000ff001001900000000001000039000000010100c0390000055c0000013d000005c80020009c00000ae70000613d000005c90020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000000c01000039000000000101041a0000ff0000100190000009390000013d000005b10020009c00000af70000613d000005b20020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000130100003900000ae30000013d000005bd0020009c00000b230000613d000005be0020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000005540010009c00000bff0000213d000000000010043f000000150100003900000af20000013d000005a60020009c00000b280000613d000005a70020009c00000bff0000c13d0000000001000416000000000001004b00000bff0000c13d0000001a0100003900000b2c0000013d000005790020009c00000b300000613d0000057a0020009c00000bff0000c13d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000601043b000005540060009c00000bff0000213d000000000100041a00000554021001970000000005000411000000000052004b00000b1a0000c13d000000000006004b00000c680000c13d0000056f01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000005d201000041000000c40010043f000005d301000041000000e40010043f000005d4010000410000153d00010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000050600003900000080053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000050e0000c13d000000000072004b0000051f0000813d0000000302700210000000f80220018f000006160220027f000006160220016700000080033000390000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b000000c00500043d0000055b0050009c0000004c0000213d0000000604000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000008c0000c13d000000200010008c000005400000413d0000001f0250003900000005022002700000055c0220009a000000200050008c0000055d020040410000001f0110003900000005011002700000055c0110009a000000000012004b000005400000813d000000000002041b0000000102200039000000000012004b0000053c0000413d0000001f0050008c00000b3a0000a13d000a00000005001d000000000040043f0000000001000414000005500010009c0000055001008041000000c0011002100000055a011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000a060000290000061502600198000000000101043b00000b750000c13d000000e00300003900000b830000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b153b140a0000040f0000055401100197000000400200043d0000000000120435000005500020009c00000550020080410000004001200210000005d5011001c70000153c0001042e000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000160100003900000ae30000013d000000440030008c00000bff0000413d0000000402100370000000000202043b0000055b0020009c00000bff0000213d0000002304200039000000000034004b00000bff0000813d000700040020003d0000000704100360000000000404043b000a00000004001d0000055b0040009c00000bff0000213d00000024022000390000000a040000290000000504400210000500000002001d000900000004001d000600000024001d000000060030006b00000bff0000213d0000002401100370000000000401043b0000000e01000039000000000101041a000800000001001d000000000001004b000400000004001d00000c980000c13d0000000f01000039000000000101041a000800000001001d000000000001004b000005a10000613d000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000080010006c000000040400002900000c370000213d0000000b01000039000000000101041a000000000001004b000005b00000613d0000000402000039000000000202041a00000616022001670000000303000039000000000303041a0000000002230019000000000042001a00000d070000413d0000000002420019000000000012004b00000b160000213d0000001001000039000000000101041a000000000001004b000005bb0000613d0000001102000039000000000202041a000000000042001a00000d070000413d0000000002420019000000000012004b00000b160000213d0000001201000039000000000201041a00000000014200a9000000000002004b000005c30000613d00000000022100d9000000000042004b00000d070000c13d0000000002000416000000000012004b00000c7b0000c13d0000001401000039000000000101041a000300000001001d000000000001004b00000e670000c13d0000001301000039000000000101041a000a00000001001d000000000001004b0000000403000029000005e70000613d00000000010004110000055401100197000000000010043f0000001501000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a0000000403000029000000000031001a00000d070000413d00000000013100190000000a0010006c00000b160000213d0000001101000039000000000201041a000000000032001a00000d070000413d0000000002320019000000000021041b000000000003004b00000f910000c13d000005fa01000041000000000010043f000005de010000410000153d00010430000000840030008c00000bff0000413d0000000402100370000000000202043b000900000002001d000005540020009c00000bff0000213d0000002402100370000000000202043b000800000002001d000005540020009c00000bff0000213d0000004402100370000000000202043b000700000002001d0000006402100370000000000402043b0000055b0040009c00000bff0000213d0000002302400039000000000032004b00000bff0000813d0000000405400039000000000251034f000000000202043b0000055b0020009c0000004c0000213d0000001f0720003900000615077001970000003f077000390000061507700197000005df0070009c0000004c0000213d0000008007700039000000400070043f000000800020043f00000000042400190000002404400039000000000034004b00000bff0000213d0000002003500039000000000331034f00000615042001980000001f0520018f000000a001400039000006270000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000006230000c13d000000000005004b000006340000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000002000411000000090020006b0000063d0000613d0000000c01000039000000000101041a000000ff0010019000000ed30000c13d000000070000006b00000cdd0000613d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a000005d70020019800000cdd0000c13d0000000001020019000000000002004b0000066b0000c13d0000000301000039000000000101041a000000070010006c00000cdd0000a13d000a00070000002d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b000006580000613d000a00000001001d0000055401100197000000090010006c00000da90000c13d0000000701000029000000000010043f0000000901000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000400000001001d000000000101041a000500000001001d00000000010004110000055402100197000600000002001d000000090020006c000006a60000613d0000000602000029000000050020006c000006a60000613d0000000901000029000000000010043f0000000a01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000ff0010019000000aca0000613d0000000801000029000305540010019c00000f740000613d0000000c01000039000000000101041a000000090000006b000006af0000613d0000ff0000100190000010050000c13d000005e300100198000012100000c13d000000050000006b000006b50000613d0000000401000029000000000001041b0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000301000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a0000000102200039000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000600000001001d0000000701000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000602000029000000a00220021000000003022001af000005e8022001c7000000000101043b000000000021041b0000000a01000029000005e800100198000007210000c13d00000007010000290000000101100039000600000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b000007210000c13d0000000301000039000000000101041a000000060010006b000007210000613d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e904000041000000090500002900000003060000290000000707000029153b15310000040f000000010020019000000bff0000613d000005ea010000410000000000100443000000080100002900000004001004430000000001000414000005500010009c0000055001008041000000c001100210000005eb011001c70000800202000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000000001004b00000d650000613d0000008004000039000000090100002900000008020000290000000703000029000010cb0000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000005540010009c00000bff0000213d000000000001004b00000c3b0000c13d000005f401000041000000000010043f000005de010000410000153d00010430000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000001c0100003900000ae30000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f000000120100003900000ae30000013d0000000001000416000000000001004b00000bff0000c13d0000000c01000039000000000101041a000005e300100198000009390000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000201043b000000000002004b00000b450000613d0000000301000039000000000101041a000000000021004b00000b450000a13d000a00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000005d70010019800000b450000c13d0000000d03000039000000000203041a000000010620019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f00000001004001900000008c0000c13d000000400500043d0000000004150436000000000006004b00000db90000613d000000000030043f000000000001004b000000000200001900000dbe0000613d0000055f0300004100000000020000190000000006240019000000000703041a000000000076043500000001033000390000002002200039000000000012004b000007a30000413d00000dbe0000013d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000202043b0000055b0020009c00000bff0000213d0000002304200039000000000034004b00000bff0000813d0000000404200039000000000441034f000000000504043b0000055b0050009c0000004c0000213d00000005045002100000003f06400039000005f006600197000005df0060009c0000004c0000213d0000008006600039000000400060043f000000800050043f00000024022000390000000004240019000000000034004b00000bff0000213d000000000005004b000007d30000613d000000a005000039000000000621034f000000000606043b000005540060009c00000bff0000213d00000000056504360000002002200039000000000042004b000007cb0000413d0000002402100370000000000202043b0000055b0020009c00000bff0000213d0000002304200039000000000034004b0000000005000019000005f505008041000005f504400197000000000004004b0000000006000019000005f506004041000005f50040009c000000000605c019000000000006004b00000bff0000c13d0000000404200039000000000441034f000000000404043b0000055b0040009c0000004c0000213d00000005054002100000003f06500039000005f006600197000000400700043d0000000006670019000400000007001d000000000076004b000000000700003900000001070040390000055b0060009c0000004c0000213d00000001007001900000004c0000c13d000000400060043f00000004060000290000000006460436000500000006001d00000024022000390000000005250019000000000035004b00000bff0000213d000000000004004b000008070000613d0000000403000029000000000421034f000000000404043b000000200330003900000000004304350000002002200039000000000052004b000008000000413d000000000100041a00000554011001970000000002000411000000000021004b00000ff40000c13d00000004010000290000000002010433000000800100043d000000000021004b000010330000c13d000000000001004b00000d650000613d000700000000001d000000040100002900000000010104330000000b02000039000000000302041a000000000003004b0000082c0000613d0000000706000029000000000061004b000012210000a13d0000000402000039000000000202041a00000616022001670000000304000039000000000404041a0000000004240019000000050260021000000005052000290000000005050433000000000054001a00000d070000413d0000000004540019000000000034004b0000082e0000a13d00000b160000013d00000007060000290000000502600210000000000061004b000012210000a13d00000005012000290000000001010433000800000001001d000000000001004b000005ef0000613d000000a00120003900000000030104330000000301000039000000000101041a000a00000001001d0000000c01000039000000000201041a000005e300200198000008900000613d000900000003001d000000400a00043d000005e40100004100000000001a04350000000401a0003900000000030004110000000000310435000000000100041400000018022002700000055402200197000000040020008c0000084f0000c13d0000000103000031000000200030008c000000200400003900000000040340190000087a0000013d0000055000a0009c000005500300004100000000030a40190000004003300210000005500010009c0000055001008041000000c001100210000000000131019f000005e5011001c700060000000a001d153b15360000040f000000060a00002900000060031002700000055003300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000008690000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000008650000c13d0000001f07400190000008760000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000012790000613d0000001f01400039000000600210018f0000000001a20019000000000021004b000000000200003900000001020040390000055b0010009c0000004c0000213d00000001002001900000004c0000c13d000000400010043f000000200030008c00000bff0000413d00000000010a0433000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000001004b0000000903000029000011dc0000613d0000055401300197000900000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000802000029000005f2022000d1000000000101043b000000000301041a0000000002230019000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000600000001001d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000602000029000000a0022002100000000803000029000000010030008c0000000003000019000005e803006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000a07000029153b15310000040f000000010020019000000bff0000613d0000000a02000029000800080020002d0000000a070000290000000107700039000000080070006c000008eb0000613d0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000906000029000a00000007001d153b15310000040f0000000100200190000008d80000c13d00000bff0000013d000000090000006b0000120c0000613d00000003010000390000000802000029000000000021041b0000000702000029000700010020003d000000800100043d000000070010006b000008140000413d00000d650000013d0000000001000416000000000001004b00000bff0000c13d000000000100041a00000b360000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d000005540010009c00000bff0000213d000000000100041a00000554011001970000000002000411000000000021004b00000b1a0000c13d000005f3010000410000000000100443000000000100041000000004001004430000000001000414000005500010009c0000055001008041000000c001100210000005eb011001c70000800a02000039153b15360000040f0000000100200190000010d20000613d000000000301043b00000000010004140000000a04000029000000040040008c00000ca80000c13d0000000102000039000000010100003100000d390000013d0000000001000416000000000001004b00000bff0000c13d153b13000000040f0000000c01000039000000000201041a0000061802200197000000000021041b00000000010000190000153c0001042e0000000001000416000000000001004b00000bff0000c13d000000120100003900000b2c0000013d0000000001000416000000000001004b00000bff0000c13d0000001c0100003900000b2c0000013d0000000001000416000000000001004b00000bff0000c13d0000000c01000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000005d1010000410000153c0001042e000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000201043b000006100020019800000bff0000c13d00000001010000390000056a02200197000006110020009c000009540000613d000006120020009c000009540000613d000006130020009c000009540000613d000006110020009c00000000010000390000000101006039000006140020009c00000001011061bf000000010110018f000000800010043f000005d1010000410000153c0001042e0000000001000416000000000001004b00000bff0000c13d000000000100041a00000554011001970000000002000411000000000021004b00000b1a0000c13d000005f3010000410000000000100443000000000100041000000004001004430000000001000414000005500010009c0000055001008041000000c001100210000005eb011001c70000800a02000039153b15360000040f0000000100200190000010d20000613d000000000301043b00000000010004140000000004000411000000040040008c00000c740000c13d0000000102000039000000010100003100000ce90000013d0000000001000416000000000001004b00000bff0000c13d0000000401000039000000000101041a00000616011001670000000302000039000000000202041a0000000001120019000000800010043f000005d1010000410000153c0001042e0000000001000416000000000001004b00000bff0000c13d000000160100003900000b2c0000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000201043b000000000002004b00000b490000613d0000000301000039000000000101041a000000000021004b00000b490000a13d000a00000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000005d7001001980000000a0100002900000b490000c13d000000000010043f0000000901000039000000200010043f00000040020000390000000001000019153b151c0000040f000000000101041a0000055b0000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000001b0100003900000ae30000013d000000240030008c00000bff0000413d0000000401100370000000000401043b0000001601000039000000000101041a000000000001004b00000b4d0000c13d0000001701000039000000000101041a000000000001004b00000c260000c13d0000000b01000039000000000101041a000000000001004b000009d30000613d0000000402000039000000000202041a00000616022001670000000303000039000000000303041a0000000002230019000000000042001a00000d070000413d0000000002420019000000000012004b00000b160000213d0000001801000039000000000101041a000000000001004b000009de0000613d0000001902000039000000000202041a000000000042001a00000d070000413d0000000002420019000000000012004b00000b160000213d0000001a01000039000000000201041a00000000014200a9000000000002004b000009e60000613d00000000022100d9000000000042004b00000d070000c13d0000000002000416000000000012004b00000c7b0000c13d0000001b01000039000000000101041a000900000001001d000000000001004b00000a050000613d000a00000004001d00000000010004110000055401100197000000000010043f0000001d01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a0000000a04000029000000000041001a00000d070000413d0000000001410019000000090010006c00000b160000213d0000001901000039000000000201041a000000000042001a00000d070000413d0000000002420019000000000021041b00000000010004110000000002040019153b13160000040f00000000010000190000153c0001042e000000640030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000202043b0000002403100370000000000303043b000005540030009c00000bff0000213d0000004401100370000000000101043b000005fb0010009c00000bff0000213d000000000400041a00000554044001970000000005000411000000000054004b00000b1a0000c13d000003e80010008c00000caf0000a13d0000060f01000041000000000010043f000005de010000410000153d000104300000000001000416000000000001004b00000bff0000c13d0000000503000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000008c0000c13d000000800010043f000000000004004b00000b5f0000613d000000000030043f000000000001004b000000000200001900000b640000613d00000559030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000a410000413d00000b640000013d000000640030008c00000bff0000413d0000000402100370000000000202043b000800000002001d000005540020009c00000bff0000213d0000002402100370000000000202043b000700000002001d000005540020009c00000bff0000213d0000004401100370000000000201043b0000000003000411000000080030006b00000a5e0000613d0000000c01000039000000000101041a000000ff0010019000000cbb0000c13d000000a001000039000000400010043f000000800000043f000000000002004b00000cdd0000613d000600000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000005d70010019800000cdd0000c13d000000000001004b00000a8f0000c13d0000000301000039000000000101041a0000000602000029000000000021004b00000cdd0000a13d000a00000002001d0000000a01000029000000010110008a000a00000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b00000a7c0000613d000a00000001001d0000055401100197000000080010006c00000da90000c13d0000000601000029000000000010043f0000000901000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000300000001001d000000000101041a000400000001001d00000000010004110000055402100197000500000002001d000000080020006c00000f710000613d0000000502000029000000040020006c00000f710000613d0000000801000029000000000010043f0000000a01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000ff0010019000000f710000c13d0000060701000041000000000010043f000005de010000410000153d00010430000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f0000000e0100003900000ae30000013d000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000a00000001001d153b13000000040f00000014010000390000000a02000029000000000021041b00000000010000190000153c0001042e000000240030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000401100370000000000101043b000005540010009c00000bff0000213d000000000010043f0000001d01000039000000200010043f00000040020000390000000001000019153b151c0000040f00000b2c0000013d000000440030008c00000bff0000413d0000000002000416000000000002004b00000bff0000c13d0000000402100370000000000302043b000005540030009c00000bff0000213d0000002401100370000000000201043b000000000100041a00000554011001970000000004000411000000000041004b00000b1a0000c13d0000000b01000039000000000101041a000000000001004b00000c460000613d0000000404000039000000000404041a00000616044001670000000305000039000000000505041a0000000004450019000000000024001a00000d070000413d0000000004240019000000000014004b00000c460000a13d0000060401000041000000000010043f000005de010000410000153d000104300000056f01000041000000800010043f0000002001000039000000840010043f000000a40010043f000005f601000041000000c40010043f000005fd010000410000153d000104300000000001000416000000000001004b00000bff0000c13d000000180100003900000b2c0000013d0000000001000416000000000001004b00000bff0000c13d0000001901000039000000000101041a000000800010043f000005d1010000410000153c0001042e0000000001000416000000000001004b00000bff0000c13d0000000c01000039000000000101041a00000018011002700000055401100197000000800010043f000005d1010000410000153c0001042e000000000005004b000000000100001900000b3e0000613d000000e00100043d0000000302500210000006160220027f0000061602200167000000000121016f0000000102500210000000000121019f00000b8f0000013d000005dd01000041000000000010043f000005de010000410000153d000104300000060e01000041000000000010043f000005de010000410000153d00010430000900000001001d000a00000004001d000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000090010006c0000000a04000029000009c00000813d00000c370000013d0000061702200197000000a00020043f000000000001004b0000002002000039000000000200603900000020022000390000008001000039153b12ca0000040f000000400100043d000a00000001001d0000008002000039153b12850000040f0000000a020000290000000001210049000005500010009c00000550010080410000006001100210000005500020009c00000550020080410000004002200210000000000121019f0000153c0001042e000000010320008a00000005033002700000000003310019000000200400003900000001033000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b00000b7a0000c13d000000e003500039000000000062004b00000b8c0000813d0000000302600210000000f80220018f000006160220027f00000616022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000604000039000000000014041b00000001020000390000000301000039000000000021041b000005e9010000390000000b02000039000000000012041b0000000c02000039000000000102041a0000055e0110019700000101011001bf000000000012041b0000000d01000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f00000001003001900000008c0000c13d0000001f0020008c00000bb00000a13d0000055f030000410000001f022000390000000502200270000005600220009a000000000003041b0000000103300039000000000023004b00000bac0000413d000000000001041b00000561010000410000000e02000039000000000012041b00000562010000410000000f02000039000000000012041b00000391020000390000001003000039000000000023041b00000563020000410000001203000039000000000023041b00000013030000390000000305000039000000000053041b00000564030000410000001404000039000000000034041b0000001603000039000000000013041b00000565010000410000001703000039000000000013041b0000001801000039000000000001041b0000001a01000039000000000021041b0000001b01000039000000000051041b0000001c01000039000000000001041b0000056601000041000000000010043f0000000001000410000000040010043f0000056701000041000000240010043f0000000001000414000005500010009c0000055001008041000000c00110021000000568011001c70000056902000041153b15310000040f00000060031002700000055003300197000000040030008c00000004040000390000000004034019000000000000004b00000bea0000613d000000000501034f0000000006000019000000005705043c0000000000760435000000200660003a00000be60000c13d000000000004004b00000bf70000613d0000000304400210000000000500043d00000000054501cf000000000545022f00000100044000890000000006100370000000000606043b000000000646022f00000000044601cf000000000454019f000000000040043f000100000003001f0003000000010355000000010020019000000c010000c13d000000000100043d0000056a01100197000005660010009c00000c010000c13d00000000010000190000153d00010430000000240000043f000000400100043d000000000200041a0000055402200198000000010500003900000c170000c13d00000044021000390000056e0300004100000000003204350000002402100039000000190300003900000000003204350000056f020000410000000000210435000000040210003900000020030000390000000000320435000005500010009c0000055001008041000000400110021000000570011001c70000153d000104300000056b0010009c0000004c0000213d0000004003100039000000400030043f0000002003100039000000fa04000039000000000043043500000000002104350000056c012001c7000000000015041b0000002001000039000001000010044300000120000004430000056d010000410000153c0001042e000900000001001d000a00000004001d000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000090010006c0000000a04000029000009c40000a13d0000060201000041000000000010043f000005de010000410000153d00010430000000000010043f0000000801000039000000200010043f00000040020000390000000001000019153b151c0000040f000000000101041a0000055b01100197000000800010043f000005d1010000410000153c0001042e0000000001030019153b13160000040f00000000010000190000153c0001042e00000550023001970000001f0420018f000005e20320019800000c540000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000c500000c13d000000000004004b00000c610000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d00010430000000000001004b0000000001000019000005fe0100c041000005ff03300197000000ed0000013d0000055301100197000000000161019f000000000010041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d0200003900000003030000390000055604000041000002680000013d000005500010009c0000055001008041000000c001100210000000000003004b00000ce10000c13d000000000204001900000ce40000013d0000060301000041000000000010043f000005de010000410000153d0001043000000550023001970000001f0420018f000005e20320019800000c890000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000c850000c13d000000000004004b00000c960000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d00010430000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000080010006c00000004040000290000058d0000813d00000c370000013d000005500010009c0000055001008041000000c001100210000000000003004b00000d310000c13d000000000204001900000d340000013d000000000003004b00000d770000c13d0000056f01000041000000800010043f0000002001000039000000840010043f0000001b01000039000000a40010043f000005fc01000041000000c40010043f000005fd010000410000153d00010430000600000002001d000005e001000041000000000010043f00000000010004100000001a0010043f0000003a0030043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000d900000613d0000003a0000043f000000400100043d000900000001001d000005dc0010009c0000004c0000213d0000000c01000039000000000101041a00000009030000290000002002300039000000400020043f0000000000030435000000ff0010019000000dee0000c13d0000000602000029000000000002004b00000a630000c13d0000060d01000041000000000010043f000005de010000410000153d0001043000000555011001c700008009020000390000000005000019153b15310000040f00030000000103550000006001100270000105500010019d0000055001100197000000000001004b00000d630000613d0000055b0010009c0000004c0000213d0000001f0410003900000615044001970000003f044000390000061505400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000055b0050009c0000004c0000213d00000001006001900000004c0000c13d000000400050043f000000000614043600000615031001980000001f0410018f0000000001360019000000030500036700000d560000613d000000000705034f000000007807043c0000000006860436000000000016004b00000d020000c13d00000d560000013d000005f801000041000000000010043f0000001101000039000000040010043f000005e5010000410000153d00010430153b12dc0000040f000000090300002900000000013104360000000a020000290000000000210435000000a001200210000000000131019f0000000102000039000000000012041b00000000010000190000153c0001042e00000550023001970000001f0420018f000005e20320019800000d220000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000d1e0000c13d000000000004004b00000d2f0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d0001043000000555011001c700008009020000390000000005000019153b15310000040f00030000000103550000006001100270000105500010019d0000055001100197000000000001004b00000d630000613d0000055b0010009c0000004c0000213d0000001f0410003900000615044001970000003f044000390000061505400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000055b0050009c0000004c0000213d00000001006001900000004c0000c13d000000400050043f000000000614043600000615031001980000001f0410018f0000000001360019000000030500036700000d560000613d000000000705034f000000007807043c0000000006860436000000000016004b00000d520000c13d000000000004004b00000d630000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000010020019000000d670000613d00000000010000190000153c0001042e000000400200043d000a00000002001d0000056f0100004100000000001204350000000401200039153b12f60000040f0000000a020000290000000001210049000005500010009c00000550010080410000006001100210000005500020009c00000550020080410000004002200210000000000121019f0000153d00010430000000c004000039000000400040043f000000800030043f000000a00010043f000000000020043f0000000201000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000800200043d0000055402200197000000a00300043d000000a003300210000000000223019f000000000101043b000000000021041b00000000010000190000153c0001042e00000550023001970000001f0420018f000005e20320019800000d9a0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000d960000c13d000000000004004b00000da70000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d000104300000060601000041000000000010043f000005de010000410000153d00010430000000000002004b000000000400001900000db30000613d0000002004500039000000000141034f000000000401043b0000000301200210000006160110027f0000061601100167000000000414016f000000010120021000000dea0000013d00000617022001970000000000240435000000000001004b000000200200003900000000020060390000003f0220003900000615032001970000000002530019000000000032004b000000000300003900000001030040390000055b0020009c0000004c0000213d00000001003001900000004c0000c13d000000400020043f0000000003050433000000000003004b00000e190000c13d000005dc0020009c0000004c0000213d0000002001200039000000400010043f0000000000020435000000400300043d00000f6e0000013d0000055f0500004100000000070000190000000008470019000000000881034f000000000808043b000000000085041b00000001055000390000002007700039000000000067004b00000dd50000413d000000000026004b00000de80000813d0000000306200210000000f80660018f000006160660027f00000616066001670000000004470019000000000141034f000000000101043b000000000161016f000000000015041b00000001010000390000000104200210000000000114019f000000000013041b00000000010000190000153c0001042e000005e001000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000efe0000613d0000003a0000043f0000000c01000039000000000101041a000000ff0010019000000cda0000613d000005e001000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d00030000000103550000000100200190000010090000613d0000003a0000043f00000cda0000013d000000a003200039000000400030043f000000800320003900000000000304350000000a090000290000000006030019000000090090008c0000000a3990011a000000f807300210000000010360008a0000000008030433000005d808800197000000000787019f000005d9077001c7000000000073043500000e1e0000213d00000000026200490000008102200039000000210660008a0000000000260435000000000505043300000615095001970000001f0850018f000000400200043d0000002007200039000000000074004b00000f170000813d000000000009004b00000e400000613d000000000b840019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00000e3a0000c13d000000000008004b00000f2d0000613d000000000a07001900000f230000013d0000000a01000029000000000010043f0000000a01000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b00000000020004110000055402200197000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000ff00100190000003390000c13d0000060b01000041000000000010043f000005de010000410000153d0001043000000000010004110000006003100210000000400100043d0000002002100039000000000032043500000034031000390000000404000029000000000043043500000034030000390000000000310435000005ef0010009c0000004c0000213d0000006003100039000000400030043f000005500020009c000005500200804100000040022002100000000001010433000005500010009c00000550010080410000006001100210000000000121019f0000000002000414000005500020009c0000055002008041000000c002200210000000000112019f00000555011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b00000009020000290000003f02200039000005f002200197000000400300043d0000000002230019000900000003001d000000000032004b000000000300003900000001030040390000055b0020009c0000004c0000213d00000001003001900000004c0000c13d000000400020043f0000000a0200002900000009040000290000000002240436000800000002001d0000000602000029000000000020007c00000bff0000213d0000000a0000006b00000ecc0000613d0000000702000029000000200220003900000002022003670000000903000029000000050500002900000006060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b00000ea50000413d00000009020000290000000002020433000000000002004b00000ecc0000613d0000000003000019000a00000003001d000000050230021000000008022000290000000002020433000000000021004b00000eba0000813d000000000010043f000000200020043f000000000100041400000ebd0000013d000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000a03000029000000010330003900000009020000290000000002020433000000000023004b00000eb00000413d000000030010006c0000000403000029000005e70000613d000005f101000041000000000010043f000005de010000410000153d00010430000005e001000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d0003000000010355000000010020019000000f780000613d0000003a0000043f0000000c01000039000000000101041a000000ff001001900000063d0000613d000005e001000041000000000010043f00000000010004100000001a0010043f00000000010004110000003a0010043f0000000001000414000005500010009c0000055001008041000000c001100210000005e1011001c70000056902000041153b15360000040f0000006003100270000105500030019d00030000000103550000000100200190000010d30000613d0000003a0000043f0000063d0000013d00000550023001970000001f0420018f000005e20320019800000f080000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000f040000c13d000000000004004b00000f150000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d00010430000000000a970019000000000009004b00000f200000613d000000000b040019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00000f1c0000c13d000000000008004b00000f2d0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000000005750019000005da040000410000000000450435000000000406043300000615074001970000001f0640018f0000000105500039000000000053004b00000f460000813d000000000007004b00000f420000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00000f3c0000c13d000000000006004b00000f5c0000613d000000000805001900000f520000013d0000000008750019000000000007004b00000f4f0000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b00000f4b0000c13d000000000006004b00000f5c0000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f00000000003804350000000003540019000005db04000041000000000043043500000000032300490000001b0430008a0000000000420435000000240330003900000615013001970000000004210019000000000014004b000000000100003900000001010040390000055b0040009c0000004c0000213d00000001001001900000004c0000c13d0000000003040019000000400040043f0000000001030019000a00000003001d00000b6a0000013d0000000701000029000205540010019c00000fff0000c13d0000060901000041000000000010043f000005de010000410000153d0001043000000550023001970000001f0420018f000005e20320019800000f820000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00000f7e0000c13d000000000004004b00000f8f0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d0001043000000000010004110000000302000039000000000202041a000a00000002001d000905540010019b0000000c01000039000000000201041a000005e300200198000010220000c13d0000000901000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000402000029000005f2022000d1000000000101043b000000000301041a0000000002230019000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000800000001001d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000802000029000000a0022002100000000403000029000000010030008c0000000003000019000005e803006041000000000223019f0000000906000029000000000262019f000000000101043b000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000a07000029153b15310000040f000000010020019000000bff0000613d0000000a02000029000800040020002d0000000a070000290000000107700039000000080070006c0000120a0000613d0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000906000029000a00000007001d153b15310000040f000000010020019000000fe10000c13d00000bff0000013d000000400100043d0000004402100039000005f60300004100000000003204350000056f020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000c110000013d0000000c01000039000000000101041a000000080000006b000010370000613d0000ff0000100190000010370000613d0000060a01000041000000000010043f000005de010000410000153d0001043000000550023001970000001f0420018f000005e203200198000010130000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000100f0000c13d000000000004004b000010200000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d00010430000000400300043d000005e4010000410000000000130435000800000003001d000000040130003900000009030000290000000000310435000000000100041400000018022002700000055402200197000000040020008c000010ec0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011160000013d000005f701000041000000000010043f000005de010000410000153d00010430000005e3001001980000113e0000c13d000000040000006b0000103d0000613d0000000301000029000000000001041b0000000801000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000201000029000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000201041a0000000102200039000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000010d20000613d000000000101043b000500000001001d0000000601000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d0000000502000029000000a00220021000000002022001af000005e8022001c7000000000101043b000000000021041b0000000a01000029000005e800100198000010a90000c13d00000006010000290000000101100039000500000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b000000000101041a000000000001004b000010a90000c13d0000000301000039000000000101041a000000050010006b000010a90000613d0000000501000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f000000010020019000000bff0000613d000000000101043b0000000a02000029000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e904000041000000080500002900000002060000290000000607000029153b15310000040f000000010020019000000bff0000613d000005ea010000410000000000100443000000070100002900000004001004430000000001000414000005500010009c0000055001008041000000c001100210000005eb011001c70000800202000039153b15360000040f0000000100200190000010d20000613d000000000101043b000000000001004b00000d650000613d0000000801000029000000070200002900000006030000290000000904000029153b143f0000040f000000000001004b00000d650000c13d0000060101000041000000000010043f000005de010000410000153d00010430000000000001042f00000550023001970000001f0420018f000005e203200198000010dd0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000010d90000c13d000000000004004b000010ea0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060012002100000153d000104300000000803000029000005500030009c00000550030080410000004003300210000005500010009c0000055001008041000000c001100210000000000131019f000005e5011001c7153b15360000040f00000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000011050000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000011010000c13d000000000006004b000011120000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000114f0000613d0000001f01400039000000600210018f0000000801200029000000000021004b000000000200003900000001020040390000055b0010009c0000004c0000213d00000001002001900000004c0000c13d000000400010043f000000200030008c00000bff0000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000001004b00000f9a0000c13d000011dc0000013d000000400300043d000005e4020000410000000000230435000300000003001d000000040230003900000006030000290000000000320435000000000300041400000018011002700000055402100197000000040020008c0000115b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011850000013d000000400300043d000005e4020000410000000000230435000100000003001d000000040230003900000005030000290000000000320435000000000300041400000018011002700000055402100197000000040020008c0000119c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011c60000013d0000001f0530018f000005e206300198000000400200043d0000000004620019000011f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011560000c13d000011f70000013d0000000301000029000005500010009c00000550010080410000004001100210000005500030009c0000055003008041000000c003300210000000000113019f000005e5011001c7153b15360000040f00000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000305700029000011740000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b000011700000c13d000000000006004b000011810000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011e00000613d0000001f01400039000000600210018f0000000301200029000000000021004b000000000200003900000001020040390000055b0010009c0000004c0000213d00000001002001900000004c0000c13d000000400010043f000000200030008c00000bff0000413d00000003010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000001004b000001aa0000c13d000011dc0000013d0000000101000029000005500010009c00000550010080410000004001100210000005500030009c0000055003008041000000c003300210000000000113019f000005e5011001c7153b15360000040f00000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000011b50000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000011b10000c13d000000000006004b000011c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011ec0000613d0000001f01400039000000600210018f0000000101200029000000000021004b000000000200003900000001020040390000055b0010009c0000004c0000213d00000001002001900000004c0000c13d000000400010043f000000200030008c00000bff0000413d00000001010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000001004b000010390000c13d0000060801000041000000000010043f000005de010000410000153d000104300000001f0530018f000005e206300198000000400200043d0000000004620019000011f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011e70000c13d000011f70000013d0000001f0530018f000005e206300198000000400200043d0000000004620019000011f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011f30000c13d000000000005004b000012040000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005500020009c00000550020080410000004002200210000000000112019f0000153d00010430000000090000006b000012270000c13d000005f901000041000000000010043f000005de010000410000153d00010430000000400300043d000005e4020000410000000000230435000200000003001d000000040230003900000006030000290000000000320435000000000300041400000018011002700000055402100197000000040020008c0000122c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012560000013d000005f801000041000000000010043f0000003201000039000000040010043f000005e5010000410000153d0001043000000003010000390000000802000029000000000021041b00000000010000190000153c0001042e0000000201000029000005500010009c00000550010080410000004001100210000005500030009c0000055003008041000000c003300210000000000113019f000005e5011001c7153b15360000040f00000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000205700029000012450000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b000012410000c13d000000000006004b000012520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000126d0000613d0000001f01400039000000600210018f0000000201200029000000000021004b000000000200003900000001020040390000055b0010009c0000004c0000213d00000001002001900000004c0000c13d000000400010043f000000200030008c00000bff0000413d00000002010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00000bff0000c13d000000000001004b000006b10000c13d000011dc0000013d0000001f0530018f000005e206300198000000400200043d0000000004620019000011f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012740000c13d000011f70000013d0000001f0530018f000005e206300198000000400200043d0000000004620019000011f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012800000c13d000011f70000013d000000200300003900000000033104360000000042020434000000000023043500000615062001970000001f0520018f0000004001100039000000000014004b0000129e0000813d000000000006004b0000129a0000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000012940000c13d000000000005004b000012b40000613d0000000007010019000012aa0000013d0000000007610019000000000006004b000012a70000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000012a30000c13d000000000005004b000012b40000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000615022001970000000001120019000000000001042d0000055402200197000000000020043f000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f0000000100200190000012c80000613d000000000101043b000000000001042d00000000010000190000153d000104300000001f0220003900000615022001970000000001120019000000000021004b000000000200003900000001020040390000055b0010009c000012d60000213d0000000100200190000012d60000c13d000000400010043f000000000001042d000005f801000041000000000010043f0000004101000039000000040010043f000005e5010000410000153d00010430000000400100043d000006190010009c000012e20000813d0000004002100039000000400020043f000000000001042d000005f801000041000000000010043f0000004101000039000000040010043f000005e5010000410000153d00010430000000000301001900000000011200a9000000000003004b000012ef0000613d00000000033100d9000000000023004b000012f00000c13d000000000001042d000005f801000041000000000010043f0000001101000039000000040010043f000005e5010000410000153d0001043000000040021000390000061a030000410000000000320435000000200210003900000010030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000000000100041a00000554011001970000000002000411000000000021004b000013060000c13d000000000001042d000000400100043d0000004402100039000005f60300004100000000003204350000056f02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000005500010009c0000055001008041000000400110021000000570011001c70000153d000104300004000000000002000200000002001d000000000002004b000013d90000613d00000000050100190000000301000039000000000101041a000400000001001d0000000c01000039000000000101041a000005e300100198000013760000613d000000400b00043d000005e40200004100000000002b0435000000000200041100000554022001970000000403b000390000000000230435000000000300041400000018011002700000055402100197000000040020008c000013330000c13d0000000103000031000000200030008c00000020040000390000000004034019000013610000013d000100000005001d0000055000b0009c000005500100004100000000010b40190000004001100210000005500030009c0000055003008041000000c003300210000000000113019f000005e5011001c700030000000b001d153b15360000040f000000030b00002900000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000134f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000134b0000c13d000000000006004b0000135c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000013ec0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b000000000200003900000001020040390000055b0010009c000013e20000213d0000000100200190000013e20000c13d000000400010043f0000001f0030008c000013d10000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000013d10000c13d000000000001004b000013e80000613d0000055401500197000300000001001d000000000010043f0000000801000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f0000000100200190000013d10000613d0000000202000029000005f2022000d1000000000101043b000000000301041a0000000002230019000000000021041b000005e60100004100000000001004430000000001000414000005500010009c0000055001008041000000c001100210000005e7011001c70000800b02000039153b15360000040f0000000100200190000013dd0000613d000000000101043b000100000001001d0000000401000029000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f0000000100200190000013d10000613d0000000102000029000000a0022002100000000203000029000000010030008c0000000003000019000005e803006041000000000223019f0000000306000029000000000262019f000000000101043b000000000021041b0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000407000029153b15310000040f00000004070000290000000100200190000013d10000613d000200020070002d0000000107700039000000020070006c000013d30000613d0000000001000414000005500010009c0000055001008041000000c00110021000000555011001c70000800d020000390000000403000039000005e90400004100000000050000190000000306000029000400000007001d0000000407000029153b15310000040f00000004070000290000000100200190000013be0000c13d00000000010000190000153d00010430000000030000006b000013de0000613d00000003010000390000000202000029000000000021041b000000000001042d000005fa01000041000000000010043f000005de010000410000153d00010430000000000001042f000005f901000041000000000010043f000005de010000410000153d00010430000005f801000041000000000010043f0000004101000039000000040010043f000005e5010000410000153d000104300000060801000041000000000010043f000005de010000410000153d000104300000001f0530018f000005e206300198000000400200043d0000000004620019000013f70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013f30000c13d000000000005004b000014040000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000005500020009c00000550020080410000004002200210000000000112019f0000153d000104300001000000000002000000000001004b0000143b0000613d000100000001001d000000000010043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f0000000100200190000014390000613d000000000101043b000000000101041a000005d70010019800000001020000290000143b0000c13d000000000001004b000014380000c13d0000000301000039000000000101041a000000000021004b0000143b0000a13d000000010220008a000100000002001d000000000020043f0000000701000039000000200010043f0000000001000414000005500010009c0000055001008041000000c001100210000005d6011001c70000801002000039153b15360000040f0000000100200190000014390000613d000000000101043b000000000101041a000000000001004b0000000102000029000014250000613d000000000001042d00000000010000190000153d000104300000060d01000041000000000010043f000005de010000410000153d000104300004000000000002000000400d00043d0000006405d00039000000800c0000390000000000c504350000004405d00039000000000035043500000554011001970000002403d0003900000000001304350000061b0100004100000000001d0435000000000100041100000554011001970000000403d0003900000000001304350000008403d000390000000051040434000000000013043500000615071001970000001f0610018f000000a404d00039000000000045004b000014670000813d000000000007004b000014630000613d00000000096500190000000008640019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c0000145d0000c13d000000000006004b0000147d0000613d0000000008040019000014730000013d0000000008740019000000000007004b000014700000613d0000000009050019000000000a040019000000009b090434000000000aba043600000000008a004b0000146c0000c13d000000000006004b0000147d0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f00000000005804350000000004410019000000000004043500000000040004140000055402200197000000040020008c0000148b0000c13d0000000005000415000000040550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000014c10000013d00010000000c001d0000001f011000390000061501100197000000a401100039000005500010009c000005500100804100000060011002100000055000d0009c000005500300004100000000030d40190000004003300210000000000131019f000005500040009c0000055004008041000000c003400210000000000131019f00020000000d001d153b15310000040f000000020d00002900000060031002700000055003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d0019000014ad0000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b000014a90000c13d000000000006004b000014ba0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000030550008a00000005055002100000000100200190000014da0000613d0000001f01400039000000600210018f0000000001d20019000000000021004b000000000200003900000001020040390000055b0010009c0000150c0000213d00000001002001900000150c0000c13d000000400010043f0000001f0030008c000014d80000a13d00000000010d04330000061000100198000014d80000c13d0000000502500270000000000201001f0000056a011001970000061b0010009c00000000010000390000000101006039000000000001042d00000000010000190000153d00010430000000000003004b000014de0000c13d0000006002000039000015050000013d0000001f023000390000061c022001970000003f022000390000061d04200197000000400200043d0000000004420019000000000024004b000000000500003900000001050040390000055b0040009c0000150c0000213d00000001005001900000150c0000c13d000000400040043f0000001f0430018f0000000006320436000005e205300198000100000006001d0000000003560019000014f80000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000014f40000c13d000000000004004b000015050000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000015120000c13d0000060101000041000000000010043f000005de010000410000153d00010430000005f801000041000000000010043f0000004101000039000000040010043f000005e5010000410000153d000104300000000102000029000005500020009c00000550020080410000004002200210000005500010009c00000550010080410000006001100210000000000121019f0000153d00010430000000000001042f000005500010009c00000550010080410000004001100210000005500020009c00000550020080410000006002200210000000000112019f0000000002000414000005500020009c0000055002008041000000c002200210000000000112019f00000555011001c70000801002000039153b15360000040f00000001002001900000152f0000613d000000000101043b000000000001042d00000000010000190000153d0001043000001534002104210000000102000039000000000001042d0000000002000019000000000001042d00001539002104230000000102000039000000000001042d0000000002000019000000000001042d0000153b000004320000153c0001042e0000153d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4162737472616374696f6e7300000000000000000000000000000000000000004142535800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000010000000000000000fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff09addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000d7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb5284966fefa8e6efe2541488ebb0d5cc7a37fcc532c506816bdc596a17e52e14b00000000000000000000000000000000000000000000000000000000679a6ca000000000000000000000000000000000000000000000000000000000679a88c000000000000000000000000000000000000000000000000000670758aa7c800088034c20f625c469d5ce7a9550602fe0a6dbd2a1dfa36b8d3dc1f34ea1af302900000000000000000000000000000000000000000000000000000000679a96d07d3e3dbe000000000000000000000000000000000000000000000000000000000000000000000000000000003cc6cdda760b79bafa08df41ecfa224f810dceb60000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000aaeb6d7670e522a718067333cd4effffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf0000000000000000000000fa00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000000000006352211d00000000000000000000000000000000000000000000000000000000aa60bdcf00000000000000000000000000000000000000000000000000000000e1136b3c00000000000000000000000000000000000000000000000000000000ed9aab5000000000000000000000000000000000000000000000000000000000f3f119f000000000000000000000000000000000000000000000000000000000f3f119f100000000000000000000000000000000000000000000000000000000fb796e6c00000000000000000000000000000000000000000000000000000000fcf925e200000000000000000000000000000000000000000000000000000000ed9aab5100000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000e5e2a0f500000000000000000000000000000000000000000000000000000000e5e2a0f600000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000e1136b3d00000000000000000000000000000000000000000000000000000000e56e9ac000000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c3d923a600000000000000000000000000000000000000000000000000000000abd017e900000000000000000000000000000000000000000000000000000000abd017ea00000000000000000000000000000000000000000000000000000000b7c0b8e800000000000000000000000000000000000000000000000000000000aa60bdd000000000000000000000000000000000000000000000000000000000ab7b4993000000000000000000000000000000000000000000000000000000007d4b5a200000000000000000000000000000000000000000000000000000000096db3e8800000000000000000000000000000000000000000000000000000000a70138c000000000000000000000000000000000000000000000000000000000a70138c100000000000000000000000000000000000000000000000000000000aa0678ff0000000000000000000000000000000000000000000000000000000096db3e8900000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000007d4b5a2100000000000000000000000000000000000000000000000000000000858633f20000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000072b0d90b0000000000000000000000000000000000000000000000000000000072b0d90c0000000000000000000000000000000000000000000000000000000079544c860000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000065216a400000000000000000000000000000000000000000000000000000000065216a41000000000000000000000000000000000000000000000000000000006f8b44b0000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000064f52a1f000000000000000000000000000000000000000000000000000000003ccfd60a000000000000000000000000000000000000000000000000000000004f115db0000000000000000000000000000000000000000000000000000000005944c752000000000000000000000000000000000000000000000000000000005c1afeca000000000000000000000000000000000000000000000000000000005c1afecb000000000000000000000000000000000000000000000000000000005d99a0cf000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000059a2f3bd0000000000000000000000000000000000000000000000000000000055f5f0650000000000000000000000000000000000000000000000000000000055f5f0660000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000004f115db100000000000000000000000000000000000000000000000000000000545b70b200000000000000000000000000000000000000000000000000000000462fed1300000000000000000000000000000000000000000000000000000000484b973b00000000000000000000000000000000000000000000000000000000484b973c000000000000000000000000000000000000000000000000000000004b21839e00000000000000000000000000000000000000000000000000000000462fed140000000000000000000000000000000000000000000000000000000046fff98d0000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000456f911a000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000041d94c980000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000003073dbfc000000000000000000000000000000000000000000000000000000003bf30393000000000000000000000000000000000000000000000000000000003bf30394000000000000000000000000000000000000000000000000000000003c6d5762000000000000000000000000000000000000000000000000000000003073dbfd0000000000000000000000000000000000000000000000000000000030db1d5b00000000000000000000000000000000000000000000000000000000251c21eb00000000000000000000000000000000000000000000000000000000251c21ec000000000000000000000000000000000000000000000000000000002a55205a0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb000000000000000000000000000000000000000000000000000000000d4c1827000000000000000000000000000000000000000000000000000000000d4c18280000000000000000000000000000000000000000000000000000000012b3651000000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000006fdde020000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000759f2d80000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d00000000000000000000000000000000000000200000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30000000000000000000000000000000000000000000000000000000000000002f000000000000000000000000000000000000000000000000000000000000002e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000000000c6171134001122334455000000000000000000000000000000000000004400000016000000000000000000000000000000000000000000000000000000000000000000000000ffffffe00000000000000000000000000000000000000000000000000000000000ff0000e18bc08a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000ffffffffffffffffff0000000000000000000000000000000000000000ffffff17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffff9f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0b05e92fa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000019cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f398f4eb6040000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572fc4c6036000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000002e07630000000000000000000000000000000000000000000000000000000000b562e8dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff455243323938313a20496e76616c696420706172616d6574657273000000000000000000000000000000000000000000000000640000008000000000000000000000000000000000000000000000000000000000000000000000000000010000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffe048e71000000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000dd4e010600000000000000000000000000000000000000000000000000000000327c6a56000000000000000000000000000000000000000000000000000000008a164f63000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000004c80d8be00000000000000000000000000000000000000000000000000000000ea553b3400000000000000000000000000000000000000000000000000000000db89e3f400000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e400000000000000000000000000000000000000000000000000000000f4df6ae50000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff01ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc05472616e73666572206661696c65642e00000000000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe021391b0d919ab1cbd3884f6da727c7894f69403a28e2bd2d8577d3e7d15eeddc
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.