ERC-721
Overview
Max Total Supply
125 SPOC
Holders
41
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
2 SPOCLoading...
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:
SQUAREid
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.11
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {ERC721ACGated} from "./libs/ERC721ACGated.sol"; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // // // // SQUARE ID // // // // // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // @author: miinded.com contract SQUAREid is ERC721ACGated { constructor( string memory _baseURI, address _owner, address _royaltyReceiver, uint96 _royaltyFeeNumerator) ERC721ACGated("SQUAREid", "SPOC", _royaltyReceiver, _royaltyFeeNumerator, 1500){ setAdminAddress(_msgSender() ,true); ERC721ACGated.setBaseUri(_baseURI); transferOwnership(_owner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@limitbreak/creator-token-contracts/contracts/erc721c/ERC721AC.sol"; import "@limitbreak/creator-token-contracts/contracts/programmable-royalties/BasicRoyalties.sol"; import "@miinded/hardhat-tools/contracts/ExternalContracts.sol"; import "@miinded/hardhat-tools/contracts/Initialize.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contracts/IERC721A.sol"; import "./interfaces/IERC721AManager.sol"; import "./interfaces/IERC721AGated.sol"; import "./ERC721ACQueryable.sol"; import {IERC5192} from "./interfaces/IERC5192.sol"; // @author: miinded.com abstract contract ERC721ACGated is IERC721AGated, IERC5192, ERC721ACQueryable, Initialize, BasicRoyalties, ExternalContracts { error SoldOut(); uint256 public maxSupply; string public baseTokenURI; IERC721AManager public contractManager; bool public collectionLocked = true; constructor(string memory _name, string memory _symbol, address _royaltyReceiver, uint96 _royaltyFeeNumerator, uint256 _maxSupply) ERC721AC(_name, _symbol) BasicRoyalties(_royaltyReceiver, _royaltyFeeNumerator) Ownable(_msgSender()){ maxSupply = _maxSupply; } function setManager(address _contractManager) public onlyOwnerOrAdmins { contractManager = IERC721AManager(_contractManager); ExternalContracts.setExternalContract(_contractManager, true); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721AC, ERC2981, IERC721A) returns (bool) { return ERC721AC.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId) || super.supportsInterface(interfaceId); } function _startTokenId() internal override pure returns (uint256){ return 1; } function mint(address to, uint256 quantity, bool _lock) public override externalContract { if (_totalMinted() + quantity > maxSupply) { revert SoldOut(); } if (_lock) { uint256 nextTokenId = totalMinted() + 1; for (uint256 i = 0; i < quantity; i++) { emit Locked(nextTokenId + i); } } _mint(to, quantity); } function safeMint(address to, uint256 quantity, bool _lock) public override externalContract { if (_totalMinted() + quantity > maxSupply) { revert SoldOut(); } if (_lock) { uint256 nextTokenId = totalMinted() + 1; for (uint256 i = 0; i < quantity; i++) { emit Locked(nextTokenId + i); } } _safeMint(to, quantity); } function burn(uint256 tokenId) public override externalContract { _burn(tokenId); } function totalMinted() public view virtual override returns (uint256) { return _totalMinted(); } function totalBurned() public view virtual override returns (uint256) { return _totalBurned(); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseUri(string memory baseURI) public virtual onlyOwnerOrAdmins { baseTokenURI = baseURI; } function setCollectionLocked(bool _collectionLocked) public onlyOwnerOrAdmins { collectionLocked = _collectionLocked; } function lock(uint256 tokenId) public override externalContract { emit Locked(tokenId); } function unlock(uint256 tokenId) public override externalContract { emit Unlocked(tokenId); } function locked(uint256) public view returns (bool) { return collectionLocked; } function unlockCollection(uint256 _tokenIdStart, uint256 _tokenIdEnd) public onlyOwnerOrAdmins { for(uint256 tokenId = _tokenIdStart; tokenId <= _tokenIdEnd; tokenId++){ emit Unlocked(tokenId); } } function _requireCallerIsContractOwner() internal view virtual override onlyOwnerOrAdmins {} function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual override { super._preValidateTransfer(caller, from, to, tokenId, value); require(locked(tokenId) == false, "ERC721ACGateway: TokenId is locked"); require(contractManager.transferFrom(from, to, tokenId), "ERC721ACGateway: TokenId not transferable"); } function setDefaultRoyalty(address receiver, uint96 feeNumerator) public virtual onlyOwnerOrAdmins { _setDefaultRoyalty(receiver, feeNumerator); } function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) public virtual onlyOwnerOrAdmins { _setTokenRoyalty(tokenId, receiver, feeNumerator); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs & miinded.com pragma solidity ^0.8.4; import "@limitbreak/creator-token-contracts/contracts/erc721c/ERC721AC.sol"; import "./interfaces/IERC721ACQueryable.sol"; /** * @title ERC721ACQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721ACQueryable is ERC721AC, IERC721ACQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory ownership) { unchecked { if (tokenId >= _startTokenId()) { if (tokenId > _sequentialUpTo()) return _ownershipAt(tokenId); if (tokenId < _nextTokenId()) { // If the `tokenId` is within bounds, // scan backwards for the initialized ownership slot. while (!_ownershipIsInitialized(tokenId)) --tokenId; return _ownershipAt(tokenId); } } } } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721ACQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { TokenOwnership[] memory ownerships; uint256 i = tokenIds.length; assembly { // Grab the free memory pointer. ownerships := mload(0x40) // Store the length. mstore(ownerships, i) // Allocate one word for the length, // `tokenIds.length` words for the pointers. i := shl(5, i) // Multiply `i` by 32. mstore(0x40, add(add(ownerships, 0x20), i)) } while (i != 0) { uint256 tokenId; assembly { i := sub(i, 0x20) tokenId := calldataload(add(tokenIds.offset, i)) } TokenOwnership memory ownership = explicitOwnershipOf(tokenId); assembly { // Store the pointer of `ownership` in the `ownerships` array. mstore(add(add(ownerships, 0x20), i), ownership) } } return ownerships; } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721ACQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { return _tokensOfOwnerIn(owner, start, stop); } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721ACQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { // If spot mints are enabled, full-range scan is disabled. if (_sequentialUpTo() != type(uint256).max) _revert(NotCompatibleWithSpotMints.selector); uint256 start = _startTokenId(); uint256 stop = _nextTokenId(); uint256[] memory tokenIds; if (start != stop) tokenIds = _tokensOfOwnerIn(owner, start, stop); return tokenIds; } /** * @dev Helper function for returning an array of token IDs owned by `owner`. * * Note that this function is optimized for smaller bytecode size over runtime gas, * since it is meant to be called off-chain. */ function _tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) private view returns (uint256[] memory tokenIds) { unchecked { if (start >= stop) _revert(InvalidQueryRange.selector); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) start = _startTokenId(); uint256 nextTokenId = _nextTokenId(); // If spot mints are enabled, scan all the way until the specified `stop`. uint256 stopLimit = _sequentialUpTo() != type(uint256).max ? stop : nextTokenId; // Set `stop = min(stop, stopLimit)`. if (stop >= stopLimit) stop = stopLimit; // Number of tokens to scan. uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength` to zero if the range contains no tokens. if (start >= stop) tokenIdsMaxLength = 0; // If there are one or more tokens to scan. if (tokenIdsMaxLength != 0) { // Set `tokenIdsMaxLength = min(balanceOf(owner), tokenIdsMaxLength)`. if (stop - start <= tokenIdsMaxLength) tokenIdsMaxLength = stop - start; uint256 m; // Start of available memory. assembly { // Grab the free memory pointer. tokenIds := mload(0x40) // Allocate one word for the length, and `tokenIdsMaxLength` words // for the data. `shl(5, x)` is equivalent to `mul(32, x)`. m := add(tokenIds, shl(5, add(tokenIdsMaxLength, 1))) mstore(0x40, m) } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), // initialize `currOwnershipAddr`. // `ownership.address` will not be zero, // as `start` is clamped to the valid token ID range. if (!ownership.burned) currOwnershipAddr = ownership.addr; uint256 tokenIdsIdx; // Use a do-while, which is slightly more efficient for this case, // as the array will at least contain one element. do { if (_sequentialUpTo() != type(uint256).max) { // Skip the remaining unused sequential slots. if (start == nextTokenId) start = _sequentialUpTo() + 1; // Reset `currOwnershipAddr`, as each spot-minted token is a batch of one. if (start > _sequentialUpTo()) currOwnershipAddr = address(0); } ownership = _ownershipAt(start); // This implicitly allocates memory. assembly { switch mload(add(ownership, 0x40)) // if `ownership.burned == false`. case 0 { // if `ownership.addr != address(0)`. // The `addr` already has it's upper 96 bits clearned, // since it is written to memory with regular Solidity. if mload(ownership) { currOwnershipAddr := mload(ownership) } // if `currOwnershipAddr == owner`. // The `shl(96, x)` is to make the comparison agnostic to any // dirty upper 96 bits in `owner`. if iszero(shl(96, xor(currOwnershipAddr, owner))) { tokenIdsIdx := add(tokenIdsIdx, 1) mstore(add(tokenIds, shl(5, tokenIdsIdx)), start) } } // Otherwise, reset `currOwnershipAddr`. // This handles the case of batch burned tokens // (burned bit of first slot set, remaining slots left uninitialized). default { currOwnershipAddr := 0 } start := add(start, 1) // Free temporary memory implicitly allocated for ownership // to avoid quadratic memory expansion costs. mstore(0x40, m) } } while (!(start == stop || tokenIdsIdx == tokenIdsMaxLength)); // Store the length of the array. assembly { mstore(tokenIds, tokenIdsIdx) } } } } }
// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.0; interface IERC5192 { /// @notice Emitted when the locking status is changed to locked. /// @dev If a token is minted and the status is locked, this event should be emitted. /// @param tokenId The identifier for a token. event Locked(uint256 tokenId); /// @notice Emitted when the locking status is changed to unlocked. /// @dev If a token is minted and the status is unlocked, this event should be emitted. /// @param tokenId The identifier for a token. event Unlocked(uint256 tokenId); /// @notice Returns the locking status of an Soulbound Token /// @dev SBTs assigned to zero address are considered invalid, and queries /// about them do throw. /// @param tokenId The identifier for an SBT. function locked(uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC721AManager { struct StructMint { string phase; uint16 count; uint16 max; bytes32[] proof; } struct StructPhase { uint64 start; uint64 end; uint16 maxPerWallet; // uniquement pour les pas withProof uint16 supply; uint16 minted; bool withProof; bool paused; bool valid; uint256 price; } event Minted(string phase, address caller, address to, uint256 count); function transferFrom(address from, address to, uint256 tokenId) external returns(bool); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./IERC721ACQueryable.sol"; interface IERC721AGated is IERC721ACQueryable { function mint(address _wallet, uint256 _count, bool _lock) external; function safeMint(address _wallet, uint256 _count, bool _lock) external; function burn(uint256 _tokenId) external; function totalMinted() external view returns(uint256); function totalBurned() external view returns(uint256); function lock(uint256 _tokenId) external; function unlock(uint256 _tokenId) external; }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); /** * `_sequentialUpTo()` must be greater than `_startTokenId()`. */ error SequentialUpToTooSmall(); /** * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`. */ error SequentialMintExceedsLimit(); /** * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`. */ error SpotMintTokenIdTooSmall(); /** * Cannot mint over a token that already exists. */ error TokenAlreadyExists(); /** * The feature is not compatible with spot mints. */ error NotCompatibleWithSpotMints(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; // @author: miinded.com abstract contract Initialize { bool private _initialized = false; modifier isNotInitialized() { require(_initialized == false, "Already Initialized"); _; _initialized = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Admins.sol"; abstract contract ExternalContracts is Admins { mapping(address => bool) internal contracts; modifier externalContract() { require(isExternalContract(_msgSender()), "ExternalContracts: not external Contract"); _; } function isExternalContract(address _contractAddress) public view returns(bool){ return contracts[_contractAddress]; } function setExternalContract(address _contract, bool _state) public onlyOwnerOrAdmins { contracts[_contract] = _state; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../utils/CreatorTokenBase.sol"; import "erc721a/contracts/ERC721A.sol"; /** * @title ERC721AC * @author Limit Break, Inc. * @notice Extends Azuki's ERC721-A implementation with Creator Token functionality, which * allows the contract owner to update the transfer validation logic by managing a security policy in * an external transfer validation security policy registry. See {CreatorTokenTransferValidator}. */ abstract contract ERC721AC is ERC721A, CreatorTokenBase { constructor(string memory name_, string memory symbol_) CreatorTokenBase() ERC721A(name_, symbol_) {} function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || super.supportsInterface(interfaceId); } /// @dev Ties the erc721a _beforeTokenTransfers hook to more granular transfer validation logic function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { for (uint256 i = 0; i < quantity;) { _validateBeforeTransfer(from, to, startTokenId + i); unchecked { ++i; } } } /// @dev Ties the erc721a _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { for (uint256 i = 0; i < quantity;) { _validateAfterTransfer(from, to, startTokenId + i); unchecked { ++i; } } } function _msgSenderERC721A() internal view virtual override returns (address) { return _msgSender(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/common/ERC2981.sol"; /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {}
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs & miinded.com pragma solidity ^0.8.4; import "erc721a/contracts/IERC721A.sol"; /** * @dev Interface of ERC721AQueryable. */ interface IERC721ACQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/common/ERC2981.sol) pragma solidity ^0.8.20; import {IERC2981} from "../../interfaces/IERC2981.sol"; import {IERC165, ERC165} from "../../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. */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1). */ error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator); /** * @dev The default royalty receiver is invalid. */ error ERC2981InvalidDefaultRoyaltyReceiver(address receiver); /** * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1). */ error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator); /** * @dev The royalty receiver for `tokenId` is invalid. */ error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver); /** * @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 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 { uint256 denominator = _feeDenominator(); if (feeNumerator > denominator) { // Royalty fee will exceed the sale price revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator); } if (receiver == address(0)) { revert ERC2981InvalidDefaultRoyaltyReceiver(address(0)); } _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 { uint256 denominator = _feeDenominator(); if (feeNumerator > denominator) { // Royalty fee will exceed the sale price revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator); } if (receiver == address(0)) { revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0)); } _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 pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; import "../interfaces/ICreatorToken.sol"; import "../interfaces/ICreatorTokenTransferValidator.sol"; import "../utils/TransferValidation.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; /** * @title CreatorTokenBase * @author Limit Break, Inc. * @notice CreatorTokenBase is an abstract contract that provides basic functionality for managing token * transfer policies through an implementation of ICreatorTokenTransferValidator. This contract is intended to be used * as a base for creator-specific token contracts, enabling customizable transfer restrictions and security policies. * * <h4>Features:</h4> * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul> * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul> * <ul>ICreatorToken: Implements the interface for creator tokens, providing view functions for token security policies.</ul> * * <h4>Benefits:</h4> * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul> * <ul>Allows creators to enforce policies such as whitelisted operators and permitted contract receivers.</ul> * <ul>Can be easily integrated into other token contracts as a base contract.</ul> * * <h4>Intended Usage:</h4> * <ul>Use as a base contract for creator token implementations that require advanced transfer restrictions and * security policies.</ul> * <ul>Set and update the ICreatorTokenTransferValidator implementation contract to enforce desired policies for the * creator token.</ul> */ abstract contract CreatorTokenBase is OwnablePermissions, TransferValidation, ICreatorToken { error CreatorTokenBase__InvalidTransferValidatorContract(); error CreatorTokenBase__SetTransferValidatorFirst(); address public constant DEFAULT_TRANSFER_VALIDATOR = address(0x0000721C310194CcfC01E523fc93C9cCcFa2A0Ac); TransferSecurityLevels public constant DEFAULT_TRANSFER_SECURITY_LEVEL = TransferSecurityLevels.One; uint120 public constant DEFAULT_OPERATOR_WHITELIST_ID = uint120(1); ICreatorTokenTransferValidator private transferValidator; /** * @notice Allows the contract owner to set the transfer validator to the official validator contract * and set the security policy to the recommended default settings. * @dev May be overridden to change the default behavior of an individual collection. */ function setToDefaultSecurityPolicy() public virtual { _requireCallerIsContractOwner(); setTransferValidator(DEFAULT_TRANSFER_VALIDATOR); ICreatorTokenTransferValidator(DEFAULT_TRANSFER_VALIDATOR).setTransferSecurityLevelOfCollection(address(this), DEFAULT_TRANSFER_SECURITY_LEVEL); ICreatorTokenTransferValidator(DEFAULT_TRANSFER_VALIDATOR).setOperatorWhitelistOfCollection(address(this), DEFAULT_OPERATOR_WHITELIST_ID); } /** * @notice Allows the contract owner to set the transfer validator to a custom validator contract * and set the security policy to their own custom settings. */ function setToCustomValidatorAndSecurityPolicy( address validator, TransferSecurityLevels level, uint120 operatorWhitelistId, uint120 permittedContractReceiversAllowlistId) public { _requireCallerIsContractOwner(); setTransferValidator(validator); ICreatorTokenTransferValidator(validator). setTransferSecurityLevelOfCollection(address(this), level); ICreatorTokenTransferValidator(validator). setOperatorWhitelistOfCollection(address(this), operatorWhitelistId); ICreatorTokenTransferValidator(validator). setPermittedContractReceiverAllowlistOfCollection(address(this), permittedContractReceiversAllowlistId); } /** * @notice Allows the contract owner to set the security policy to their own custom settings. * @dev Reverts if the transfer validator has not been set. */ function setToCustomSecurityPolicy( TransferSecurityLevels level, uint120 operatorWhitelistId, uint120 permittedContractReceiversAllowlistId) public { _requireCallerIsContractOwner(); ICreatorTokenTransferValidator validator = getTransferValidator(); if (address(validator) == address(0)) { revert CreatorTokenBase__SetTransferValidatorFirst(); } validator.setTransferSecurityLevelOfCollection(address(this), level); validator.setOperatorWhitelistOfCollection(address(this), operatorWhitelistId); validator.setPermittedContractReceiverAllowlistOfCollection(address(this), permittedContractReceiversAllowlistId); } /** * @notice Sets the transfer validator for the token contract. * * @dev Throws when provided validator contract is not the zero address and doesn't support * the ICreatorTokenTransferValidator interface. * @dev Throws when the caller is not the contract owner. * * @dev <h4>Postconditions:</h4> * 1. The transferValidator address is updated. * 2. The `TransferValidatorUpdated` event is emitted. * * @param transferValidator_ The address of the transfer validator contract. */ function setTransferValidator(address transferValidator_) public { _requireCallerIsContractOwner(); bool isValidTransferValidator = false; if(transferValidator_.code.length > 0) { try IERC165(transferValidator_).supportsInterface(type(ICreatorTokenTransferValidator).interfaceId) returns (bool supportsInterface) { isValidTransferValidator = supportsInterface; } catch {} } if(transferValidator_ != address(0) && !isValidTransferValidator) { revert CreatorTokenBase__InvalidTransferValidatorContract(); } emit TransferValidatorUpdated(address(transferValidator), transferValidator_); transferValidator = ICreatorTokenTransferValidator(transferValidator_); } /** * @notice Returns the transfer validator contract address for this token contract. */ function getTransferValidator() public view override returns (ICreatorTokenTransferValidator) { return transferValidator; } /** * @notice Returns the security policy for this token contract, which includes: * Transfer security level, operator whitelist id, permitted contract receiver allowlist id. */ function getSecurityPolicy() public view override returns (CollectionSecurityPolicy memory) { if (address(transferValidator) != address(0)) { return transferValidator.getCollectionSecurityPolicy(address(this)); } return CollectionSecurityPolicy({ transferSecurityLevel: TransferSecurityLevels.Zero, operatorWhitelistId: 0, permittedContractReceiversId: 0 }); } /** * @notice Returns the list of all whitelisted operators for this token contract. * @dev This can be an expensive call and should only be used in view-only functions. */ function getWhitelistedOperators() public view override returns (address[] memory) { if (address(transferValidator) != address(0)) { return transferValidator.getWhitelistedOperators( transferValidator.getCollectionSecurityPolicy(address(this)).operatorWhitelistId); } return new address[](0); } /** * @notice Returns the list of permitted contract receivers for this token contract. * @dev This can be an expensive call and should only be used in view-only functions. */ function getPermittedContractReceivers() public view override returns (address[] memory) { if (address(transferValidator) != address(0)) { return transferValidator.getPermittedContractReceivers( transferValidator.getCollectionSecurityPolicy(address(this)).permittedContractReceiversId); } return new address[](0); } /** * @notice Checks if an operator is whitelisted for this token contract. * @param operator The address of the operator to check. */ function isOperatorWhitelisted(address operator) public view override returns (bool) { if (address(transferValidator) != address(0)) { return transferValidator.isOperatorWhitelisted( transferValidator.getCollectionSecurityPolicy(address(this)).operatorWhitelistId, operator); } return false; } /** * @notice Checks if a contract receiver is permitted for this token contract. * @param receiver The address of the receiver to check. */ function isContractReceiverPermitted(address receiver) public view override returns (bool) { if (address(transferValidator) != address(0)) { return transferValidator.isContractReceiverPermitted( transferValidator.getCollectionSecurityPolicy(address(this)).permittedContractReceiversId, receiver); } return false; } /** * @notice Determines if a transfer is allowed based on the token contract's security policy. Use this function * to simulate whether or not a transfer made by the specified `caller` from the `from` address to the `to` * address would be allowed by this token's security policy. * * @notice This function only checks the security policy restrictions and does not check whether token ownership * or approvals are in place. * * @param caller The address of the simulated caller. * @param from The address of the sender. * @param to The address of the receiver. * @return True if the transfer is allowed, false otherwise. */ function isTransferAllowed(address caller, address from, address to) public view override returns (bool) { if (address(transferValidator) != address(0)) { try transferValidator.applyCollectionTransferPolicy(caller, from, to) { return true; } catch { return false; } } return true; } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. */ function _preValidateTransfer( address caller, address from, address to, uint256 /*tokenId*/, uint256 /*value*/) internal virtual override { if (address(transferValidator) != address(0)) { transferValidator.applyCollectionTransferPolicy(caller, from, to); } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * The `_sequentialUpTo()` function can be overriden to enable spot mints * (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // The amount of tokens minted above `_sequentialUpTo()`. // We call these spot mints (i.e. non-sequential mints). uint256 private _spotMinted; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID for sequential mints. * * Override this function to change the starting token ID for sequential mints. * * Note: The value returned must never change after any tokens have been minted. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the maximum token ID (inclusive) for sequential mints. * * Override this function to return a value less than 2**256 - 1, * but greater than `_startTokenId()`, to enable spot (non-sequential) mints. * * Note: The value returned must never change after any tokens have been minted. */ function _sequentialUpTo() internal view virtual returns (uint256) { return type(uint256).max; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256 result) { // Counter underflow is impossible as `_burnCounter` cannot be incremented // more than `_currentIndex + _spotMinted - _startTokenId()` times. unchecked { // With spot minting, the intermediate `result` can be temporarily negative, // and the computation must be unchecked. result = _currentIndex - _burnCounter - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256 result) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { result = _currentIndex - _startTokenId(); if (_sequentialUpTo() != type(uint256).max) result += _spotMinted; } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } /** * @dev Returns the total number of tokens that are spot-minted. */ function _totalSpotMinted() internal view virtual returns (uint256) { return _spotMinted; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * @dev Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; if (tokenId > _sequentialUpTo()) { if (_packedOwnershipExists(packed)) return packed; _revert(OwnerQueryForNonexistentToken.selector); } // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) _revert(ApprovalQueryForNonexistentToken.selector); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool result) { if (_startTokenId() <= tokenId) { if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]); if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @dev Returns whether `packed` represents a token that exists. */ function _packedOwnershipExists(uint256 packed) private pure returns (bool result) { assembly { // The following is equivalent to `owner != address(0) && burned == false`. // Symbolically tested. result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED)) } } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { _revert(TransferToNonERC721ReceiverImplementer.selector); } assembly { revert(add(32, reason), mload(reason)) } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) _revert(MintZeroQuantity.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); do { assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) _revert(MintToZeroAddress.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } } while (index < end); // This prevents reentrancy to `_safeMint`. // It does not prevent reentrancy to `_safeMintSpot`. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * Emits a {Transfer} event for each mint. */ function _mintSpot(address to, uint256 tokenId) internal virtual { if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector); uint256 prevOwnershipPacked = _packedOwnerships[tokenId]; if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector); _beforeTokenTransfers(address(0), to, tokenId, 1); // Overflows are incredibly unrealistic. // The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1. // `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1. unchecked { // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `true` (as `quantity == 1`). _packedOwnerships[tokenId] = _packOwnershipData( to, _nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked) ); // Updates: // - `balance += 1`. // - `numberMinted += 1`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1; // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); assembly { // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. tokenId // `tokenId`. ) } ++_spotMinted; } _afterTokenTransfers(address(0), to, tokenId, 1); } /** * @dev Safely mints a single token at `tokenId`. * * Note: A spot-minted `tokenId` that has been burned can be re-minted again. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}. * - `tokenId` must be greater than `_sequentialUpTo()`. * - `tokenId` must not exist. * * See {_mintSpot}. * * Emits a {Transfer} event. */ function _safeMintSpot( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mintSpot(to, tokenId); unchecked { if (to.code.length != 0) { uint256 currentSpotMinted = _spotMinted; if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) { _revert(TransferToNonERC721ReceiverImplementer.selector); } // This prevents reentrancy to `_safeMintSpot`. // It does not prevent reentrancy to `_safeMint`. if (_spotMinted != currentSpotMinted) revert(); } } } /** * @dev Equivalent to `_safeMintSpot(to, tokenId, '')`. */ function _safeMintSpot(address to, uint256 tokenId) internal virtual { _safeMintSpot(to, tokenId, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as `_burnCounter` cannot be exceed `_currentIndex + _spotMinted` times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) _revert(OwnershipNotInitializedForExtraData.selector); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; // @author: miinded.com abstract contract Admins is Ownable{ mapping(address => bool) private admins; /** @dev check if the address is admin or not **/ function isAdmin(address _admin) public view returns(bool) { return admins[_admin]; } /** @dev Set the wallet address who can pass the onlyAdmin modifier **/ function setAdminAddress(address _admin, bool _active) public virtual onlyOwner { admins[_admin] = _active; } /** @notice Check if the sender is owner() or admin **/ modifier onlyOwnerOrAdmins() { require(admins[_msgSender()] == true || owner() == _msgSender(), "Ownable: caller is not the owner"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.20; import {IERC165} from "../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. */ 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 (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../interfaces/ICreatorTokenTransferValidator.sol"; interface ICreatorToken { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (ICreatorTokenTransferValidator); function getSecurityPolicy() external view returns (CollectionSecurityPolicy memory); function getWhitelistedOperators() external view returns (address[] memory); function getPermittedContractReceivers() external view returns (address[] memory); function isOperatorWhitelisted(address operator) external view returns (bool); function isContractReceiverPermitted(address receiver) external view returns (bool); function isTransferAllowed(address caller, address from, address to) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract OwnablePermissions is Context { function _requireCallerIsContractOwner() internal view virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./IEOARegistry.sol"; import "./ITransferSecurityRegistry.sol"; import "./ITransferValidator.sol"; interface ICreatorTokenTransferValidator is ITransferSecurityRegistry, ITransferValidator, IEOARegistry {}
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; /** * @title TransferValidation * @author Limit Break, Inc. * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks. * Openzeppelin's ERC721 contract only provides hooks for before and after transfer. This allows * developers to validate or customize transfers within the context of a mint, a burn, or a transfer. */ abstract contract TransferValidation is Context { error ShouldNotMintToBurnAddress(); /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; interface IEOARegistry is IERC165 { function isVerifiedEOA(address account) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../utils/TransferPolicy.sol"; interface ITransferSecurityRegistry { event AddedToAllowlist(AllowlistTypes indexed kind, uint256 indexed id, address indexed account); event CreatedAllowlist(AllowlistTypes indexed kind, uint256 indexed id, string indexed name); event ReassignedAllowlistOwnership(AllowlistTypes indexed kind, uint256 indexed id, address indexed newOwner); event RemovedFromAllowlist(AllowlistTypes indexed kind, uint256 indexed id, address indexed account); event SetAllowlist(AllowlistTypes indexed kind, address indexed collection, uint120 indexed id); event SetTransferSecurityLevel(address indexed collection, TransferSecurityLevels level); function createOperatorWhitelist(string calldata name) external returns (uint120); function createPermittedContractReceiverAllowlist(string calldata name) external returns (uint120); function reassignOwnershipOfOperatorWhitelist(uint120 id, address newOwner) external; function reassignOwnershipOfPermittedContractReceiverAllowlist(uint120 id, address newOwner) external; function renounceOwnershipOfOperatorWhitelist(uint120 id) external; function renounceOwnershipOfPermittedContractReceiverAllowlist(uint120 id) external; function setTransferSecurityLevelOfCollection(address collection, TransferSecurityLevels level) external; function setOperatorWhitelistOfCollection(address collection, uint120 id) external; function setPermittedContractReceiverAllowlistOfCollection(address collection, uint120 id) external; function addOperatorToWhitelist(uint120 id, address operator) external; function addPermittedContractReceiverToAllowlist(uint120 id, address receiver) external; function removeOperatorFromWhitelist(uint120 id, address operator) external; function removePermittedContractReceiverFromAllowlist(uint120 id, address receiver) external; function getCollectionSecurityPolicy(address collection) external view returns (CollectionSecurityPolicy memory); function getWhitelistedOperators(uint120 id) external view returns (address[] memory); function getPermittedContractReceivers(uint120 id) external view returns (address[] memory); function isOperatorWhitelisted(uint120 id, address operator) external view returns (bool); function isContractReceiverPermitted(uint120 id, address receiver) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../utils/TransferPolicy.sol"; interface ITransferValidator { function applyCollectionTransferPolicy(address caller, address from, address to) external view; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; enum AllowlistTypes { Operators, PermittedContractReceivers } enum ReceiverConstraints { None, NoCode, EOA } enum CallerConstraints { None, OperatorWhitelistEnableOTC, OperatorWhitelistDisableOTC } enum StakerConstraints { None, CallerIsTxOrigin, EOA } enum TransferSecurityLevels { Zero, One, Two, Three, Four, Five, Six } struct TransferSecurityPolicy { CallerConstraints callerConstraints; ReceiverConstraints receiverConstraints; } struct CollectionSecurityPolicy { TransferSecurityLevels transferSecurityLevel; uint120 operatorWhitelistId; uint120 permittedContractReceiversId; }
{ "optimizer": { "enabled": true, "mode": "3" }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","type":"error"},{"inputs":[],"name":"CreatorTokenBase__SetTransferValidatorFirst","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Locked","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unlocked","type":"event"},{"inputs":[],"name":"DEFAULT_OPERATOR_WHITELIST_ID","outputs":[{"internalType":"uint120","name":"","type":"uint120"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_TRANSFER_SECURITY_LEVEL","outputs":[{"internalType":"enum TransferSecurityLevels","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractManager","outputs":[{"internalType":"contract IERC721AManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"ownership","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"getPermittedContractReceivers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecurityPolicy","outputs":[{"components":[{"internalType":"enum TransferSecurityLevels","name":"transferSecurityLevel","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversId","type":"uint120"}],"internalType":"struct CollectionSecurityPolicy","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"contract ICreatorTokenTransferValidator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"isAdmin","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":[{"internalType":"address","name":"receiver","type":"address"}],"name":"isContractReceiverPermitted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"isExternalContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"isOperatorWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_lock","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_lock","type":"bool"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bool","name":"_active","type":"bool"}],"name":"setAdminAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_collectionLocked","type":"bool"}],"name":"setCollectionLocked","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":"address","name":"_contract","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setExternalContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractManager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TransferSecurityLevels","name":"level","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversAllowlistId","type":"uint120"}],"name":"setToCustomSecurityPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"validator","type":"address"},{"internalType":"enum TransferSecurityLevels","name":"level","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversAllowlistId","type":"uint120"}],"name":"setToCustomValidatorAndSecurityPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setToDefaultSecurityPolicy","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":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenIdStart","type":"uint256"},{"internalType":"uint256","name":"_tokenIdEnd","type":"uint256"}],"name":"unlockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007cb405519cf1a05a5831d3a21caf8e93d731a06012fd91a53c2ac2cd757000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000736b0c3947881fed70185fb4096de12676f8f82800000000000000000000000084c45912ec902d5e3ff671208537a042dc0717b600000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e73717561726569642e78797a2f6d657461646174612f706f632f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000800000000000200000000000103550000008004000039000000400040043f0000006003100270000006fc033001970000000100200190000000310000c13d000000040030008c000000500000413d000000000201043b000000e0022002700000071e0020009c000000520000213d000007480020009c000000810000a13d000007490020009c0000012f0000a13d0000074a0020009c0000022e0000213d000007500020009c000005060000213d000007530020009c000006100000613d000007540020009c000000500000c13d0000000001000416000000000001004b000000500000c13d00000000010300191bea16100000040f000700000001001d000800000002001d1bea1b3d0000040f00000007010000290000070101100197000000000010043f0000000d01000039000000200010043f00000000010000191bea1bcf0000040f000000000301041a000007bb02300197000000080000006b000000010220c1bf000000000021041b000000000100001900001beb0001042e0000000002000416000000000002004b000000500000c13d0000001f02300039000006fd022001970000008002200039000000400020043f0000001f0530018f000006fe063001980000008002600039000000410000613d000000000701034f000000007807043c0000000004840436000000000024004b0000003d0000c13d000000000005004b0000004e0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000800030008c000000680000813d000000000100001900001bec000104300000071f0020009c000000aa0000a13d000007200020009c000001e60000a13d000007210020009c0000023e0000213d000007270020009c0000053c0000213d0000072a0020009c0000064e0000613d0000072b0020009c000000500000c13d0000000001000416000000000001004b000000500000c13d1bea16aa0000040f0000002002000039000000400300043d000800000003001d00000000022304361bea15d70000040f00000b710000013d000000800200043d000006ff0020009c000000500000213d0000001f01200039000000000031004b000000000400001900000700040080410000070001100197000000000001004b00000000050000190000070005004041000007000010009c000000000504c019000000000005004b000000500000c13d00000080012000390000000001010433000006ff0010009c000000c80000a13d000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300000075e0020009c000002110000213d000007680020009c0000025e0000a13d000007690020009c000003930000213d0000076c0020009c000006850000613d0000076d0020009c000000500000c13d0000000001000416000000000001004b000000500000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000c20000c13d000000800010043f000000000004004b00000b650000613d000000000030043f000000000001004b000000000200001900000b6a0000613d00000707030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000000a20000413d00000b6a0000013d000007350020009c0000021e0000213d0000073f0020009c0000029b0000a13d000007400020009c000003f00000213d000007430020009c000006c20000613d000007440020009c000000500000c13d0000000001000416000000000001004b000000500000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f000000010050019000000a6e0000613d000007b401000041000000000010043f0000002201000039000000040010043f000007180100004100001bec000104300000001f04100039000007bc044001970000003f04400039000007bc04400197000000400500043d0000000004450019000800000005001d000000000054004b00000000050000390000000105004039000006ff0040009c0000007b0000213d00000001005001900000007b0000c13d0000008003300039000000400040043f00000008040000290000000004140436000700000004001d000000a0022000390000000004210019000000000034004b000000500000213d000000000001004b0000000706000029000000ea0000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b000000e30000413d000000080110002900000020011000390000000000010435000000a00100043d000600000001001d000007010010009c000000500000213d000000c00200043d000007010020009c000000500000213d000000e00100043d000007020010009c000000500000213d000000400600043d000007030060009c0000007b0000213d0000004003600039000000400030043f0000000803000039000000000836043600000704030000410000000000380435000000400300043d000007030030009c0000007b0000213d0000004004300039000000400040043f00000004040000390000000004430436000007050500004100000000005404350000000007060433000006ff0070009c0000007b0000213d0000000205000039000000000905041a000000010a90019000000001099002700000007f0990618f0000001f0090008c000000000b000039000000010b0020390000000000ba004b000000c20000c13d000000200090008c000001270000413d000000000050043f0000001f0a700039000000050aa00270000007060aa0009a000000200070008c000007070a0040410000001f099000390000000509900270000007060990009a00000000009a004b000001270000813d00000000000a041b000000010aa0003900000000009a004b000001230000413d0000001f0070008c00000fdb0000a13d000000000050043f000007bc0a700198000010730000c13d000000200900003900000707080000410000107f0000013d000007550020009c000002b50000a13d000007560020009c000004350000213d000007590020009c000006c70000613d0000075a0020009c000000500000c13d0000000001000416000000000001004b000000500000c13d0000000901000039000000000101041a0000070102100198000009990000613d0000078301000041000000800010043f00000000010004100000070101100197000000840010043f0000000001000414000006fc0010009c000006fc01008041000000c0011002100000077b011001c7000800000002001d1bea1be50000040f0000006003100270000006fc03300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf000001590000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000001550000c13d000000000006004b000001660000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000b7f0000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000000500000413d000000e003100039000000400030043f000000800300043d000000060030008c000000500000213d0000000000320435000000a00200043d000007710020009c000000500000213d000000a0031000390000000000230435000000c00300043d000007710030009c000000500000213d000000c0011000390000000000310435000007a901000041000000400300043d000000000013043500000004013000390000000000210435000006fc0030009c000700000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000718011001c700000008020000291bea1be50000040f00000060031002700000001f0430018f000006fe05300197000006fc033001970000000100200190000010000000613d0000000702500029000000000005004b0000019f0000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000027004b0000019b0000c13d000000000004004b000001ac0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f01300039000006fd011001970000000702100029000000000012004b00000000010000390000000101004039000006ff0020009c0000007b0000213d00000001001001900000007b0000c13d000000400020043f000000200030008c000000500000413d00000007010000290000000001010433000006ff0010009c000000500000213d000000070330002900000007011000290000001f04100039000000000034004b0000000005000019000007000500804100000700044001970000070006300197000000000764013f000000000064004b00000000040000190000070004004041000007000070009c000000000405c019000000000004004b000000500000c13d0000000014010434000006ff0040009c0000007b0000213d00000005054002100000003f0650003900000785066001970000000006260019000006ff0060009c0000007b0000213d000000400060043f00000000004204350000000004150019000000000034004b000000500000213d000000000041004b0000099d0000813d00000000030200190000000015010434000007010050009c000000500000213d00000020033000390000000000530435000000000041004b000001de0000413d0000099d0000013d0000072c0020009c000002cb0000a13d0000072d0020009c000004760000213d000007300020009c000006f40000613d000007310020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000201043b000000000002004b00000d670000613d000000000100041a000000000021004b00000d670000a13d000700000002001d000800000002001d000000000020043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000d480000c13d0000000802000029000000000002004b000000010220008a000001fb0000c13d000009090000013d0000075f0020009c000002f50000a13d000007600020009c000004b90000213d000007630020009c000006090000613d000007640020009c000000500000c13d00000000010300191bea15fe0000040f1bea17070000040f000000000100001900001beb0001042e000007360020009c000003160000a13d000007370020009c000004fd0000213d0000073a0020009c000007050000613d0000073b0020009c000000500000c13d0000000001000416000000000001004b000000500000c13d000000000100041a000000010110008a000000800010043f000007820100004100001beb0001042e0000074b0020009c000005480000213d0000074e0020009c000007480000613d0000074f0020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b1bea1afe0000040f0000070101100197000005560000013d000007220020009c0000055d0000213d000007250020009c000007700000613d000007260020009c000000500000c13d000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000007010020009c000000500000213d0000002401100370000000000101043b000800000001001d000007010010009c000000500000213d000000000020043f0000000701000039000000200010043f00000000010000191bea1bcf0000040f00000008020000291bea16e40000040f000000000101041a000000ff001001900000000001000039000000010100c039000005560000013d0000076e0020009c0000079a0000613d0000076f0020009c000007a10000613d000007700020009c000000500000c13d000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002401100370000000000101043b000700000001001d000007020010009c000000500000213d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000028a0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d000000400100043d0000000702000029000027110020008c00000e310000413d0000002402100039000027100300003900000000003204350000071c020000410000000000210435000000040210003900000007030000290000000000320435000006fc0010009c000006fc0100804100000040011002100000071d011001c700001bec00010430000007450020009c000007b70000613d000007460020009c000007cc0000613d000007470020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000007010010009c000000500000213d000000000200041a000000000002004b00000b7b0000613d000300010020009400000c4f0000c13d000000800300003900000060020000390000000001030019000800000003001d1bea16460000040f00000b710000013d0000075b0020009c000007d80000613d0000075c0020009c000008030000613d0000075d0020009c000000500000c13d00000000010300191bea15fe0000040f000800000001001d000700000002001d000600000003001d000000400100043d000500000001001d1bea16550000040f000000050400002900000000000404350000000801000029000000070200002900000006030000291bea19dc0000040f000000000100001900001beb0001042e000007320020009c000008930000613d000007330020009c0000089c0000613d000007340020009c000000500000c13d0000000001000416000000000001004b000000500000c13d000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f0000000901000039000000000101041a000007010210019800000a7f0000c13d0000014001000039000000400010043f000000e001000039000000e00000043f000001000000043f0000000002000019000000000300001900000040041000390000000000340435000000400300043d000000000223043600000020011000390000000001010433000007710110019700000000001204350000000001040433000007710110019700000040023000390000000000120435000006fc0030009c000006fc0300804100000040013002100000078d011001c700001beb0001042e000007650020009c000008bd0000613d000007660020009c000008c60000613d000007670020009c000000500000c13d000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002402100370000000000202043b000700000002001d000007010020009c000000500000213d0000004401100370000000000101043b000600000001001d000007010010009c000000500000213d00000001020000390000000901000039000000000101041a000007010310019800000d8d0000c13d0000008001000039000008e10000013d0000073c0020009c000008950000613d0000073d0020009c000008d10000613d0000073e0020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000402043b000006ff0040009c000000500000213d0000002302400039000000000032004b000000500000813d0000000405400039000000000251034f000000000202043b000006ff0020009c0000007b0000213d0000001f06200039000007bc066001970000003f06600039000007bc066001970000078f0060009c0000007b0000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000000500000213d0000002003500039000000000331034f000007bc042001980000001f0520018f000000a001400039000003460000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000003420000c13d000000000005004b000003530000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000036c0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d000000800200043d000006ff0020009c0000007b0000213d0000001001000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000c20000c13d000000200030008c0000038b0000413d000000000010043f0000001f042000390000000504400270000007140440009a000000200020008c00000715040040410000001f033000390000000503300270000007140330009a000000000034004b0000038b0000813d000000000004041b0000000104400039000000000034004b000003870000413d0000001f0020008c000011a10000a13d000000000010043f000007bc04200198000013de0000c13d000000a0050000390000071503000041000013ec0000013d0000076a0020009c000008e70000613d0000076b0020009c000000500000c13d000000440030008c000000500000413d0000000402100370000000000202043b000700000002001d000007010020009c000000500000213d0000002401100370000000000101043b000000000001004b00000b8e0000613d000600000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b000003cb0000c13d000000000100041a0000000602000029000000000021004b00000b8e0000a13d000800000002001d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b000003b80000613d000007860010019800000b8e0000c13d000807010010019b0000000002000411000000080020006c00000f700000c13d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d00000007020000290000070106200197000000000101043b000000000201041a0000070f02200197000000000262019f000000000021041b0000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d020000390000000403000039000007b1040000410000000805000029000000060700002900000ba20000013d000007410020009c0000090f0000613d000007420020009c000000500000c13d000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000200000002001d000007010020009c000000500000213d0000004402100370000000000302043b000000000003004b0000000002000039000000010200c039000800000003001d000000000023004b000000500000c13d0000002401100370000000000101043b000700000001001d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000006e00000613d000000000300041a000000010130008a000000070010002a000009090000413d00000007011000290000000f02000039000000000202041a000000000021004b0000067d0000213d000600000003001d000000080000006b00000f9b0000c13d000000400100043d000400000001001d000007890010009c0000007b0000213d00000004010000290000002002100039000300000002001d000000400020043f0000000000010435000000070000006b000010b30000c13d0000079c01000041000000000010043f0000077a0100004100001bec00010430000007570020009c0000096c0000613d000007580020009c000000500000c13d000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d0000002402100370000000000202043b000700000002001d000007010020009c000000500000213d0000004401100370000000000101043b000600000001001d000007020010009c000000500000213d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000004620000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d000000400300043d0000000601000029000027110010008c00000e3c0000413d000000440130003900002710020000390000000000210435000000240130003900000006020000290000000000210435000007a7010000410000000000130435000000040130003900000008020000290000000000210435000006fc0030009c000006fc030080410000004001300210000007a8011001c700001bec000104300000072e0020009c000009920000613d0000072f0020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000800000001001d000007010010009c000000500000213d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff001001900000049b0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d0000001101000039000000000201041a0000070f0220019700000008022001af000000000021041b0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000e4a0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b0000000001000039000000010100603900000e4b0000013d000007610020009c000009a10000613d000007620020009c000000500000c13d000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000002402100370000000000202043b000800000002001d0000000401100370000000000101043b000000000010043f0000000b01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400300043d000007030030009c0000007b0000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a002100270000000000024043500000701011001980000000000130435000004ec0000c13d000000400300043d000007030030009c0000007b0000213d0000004001300039000000400010043f0000000a01000039000000000101041a0000002004300039000000a002100270000000000024043500000701011001970000000000130435000000080400002900000000034200a9000000000004004b000004f30000613d00000000044300d9000000000042004b000009090000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000006fc0030009c000006fc030080410000004001300210000007ae011001c700001beb0001042e000007380020009c000009b60000613d000007390020009c000000500000c13d0000000001000416000000000001004b000000500000c13d0000001101000039000008c10000013d000007510020009c000006090000613d000007520020009c000000500000c13d000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000000060020008c000000500000213d0000002402100370000000000202043b000700000002001d000007710020009c000000500000213d0000004401100370000000000101043b000600000001001d000007710010009c000000500000213d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000005350000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d0000000901000039000000000101041a000007010210019800000e610000c13d000000400100043d000007a2020000410000067f0000013d000007280020009c000009c20000613d000007290020009c000000500000c13d0000000001000416000000000001004b000000500000c13d0000000101000039000000000101041a000000800010043f000007820100004100001beb0001042e0000074c0020009c000009ca0000613d0000074d0020009c000000500000c13d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000007010010009c000000500000213d1bea190d0000040f000000400200043d0000000000120435000006fc0020009c000006fc0200804100000040012002100000077c011001c700001beb0001042e000007230020009c00000a530000613d000007240020009c000000500000c13d000000840030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002402100370000000000202043b000700000002001d000000060020008c000000500000213d0000004402100370000000000202043b000600000002001d000007710020009c000000500000213d0000006401100370000000000101043b000500000001001d000007710010009c000000500000213d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000005910000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000005a80000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d00000772010000410000000000100443000000080100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000400010000003d000000000101043b000000000001004b000006010000613d000000400200043d000300000002001d0000077401000041000000000012043500000004012000390000000000010435000006fc0020009c000006fc01000041000000000102401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000718011001c700000008020000291bea1be50000040f0000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030b0000290000000305700029000005db0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005d70000c13d000000000006004b000005e80000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000006010000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000000500000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000000500000c13d000000000001004b00000000010000390000000101006039000400000001001d000000400100043d000000080000006b000013380000613d00000004020000290000000100200190000013380000613d00000779020000410000067f0000013d0000000001000416000000000001004b000000500000c13d0000000101000039000000800010043f000007820100004100001beb0001042e000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000006ff0020009c000000500000213d0000002304200039000000000034004b000000500000813d000700040020003d0000000704100360000000000404043b000006ff0040009c000000500000213d000000050540021000000000025200190000002402200039000000000032004b000000500000213d0000000006050019000000800040043f000000a002500039000000400020043f000000000004004b00000dbf0000c13d00000020010000390000000001120436000000800300043d00000000003104350000004001200039000000000003004b00000b720000613d00000080040000390000000005000019000000200440003900000000060404330000000087060434000007010770019700000000077104360000000008080433000006ff08800197000000000087043500000040076000390000000007070433000000000007004b0000000007000039000000010700c0390000004008100039000000000078043500000060066000390000000006060433000007a4066001970000006007100039000000000067043500000080011000390000000105500039000000000035004b000006350000413d00000b720000013d000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000500000002001d000007010020009c000000500000213d0000004402100370000000000302043b000000000003004b0000000002000039000000010200c039000800000003001d000000000023004b000000500000c13d0000002401100370000000000101043b000700000001001d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000006e00000613d000000000300041a000000010130008a000000070010002a000009090000413d00000007011000290000000f02000039000000000202041a000000000021004b00000e590000a13d000000400100043d0000079d020000410000000000210435000006fc0010009c000006fc0100804100000040011002100000077a011001c700001bec00010430000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000002401100370000000000101043b000700000001001d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000006a40000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d00000004010000390000000001100367000000000201043b000000070020006c00000ba50000213d000800000002001d000000400100043d0000000000210435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d020000390000000103000039000007a1040000411bea1be00000040f00000001002001900000000802000029000000500000613d000000010020003a000009090000413d000000070020006c0000000102200039000006a90000413d00000ba50000013d0000000001000416000000000001004b000000500000c13d0000000c01000039000008c10000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000700000001001d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000b8b0000c13d000000400100043d00000064021000390000077e03000041000000000032043500000044021000390000077f03000041000000000032043500000024021000390000002803000039000000000032043500000780020000410000000000210435000000040210003900000020030000390000000000320435000006fc0010009c000006fc01008041000000400110021000000781011001c700001bec00010430000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b1bea1aa00000040f000000400200043d000800000002001d1bea16330000040f0000000801000029000006fc0010009c000006fc0100804100000040011002100000078b011001c700001beb0001042e000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000000500000c13d0000000001000411000000000010043f0000000701000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000201041a000007bb022001970000000703000029000000000232019f000000000021041b000000400100043d0000000000310435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000003030000390000078e040000410000000005000411000000080600002900000ba20000013d000000240030008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d000000000101043b000000000101041a000000ff00100190000007870000613d00000004010000390000000001100367000000000101043b0000000000120435000006fc0020009c000006fc0200804100000040012002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d020000390000000103000039000007a10400004100000ba20000013d000000240030008c000000500000413d0000000001000416000000000001004b000000500000c13d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d000000000101043b000000000101041a000000ff0010019000000b920000c13d00000064012000390000077e03000041000000000031043500000044012000390000077f03000041000000000031043500000024012000390000002803000039000000000031043500000780010000410000000000120435000000040120003900000020030000390000000000310435000006fc0020009c000006fc02008041000000400120021000000781011001c700001bec000104300000000001000416000000000001004b000000500000c13d000007a001000041000000800010043f000007820100004100001beb0001042e000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000201043b0000079900200198000000500000c13d00000001010000390000079a02200197000007b60020009c00000c480000a13d000007b70020009c000009c70000613d000007b80020009c000009c70000613d000007b90020009c000009c70000613d000000800000043f000007820100004100001beb0001042e0000000001000416000000000001004b000000500000c13d0000000c01000039000000000201041a00000701032001970000000005000411000000000053004b00000a690000c13d0000070f02200197000000000021041b0000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d0200003900000003030000390000071104000041000000000600001900000ba20000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000007010010009c000000500000213d000000000010043f0000000e01000039000009ac0000013d000000440030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b000000500000c13d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000e220000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b0000000001000039000000010100603900000e230000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000800000001001d000007010010009c000000500000213d0000000901000039000000000101041a0000070102100198000008df0000613d0000078301000041000000800010043f00000000010004100000070101100197000000840010043f0000000001000414000006fc0010009c000006fc01008041000000c0011002100000077b011001c7000700000002001d1bea1be50000040f0000006003100270000006fc03300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf0000082c0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008280000c13d000000000006004b000008390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c550000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000000500000413d000000e003100039000000400030043f000000800300043d000000060030008c000000500000213d0000000000320435000000a00200043d000007710020009c000000500000213d000000a0031000390000000000230435000000c00300043d000007710030009c000000500000213d000000c0011000390000000000310435000000400400043d000600000004001d000000240140003900000008030000290000000000310435000007ad01000041000000000014043500000004014000390000000000210435000006fc0040009c000006fc01000041000000000104401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000007020000291bea1be50000040f0000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060b0000290000000605700029000008760000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008720000c13d000000000006004b000008830000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000114d0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000000500000413d00000c280000013d000000240030008c000000500000413d0000000001000416000000000001004b000000500000c13d0000001101000039000000000101041a0000079100100198000009b10000013d000000840030008c000000500000413d0000000402100370000000000202043b000800000002001d000007010020009c000000500000213d0000002402100370000000000202043b000700000002001d000007010020009c000000500000213d0000006402100370000000000402043b000006ff0040009c000000500000213d0000002302400039000000000032004b000000500000813d0000000402400039000000000121034f000000000201043b00000024014000391bea16720000040f00000044020000390000000002200367000000000302043b0000000004010019000000080100002900000007020000291bea19dc0000040f000000000100001900001beb0001042e0000000001000416000000000001004b000000500000c13d0000000901000039000000000101041a0000070101100197000000800010043f000007820100004100001beb0001042e0000000001000416000000000001004b000000500000c13d0000000101000039000000000101041a000007bd01100167000000000200041a0000000001120019000000800010043f000007820100004100001beb0001042e000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000800000001001d000007010010009c000000500000213d0000000901000039000000000101041a000007010210019800000ba70000c13d0000008001000039000000010200018f0000000000210435000006fc0010009c000006fc0100804100000040011002100000077c011001c700001beb0001042e000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000201043b000000000002004b00000d750000613d000000000100041a000000000021004b00000d750000a13d000700000002001d000800000002001d000000000020043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000d6b0000c13d0000000802000029000000000002004b000000010220008a000008f40000c13d000007b401000041000000000010043f0000001101000039000000040010043f000007180100004100001bec00010430000000640030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000402100370000000000202043b000400000002001d000007010020009c000000500000213d0000004402100370000000000202043b0000002401100370000000000301043b000000000023004b00000b7b0000813d000000000100041a000000000012004b0000000002018019000300000002001d000000010030008c000000010300a0390000000401000029000000000001004b00000c510000613d000700000003001d000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000100600000003d000000000101043b0000000703000029000000030230006b000013fe0000a13d000000000101041a000006ff01100198000013fe0000613d000000000012004b0000000002018019000200000002001d0000000501200210000000400200043d000100000002001d00000000012100190000002001100039000000400010043f000600000001001d0000078f0010009c0000007b0000213d00000006020000290000008001200039000000400010043f0000006001200039000000000001043500000040012000390000000000010435000000200120003900000000000104350000000000020435000000000100041a000000000031004b00000000010000190000100b0000a13d0000000701000029000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b000011590000c13d0000000801000029000000010110008a000009580000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000000500000c13d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff0010019000000c610000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b0000000001000039000000010100603900000c620000013d0000000001000416000000000001004b000000500000c13d0000000901000039000000000101041a000007010210019800000abd0000c13d000000a001000039000000400010043f0000008002000039000000800000043f000000400100043d000800000001001d1bea16230000040f00000b710000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000007010010009c000000500000213d000000000010043f0000000d01000039000000200010043f00000000010000191bea1bcf0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000007820100004100001beb0001042e000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000101043b000007010010009c000000500000213d1bea19250000040f000000000100001900001beb0001042e0000000001000416000000000001004b000000500000c13d0000000f01000039000000000101041a000000800010043f000007820100004100001beb0001042e0000000001000416000000000001004b000000500000c13d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000009e40000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000009fb0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d00000772010000410000000000100443000007a00100004100000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000400200043d000000000101043b000000000001004b00000f940000613d0000077401000041000000000012043500000004012000390000000000010435000006fc0020009c000006fc0100004100000000010240190000004001100210000800000002001d0000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000718011001c7000007a0020000411bea1be50000040f0000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080b000029000000080570002900000a2d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a290000c13d000000000006004b00000a3a0000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000000010020019000000f930000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000000500000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000000500000c13d000000000002004b000014020000c13d000000000201001900000f940000013d000000240030008c000000500000413d0000000002000416000000000002004b000000500000c13d0000000401100370000000000601043b000007010060009c000000500000213d0000000c01000039000000000201041a00000701032001970000000005000411000000000053004b00000a690000c13d000000000006004b00000c6e0000c13d0000071a01000041000000800010043f000000840000043f0000077b0100004100001bec000104300000071701000041000000800010043f000000840050043f0000077b0100004100001bec00010430000000800010043f000000000004004b00000b650000613d000000000030043f000000000001004b000000000200001900000b6a0000613d0000070a030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b00000a770000413d00000b6a0000013d0000078301000041000000e00010043f00000000010004100000070101100197000000e40010043f0000000001000414000006fc0010009c000006fc01008041000000c0011002100000078c011001c71bea1be50000040f000000e00a0000390000006003100270000006fc03300197000000600030008c000000600400003900000000040340190000001f0640018f0000006007400190000000e00570003900000a990000613d000000000801034f000000008908043c000000000a9a043600000000005a004b00000a950000c13d000000000006004b00000aa60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c300000613d0000001f01400039000000e00410018f000000e001400039000000400010043f000000600030008c000000500000413d0000014002400039000000400020043f000000e00200043d000000060020008c000000500000213d0000000000210435000001000300043d000007710030009c000000500000213d00000100044001bf0000000000340435000001200300043d000007710030009c000002e40000a13d000000500000013d0000078301000041000000800010043f00000000010004100000070101100197000000840010043f0000000001000414000006fc0010009c000006fc01008041000000c0011002100000077b011001c7000800000002001d1bea1be50000040f0000006003100270000006fc03300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf00000ad80000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ad40000c13d000000000006004b00000ae50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c3c0000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000000500000413d000000e003100039000000400030043f000000800300043d000000060030008c000000500000213d0000000000320435000000a00200043d000007710020009c000000500000213d000000a0031000390000000000230435000000c00200043d000007710020009c000000500000213d000000c00110003900000000002104350000078401000041000000400300043d000000000013043500000004013000390000000000210435000006fc0030009c000700000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000718011001c700000008020000291bea1be50000040f00000060031002700000001f0430018f000006fe05300197000006fc033001970000000100200190000010580000613d0000000702500029000000000005004b00000b1e0000613d000000000601034f0000000707000029000000006806043c0000000007870436000000000027004b00000b1a0000c13d000000000004004b00000b2b0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f01300039000006fd011001970000000702100029000000000012004b00000000010000390000000101004039000006ff0020009c0000007b0000213d00000001001001900000007b0000c13d000000400020043f000000200030008c000000500000413d00000007010000290000000001010433000006ff0010009c000000500000213d000000070330002900000007011000290000001f04100039000000000034004b0000000005000019000007000500804100000700044001970000070006300197000000000764013f000000000064004b00000000040000190000070004004041000007000070009c000000000405c019000000000004004b000000500000c13d0000000014010434000006ff0040009c0000007b0000213d00000005054002100000003f0650003900000785066001970000000006260019000006ff0060009c0000007b0000213d000000400060043f00000000004204350000000004150019000000000034004b000000500000213d000000000041004b0000099d0000813d00000000030200190000000015010434000007010050009c000000500000213d00000020033000390000000000530435000000000041004b00000b5d0000413d0000099d0000013d000007bb02200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000391bea16600000040f000000400100043d000800000001001d00000080020000391bea15e90000040f00000008020000290000000001210049000006fc0010009c000006fc010080410000006001100210000006fc0020009c000006fc020080410000004002200210000000000121019f00001beb0001042e0000079e01000041000000000010043f0000077a0100004100001bec000104300000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000b860000c13d00000d350000013d0000000701000029000000000001004b00000c7a0000c13d000007b201000041000000000010043f0000077a0100004100001bec0001043000000004010000390000000001100367000000000101043b0000000000120435000006fc0020009c000006fc0200804100000040012002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000001030000390000077d040000411bea1be00000040f0000000100200190000000500000613d000000000100001900001beb0001042e0000078301000041000000800010043f00000000010004100000070101100197000000840010043f0000000001000414000006fc0010009c000006fc01008041000000c0011002100000077b011001c7000700000002001d1bea1be50000040f0000006003100270000006fc03300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf00000bc20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bbe0000c13d000000000006004b00000bcf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000d2a0000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000000500000413d000000e003100039000000400030043f000000800300043d000000060030008c000000500000213d0000000000320435000000a00200043d000007710020009c000000500000213d000000a0031000390000000000230435000000c00200043d000007710020009c000000500000213d000000c0011000390000000000210435000000400400043d000600000004001d0000002401400039000000080300002900000000003104350000079001000041000000000014043500000004014000390000000000210435000006fc0040009c000006fc01000041000000000104401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000007020000291bea1be50000040f0000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060b000029000000060570002900000c0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000c080000c13d000000000006004b00000c190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000118a0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000000500000413d00000000030b0433000000000003004b0000000002000039000000010200c039000000000023004b000000500000c13d000000010220018f000008e10000013d0000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c370000c13d00000d350000013d0000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c430000c13d00000d350000013d000007740020009c000009c70000613d000007ba0020009c000000000100c019000000800010043f000007820100004100001beb0001042e000000000001004b00000d790000c13d0000079f01000041000000000010043f0000077a0100004100001bec000104300000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c5c0000c13d00000d350000013d0000000101000039000000010110018f1bea16f40000040f000000080000006b0000000001000019000007120100c0410000001102000039000000000302041a0000070c03300197000000000113019f000000000012041b000000000100001900001beb0001042e0000070f02200197000000000262019f000000000021041b0000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d020000390000000303000039000007110400004100000ba20000013d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000ca20000c13d000000000100041a0000000702000029000000000021004b00000b8e0000a13d000800000002001d0000000801000029000000010110008a000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000c8f0000613d000800000001001d0000078600100198000000070100002900000b8e0000c13d000000000010043f0000000601000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d0000000802000029000607010020019c000000000101043b000010b60000613d000000000201041a000000000002004b00000cba0000613d000000000001041b0000000601000029000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000201041a000007aa0220009a000000000021041b000007920100004100000000001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000793011001c70000800b020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000500000001001d0000000701000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d0000000502000029000000a00220021000000006022001af000007ab022001c7000000000101043b000000000021041b0000000801000029000007940010019800000d140000c13d00000007010000290000000101100039000500000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000d140000c13d000000000100041a000000050010006b00000d140000613d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b0000000802000029000000000021041b0000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d02000039000000040300003900000796040000410000000605000029000000000600001900000007070000291bea1be00000040f0000000100200190000000500000613d00000006010000291bea1b320000040f0000000101000039000000000201041a0000000102200039000000000021041b000000000100001900001beb0001042e0000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000d310000c13d000000000005004b00000d420000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000006fc0020009c000006fc020080410000004002200210000000000112019f00001bec00010430000007860010019800000d670000c13d0000001005000039000000000305041a000000010630019000000001023002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000113013f0000000100100190000000c20000c13d000000400400043d0000000001240436000000000006004b00000fe60000613d000000000050043f000000000002004b000000000300001900000feb0000613d000007150500004100000000030000190000000006310019000000000705041a000000000076043500000001055000390000002003300039000000000023004b00000d5f0000413d00000feb0000013d0000078a01000041000000000010043f0000077a0100004100001bec000104300000078600100198000000070100002900000d750000c13d000000000010043f0000000601000039000000200010043f00000000010000191bea1bcf0000040f000000000101041a0000023c0000013d000007b301000041000000000010043f0000077a0100004100001bec00010430000600000002001d000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400300043d000000000101043b000000000101041a000006ff0110019800000f410000c13d0000006002000039000002b10000013d00000772010000410000000000100443000500000003001d00000004003004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d000000440130003900000006020000290000000000210435000000240130003900000007020000290000000000210435000007af010000410000000000130435000000040130003900000008020000290000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f000007a8011001c700000005020000291bea1be50000040f0000000100200190000010700000613d0000000801000029000006ff0010009c0000007b0000213d0000000801000029000000400010043f0000000102000039000008e10000013d000007a30040009c0000007b0000213d0000000703600029000000000331034f000000000403043b0000008003200039000000400030043f0000006003200039000000000003043500000040032000390000000000030435000000200320003900000000000304350000000000020435000000000004004b00000e170000613d000000000300041a000000000043004b00000e170000a13d000600000006001d000800000004001d000000000040043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b00000de70000c13d0000000804000029000000010440008a00000dd30000013d000000400100043d0000078f0010009c00000008030000290000007b0000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000000030043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d0000078f0020009c00000006060000290000007b0000213d000000000301034f0000000001000367000000000303043b000000000303041a0000008004200039000000400040043f0000006004200039000000e805300270000000000054043500000786003001980000000004000039000000010400c0390000004005200039000000000045043500000701043001970000000004420436000000a003300270000006ff033001970000000000340435000000200460008c00000080036000390000000000230435000000400200043d0000062c0000613d0000000703400029000000000331034f0000078f0020009c000000000604001900000dc30000a13d0000007b0000013d0000000101000039000000010110018f1bea16f40000040f0000000801000029000000000010043f0000000e01000039000000200010043f00000000010000191bea1bcf0000040f000000000301041a000007bb0230019700000007022001af000000000021041b000000000100001900001beb0001042e000000080000006b00000ef20000c13d0000071b02000041000000000021043500000004021000390000000000020435000006fc0010009c000006fc01008041000000400110021000000718011001c700001bec00010430000000070000006b00000f0e0000c13d000007a601000041000000000013043500000004013000390000000802000029000000000021043500000024013000390000000000010435000006fc0030009c000006fc0300804100000040013002100000071d011001c700001bec000104300000000101000039000000010110018f1bea16f40000040f0000000801000029000000000010043f0000000e01000039000000200010043f00000000010000191bea1bcf0000040f000000000301041a000007bb0230019700000001022001bf000000000021041b000000000100001900001beb0001042e000600000003001d000000080000006b00000fbb0000c13d000000050100002900000007020000291bea1b4e0000040f000000000100001900001beb0001042e00000772010000410000000000100443000500000002001d00000004002004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000802000029000000000021043500000776010000410000000000130435000000000100041000000701021001970000000401300039000400000002001d0000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000005020000291bea1be00000040f0000000100200190000011ab0000613d0000000801000029000006ff0010009c0000007b0000213d0000000801000029000000400010043f00000772010000410000000000100443000000050100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000702000029000000000021043500000777010000410000000000130435000000040130003900000004020000290000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000005020000291bea1be00000040f0000000100200190000015030000613d0000000801000029000006ff0010009c0000007b0000213d0000000801000029000000400010043f00000772010000410000000000100443000000050100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000602000029000000000021043500000778010000410000000000130435000000040130003900000004020000290000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000005020000291bea1be00000040f0000000100200190000014740000c13d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000eed0000c13d000011b70000013d000007030010009c0000007b0000213d0000004002100039000000400020043f00000020021000390000000703000029000000000032043500000008050000290000000000510435000000a001300210000000000151019f0000000a02000039000000000012041b000000400100043d0000000000310435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000002030000390000070e0400004100000ba20000013d000500000003001d000007030030009c0000007b0000213d00000005020000290000004001200039000000400010043f000000070100002900000000021204360000000601000029000400000002001d00000000001204350000000801000029000000000010043f0000000b01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d00000005020000290000000002020433000007010220019700000004030000290000000003030433000000a003300210000000000223019f000000000101043b000000000021041b000000400100043d00000006020000290000000000210435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d020000390000000303000039000007a5040000410000000805000029000000070600002900000ba20000013d000000030010006b00000000020100190000000302004029000300000002001d0000000501200210000200000003001d00000000011300190000002001100039000000400010043f000500000001001d0000078f0010009c0000007b0000213d00000005020000290000008001200039000000400010043f0000006001200039000000000001043500000040012000390000000000010435000000200120003900000000000104350000000000020435000000000100041a000000020010008c0000000001000019000010b90000413d0000000101000039000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000000001004b000012af0000c13d0000000801000029000000010110008a00000f5c0000013d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b00000000020004110000070102200197000000000020043f000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000003d10000c13d000007b001000041000000000010043f0000077a0100004100001bec00010430000000400200043d00000779010000410000000000120435000006fc0020009c000006fc0200804100000040012002100000077a011001c700001bec00010430000000060000006b000009090000613d000000070000006b000004260000613d00000000020000190000000601000029000000000012001a000009090000413d000800000002001d0000000001120019000000400200043d0000000000120435000006fc0020009c000006fc0200804100000040012002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000001030000390000077d040000411bea1be00000040f0000000100200190000000500000613d00000008020000290000000102200039000000070020006c00000fa00000413d000004260000013d000000060000006b000009090000613d000000070000006b00000e5c0000613d00000000020000190000000601000029000000000012001a000009090000413d000800000002001d0000000001120019000000400200043d0000000000120435000006fc0020009c000006fc0200804100000040012002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000001030000390000077d040000411bea1be00000040f0000000100200190000000500000613d00000008020000290000000102200039000000070020006c00000fc00000413d00000e5c0000013d000000000007004b00000000060000190000108b0000613d0000000306700210000007bd0660027f000007bd066001670000000008080433000000000668016f0000000107700210000000000676019f0000108b0000013d000007bb033001970000000000310435000000000002004b000000200300003900000000030060390000003f02300039000007bc052001970000000002450019000000000052004b00000000050000390000000105004039000006ff0020009c0000007b0000213d00000001005001900000007b0000c13d000000400020043f0000000005040433000000000005004b0000110b0000c13d000007890020009c0000007b0000213d0000002001200039000000400010043f0000000000020435000000400300043d0000114a0000013d000000400200043d0000000006520019000000000005004b000010620000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000010060000c13d000010620000013d000800000001001d0000000001000019000500000000001d0000000705000029000010150000013d000800000000001d0000000601000029000000400010043f0000000105500039000000010100003900000001001001900000101c0000613d000000030050006c000013fb0000613d0000000502000029000000020020006c000013fb0000613d000000400100043d0000078f0010009c0000007b0000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000700000005001d000000000050043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d0000078f0020009c00000007050000290000007b0000213d000000000101043b000000000101041a0000006003200039000000e8041002700000000000430435000000400320003900000786001001980000000004000039000000010400c0390000000000430435000000a003100270000006ff033001970000002004200039000000000034043500000701011001970000000000120435000010100000c13d000000000001004b00000000020100190000000802006029000800000002001d000000040120014f0000070100100198000010110000c13d00000005010000290000000101100039000500000001001d000000050110021000000001011000290000000000510435000010110000013d000000400200043d0000000006520019000000000005004b000010620000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b0000105e0000c13d000000000004004b00000d420000613d000000000151034f0000000304400210000000000506043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000016043500000d420000013d000000400100043d0000000002000019000008e10000013d00000707080000410000002009000039000000010ba0008a000000050bb00270000007080bb0009a000000000c690019000000000c0c04330000000000c8041b000000200990003900000001088000390000000000b8004b000010780000c13d00000000007a004b000010890000813d000000030a700210000000f80aa0018f000007bd0aa0027f000007bd0aa00167000000000669001900000000060604330000000006a6016f000000000068041b000000010670021000000001066001bf000000000065041b0000000006030433000006ff0060009c0000007b0000213d0000000305000039000000000805041a000000010080019000000001078002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000898013f0000000100800190000000c20000c13d000000200070008c000010ab0000413d000000000050043f0000001f086000390000000508800270000007090880009a000000200060008c0000070a080040410000001f077000390000000507700270000007090770009a000000000078004b000010ab0000813d000000000008041b0000000108800039000000000078004b000010a70000413d000000200060008c000011960000413d000000000050043f000007bc08600198000012e00000c13d00000020070000390000070a04000041000012ec0000013d0000000201000029000607010010019c000011c70000c13d000000400100043d000007ac020000410000067f0000013d000700000001001d0000000105000039000400000000001d00000000010000190000000602000029000010c50000013d000700000000001d00000006020000290000000501000029000000400010043f000000010550003900000001010000390000000100100190000010cc0000613d000000000025004b0000147c0000613d0000000402000029000000030020006c0000147c0000613d000000400100043d0000078f0010009c0000007b0000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000800000005001d000000000050043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d0000078f0020009c00000008050000290000007b0000213d000000000101043b000000000101041a0000006003200039000000e8041002700000000000430435000000400320003900000786001001980000000004000039000000010400c0390000000000430435000000a003100270000006ff033001970000002004200039000000000034043500000701011001970000000000120435000010bf0000c13d000000000001004b0000000002010019000000070200602900000004010000390000000001100367000000000101043b000700000002001d000000000121013f0000070100100198000010c00000c13d00000004010000290000000101100039000400000001001d000000050110021000000002011000290000000000510435000010c00000013d000000a005200039000000400050043f0000008005200039000000000005043500000007090000290000000006050019000000090090008c0000000a5990011a000000f807500210000000010560008a00000000080504330000078708800197000000000778019f00000788077001c70000000000750435000011100000213d00000000026200490000008102200039000000210660008a0000000000260435000000400200043d00000020072000390000000004040433000000000004004b0000112c0000613d00000000080000190000000009780019000000000a810019000000000a0a04330000000000a904350000002008800039000000000048004b000011250000413d000000000174001900000000000104350000000004060433000000000004004b000011390000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000046004b000011320000413d000000000114001900000000000104350000000001210049000000200410008a00000000004204350000001f01100039000007bc011001970000000004210019000000000014004b00000000010000390000000101004039000006ff0040009c0000007b0000213d00000001001001900000007b0000c13d0000000003040019000000400040043f0000000001030019000800000003001d00000b700000013d0000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011540000c13d00000d350000013d000000400100043d0000078f0010009c0000007b0000213d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d0000078f0020009c0000007b0000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000786001001980000000004000039000000010400c0390000000000430435000000a003100270000006ff033001970000002004200039000000000034043500000701011001970000000000120435000800000000001d000800000001601d0000100c0000013d0000001f0530018f000006fe06300198000000400200043d000000000462001900000d350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011910000c13d00000d350000013d000000000006004b0000000003000019000012f80000613d0000000303600210000007bd0330027f000007bd033001670000000004040433000000000334016f0000000104600210000000000343019f000012f80000013d000000000002004b0000000003000019000011a50000613d000000a00300043d0000000304200210000007bd0440027f000007bd04400167000000000443016f0000000103200210000013f70000013d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000011b30000c13d000006fc06600197000000000004004b000011c50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000d430000013d000000000200041a000800000002001d000007bd032001670000000001000019000000000031004b000009090000213d0000000101100039000000070010006c000011cb0000413d000100000003001d000007920100004100000000001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000793011001c70000800b020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000500000001001d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d0000000502000029000000a0022002100000000703000029000000010030008c00000000030000190000079403006041000000000223019f0000000603000029000000000232019f000000000101043b000000000021041b000000000030043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000070400002900000795024000d1000000000301041a0000000002230019000000000021041b000500080040002d00000000010000190000121b0000013d00000008070000290000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d020000390000000403000039000007960400004100000000050000190000000606000029000800000007001d1bea1be00000040f00000001002001900000000101000039000000500000613d00000001001001900000120b0000613d00000008070000290000000107700039000000050070006c0000120c0000c13d0000000501000029000000000010041b00000000010000190000000103000029000000000031004b000009090000213d0000000101100039000000070010006c000012250000413d00000772010000410000000000100443000000020100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b00000ba50000613d000000400700043d000000000200041a000200000002001d000000070320006a0000000001000411000507010010019b000100800000003d0000000306000029000000640170003900000080020000390000000000210435000007970100004100000000001704350000000401700039000000050200002900000000002104350000004401700039000700000003001d0000000000310435000000240170003900000000000104350000000401000029000000000101043300000084027000390000000000120435000000a402700039000000000001004b0000125e0000613d000000000300001900000000042300190000000005630019000000000505043300000000005404350000002003300039000000000013004b000012570000413d0000001f03100039000007bc0330019700000000012100190000000000010435000000a401300039000006fc0010009c000006fc010080410000006001100210000006fc0070009c000006fc0200004100000000020740190000004002200210000000000121019f0000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000000602000029000800000007001d1bea1be00000040f000000080a0000290000006003100270000006fc03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000012820000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000127e0000c13d0000001f074001900000128f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000100200190000015500000613d0000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000006ff0010009c0000007b0000213d00000001002001900000007b0000c13d000000400010043f000000200030008c000000500000413d000000080200002900000000020204330000079900200198000000500000c13d0000079a02200197000007970020009c000015bd0000c13d00000007030000290000000103300039000000020030006c00000000070100190000000306000029000012420000413d000000000100041a000000020010006c00000ba50000613d000000500000013d000000400100043d0000078f0010009c0000007b0000213d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000400200043d0000078f0020009c0000007b0000213d000000000101043b000000000101041a0000008003200039000000400030043f0000006003200039000000e8041002700000000000430435000000400320003900000786001001980000000004000039000000010400c0390000000000430435000000a003100270000006ff033001970000002004200039000000000034043500000701011001970000000000120435000700000000001d000700000001601d000010ba0000013d0000070a040000410000002007000039000000010980008a00000005099002700000070b0990009a000000000a370019000000000a0a04330000000000a4041b00000020077000390000000104400039000000000094004b000012e50000c13d000000000068004b000012f60000813d0000000308600210000000f80880018f000007bd0880027f000007bd0880016700000000033700190000000003030433000000000383016f000000000034041b000000010360021000000001033001bf000000000035041b0000000103000039000000000030041b0000000903000039000000000403041a0000070c04400197000000000043041b000000400300043d0000070204100197000027110040008c0000130b0000413d0000002401300039000027100200003900000000002104350000071c0100004100000000001304350000000401300039000000000041043500000e450000013d0000070105200198000013160000c13d0000071b01000041000000000013043500000004013000390000000000010435000006fc0030009c000006fc03008041000000400130021000000718011001c700001bec00010430000007030030009c0000007b0000213d0000004002300039000000400020043f000000200230003900000000004204350000000000530435000000a001100210000000000151019f0000000a02000039000000000012041b000000400100043d0000000000410435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000070d011001c70000800d0200003900000002030000390000070e040000411bea1be00000040f0000000100200190000000500000613d0000000001000411000000000001004b000014810000c13d000000400100043d0000071a0200004100000e340000013d0000000902000039000000000202041a00000020031000390000000804000029000000000043043500000701022001970000000000210435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000713011001c70000800d02000039000000010300003900000775040000411bea1be00000040f0000000100200190000000500000613d0000000903000039000000000103041a0000070f011001970000000802000029000000000121019f000000000013041b0000077201000041000000000010044300000004002004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000702000029000000000021043500000776010000410000000000130435000000000100041000000701021001970000000401300039000400000002001d0000000000210435000006fc0030009c000700000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000008020000291bea1be00000040f0000000100200190000015100000613d0000000701000029000006ff0010009c0000007b0000213d0000000701000029000000400010043f00000772010000410000000000100443000000080100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000602000029000000000021043500000777010000410000000000130435000000040130003900000004020000290000000000210435000006fc0030009c000700000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000008020000291bea1be00000040f00000001002001900000152a0000613d0000000701000029000006ff0010009c0000007b0000213d0000000701000029000000400010043f00000772010000410000000000100443000000080100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000502000029000000000021043500000778010000410000000000130435000000040130003900000004020000290000000000210435000006fc0030009c000700000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c700000008020000291bea1be00000040f0000000100200190000015ca0000613d0000000701000029000006ff0010009c0000007b0000213d0000000701000029000000400010043f000000000100001900001beb0001042e00000715030000410000002006000039000000010540008a0000000505500270000007160550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b000013e30000c13d000000a005700039000000000024004b000013f50000813d0000000304200210000000f80440018f000007bd0440027f000007bd044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b000000000100001900001beb0001042e000000010100002900000005020000290000000000210435000000400100043d000800000001001d0000000102000029000002b30000013d0000000902000039000000000202041a0000002003100039000007a004000041000000000043043500000701022001970000000000210435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000713011001c70000800d02000039000000010300003900000775040000411bea1be00000040f0000000100200190000000500000613d0000000902000039000000000102041a0000070f01100197000007a0011001c7000000000012041b00000772010000410000000000100443000007a00100004100000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000102000039000000000021043500000776010000410000000000130435000000000100041000000701021001970000000401300039000700000002001d0000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c7000007a0020000411bea1be00000040f00000001002001900000151d0000613d0000000801000029000006ff0010009c0000007b0000213d0000000801000029000000400010043f00000772010000410000000000100443000007a00100004100000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000147b0000613d000000000101043b000000000001004b000000500000613d000000400300043d00000024013000390000000102000039000000000021043500000777010000410000000000130435000000040130003900000007020000290000000000210435000006fc0030009c000800000003001d000006fc01000041000000000103401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f0000071d011001c7000007a0020000411bea1be00000040f0000000100200190000015370000613d0000000801000029000006ff0010009c0000007b0000213d0000000801000029000000400010043f000000000100001900001beb0001042e000000000001042f000000020200002900000004010000290000000000120435000000400300043d000002b10000013d00000701061001970000000c03000039000000000103041a0000070f02100197000000000262019f000000000023041b00000000020004140000070105100197000006fc0020009c000006fc02008041000000c00120021000000710011001c70000800d0200003900000003030000390000071104000041000500000006001d1bea1be00000040f0000000100200190000000500000613d0000001101000039000000000201041a0000070c0220019700000712022001c7000000000021041b000005dc010000390000000f02000039000000000012041b0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b0000158c0000c13d0000000501000029000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000201041a000007bb0220019700000001022001bf000000000021041b0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000000500000613d000000000101043b000000000101041a000000ff00100190000014cb0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000014f30000c13d00000008010000290000000002010433000006ff0020009c0000007b0000213d0000001001000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000c20000c13d000000200030008c000014eb0000413d000000000010043f0000001f042000390000000504400270000007140440009a000000200020008c00000715040040410000001f033000390000000503300270000007140330009a000000000034004b000014eb0000813d000000000004041b0000000104400039000000000034004b000014e70000413d000000200020008c000015440000413d000000000010043f000007bc05200198000015540000c13d00000020040000390000071503000041000015610000013d000000400100043d0000004402100039000007b50300004100000000003204350000078002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006fc0010009c000006fc010080410000004001100210000007a8011001c700001bec0001043000000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000150b0000c13d000011b70000013d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015180000c13d000011b70000013d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015250000c13d000011b70000013d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015320000c13d000011b70000013d00000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000153f0000c13d000011b70000013d000000000002004b0000000003000019000015490000613d000000070300002900000000030304330000000304200210000007bd0440027f000007bd04400167000000000343016f0000000102200210000000000223019f0000156d0000013d000000000003004b000015930000c13d0000006002000039000015ba0000013d00000715030000410000002004000039000000010650008a0000000506600270000007160660009a000000080800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b0000155a0000c13d000000000025004b0000156b0000813d0000000305200210000000f80550018f000007bd0550027f000007bd0550016700000008044000290000000004040433000000000454016f000000000043041b000000010220021000000001022001bf000000000021041b0000000c01000039000000000101041a00000701021001970000000003000411000000000032004b0000158c0000c13d00000006020000290000070106200198000013350000613d0000070f01100197000000000161019f0000000c02000039000000000012041b0000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d020000390000000303000039000007110400004100000000050004111bea1be00000040f0000000100200190000000500000613d000000200100003900000100001004430000012000000443000007190100004100001beb0001042e000000400100043d0000071702000041000000000021043500000004021000390000000003000411000000000032043500000e370000013d0000001f02300039000006fd022001970000003f022000390000079804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006ff0040009c0000007b0000213d00000001005001900000007b0000c13d000000400040043f0000001f0430018f0000000006320436000006fe05300198000100000006001d0000000003560019000015ad0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000015a90000c13d000000000004004b000015ba0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000015c10000c13d0000079b01000041000000000010043f0000077a0100004100001bec000104300000000102000029000006fc0020009c000006fc020080410000004002200210000006fc0010009c000006fc010080410000006001100210000000000121019f00001bec0001043000000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000011b70000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000015d20000c13d000011b70000013d00000000430104340000000001320436000000000003004b000015e30000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000015dc0000413d000000000213001900000000000204350000001f02300039000007bc022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000015f80000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000015f10000413d000000000312001900000000000304350000001f02200039000007bc022001970000000001120019000000000001042d000007be0010009c0000160e0000213d000000630010008c0000160e0000a13d00000000030003670000000401300370000000000101043b000007010010009c0000160e0000213d0000002402300370000000000202043b000007010020009c0000160e0000213d0000004403300370000000000303043b000000000001042d000000000100001900001bec00010430000007be0010009c000016210000213d000000430010008c000016210000a13d00000000020003670000000401200370000000000101043b000007010010009c000016210000213d0000002402200370000000000202043b000000000002004b0000000003000039000000010300c039000000000032004b000016210000c13d000000000001042d000000000100001900001bec0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000016320000613d000000000400001900000020022000390000000005020433000007010550019700000000015104360000000104400039000000000034004b0000162b0000413d000000000001042d0000000043010434000007010330019700000000033204360000000004040433000006ff04400197000000000043043500000040031000390000000003030433000000000003004b0000000003000039000000010300c03900000040042000390000000000340435000000600220003900000060011000390000000001010433000007a4011001970000000000120435000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000016540000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b0000164e0000413d000000000001042d000007bf0010009c0000165a0000813d0000002001100039000000400010043f000000000001042d000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300000001f02200039000007bc022001970000000001120019000000000021004b00000000020000390000000102004039000006ff0010009c0000166c0000213d00000001002001900000166c0000c13d000000400010043f000000000001042d000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec00010430000007c00020009c000016a20000813d00000000040100190000001f01200039000007bc011001970000003f01100039000007bc05100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000006ff0050009c000016a20000213d0000000100700190000016a20000c13d000000400050043f00000000052104360000000007420019000000000037004b000016a80000213d000007bc062001980000001f0720018f00000000044003670000000003650019000016920000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b0000168e0000c13d000000000007004b0000169f0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec00010430000000000100001900001bec000104300000001005000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000016d80000c13d000000400100043d0000000003210436000000000006004b000016c50000613d000000000050043f000000000002004b000016cb0000613d000007150500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000016bd0000413d000016cc0000013d000007bb044001970000000000430435000000000002004b00000020040000390000000004006039000016cc0000013d00000000040000190000003f02400039000007bc032001970000000002130019000000000032004b00000000030000390000000103004039000006ff0020009c000016de0000213d0000000100300190000016de0000c13d000000400020043f000000000001042d000007b401000041000000000010043f0000002201000039000000040010043f000007180100004100001bec00010430000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300000070102200197000000000020043f000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000016f20000613d000000000101043b000000000001042d000000000100001900001bec00010430000000000001004b000016f70000613d000000000001042d000000400100043d0000004402100039000007b50300004100000000003204350000078002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006fc0010009c000006fc010080410000004001100210000007a8011001c700001bec00010430000c000000000002000800000002001d000a00000001001d000b00000003001d000000000003004b000018990000613d0000000b01000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000000000101041a000000000001004b000017350000c13d000000000100041a0000000b0010006c000018990000a13d0000000b02000029000000010220008a000c00000002001d000000000020043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000000000101041a000000000001004b0000000c02000029000017220000613d0000078600100198000018990000c13d0000000a020000290000070102200197000900000001001d0000070101100197000c00000002001d000000000021004b0000189e0000c13d0000000b01000029000000000010043f0000000601000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000500000001001d000000000201041a000000000100041100000701041001970000000c0040006c000017760000613d000000000024004b000017760000613d000600000002001d0000000c01000029000000000010043f0000000701000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c70000801002000039000700000004001d1bea1be50000040f00000007030000290000000100200190000018970000613d000000000101043b000000000030043f000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f00000007040000290000000100200190000018970000613d000000000101043b000000000101041a000000ff001001900000000602000029000018ac0000613d000000080100002900000701031001970000000c0000006b000a00000003001d000017ba0000613d000000000003004b000018150000613d000600000002001d0000000901000039000000000101041a0000070102100198000017c40000613d000700000004001d00000772010000410000000000100443000400000002001d00000004002004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f00000001002001900000189d0000613d000000000101043b000000000001004b0000000702000029000018970000613d000000400400043d000007af01000041000000000014043500000044034000390000000a01000029000300000003001d000000000013043500000024034000390000000c01000029000200000003001d00000000001304350000000401400039000100000001001d0000000000210435000006fc0040009c000800000004001d000006fc01000041000000000104401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f000007a8011001c700000004020000291bea1be50000040f0000000100200190000018ed0000613d0000000804000029000007c00040009c000018a60000813d000000400040043f0000000a03000029000000030500002900000002060000290000000107000029000017c80000013d000000000003004b000018150000c13d000000400100043d000007ac020000410000000000210435000006fc0010009c000006fc0100804100000040011002100000077a011001c700001bec00010430000000400400043d0000004405400039000000240640003900000004074000390000001101000039000000000101041a0000079100100198000018b00000c13d000007c50200004100000000002404350000000c02000029000000000027043500000000003604350000000b020000290000000000250435000006fc0040009c000006fc02000041000000000204401900000040022002100000000003000414000006fc0030009c000006fc03008041000000c003300210000000000323019f0000070102100197000007a8013001c7000800000004001d1bea1be00000040f000000080b0000290000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000017f00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017ec0000c13d000000000006004b000017fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000018c00000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c000018a60000213d0000000100200190000018a60000c13d000000400010043f000000200030008c000018970000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000018970000c13d000000000002004b0000000602000029000018da0000613d000000000002004b000018190000613d0000000501000029000000000001041b0000000c01000029000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000a01000029000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000000000201041a0000000102200039000000000021041b000007920100004100000000001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000793011001c70000800b020000391bea1be50000040f00000001002001900000189d0000613d000000000101043b000800000001001d0000000b01000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d0000000802000029000000a0022002100000000a06000029000000000262019f00000794022001c7000000000101043b000000000021041b00000009010000290000079400100198000018870000c13d0000000b010000290000000101100039000800000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b000000000101041a000000000001004b0000000a06000029000018870000c13d000000000100041a000000080010006b000018870000613d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000018970000613d000000000101043b0000000902000029000000000021041b0000000a060000290000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d02000039000000040300003900000796040000410000000c050000290000000b070000291bea1be00000040f0000000100200190000018970000613d0000000a0000006b000018a20000613d000000000001042d000000000100001900001bec00010430000007b201000041000000000010043f0000077a0100004100001bec00010430000000000001042f000007c101000041000000000010043f0000077a0100004100001bec00010430000007c801000041000000000010043f0000077a0100004100001bec00010430000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec00010430000007c201000041000000000010043f0000077a0100004100001bec00010430000007800100004100000000001404350000002001000039000000000017043500000022010000390000000000160435000007c30100004100000000001504350000006401400039000007c4020000410000000000210435000006fc0040009c000006fc04008041000000400140021000000781011001c700001bec000104300000001f0530018f000006fe06300198000000400200043d0000000004620019000018cb0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018c70000c13d000000000005004b000018d80000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000019080000013d0000006402100039000007c60300004100000000003204350000004402100039000007c703000041000000000032043500000024021000390000002903000039000000000032043500000780020000410000000000210435000000040210003900000020030000390000000000320435000006fc0010009c000006fc01008041000000400110021000000781011001c700001bec0001043000000060061002700000001f0460018f000006fe05600198000000400200043d0000000003520019000018f90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000018f50000c13d000006fc06600197000000000004004b000019070000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000006fc0020009c000006fc020080410000004002200210000000000112019f00001bec0001043000000701011001980000191f0000613d000000000010043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000019230000613d000000000101043b000000000101041a000006ff01100197000000000001042d0000079f01000041000000000010043f0000077a0100004100001bec00010430000000000100001900001bec000104300002000000000002000200000001001d0000000001000411000000000010043f0000000d01000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f0000000100200190000019bc0000613d000000000101043b000000000101041a000000ff001001900000193e0000c13d0000000c01000039000000000101041a00000701011001970000000002000411000000000021004b000019c60000c13d00000772010000410000000000100443000000020100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f0000000100200190000019be0000613d000000010200003900000002030000290000070105300197000000000101043b000000000001004b000200000005001d0000199b0000613d000000400200043d000100000002001d0000077401000041000000000012043500000004012000390000000000010435000006fc0020009c000006fc01000041000000000102401900000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000718011001c700000000020500191bea1be50000040f000000010b0000290000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000019740000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019700000c13d000000000006004b000019810000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000000020500002900000001020000390000199b0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c000019d60000213d0000000100200190000019d60000c13d000000400010043f000000200030008c000019bc0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000019bc0000c13d000000000001004b00000000020000390000000102006039000000400100043d000000000005004b000019a00000613d0000000100200190000019bf0000c13d0000000902000039000000000202041a0000002003100039000000000053043500000701022001970000000000210435000006fc0010009c000006fc0100804100000040011002100000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000713011001c70000800d02000039000000010300003900000775040000411bea1be00000040f00000002030000290000000100200190000019bc0000613d0000000902000039000000000102041a0000070f01100197000000000131019f000000000012041b000000000001042d000000000100001900001bec00010430000000000001042f00000779020000410000000000210435000006fc0010009c000006fc0100804100000040011002100000077a011001c700001bec00010430000000400100043d0000004402100039000007b50300004100000000003204350000078002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000006fc0010009c000006fc010080410000004001100210000007a8011001c700001bec00010430000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300005000000000002000400000004001d000500000002001d000200000001001d000300000003001d1bea17070000040f00000772010000410000000000100443000000050100002900000004001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000773011001c700008002020000391bea1be50000040f000000010020019000001a5e0000613d000000000101043b000000000001004b00001a5b0000613d000000400700043d00000064017000390000008002000039000100000002001d000000000021043500000044017000390000000302000029000000000021043500000002010000290000070101100197000000240270003900000000001204350000079701000041000000000017043500000000010004110000070101100197000000040270003900000000001204350000008402700039000000040100002900000000310104340000000000120435000000a402700039000000000001004b00001a130000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b00001a0c0000413d0000001f03100039000007bc0330019700000000012100190000000000010435000000a401300039000006fc0010009c000006fc010080410000006001100210000006fc0070009c000006fc0200004100000000020740190000004002200210000000000121019f0000000002000414000006fc0020009c000006fc02008041000000c002200210000000000112019f00000005020000290000070102200197000500000007001d1bea1be00000040f000000050b0000290000006003100270000006fc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900001a390000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001a350000c13d000000000006004b00001a460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a5f0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000006ff0010009c00001a910000213d000000010020019000001a910000c13d000000400010043f0000001f0030008c00001a5c0000a13d00000000010b0433000007990010019800001a5c0000c13d0000079a01100197000007970010009c00001a8d0000c13d000000000001042d000000000100001900001bec00010430000000000001042f000000000003004b00001a630000c13d000000600200003900001a8a0000013d0000001f02300039000006fd022001970000003f022000390000079804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000006ff0040009c00001a910000213d000000010050019000001a910000c13d000000400040043f0000001f0430018f0000000006320436000006fe05300198000100000006001d000000000356001900001a7d0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b00001a790000c13d000000000004004b00001a8a0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00001a970000c13d0000079b01000041000000000010043f0000077a0100004100001bec00010430000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300000000102000029000006fc0020009c000006fc020080410000004002200210000006fc0010009c000006fc010080410000006001100210000000000121019f00001bec0001043000010000000000020000000003010019000000400100043d000007c90010009c00001af80000813d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000000003004b00001af50000613d000000000200041a000000000032004b00001af50000a13d000100000003001d000000000030043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001af60000613d000000000101043b000000000101041a000000000001004b00001ac70000c13d0000000103000029000000010330008a00001ab30000013d000000400100043d0000078f0010009c000000010300002900001af80000213d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000000030043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001af60000613d000000000301034f000000400100043d0000078f0010009c00001af80000213d000000000203043b000000000202041a0000008003100039000000400030043f0000006003100039000000e804200270000000000043043500000786002001980000000003000039000000010300c0390000004004100039000000000034043500000701032001970000000003310436000000a002200270000006ff022001970000000000230435000000000001042d000000000100001900001bec00010430000007b401000041000000000010043f0000004101000039000000040010043f000007180100004100001bec000104300001000000000002000000000001004b00001b2e0000613d000100000001001d000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001b2c0000613d000000000101043b000000000101041a000000000001004b00001b290000c13d000000000100041a0000000102000029000000000021004b00001b2e0000a13d000000010220008a000100000002001d000000000020043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001b2c0000613d000000000101043b000000000101041a000000000001004b000000010200002900001b160000613d000007860010019800001b2e0000c13d000000000001042d000000000100001900001bec00010430000007b201000041000000000010043f0000077a0100004100001bec00010430000007010010019800001b350000613d000000000001042d000000400100043d000007ac020000410000000000210435000006fc0010009c000006fc0100804100000040011002100000077a011001c700001bec000104300000000c01000039000000000101041a00000701021001970000000001000411000000000012004b00001b440000c13d000000000001042d000000400200043d0000071703000041000000000032043500000004032000390000000000130435000006fc0020009c000006fc02008041000000400120021000000718011001c700001bec000104300005000000000002000000000002004b00001bc10000613d000407010010019c00001bc50000613d000000000400041a000007bd034001670000000001000019000000000031004b00001bbb0000213d0000000101100039000000000021004b00001b560000413d000500000004001d000100000003001d000200000002001d000007920100004100000000001004430000000001000414000006fc0010009c000006fc01008041000000c00110021000000793011001c70000800b020000391bea1be50000040f000000010020019000001bcd0000613d000000000101043b000300000001001d0000000501000029000000000010043f0000000401000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001bb90000613d0000000302000029000000a0022002100000000203000029000000010030008c00000000030000190000079403006041000000000223019f0000000403000029000000000232019f000000000101043b000000000021041b000000000030043f0000000501000039000000200010043f0000000001000414000006fc0010009c000006fc01008041000000c00110021000000713011001c700008010020000391bea1be50000040f000000010020019000001bb90000613d000000000101043b000000020400002900000795024000d1000000000301041a0000000002230019000000000021041b000300050040002d000000000100001900001ba80000013d00000005070000290000000001000414000006fc0010009c000006fc01008041000000c00110021000000710011001c70000800d020000390000000403000039000007960400004100000000050000190000000406000029000500000007001d1bea1be00000040f0000000100200190000000010100003900001bb90000613d000000010010019000001b980000613d00000005070000290000000107700039000000030070006c00001b990000c13d0000000301000029000000000010041b000000000100001900000002020000290000000103000029000000000031004b00001bbb0000213d0000000101100039000000000021004b00001bb30000413d000000000001042d000000000100001900001bec00010430000007b401000041000000000010043f0000001101000039000000040010043f000007180100004100001bec000104300000079c01000041000000000010043f0000077a0100004100001bec00010430000000400100043d000007ac020000410000000000210435000006fc0010009c000006fc0100804100000040011002100000077a011001c700001bec00010430000000000001042f000000000001042f0000000002000414000006fc0020009c000006fc02008041000000c002200210000006fc0010009c000006fc010080410000004001100210000000000121019f00000713011001c700008010020000391bea1be50000040f000000010020019000001bde0000613d000000000101043b000000000001042d000000000100001900001bec0001043000001be3002104210000000102000039000000000001042d0000000002000019000000000001042d00001be8002104230000000102000039000000000001042d0000000002000019000000000001042d00001bea0000043200001beb0001042e00001bec0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf535155415245696400000000000000000000000000000000000000000000000053504f4300000000000000000000000000000000000000000000000000000000bfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a532405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acebfa87805ed57dc1f0d489ce33be4c4577d74ccde357eeeee058a32c55c44a5313da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a4ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000000000000000000000008a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76efffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000100000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198e1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672e497b8238be5e4f32f72d877ba0627e627848cb8a6504aa01d21a347d565198d118cdaa700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000002000000000000000000000000000000400000010000000000000000001e4fbdf700000000000000000000000000000000000000000000000000000000b6d9900a000000000000000000000000000000000000000000000000000000006f483d0900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000b45a3c0d00000000000000000000000000000000000000000000000000000000d1a1beb300000000000000000000000000000000000000000000000000000000dd46706300000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fd762d9200000000000000000000000000000000000000000000000000000000dd46706400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000d89135cd00000000000000000000000000000000000000000000000000000000d1a1beb400000000000000000000000000000000000000000000000000000000d547cfb700000000000000000000000000000000000000000000000000000000c23dc68e00000000000000000000000000000000000000000000000000000000d007af5b00000000000000000000000000000000000000000000000000000000d007af5c00000000000000000000000000000000000000000000000000000000d0ebdbe700000000000000000000000000000000000000000000000000000000c23dc68f00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000b45a3c0e00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000be537f43000000000000000000000000000000000000000000000000000000009d5a608300000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a9fc664d00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000b39e12cf00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2309ff8000000000000000000000000000000000000000000000000000000009d5a6084000000000000000000000000000000000000000000000000000000009d645a4400000000000000000000000000000000000000000000000000000000a0bcfc7f000000000000000000000000000000000000000000000000000000008da5cb5a0000000000000000000000000000000000000000000000000000000099a255790000000000000000000000000000000000000000000000000000000099a2557a000000000000000000000000000000000000000000000000000000009d424b06000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000772973ee000000000000000000000000000000000000000000000000000000008462151c000000000000000000000000000000000000000000000000000000002a63d575000000000000000000000000000000000000000000000000000000005bbb2176000000000000000000000000000000000000000000000000000000006198e338000000000000000000000000000000000000000000000000000000006c3b8698000000000000000000000000000000000000000000000000000000006c3b86990000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000006198e339000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000005d4c1d45000000000000000000000000000000000000000000000000000000005d4c1d460000000000000000000000000000000000000000000000000000000061347162000000000000000000000000000000000000000000000000000000005bbb2177000000000000000000000000000000000000000000000000000000005bc638200000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000053a224b90000000000000000000000000000000000000000000000000000000053a224ba000000000000000000000000000000000000000000000000000000005944c7530000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000495c8bf9000000000000000000000000000000000000000000000000000000002a63d576000000000000000000000000000000000000000000000000000000002e8da8290000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000098144d3000000000000000000000000000000000000000000000000000000001c33b3270000000000000000000000000000000000000000000000000000000024d7806b0000000000000000000000000000000000000000000000000000000024d7806c000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000001c33b3280000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000098144d40000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001b25b0770000000000000000000000000000000000000000000000000000000004b803f900000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000004b803fa0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000014635460000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000004634d8d0000000000000000000000000000000000ffffffffffffffffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aacda0194c0000000000000000000000000000000000000000000000000000000002304aa02000000000000000000000000000000000000000000000000000000008d7443140000000000000000000000000000000000000000000000000000000032483afb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000240000008000000000000000000000000000000000000000000000000000000020000000000000000000000000032bc66be43dbccb7487781d168eb7bda224628a3b2c3388bdf69b532a3a1611436f6e747261637400000000000000000000000000000000000000000000000045787465726e616c436f6e7472616374733a206e6f742065787465726e616c2008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000020000000800000000000000000b95545520000000000000000000000000000000000000000000000000000000017e94a6c000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000010000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfa14c4b500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000024000000e00000000000000000000000000000000000000000000000000000006000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000000000000000ffffffffffffff7f9445f530000000000000000000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000001ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000b562e8dd0000000000000000000000000000000000000000000000000000000052df9fe50000000000000000000000000000000000000000000000000000000032c1995a000000000000000000000000000000000000000000000000000000008f4eb604000000000000000000000000000000000000000000000000000000000000000000000000000000000000721c310194ccfc01e523fc93c9cccfa2a0acf27b6ce5b2f5e68ddb2fd95a8a909d4ecf1daaac270935fff052feacb24f184239ffc7ba0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007fffffffffffff60000000000000000000000000000000000000000000000000000000000ffffff7f5b076c952c0ec86e5425963c1326dd0f03a3595c19f81d765e8ff559a6e33c969f085200000000000000000000000000000000000000000000000000000000dfd1fc1b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000003fe5df9900000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000100000003000000000000000000000000000000000000000000000000000000005cbd944100000000000000000000000000000000000000000000000000000000d72dde5e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000285fb8c800000000000000000000000000000000000000000000000000000000cfb3b942000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925df2d9b4200000000000000000000000000000000000000000000000000000000cf4700e4000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725b5e139effffffffffffffffffffffffffffffffffffffffffffffffffffffff5b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd0000000000000000000000000000000000000000000000000000000086455d28000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000a11481000000000000000000000000000000000000000000000000000000000059c896be000000000000000000000000000000000000000000000000000000004552433732314143476174657761793a20546f6b656e4964206973206c6f636b656400000000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000006e7366657261626c6500000000000000000000000000000000000000000000004552433732314143476174657761793a20546f6b656e4964206e6f7420747261ea553b3400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80f82514c4fbbd25420928d5a70899318695bff97815aec285e3ba86fe5f5f8dd6
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000736b0c3947881fed70185fb4096de12676f8f82800000000000000000000000084c45912ec902d5e3ff671208537a042dc0717b600000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6170692e73717561726569642e78797a2f6d657461646174612f706f632f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://api.squareid.xyz/metadata/poc/
Arg [1] : _owner (address): 0x736b0c3947881Fed70185fb4096DE12676F8F828
Arg [2] : _royaltyReceiver (address): 0x84C45912eC902D5E3FF671208537A042DC0717B6
Arg [3] : _royaltyFeeNumerator (uint96): 500
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 000000000000000000000000736b0c3947881fed70185fb4096de12676f8f828
Arg [2] : 00000000000000000000000084c45912ec902d5e3ff671208537a042dc0717b6
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [5] : 68747470733a2f2f6170692e73717561726569642e78797a2f6d657461646174
Arg [6] : 612f706f632f0000000000000000000000000000000000000000000000000000
[ 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.