ERC-721
Overview
Max Total Supply
1,931 PENGUPUNKS
Holders
875
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
3 PENGUPUNKSLoading...
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:
PenguPunks
Compiler Version
v0.8.24-1.0.1
ZkSolc Version
v1.5.7
Contract Source Code (Solidity)
/** *Submitted for verification at abscan.org on 2025-01-27 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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 ) external; /** * @dev Transfers `tokenId` token 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; /** * @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; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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 calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // File: contracts/PenguPunks.sol pragma solidity >=0.8.0 <0.9.0; contract PenguPunks is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.0008 ether; uint256 public maxSupply = 10000; uint256 public freeSupply = 10000; uint256 public maxMintAmountPerTx = 50; uint256 public FREE_NFT = 1; mapping(address=>uint256) private free_nft; constructor() ERC721A("Pengu Punks", "PENGUPUNKS") { _baseTokenURI = "https://gateway.pinata.cloud/ipfs/QmSf8mybxh32f8M9k9hY7vYyjjF1pg4WAEMwY92NupihMb/"; } function mint(uint256 _mintAmount) public payable nonReentrant { require(tx.origin == msg.sender, "Contracts are not allowed"); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); uint256 amountForPay=_mintAmount; if (this.balanceOf(_msgSender()) < FREE_NFT){ if (amountForPay>=FREE_NFT){ amountForPay-=FREE_NFT - free_nft[_msgSender()]; }else{ amountForPay=0; } } require(msg.value >= cost * amountForPay, "Insufficient funds!"); if (totalSupply() >= freeSupply) { require(msg.value > 0, "Max free supply exceeded!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); } free_nft[_msgSender()]+=_mintAmount; if (free_nft[_msgSender()] > FREE_NFT) free_nft[_msgSender()]=FREE_NFT; _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // METADATA HANDLING function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); return string(abi.encodePacked(_baseURI(), _tokenId.toString())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_NFT","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003ef32e7d9b9a7817b5f51b781d33da6e8fa0c3863fb59039bee7c3a20e300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000500000000000200000060031002700000036a04300197000300000041035500020000000103550000036a0030019d0000000100200190000000630000c13d0000008002000039000000400020043f000000040040008c000007010000413d000000000301043b000000e003300270000003790030009c000000a60000a13d0000037a0030009c000000b50000a13d0000037b0030009c0000016b0000213d000003810030009c000001be0000213d000003840030009c0000023a0000613d000003850030009c000007010000c13d000000840040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000402100370000000000502043b000003710050009c000007010000213d0000002402100370000000000202043b000003710020009c000007010000213d0000006403100370000000000603043b000003ab0060009c000007010000213d0000002303600039000000000043004b000007010000813d0000000407600039000000000371034f000000000303043b000003ab0030009c000000a00000213d0000001f09300039000003d5099001970000003f09900039000003d509900197000003b30090009c000000a00000213d0000008009900039000000400090043f000000800030043f00000000063600190000002406600039000000000046004b000007010000213d0000002004700039000000000641034f000003d5073001980000001f0830018f000000a0047000390000004d0000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000000490000c13d000000000008004b0000005a0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00330003900000000000304350000004401100370000000000301043b000000800400003900000000010500190da208110000040f000000000100001900000da30001042e0000000001000416000000000001004b000007010000c13d0000000b01000039000000800010043f0000036b01000041000000a00010043f0000010001000039000000400010043f0000000a01000039000000c00010043f0000036c01000041000000e00010043f0000000203000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000800000613d000003ad01000041000000000010043f0000002201000039000000040010043f000003ae0100004100000da400010430000000200040008c000000990000413d000500000004001d000000000030043f00000000010004140000036a0010009c0000036a01008041000000c0011002100000036d011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b00000005020000290000001f0220003900000005022002700000000002210019000000000021004b0000000203000039000000990000813d000000000001041b0000000101100039000000000021004b000000950000413d000000a00100043d0000036e0110019700000016011001bf000000000013041b000000c00500043d0000036f0050009c0000012c0000413d000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da4000104300000038f0030009c000000e50000213d000003990030009c0000018b0000a13d0000039a0030009c000001cc0000213d0000039d0030009c0000023f0000613d0000039e0030009c000007010000c13d0000000001000416000000000001004b000007010000c13d0000000c010000390000030e0000013d000003860030009c0000019a0000a13d000003870030009c000001d80000213d0000038a0030009c0000027d0000613d0000038b0030009c000007010000c13d000000240040008c000007010000413d0000000401100370000000000301043b0000000902000039000000000102041a000000020010008c0000031f0000613d000500000003001d0000000201000039000000000012041b000003b801000041000000000010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003b9011001c70000800b020000390da20d9d0000040f0000000100200190000004760000613d0000000004000411000000000101043b000000000041004b000004770000c13d0000000503000029000000000003004b000000de0000613d0000000f01000039000000000101041a000000000013004b000004cb0000a13d000000400100043d0000004402100039000003c0030000410000000000320435000000240210003900000014030000390000047d0000013d000003900030009c000001a50000a13d000003910030009c000001fb0000213d000003940030009c0000029c0000613d000003950030009c000007010000c13d000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000402100370000000000302043b000003ab0030009c000007010000213d0000002302300039000000000042004b000007010000813d0000000406300039000000000261034f000000000202043b000003ab0020009c000007010000213d00000024053000390000000003520019000000000043004b000007010000213d0000000803000039000000000303041a00000371033001970000000004000411000000000043004b000003b10000c13d0000000a03000039000000000703041a000000010070019000000001047002700000007f0440618f0000001f0040008c00000000080000390000000108002039000000000787013f00000001007001900000007a0000c13d000000200040008c000001240000413d000000000030043f0000001f072000390000000507700270000003c30770009a000000200020008c000003aa070040410000001f044000390000000504400270000003c30440009a000000000047004b000001240000813d000000000007041b0000000107700039000000000047004b000001200000413d0000001f0020008c000005220000a13d000000000030043f000003d506200198000005cf0000c13d000003aa040000410000000007000019000005d90000013d0000000303000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000007a0000c13d000000200040008c000001570000413d000400000004001d000500000005001d000000000030043f00000000010004140000036a0010009c0000036a01008041000000c0011002100000036d011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d00000005050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000004010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000303000039000001570000813d000000000002041b0000000102200039000000000012004b000001530000413d0000001f0050008c0000022f0000a13d000500000005001d000000000030043f00000000010004140000036a0010009c0000036a01008041000000c0011002100000036d011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d0000000507000029000003d502700198000000000101043b000003e00000c13d000000e0050000390000000303000039000003ef0000013d0000037c0030009c0000020e0000213d0000037f0030009c000002b00000613d000003800030009c000007010000c13d000000440040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000402100370000000000202043b000003710020009c000007010000213d0000002401100370000000000101043b000500000001001d000003710010009c000007010000213d000000000020043f0000000701000039000000200010043f00000040010000390da20d870000040f00000005020000290da208010000040f000000000101041a000000ff001001900000000001000039000000010100c039000003910000013d0000039f0030009c000002b50000613d000003a00030009c000002c90000613d000003a10030009c000007010000c13d000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000401100370000000000101043b0da207bc0000040f000003910000013d0000038c0030009c000002e80000613d0000038d0030009c000003010000613d0000038e0030009c000007010000c13d0000000001000416000000000001004b000007010000c13d0000000f010000390000030e0000013d000003960030009c0000030a0000613d000003970030009c000003120000613d000003980030009c000007010000c13d0000000001000416000000000001004b000007010000c13d00000000010400190da207530000040f000500000001001d000400000002001d000300000003001d000000400100043d000200000001001d0da207650000040f000000020400002900000000000404350000000501000029000000040200002900000003030000290da208110000040f000000000100001900000da30001042e000003820030009c000003290000613d000003830030009c000007010000c13d0000000001000416000000000001004b000007010000c13d0da207820000040f0000002002000039000000400300043d000500000003001d00000000022304360da2072c0000040f000003d60000013d0000039b0030009c000003630000613d0000039c0030009c000007010000c13d0000000001000416000000000001004b000007010000c13d00000000010400190da207530000040f0da20a3a0000040f000000000100001900000da30001042e000003880030009c0000036e0000613d000003890030009c000007010000c13d0000000001000416000000000001004b000007010000c13d0000000b03000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000007a0000c13d000000800010043f000000000004004b000003ca0000613d000000000030043f000000000001004b0000000002000019000003cf0000613d000003b4030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000001f30000413d000003cf0000013d000003920030009c000003870000613d000003930030009c000007010000c13d000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000401100370000000000101043b000003710010009c000007010000213d000000000001004b000004550000c13d000003c201000041000000800010043f000003b70100004100000da4000104300000037d0030009c000003980000613d0000037e0030009c000007010000c13d000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000401100370000000000601043b000003710060009c000007010000213d0000000801000039000000000201041a00000371032001970000000005000411000000000053004b000003b10000c13d000000000006004b000004880000c13d000003a201000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f000003a301000041000000c40010043f000003a401000041000000e40010043f000003a50100004100000da400010430000000000005004b0000000001000019000002330000613d000000e00100043d0000000302500210000003d60220027f000003d602200167000000000121016f0000000102500210000000000121019f000003fa0000013d0000000001000416000000000001004b000007010000c13d00000010010000390000030e0000013d000000440040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000402100370000000000202043b000400000002001d000003710020009c000007010000213d0000002401100370000000000301043b000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f000000000003004b000002760000613d000000000200041a000000000032004b000002760000a13d000300000003001d000000000030043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000400200043d000003c90020009c000000a00000213d000000000101043b0000006003200039000000400030043f000000000101041a0000004003200039000003a9001001980000000004000039000000010400c0390000000000430435000000a003100270000003ab0330019700000020042000390000000000340435000003710310019700000000003204350000052e0000613d000000400100043d000003ce0200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da4000104300000000001000416000000000001004b000007010000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000007a0000c13d000000800010043f000000000004004b000003ca0000613d000000000030043f000000000001004b0000000002000019000003cf0000613d000003c1030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002940000413d000003cf0000013d000000240040008c000007010000413d0000000001000416000000000001004b000007010000c13d0000000801000039000000000101041a00000371011001970000000002000411000000000021004b000000000100003900000001010060390da207ee0000040f00000004010000390000000201100367000000000101043b0000000c02000039000000000012041b000000000100001900000da30001042e0000000001000416000000000001004b000007010000c13d0000000d010000390000030e0000013d000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000401100370000000000201043b000003d000200198000007010000c13d0000000101000039000003d102200197000003d20020009c0000036b0000613d000003d30020009c0000036b0000613d000003d40020009c000000000100c019000000800010043f000003a70100004100000da30001042e0000000001000416000000000001004b000007010000c13d0000000203000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f00000001005001900000007a0000c13d000000800010043f000000000004004b000003ca0000613d000000000030043f000000000001004b0000000002000019000003cf0000613d000003cf030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b000002e00000413d000003cf0000013d0000000001000416000000000001004b000007010000c13d0000000801000039000000000201041a00000371032001970000000005000411000000000053004b000003b10000c13d0000037002200197000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000303000039000003730400004100000000060000190da20d980000040f0000000100200190000007010000613d000000000100001900000da30001042e0000000001000416000000000001004b000007010000c13d0000000801000039000000000101041a0000037101100197000000800010043f000003a70100004100000da30001042e0000000001000416000000000001004b000007010000c13d0000000e01000039000000000101041a000000800010043f000003a70100004100000da30001042e0000000001000416000000000001004b000007010000c13d0000000801000039000000000101041a00000371011001970000000002000411000000000021004b000003b10000c13d0000000902000039000000000102041a000000020010008c0000045f0000c13d000003a201000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000003c801000041000000c40010043f000003c50100004100000da400010430000000240040008c000007010000413d0000000003000416000000000003004b000007010000c13d0000000401100370000000000301043b000000000003004b000003ba0000613d000000000100041a000000000031004b000003ba0000a13d000500000003001d000000000030043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000400200043d000000000101043b000000000101041a000003a900100198000003ba0000c13d0000000a05000039000000000405041a000000010640019000000001034002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000114013f00000001001001900000007a0000c13d0000000001320436000000000006004b0000055c0000613d000000000050043f000000000003004b0000000004000019000005610000613d000003aa0500004100000000040000190000000006410019000000000705041a000000000076043500000001055000390000002004400039000000000034004b0000035b0000413d000005610000013d0000000001000416000000000001004b000007010000c13d0000000101000039000000000101041a000003d601100167000000000200041a0000000001120019000000800010043f000003a70100004100000da30001042e000000440040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000402100370000000000202043b000500000002001d000003710020009c000007010000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000400000002001d000000000012004b000007010000c13d0000000002000411000000050020006b000004940000c13d000003b601000041000000800010043f000003b70100004100000da400010430000000240040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000000401100370000000000101043b0da20b9a0000040f00000000010104330000037101100197000000400200043d00000000001204350000036a0020009c0000036a020080410000004001200210000003a6011001c700000da30001042e000000440040008c000007010000413d0000000002000416000000000002004b000007010000c13d0000002401100370000000000101043b000500000001001d000003710010009c000007010000213d0000000801000039000000000101041a00000371011001970000000002000411000000000021004b000000000100003900000001010060390da207ee0000040f00000004010000390000000201100367000000000201043b00000005010000290da20c020000040f000000000100001900000da30001042e000003a201000041000000800010043f0000002001000039000000840010043f000000a40010043f000003c401000041000000c40010043f000003c50100004100000da4000104300000004401200039000003b1030000410000000000310435000000240120003900000013030000390000000000310435000003a20100004100000000001204350000000401200039000000200300003900000000003104350000036a0020009c0000036a020080410000004001200210000003b2011001c700000da400010430000003d702200197000000a00020043f000000000001004b00000020020000390000000002006039000000200220003900000080010000390da207700000040f000000400100043d000500000001001d00000080020000390da2073e0000040f000000050200002900000000012100490000036a0010009c0000036a0100804100000060011002100000036a0020009c0000036a020080410000004002200210000000000121019f00000da30001042e000000010320008a000000050330027000000000033100190000002004000039000000010630003900000003030000390000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000061004b000003e60000c13d000000e005500039000000000072004b000003f80000813d0000000302700210000000f80220018f000003d60220027f000003d6022001670000000004050433000000000224016f000000000021041b000000010170021000000001011001bf000000000013041b0000000101000039000000000010041b0000000801000039000000000201041a00000370042001970000000006000411000000000464019f000000000041041b000000000100041400000371052001970000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d0200003900000373040000410da20d980000040f0000000100200190000007010000613d00000009010000390000000103000039000000000031041b00000374010000410000000c02000039000000000012041b00002710010000390000000d02000039000000000012041b0000000e02000039000000000012041b00000032010000390000000f02000039000000000012041b0000001001000039000000000031041b0000000a03000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f00000001001001900000007a0000c13d000000200040008c000004430000413d000500000004001d000000000030043f00000000010004140000036a0010009c0000036a01008041000000c0011002100000036d011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000201043b00000005010000290000001f01100039000000050110027000000000011200190000000302200039000000000012004b0000000a03000039000004430000813d000000000002041b0000000102200039000000000012004b0000043f0000413d000000a301000039000000000013041b000000000030043f00000020010000390da20d870000040f0000037502000041000000000021041b00000001021000390000037603000041000000000032041b00000002011000390000037702000041000000000021041b000000200100003900000100001004430000012000000443000003780100004100000da30001042e000000000010043f0000000501000039000000200010043f00000040010000390da20d870000040f000000000101041a000003ab01100197000000800010043f000003a70100004100000da30001042e0000000201000039000000000012041b000003c60100004100000000001004430000000001000410000000040010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003c7011001c70000800a020000390da20d9d0000040f0000000100200190000004760000613d000000000301043b00000000010004140000000004000411000000040040008c000004c40000c13d00000001020000390000000101000031000004f00000013d000000000001042f000000400100043d0000004402100039000003ba030000410000000000320435000000240210003900000019030000390000000000320435000003a20200004100000000002104350000000402100039000000200300003900000000003204350000036a0010009c0000036a010080410000004001100210000003b2011001c700000da4000104300000037002200197000000000262019f000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d0200003900000003030000390000037304000041000002fc0000013d000000000020043f0000000701000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b0000000502000029000000000020043f000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b000000000201041a000003d7022001970000000403000029000000000232019f000000000021041b000000400100043d00000000003104350000036a0010009c0000036a01008041000000400110021000000000020004140000036a0020009c0000036a02008041000000c002200210000000000112019f0000036d011001c70000800d020000390000000303000039000003b50400004100000000050004110000000506000029000002fc0000013d0000036a0010009c0000036a01008041000000c001100210000000000003004b000004e80000c13d0000000002040019000004eb0000013d0000000101000039000000000101041a000003d601100167000000000200041a0000000001120019000000000031001a000007190000413d0000000002310019000000400500043d00000004015000390000000d03000039000000000303041a000000000032004b000005c00000a13d000003a2020000410000000000250435000000200200003900000000002104350000004401500039000003bf0200004100000000002104350000002401500039000000140200003900000000002104350000036a0050009c0000036a050080410000004001500210000003b2011001c700000da40001043000000372011001c7000080090200003900000000050000190da20d980000040f000300000001035500000060011002700001036a0010019d0000036a01100197000000000001004b000004f90000c13d0000000100200190000007010000613d00000001010000390000000902000039000000000012041b000000000100001900000da30001042e000003ab0010009c000000a00000213d0000001f04100039000003d5044001970000003f04400039000003d505400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003ab0050009c000000a00000213d0000000100600190000000a00000c13d000000400050043f0000000006140436000003d5031001980000001f0410018f00000000013600190000000305000367000005140000613d000000000705034f000000007807043c0000000006860436000000000016004b000005100000c13d000000000004004b000004f20000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000004f20000013d000000000002004b0000000004000019000005280000613d0000002004600039000000000141034f000000000401043b0000000301200210000003d60110027f000003d601100167000000000414016f0000000101200210000005e60000013d000000000003004b000005530000c13d0000000301000029000000010110008a000500000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000400200043d000003c90020009c000000a00000213d000000000101043b0000006003200039000000400030043f000000000101041a000003a9001001980000000003000039000000010300c03900000040042000390000000000340435000000a003100270000003ab0330019700000020042000390000000000340435000003710310019800000000003204350000000501000029000005310000613d00000004010000290000037101100197000500000003001d000400000001001d000000000031004b0000063f0000c13d000000400100043d000003cd02000041000002770000013d000003d7044001970000000000410435000000000003004b000000200400003900000000040060390000003f03400039000003d5033001970000000008230019000000000038004b00000000030000390000000103004039000003ab0080009c000000a00000213d0000000100300190000000a00000c13d000000400080043f000000050600002900000000030000190000000005030019000000010330003a000007190000613d000000090060008c0000000a0660011a0000056e0000213d000003ac0050009c000000a00000213d000003d5055001970000005f06500039000003d5076001970000000006870019000000000076004b00000000070000390000000107004039000003ab0060009c000000a00000213d0000000100700190000000a00000c13d000000400060043f0000000009080019000000000a3804360000002006500039000003d5056001980000001f0460018f000005900000613d00000000070a001900000000055a001900000000060000310000000206600367000000006806043c0000000007870436000000000057004b0000058c0000c13d000000000004004b0000000507000029000000000809001900000000090a0019000000000003004b000007190000613d000000010330008a0000000004080433000000000034004b000007030000a13d0000000004930019000000090070008c0000000a5770011a000000f8055002100000000006040433000003af06600197000000000565019f000003b0055001c70000000000540435000005940000213d0000000003020433000400000003001d000000400200043d000500000002001d0000002002200039000100000002001d000200000008001d000300000009001d0da2071f0000040f0000000102000029000000040220002900000002010000290000000003010433000200000003001d00000003010000290da2071f0000040f000000020200002900000004022000290000000501000029000000000021043500000020022000390da207700000040f000000400100043d000400000001001d00000005020000290da2073e0000040f0000000402000029000003d70000013d000003bb02000041000400000005001d00000000002504350000037102400197000300000002001d000000000021043500000000010004140000000002000410000000040020008c000005ea0000c13d0000000103000031000000200030008c00000020040000390000000004034019000006140000013d000003aa0400004100000000070000190000000008570019000000000881034f000000000808043b000000000084041b00000001044000390000002007700039000000000067004b000005d10000413d000000000026004b000005e40000813d0000000306200210000000f80660018f000003d60660027f000003d6066001670000000005570019000000000151034f000000000101043b000000000161016f000000000014041b00000001010000390000000104200210000000000114019f000000000013041b000000000100001900000da30001042e00000004030000290000036a0030009c0000036a0300804100000040033002100000036a0010009c0000036a01008041000000c001100210000000000131019f000003ae011001c70da20d9d0000040f00000060031002700000036a03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000405700029000006030000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000005ff0000c13d000000000006004b000006100000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000006630000613d0000001f01400039000000600210018f0000000401200029000000000021004b00000000020000390000000102004039000003ab0010009c000000a00000213d0000000100200190000000a00000c13d000000400010043f000000200030008c000007010000413d0000001001000039000000000201041a00000004010000290000000001010433000400000002001d000000000021004b00000005020000290000062d0000813d0000000402000029000000050020006b0000000002000019000006ec0000813d0000000c01000039000000000101041a00000000032100a9000000000001004b000006350000613d00000000041300d9000000000024004b000007190000c13d0000000002000416000000000032004b000006a30000813d000000400100043d0000004402100039000003be030000410000000000320435000000240210003900000013030000390000047d0000013d0000000002000411000000050020006c000006810000c13d0000000301000029000000000010043f0000000601000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b000000000201041a00000370022001970000000406000029000000000262019f000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003cc04000041000000050500002900000003070000290da20d980000040f0000000100200190000002ff0000c13d000007010000013d0000001f0530018f000003bc06300198000000400200043d00000000046200190000066e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000066a0000c13d000000000005004b0000067b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000036a0020009c0000036a020080410000004002200210000000000112019f00000da4000104300000000501000029000000000010043f0000000701000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b00000000020004110000037102200197000000000020043f000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b000000000101041a000000ff00100190000006420000c13d000000400100043d000003ca02000041000002770000013d0000000103000039000000000303041a000003d603300167000000000400041a00000000033400190000000e04000039000000000404041a000000000043004b000007090000813d0000000301000029000000000010043f0000001101000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b000000000201041a0000000503000029000000000032001a000007190000413d0000000002320019000000000021041b0000000301000029000000000010043f0000001101000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d0000001002000039000000000202041a000000000101043b000000000101041a000400000002001d000000000021004b000006e40000a13d0000000301000029000000000010043f0000001101000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b0000000402000029000000000021041b000000000100041100000005020000290da20c020000040f00000009010000390000000102000039000000000021041b000000000100001900000da30001042e0000000301000029000000000010043f0000001101000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007010000613d000000000101043b000000000101041a000000040110006b0000000502000029000007190000413d000000000212004b0000062d0000813d000007190000013d000000000100001900000da400010430000003ad01000041000000000010043f0000003201000039000000040010043f000003ae0100004100000da400010430000000000002004b0000070f0000c13d000000400100043d0000004402100039000003bd030000410000047a0000013d000000050400002900000000034100a9000000000001004b000007160000613d00000000011300d9000000000041004b000007190000c13d000000000032004b000006380000413d000006ac0000013d000003ad01000041000000000010043f0000001101000039000000040010043f000003ae0100004100000da400010430000000000003004b000007290000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000007220000413d00000000012300190000000000010435000000000001042d00000000430104340000000001320436000000000003004b000007380000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b000007310000413d000000000213001900000000000204350000001f02300039000003d5022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000074d0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000007460000413d000000000312001900000000000304350000001f02200039000003d5022001970000000001120019000000000001042d000003d80010009c000007630000213d000000630010008c000007630000a13d00000002030003670000000401300370000000000101043b000003710010009c000007630000213d0000002402300370000000000202043b000003710020009c000007630000213d0000004403300370000000000303043b000000000001042d000000000100001900000da400010430000003d90010009c0000076a0000813d0000002001100039000000400010043f000000000001042d000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da4000104300000001f02200039000003d5022001970000000001120019000000000021004b00000000020000390000000102004039000003ab0010009c0000077c0000213d00000001002001900000077c0000c13d000000400010043f000000000001042d000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da4000104300000000a05000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000007b00000c13d000000400100043d0000000003210436000000000006004b0000079d0000613d000000000050043f000000000002004b000007a30000613d000003aa0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000007950000413d000007a40000013d000003d7044001970000000000430435000000000002004b00000020040000390000000004006039000007a40000013d00000000040000190000003f02400039000003d5032001970000000002130019000000000032004b00000000030000390000000103004039000003ab0020009c000007b60000213d0000000100300190000007b60000c13d000000400020043f000000000001042d000003ad01000041000000000010043f0000002201000039000000040010043f000003ae0100004100000da400010430000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da4000104300001000000000002000000000001004b000007e40000613d000000000200041a000000000012004b000007e40000a13d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007ec0000613d000000000101043b000000000101041a000003a9001001980000000101000029000007e40000c13d000000000010043f0000000601000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000007ec0000613d000000000101043b000000000101041a0000037101100197000000000001042d000000400100043d000003da0200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da400010430000000000100001900000da400010430000000000001004b000007f10000613d000000000001042d000000400100043d0000004402100039000003c4030000410000000000320435000003a2020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000036a0010009c0000036a010080410000004001100210000003b2011001c700000da4000104300000037102200197000000000020043f000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f00000001002001900000080f0000613d000000000101043b000000000001042d000000000100001900000da4000104300009000000000002000200000004001d000600000003001d000400000002001d000500000001001d000000400100043d000003db0010009c00000a2b0000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000602000029000000000002004b000009e50000613d000000000100041a000000000021004b000009e50000a13d000000000020043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000400200043d000003c90020009c00000a2b0000213d000000000101043b0000006003200039000000400030043f000000000101041a0000004003200039000003a9001001980000000004000039000000010400c039000000000043043500000371031001970000000002320436000000a001100270000003ab011001970000000000120435000009e50000c13d000000000003004b000008680000c13d0000000601000029000000010110008a000700000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000400200043d000003c90020009c00000a2b0000213d000000000101043b0000006003200039000000400030043f000000000101041a000003a9001001980000000003000039000000010300c0390000004004200039000000000034043500000371031001980000000002320436000000a001100270000003ab0110019700000000001204350000000701000029000008470000613d00000005010000290000037101100197000000000013004b000009e90000c13d000100000002001d0000000001000411000000000031004b0000000602000039000700000003001d000008b90000613d000000000030043f0000000701000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b00000000020004110000037102200197000000000020043f000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000101041a000000ff001001900000000602000039000008b90000c13d000000000100041a0000000602000029000000000021004b000009ef0000a13d000000000020043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000101041a000003a9001001980000000601000029000009ef0000c13d000000000010043f0000000601000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000101041a00000371011001970000000002000411000000000021004b0000000602000039000009f60000c13d0000000401000029000503710010019c0000000601000029000009ec0000613d000000000010043f000000200020043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000201041a0000037002200197000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003cc040000410000000705000029000000000600001900000006070000290da20d980000040f0000000100200190000009e30000613d0000000701000029000000000010043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000201041a000003de03200197000000010220008a000003ab02200197000000000232019f000000000021041b0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000201041a000003de032001970000000102200039000003ab02200197000000000232019f000000000021041b0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000301043b000000000103041a000003700110019700000005011001af000300000003001d000000000013041b000003df01000041000000000010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003b9011001c70000800b020000390da20d9d0000040f0000000100200190000009e80000613d0000000303000029000000000203041a000003e002200197000000000101043b000000a001100210000003e101100197000000000112019f000000000013041b00000006010000290000000101100039000300000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000100200190000009e30000613d000000000101043b000000000201041a000003710020019800000007050000290000000506000029000009480000c13d000000000300041a000000030030006b000009480000613d000003d10220019700000001030000290000000003030433000000a003300210000003e103300197000000000232019f000000000252019f000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003e20400004100000006070000290da20d980000040f0000000100200190000009e30000613d000003e30100004100000000001004430000000401000029000000040010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003c7011001c700008002020000390da20d9d0000040f0000000100200190000009e80000613d000000000101043b000000000001004b000009e20000613d0000000008000415000000400b00043d0000006401b00039000000800700003900000000007104350000004401b00039000000060200002900000000002104350000002401b0003900000007020000290000000000210435000003e40100004100000000001b0435000000000100041100000371011001970000000402b0003900000000001204350000008403b00039000000020100002900000000210104340000000000130435000000a403b00039000000000001004b000009840000613d000000000400001900000000053400190000000006420019000000000606043300000000006504350000002004400039000000000014004b0000097d0000413d0000000002310019000000000002043500000000040004140000000502000029000000040020008c000009920000c13d0000000005000415000000090550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000009ca0000013d000600000008001d000400000007001d0000001f01100039000003d501100197000000a4011000390000036a0010009c0000036a0100804100000060011002100000036a00b0009c0000036a0300004100000000030b40190000004003300210000000000131019f0000036a0040009c0000036a04008041000000c003400210000000000113019f00070000000b001d0da20d980000040f000000070b00002900000060031002700000036a03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000009b50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000009b10000c13d000000000006004b000009c20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000080550008a00000005055002100000000100200190000009f20000613d00000006080000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003ab0010009c00000a2b0000213d000000010020019000000a2b0000c13d000000400010043f000000200030008c000009e30000413d00000000010b0433000003d000100198000009e30000c13d0000000502500270000000000201001f000000000200041500000000022800490000000002000002000003d101100197000003e40010009c00000a230000c13d000000000001042d000000000100001900000da400010430000000400100043d000003ce0200004100000a250000013d000000000001042f000000400100043d000003dc0200004100000a250000013d000000400100043d000003e80200004100000a250000013d000000400100043d000003da0200004100000a250000013d000000000003004b000009f90000c13d000000600200003900000a200000013d000000400100043d000003dd0200004100000a250000013d0000001f02300039000003e5022001970000003f02200039000003e604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003ab0040009c00000a2b0000213d000000010050019000000a2b0000c13d000000400040043f0000001f0430018f0000000006320436000003bc05300198000400000006001d000000000356001900000a130000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000037004b00000a0f0000c13d000000000004004b00000a200000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000a310000c13d000000400100043d000003e70200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da400010430000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da40001043000000004020000290000036a0020009c0000036a0200804100000040022002100000036a0010009c0000036a010080410000006001100210000000000121019f00000da4000104300005000000000002000400000003001d000200000002001d000300000001001d000000400100043d000003db0010009c00000b7f0000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000402000029000000000002004b00000b850000613d000000000100041a000000000021004b00000b850000a13d000000000020043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000400200043d000003c90020009c00000b7f0000213d000000000101043b0000006003200039000000400030043f000000000101041a0000004003200039000003a9001001980000000004000039000000010400c039000000000043043500000371031001970000000002320436000000a001100270000003ab01100197000000000012043500000b850000c13d000000000003004b00000a900000c13d0000000401000029000000010110008a000500000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000400200043d000003c90020009c00000b7f0000213d000000000101043b0000006003200039000000400030043f000000000101041a000003a9001001980000000003000039000000010300c0390000004004200039000000000034043500000371031001980000000002320436000000a001100270000003ab011001970000000000120435000000050100002900000a6f0000613d00000003010000290000037101100197000000000013004b00000b880000c13d000100000002001d0000000001000411000000000031004b0000000602000039000500000003001d00000ae10000613d000000000030043f0000000701000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b00000000020004110000037102200197000000000020043f000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000101041a000000ff00100190000000060200003900000ae10000c13d000000000100041a0000000402000029000000000021004b00000b8f0000a13d000000000020043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000101041a000003a900100198000000040100002900000b8f0000c13d000000000010043f0000000601000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000101041a00000371011001970000000002000411000000000021004b000000060200003900000b920000c13d0000000201000029000303710010019c000000040100002900000b8b0000613d000000000010043f000000200020043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000201041a0000037002200197000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003cc040000410000000505000029000000000600001900000004070000290da20d980000040f000000010020019000000b7d0000613d0000000501000029000000000010043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000201041a000003de03200197000000010220008a000003ab02200197000000000232019f000000000021041b0000000301000029000000000010043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000201041a000003de032001970000000102200039000003ab02200197000000000232019f000000000021041b0000000401000029000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000301043b000000000103041a000003700110019700000003011001af000200000003001d000000000013041b000003df01000041000000000010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003b9011001c70000800b020000390da20d9d0000040f000000010020019000000b8e0000613d0000000203000029000000000203041a000003e002200197000000000101043b000000a001100210000003e101100197000000000112019f000000000013041b00000004010000290000000101100039000200000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000b7d0000613d000000000101043b000000000201041a0000037100200198000000050500002900000b6f0000c13d000000000300041a000000020030006b00000b6f0000613d000003d10220019700000001030000290000000003030433000000a003300210000003e103300197000000000232019f000000000252019f000000000021041b00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003e204000041000000030600002900000004070000290da20d980000040f000000010020019000000b7d0000613d000000000001042d000000000100001900000da400010430000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da400010430000000400100043d000003ce0200004100000b940000013d000000400100043d000003dc0200004100000b940000013d000000400100043d000003e80200004100000b940000013d000000000001042f000000400100043d000003da0200004100000b940000013d000000400100043d000003dd0200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da4000104300001000000000002000000400300043d000003db0030009c00000bf20000813d0000006002300039000000400020043f00000040023000390000000000020435000000200230003900000000000204350000000000030435000000000001004b00000bfa0000613d000000000200041a000000000012004b00000bfa0000a13d000100000001001d000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000bf80000613d000000000301034f000000400100043d000003c90010009c000000010500002900000bf20000213d000000000203043b0000006003100039000000400030043f000000000202041a0000004003100039000003a9002001980000000004000039000000010400c0390000000000430435000000a003200270000003ab03300197000000200410003900000000003404350000037102200197000000000021043500000bfa0000c13d000000000002004b00000bf10000c13d000000010550008a000100000005001d000000000050043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000bf80000613d000000000301034f000000400100043d000003c90010009c000000010500002900000bf20000213d000000000203043b0000006003100039000000400030043f000000000202041a000003a9002001980000000003000039000000010300c03900000040041000390000000000340435000000a003200270000003ab03300197000000200410003900000000003404350000037102200198000000000021043500000bce0000613d000000000001042d000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da400010430000000000100001900000da400010430000000400100043d000003ce0200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da400010430000d000000000002000900000002001d000000400200043d000600000002001d000003d90020009c00000d790000813d00000006030000290000002002300039000000400020043f0000000000030435000003710310019800000d800000613d000800000001001d000500000002001d000000090000006b00000d830000613d000000000100041a000b00000001001d000000000030043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c70000801002000039000a00000003001d0da20d9d0000040f0000000a04000029000000010020019000000d400000613d000000000101043b000000000201041a0000000903200029000003ab03300197000003de02200197000000000223019f000000000021041b000000000040043f0000000501000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000d400000613d00000009020000290000004002200210000000000101043b000000000301041a0000000002230019000003e902200197000003ea03300197000000000232019f000000000021041b0000000b01000029000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f0000000a03000029000000010020019000000d400000613d000000000101043b000000000201041a0000037002200197000000000232019f000000000021041b000003df01000041000000000010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003b9011001c70000800b020000390da20d9d0000040f000000010020019000000d7f0000613d000000000101043b000700000001001d0000000b01000029000000000010043f0000000401000039000000200010043f00000000010004140000036a0010009c0000036a01008041000000c001100210000003a8011001c700008010020000390da20d9d0000040f000000010020019000000d400000613d0000000702000029000000a002200210000003e102200197000000000101043b000000000301041a000003e003300197000000000223019f000000000021041b000003e30100004100000000001004430000000801000029000000040010044300000000010004140000036a0010009c0000036a01008041000000c001100210000003c7011001c700008002020000390da20d9d0000040f000000010020019000000d7f0000613d0000000b02000029000700090020002d000000000101043b000000000001004b00000d260000613d000100800000003d0000000001000411000403710010019b00000000010000190000000007020019000000070070006c00000000030000390000000103006039000000010010019000000d3a0000c13d000800000003001d00000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003e20400004100000000050000190000000a06000029000900000007001d0da20d980000040f000000090700002900000005080000290000000a06000029000000010020019000000d400000613d0000000009000415000000400a00043d0000006401a0003900000080020000390000000000210435000003e40100004100000000001a04350000000401a00039000000040200002900000000002104350000004401a0003900000000007104350000002401a000390000000000010435000000060100002900000000010104330000008402a000390000000000120435000000a402a00039000000000001004b00000cbe0000613d000000000300001900000000042300190000000005830019000000000505043300000000005404350000002003300039000000000013004b00000cb70000413d000000000221001900000000000204350000000002000414000000040060008c00000ccb0000c13d00000000050004150000000d0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900000d030000013d000300000009001d0000001f01100039000003d501100197000000a4011000390000036a0010009c0000036a0100804100000060011002100000036a00a0009c0000036a0300004100000000030a40190000004003300210000000000131019f0000036a0020009c0000036a02008041000000c002200210000000000112019f000000000206001900020000000a001d0da20d980000040f000000020a00002900000060031002700000036a03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900000ced0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00000ce90000c13d0000001f0740019000000cfa0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000c0550008a00000005055002100000000100200190000000030900002900000d420000613d00000009070000290000001f01400039000000600210018f0000000001a20019000000000021004b00000000020000390000000102004039000003ab0010009c00000d790000213d000000010020019000000d790000c13d000000400010043f000000200030008c00000d400000413d00000000010a0433000003d00010019800000d400000c13d00000001077000390000000502500270000000000201001f000000000200041500000000022900490000000002000002000003d101100197000003e40010009c00000008010000290000000b0200002900000c8a0000613d000000400100043d000003e70200004100000000002104350000036a0010009c0000036a010080410000004001100210000003cb011001c700000da40001043000000000010004140000036a0010009c0000036a01008041000000c00110021000000372011001c70000800d020000390000000403000039000003e20400004100000000050000190000000a060000290000000b070000290da20d980000040f000000010020019000000d400000613d0000000b010000290000000101100039000b00000001001d000000070010006c00000d260000c13d00000d3d0000013d000000000100041a000000000021004b00000d400000c13d0000000701000029000000000010041b000000000001042d000000000100001900000da400010430000000000003004b00000d460000c13d000000600200003900000d6d0000013d0000001f02300039000003e5022001970000003f02200039000003e604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000003ab0040009c00000d790000213d000000010050019000000d790000c13d000000400040043f0000001f0430018f0000000006320436000003bc05300198000100000006001d000000000356001900000d600000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b00000d5c0000c13d000000000004004b00000d6d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b00000d1e0000613d00000001020000290000036a0020009c0000036a0200804100000040022002100000036a0010009c0000036a010080410000006001100210000000000121019f00000da400010430000003ad01000041000000000010043f0000004101000039000000040010043f000003ae0100004100000da400010430000000000001042f000000400100043d000003ec0200004100000d200000013d000000400100043d000003eb0200004100000d200000013d000000000001042f0000036a0010009c0000036a01008041000000600110021000000000020004140000036a0020009c0000036a02008041000000c002200210000000000112019f00000372011001c700008010020000390da20d9d0000040f000000010020019000000d960000613d000000000101043b000000000001042d000000000100001900000da40001043000000d9b002104210000000102000039000000000001042d0000000002000019000000000001042d00000da0002104230000000102000039000000000001042d0000000002000019000000000001042d00000da20000043200000da30001042e00000da40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff50656e67752050756e6b7300000000000000000000000000000000000000000050454e475550554e4b53000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000000000000000000000000000000000000000000000002d79883d2000068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5366386d79627868333266384d396b396859377659796a6a46317067345741454d775939324e757069684d622f000000000000000000000000000000000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000b3aa769f00000000000000000000000000000000000000000000000000000000d5abeb0000000000000000000000000000000000000000000000000000000000efbd73f300000000000000000000000000000000000000000000000000000000efbd73f400000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000cfc86f7b00000000000000000000000000000000000000000000000000000000b3aa76a000000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a45ba8e70000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a0712d6800000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000094354fd00000000000000000000000000000000000000000000000000000000024a6ab0b0000000000000000000000000000000000000000000000000000000044a0d689000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000044a0d68a0000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000024a6ab0c000000000000000000000000000000000000000000000000000000003ccfd60b0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000095ea7b20000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000013faede60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000081812fc08c379a0000000000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000200000000000000000000000000000000000040000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffffe4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff300000000000000000000000000000000000000000000000000000000000000055524920646f6573206e6f7420657869737421000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db917307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31b06307db000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d830200000200000000000000000000000000000004000000000000000000000000436f6e74726163747320617265206e6f7420616c6c6f7765640000000000000070a082310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffe04d6178206672656520737570706c792065786365656465642100000000000000496e73756666696369656e742066756e647321000000000000000000000000004d617820737570706c7920657863656564656421000000000000000000000000496e76616c6964206d696e7420616d6f756e7421000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8f4eb6040000000000000000000000000000000000000000000000000000000039a5844729cae3e308f36a5ce933956d7c6367997d26743ca06a70b77c062d584f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000000000000000ffffffffffffff9fcfb3b9420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925943f7b8c00000000000000000000000000000000000000000000000000000000df2d9b4200000000000000000000000000000000000000000000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe0cf4700e400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa0a11481000000000000000000000000000000000000000000000000000000000059c896be00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff0000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe0d1a57ed600000000000000000000000000000000000000000000000000000000ea553b340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffb562e8dd000000000000000000000000000000000000000000000000000000002e0763000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e4f7118aefe246e5bd5991589a2de8d7cb72eacb7a1c4044adbc72c1ca1bff6
[ 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.