More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 111,517 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 58379274 | 24 days ago | IN | 0 ETH | 0.00000439 | ||||
Set Approval For... | 57580230 | 41 days ago | IN | 0 ETH | 0.00000461 | ||||
Set Approval For... | 56185080 | 63 days ago | IN | 0 ETH | 0.00000459 | ||||
Set Approval For... | 55973189 | 67 days ago | IN | 0 ETH | 0.00000523 | ||||
Safe Transfer Fr... | 55688781 | 71 days ago | IN | 0 ETH | 0.00000431 | ||||
Set Approval For... | 54371742 | 89 days ago | IN | 0 ETH | 0.00000491 | ||||
Set Approval For... | 51664760 | 125 days ago | IN | 0 ETH | 0.00000547 | ||||
Set Approval For... | 49787081 | 148 days ago | IN | 0 ETH | 0.00000525 | ||||
Set Approval For... | 48625570 | 163 days ago | IN | 0 ETH | 0.00000957 | ||||
Set Approval For... | 47598341 | 176 days ago | IN | 0 ETH | 0.00000621 | ||||
Set Approval For... | 45969687 | 198 days ago | IN | 0 ETH | 0.00000587 | ||||
Set Approval For... | 45169449 | 208 days ago | IN | 0 ETH | 0.00000767 | ||||
Set Approval For... | 43362972 | 231 days ago | IN | 0 ETH | 0.0000045 | ||||
Set Approval For... | 43023691 | 235 days ago | IN | 0 ETH | 0.00000517 | ||||
Set Approval For... | 41914006 | 248 days ago | IN | 0 ETH | 0.00000457 | ||||
Set Approval For... | 40825809 | 262 days ago | IN | 0 ETH | 0.00000517 | ||||
Set Approval For... | 40513889 | 265 days ago | IN | 0 ETH | 0.00000465 | ||||
Set Approval For... | 40343240 | 267 days ago | IN | 0 ETH | 0.00000487 | ||||
Set Approval For... | 39970236 | 272 days ago | IN | 0 ETH | 0.00000438 | ||||
Set Approval For... | 39898938 | 273 days ago | IN | 0 ETH | 0.00000439 | ||||
Set Approval For... | 39736682 | 275 days ago | IN | 0 ETH | 0.00000439 | ||||
Set Approval For... | 39655503 | 276 days ago | IN | 0 ETH | 0.00000411 | ||||
Set Approval For... | 39655444 | 276 days ago | IN | 0 ETH | 0.00000438 | ||||
Set Approval For... | 39540005 | 277 days ago | IN | 0 ETH | 0.00000439 | ||||
Set Approval For... | 39416199 | 278 days ago | IN | 0 ETH | 0.00000458 |
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 Name:
PopSoulBond
Compiler Version
v0.8.16+commit.07a7930e
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract PopSoulBond is ERC721, ERC721Enumerable, Ownable { using Strings for uint256; using ECDSA for bytes32; using Counters for Counters.Counter; Counters.Counter public currentSupply; string private baseURI; bool private transferable_ = false; address private signerAddress; error DirectMintFromBotNotAllowed(); constructor( string memory baseURI_ ) ERC721("PopPilotPass", "PPP") { baseURI = baseURI_; } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI)) : ""; } function safeMint(bytes calldata signature) public { require(balanceOf(msg.sender) == 0, "PopSoulBond: can't have more than one"); require(verify(msg.sender, signature), "PopSoulBond: unavailable signature"); currentSupply.increment(); _safeMint(msg.sender, currentSupply.current()); } function verify( address account, bytes memory signature ) public view returns (bool) { address signer = recoverSigner(account, signature); return signer == signerAddress; } function recoverSigner( address account, bytes memory signature ) public pure returns (address) { bytes32 msgHash = keccak256(abi.encodePacked(account)); bytes32 msgEthHash = ECDSA.toEthSignedMessageHash(msgHash); address signer = ECDSA.recover(msgEthHash, signature); return signer; } function burn(uint256 tokenId) public { require(msg.sender == ownerOf(tokenId), "PopSoulBond: not own it"); _burn(tokenId); } function setSignerAddress(address _signerAddress) external onlyOwner { signerAddress = _signerAddress; } /** * Only allow transfer. */ modifier onlyTransferable() { require(transferable_, "PopSoulBond: not transferable"); _; } function transferable() public view returns (bool) { return transferable_; } function setTransferable(bool _transferable) external onlyOwner { transferable_ = _transferable; } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override(IERC721, ERC721) onlyTransferable() { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override(IERC721, ERC721) onlyTransferable() { super.safeTransferFrom(from, to, tokenId, data); } function transferFrom( address from, address to, uint256 tokenId ) public virtual override(IERC721, ERC721) onlyTransferable() { super.safeTransferFrom(from, to, tokenId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId, uint256 batchSize ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId, batchSize); } function supportsInterface( bytes4 _interfaceId ) public view override(ERC721, ERC721Enumerable) returns (bool){ return _interfaceId == type(IERC721).interfaceId || super.supportsInterface(_interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @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) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
{ "compilerPath": "/Users/xiongfeng/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"DirectMintFromBotNotAllowed","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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_transferable","type":"bool"}],"name":"setTransferable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"transferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010005fbd692a5a01b4a57075ddea9c3b1b2048f14c506de185f92d1699b52af000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6433376f6f726e6e3033323779672e636c6f756466726f6e742e6e65742f646174612f6d657461646174612f6e66742f706f7070696c6f74706173732f506f7050696c6f74506173732e6a736f6e00000000000000000000
Deployed Bytecode
0x0004000000000002000a00000000000200000000030100190000006003300270000005830430019700030000004103550002000000010355000005830030019d000100000000001f00000001012001900000000c0000c13d160602310000040f0000008001000039000000400010043f0000000001000416000000000101004b0000006e0000c13d00000000010000310000001f02100039000000200900008a000000000492016f000000400200043d0000000003240019000000000443004b00000000040000190000000104004039000005840530009c000000910000213d0000000104400190000000910000c13d000000400030043f0000001f0310018f000000020400036700000005051002720000002c0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000000240000413d000000000603004b0000003b0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000058503000041000000200410008c000000000400001900000000040340190000058505100197000000000605004b000000000300a019000005850550009c000000000304c019000000000303004b0000006e0000c13d0000000004020433000005840340009c0000006e0000213d000000000312001900000000012400190000001f021000390000058504000041000000000532004b0000000005000019000000000504801900000585022001970000058506300197000000000762004b0000000004008019000000000262013f000005850220009c00000000020500190000000002046019000000000202004b0000006e0000c13d0000000002010433000005840420009c000000910000213d0000003f04200039000000000494016f000000400700043d0000000004470019000000000574004b00000000050000190000000105004039000005840640009c000000910000213d0000000105500190000000910000c13d000000400040043f000000000827043600000020042000390000000005140019000000000335004b000000700000a13d00000000010000190000160800010430000000000302004b0000007a0000613d000000000300001900000020033000390000000005730019000000000613001900000000060604330000000000650435000000000523004b000000730000413d00000000017400190000000000010435000000400a00043d0000058601a0009c000000910000213d0000004001a00039000000400010043f0000000c04000039000000000c4a0436000005870100004100000000001c0435000000400500043d000005860150009c000000910000213d0000004001500039000000400010043f0000000301000039000000000615043600000588010000410000000000160435000000000b0a04330000058401b0009c000000970000a13d0000058f0100004100000000001004350000004101000039000000040010043f00000590010000410000160800010430000000000100041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000a80000613d0000058f0100004100000000001004350000002201000039000000040010043f0000059001000041000016080001043000050000000c001d00070000000a001d000200000006001d000900000005001d000100000008001d000300000004001d000400000007001d000800000009001d000600000003001d000000200130008c000a0000000b001d000000d00000413d000000000000043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f00000001022001900000006e0000613d0000000a0b0000290000001f02b0003900000005022002700000002003b0008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000d00000813d000000000002041b0000000102200039000000000312004b000000cc0000413d0000001f01b0008c000001000000a13d000000000000043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f000000010220019000000008020000290000006e0000613d0000000a0300002900000000032301700000002002000039000000000101043b0000000706000029000000ee0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000000e60000413d0000000a04000029000000000343004b000000fc0000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000070400002900000000024200190000000002020433000000000232016f000000000021041b0000000a01000029000000010110021000000001011001bf0000010e0000013d0000000a01000029000000000101004b0000000001000019000001060000613d000000050100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f000000000010041b00000009010000290000000001010433000a00000001001d000005840110009c000000910000213d0000000101000039000600000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000700000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000000a20000c13d0000000701000029000000200110008c000001420000413d0000000101000039000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f00000001022001900000006e0000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000001420000813d000000000002041b0000000102200039000000000312004b0000013e0000413d0000000a010000290000001f0110008c000001740000a13d0000000101000039000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f000000010220019000000008020000290000006e0000613d0000000a0300002900000000032301700000002002000039000000000101043b0000000906000029000001620000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000015a0000413d0000000a04000029000000000343004b000001700000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000090400002900000000024200190000000002020433000000000232016f000000000021041b0000000a01000029000000010110021000000001011001bf000001820000013d0000000a01000029000000000101004b00000000010000190000017a0000613d000000020100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000602000029000000000012041b0000000a01000039000000000201041a0000058a032001970000000006000411000000000363019f000000000031041b000000400100043d00000583030000410000000004000414000005830540009c0000000004038019000005830510009c00000000010380190000004001100210000000c003400210000000000113019f0000058b052001970000058c011001c70000800d0200003900000003030000390000058d04000041160615fc0000040f000000010120019000000004040000290000006e0000613d0000000d01000039000000000201041a000001000300008a000000000232016f000000000021041b0000000001040433000a00000001001d000005840110009c0000000301000029000000910000213d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000900000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000000a20000c13d0000000901000029000000200110008c000001d30000413d0000000301000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f00000001022001900000006e0000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000001d30000813d000000000002041b0000000102200039000000000312004b000001cf0000413d0000000a010000290000001f0110008c000002040000a13d0000000301000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c00110021000000589011001c70000801002000039160616010000040f0000000102200190000000080200002900000004060000290000006e0000613d0000000a0300002900000000032301700000002002000039000000000101043b000001f30000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001eb0000413d0000000a04000029000000000343004b000002010000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000040400002900000000024200190000000002020433000000000232016f000000000021041b0000000a010000290000000101100210000002120000013d0000000a01000029000000000101004b00000000010000190000020a0000613d000000010100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000600000002001d0000000602000029000000000121019f0000000302000029000000000012041b0000002001000039000001000010044300000120000004430000058e01000041000016070001042e0000058303000041000005830410009c00000000010380190000004001100210000005830420009c00000000020380190000006002200210000000000112019f0000000002000414000005830420009c0000000002038019000000c002200210000000000112019f0000058c011001c70000801002000039160616010000040f00000001022001900000022f0000613d000000000101043b000000000001042d00000000010000190000160800010430000c0000000000020000008001000039000000400010043f0000000001000031000000040110008c00000e860000413d000c00000000001d0000000201000367000000000101043b000000e001100270000005910210009c000002650000a13d000005920210009c000002800000213d0000059c0210009c000002f90000a13d0000059d0210009c0000039e0000213d000005a00210009c000004d20000613d000005a10110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000d01000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005a50210009c000002970000a13d000005a60210009c000002ef0000a13d000005a70210009c000003ca0000213d000005aa0210009c000004ee0000613d000005ab0110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000000100003116060ec90000040f160611d40000040f000000000101004b0000000001000019000000010100c039000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005930210009c0000031a0000a13d000005940210009c000003ec0000213d000005970210009c000005280000613d000005980110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000000100003116060ec90000040f160612b70000040f0000058b01100197000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005af0210009c000002ce0000213d000005b30210009c000004230000613d000005b40210009c0000044a0000613d000005b50110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d000000000300041a000000010430019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000010220018f000000000224004b000006c30000c13d000000400100043d0000000002710436000000000404004b000007540000613d0000000000000435000000000307004b00000000030000190000075a0000613d000005e00400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000002c60000413d0000075a0000013d000005b00210009c000004700000613d000005b10210009c0000048e0000613d000005b20110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000801000039000000000101041a000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005ac0210009c0000054f0000613d000005ad0210009c0000055b0000613d000005ae0110009c00000e860000c13d0000000001000416000000000101004b000005520000613d00000e860000013d000005a20210009c0000058c0000613d000005a30210009c000005ab0000613d000005a40110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000b01000039000000000101041a000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005990210009c000005d90000613d0000059a0210009c0000060e0000613d0000059b0110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d0000000001000031000000040210008a0000058503000041000000800420008c000000000400001900000000040340190000058502200197000000000502004b000000000300a019000005850220009c00000000020400190000000002036019000000000202004b00000e860000c13d00000002020003670000000403200370000000000303043b000b00000003001d0000058b0330009c00000e860000213d0000002403200370000000000303043b000a00000003001d0000058b0330009c00000e860000213d0000004403200370000000000303043b000900000003001d0000006403200370000000000303043b000005840430009c00000e860000213d00000023043000390000058505000041000000000614004b0000000006000019000000000605801900000585071001970000058504400197000000000874004b0000000005008019000000000474013f000005850440009c00000000040600190000000004056019000000000404004b00000e860000c13d0000000404300039000000000242034f000000000202043b000005840420009c00000a040000213d0000003f04200039000000200500008a000000000454016f000000400700043d0000000004470019000000000574004b00000000050000190000000105004039000005840640009c00000a040000213d000000010550019000000a040000c13d0000002405300039000000400040043f000800000007001d00000000032704360000000004520019000000000114004b00000e860000213d0000001f0120018f00000002045003670000000505200272000003770000613d000000000600001900000005076002100000000008730019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000036f0000413d000000000601004b000003860000613d0000000505500210000000000454034f00000000055300190000000301100210000000000605043300000000061601cf000000000616022f000000000404043b0000010001100089000000000414022f00000000011401cf000000000161019f0000000000150435000000000123001900000000000104350000000d01000039000000000101041a000000ff01100190000009220000c13d000000400100043d0000004402100039000005c703000041000000000032043500000024021000390000001d030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000059e0210009c000006a50000613d0000059f0110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000201043b000000000102004b0000000001000019000000010100c039000b00000002001d000000000112004b00000e860000c13d16060f2d0000040f0000000d01000039000000000201041a000001000300008a000000000232016f0000000b03000029000000000232019f000000000021041b0000058301000041000000400200043d000005830320009c00000000010240190000004001100210000016070001042e000005a80210009c000006c90000613d000005a90110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b16060f6e0000040f0000058b01100197000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000005950210009c000006ef0000613d000005960110009c00000e860000c13d0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000601043b0000058b0160009c00000e860000213d0000000a01000039000000000201041a0000058b052001970000000003000411000000000335004b000007230000c13d000000000306004b000007f60000c13d000000400100043d0000006402100039000005b60300004100000000003204350000004402100039000005b7030000410000000000320435000000240210003900000026030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b000005e302100197000000000221004b00000e860000c13d0000000102000039000005e40310009c000004460000613d000005e50310009c000004460000613d000005e60210009c00000000020000190000000102006039000005e70110009c00000000010000190000000101006039000000000221019f000000010120018f000000800010043f000005e801000041000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b000b00000001001d0000058b0110009c00000e860000213d16060f2d0000040f0000000b010000290000000801100210000005e1011001970000000d02000039000000000302041a000005e203300197000000000113019f000000000012041b0000058301000041000000400200043d000005830320009c00000000010240190000004001100210000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b16060f940000040f0000058b01100197000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000400310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000002010003670000000402100370000000000202043b000b00000002001d0000058b0220009c00000e860000213d0000002401100370000000000101043b000a00000001001d00000000001004350000000201000039000900000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d0000000b02000029000000000212004b000008840000c13d000000400100043d0000006402100039000005dd0300004100000000003204350000004402100039000005de030000410000000000320435000000240210003900000021030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000a01000039000000000101041a0000058b01100197000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000401000039000900000001001d0000000201100367000000000101043b000b00000001001d00000000001004350000000201000039000a00000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b011001980000076e0000c13d000000400100043d0000004402100039000005df030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000c04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000000113013f0000000101100190000006c30000c13d000000400100043d000000000602004b0000079d0000c13d000005bc0210009c00000a040000213d0000002002100039000000400020043f0000000000010435000000400400043d000008750000013d0000000001000416000000000101004b00000e860000c13d000000000100003116060e9b0000040f160613930000040f0000058301000041000000400200043d000005830320009c00000000010240190000004001100210000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000400310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000002010003670000000402100370000000000202043b000b00000002001d0000058b0220009c00000e860000213d0000002401100370000000000201043b0000000b03000029000000000103004b000007ac0000c13d000000400100043d0000006402100039000005d80300004100000000003204350000004402100039000005d9030000410000000000320435000000240210003900000029030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b0000058b0210009c00000e860000213d16060f450000040f000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000a01000039000000000201041a0000058b032001970000000005000411000000000353004b000007230000c13d0000058a02200197000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004002100210000000c001300210000b00000002001d000000000112019f0000058c011001c70000800d0200003900000003030000390000058d040000410000000006000019160615fc0000040f000000010120019000000e860000613d0000000b01000029000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000400310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000002010003670000000402100370000000000202043b000b00000002001d0000058b0220009c00000e860000213d0000002401100370000000000201043b000000000102004b0000000001000019000000010100c039000a00000002001d000000000112004b00000e860000c13d00000000020004110000000b01000029000000000112004b0000080d0000c13d000000400100043d0000004402100039000005cf030000410000000000320435000000240210003900000019030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000000001000416000000000101004b00000e860000c13d0000000001000031000000040210008a0000058503000041000000200420008c000000000400001900000000040340190000058502200197000000000502004b000000000300a019000005850220009c00000000020400190000000002036019000000000202004b00000e860000c13d00000002030003670000000402300370000000000202043b000005840420009c00000e860000213d00000023042000390000058505000041000000000614004b0000000006000019000000000605801900000585071001970000058504400197000000000874004b0000000005008019000000000474013f000005850440009c00000000040600190000000004056019000000000404004b00000e860000c13d0000000404200039000000000343034f000000000303043b000b00000003001d000005840330009c00000e860000213d00000024032000390000000b02000029000900000003001d0000000002230019000a00000002001d000000000112004b00000e860000213d00000000010004110000058b02100198000005770000613d000800000001001d000600000002001d00000000002004350000000301000039000700000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000000000101004b0000090d0000c13d0000000b010000290000003f01100039000000200200008a000000000121016f000000400200043d0000000001120019000000000321004b00000000030000190000000103004039000005840410009c00000a040000213d000000010330019000000a040000c13d0000000003000031000000400010043f0000000b0100002900000000011204360000000a04000029000000000334004b00000e860000213d0000000b050000290000001f0350018f0000000904000029000000020440036700000005055002720000067a0000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000006720000413d000000000603004b000006890000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000b03000029000000000131001900000000000104350000000801000029160611d40000040f000000000101004b000009fb0000c13d000000400100043d0000006402100039000005cc0300004100000000003204350000004402100039000005cd030000410000000000320435000000240210003900000022030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000000301004b000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d0000000104000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000007340000613d0000058f0100004100000000001004350000002201000039000000040010043f000005900100004100001608000104300000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000200310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000004010000390000000201100367000000000101043b0000000802000039000000000202041a000000000221004b0000073f0000813d16060fcd0000040f0000000302200210000000000101041a000000000121022f000000ff0220008c0000000001002019000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e0000000001000416000000000101004b00000e860000c13d000000040100008a00000000011000310000058502000041000000400310008c000000000300001900000000030240190000058501100197000000000401004b000000000200a019000005850110009c00000000010300190000000001026019000000000101004b00000e860000c13d00000002020003670000000401200370000000000101043b0000058b0310009c00000e860000213d0000002402200370000000000202043b000b00000002001d0000058b0220009c00000e860000213d00000000001004350000000501000039000000200010043f0000004002000039000a00000002001d00000000010000191606021b0000040f0000000b020000290000000000200435000000200010043f00000000010000190000000a020000291606021b0000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e000000400100043d0000004402100039000005d1030000410000000000320435000005b8020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000000400100043d0000000002710436000000000505004b000007d60000c13d000001000400008a000000000343016f0000000000320435000000000207004b00000020030000390000000003006019000007e20000013d000000400100043d0000006402100039000005d20300004100000000003204350000004402100039000005d303000041000000000032043500000024021000390000002c030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000b00000001001d16060eb60000040f0000002001000039000000400200043d000a00000002001d00000000021204360000000b0100002916060e880000040f0000000a0400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f000016070001042e0000000002000411000000000112004b0000084f0000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d000800000001001d00000000001004350000000301000039000700000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000600000001001d000000000101004b000009660000c13d0000058f0100004100000000001004350000001101000039000000040010043f00000590010000410000160800010430000000000505004b000008610000613d0000000000400435000005bb03000041000000000400001900000020044000390000000005140019000000000603041a00000000006504350000000103300039000000000524004b000007a20000413d00000000021200190000002002200039000008660000013d000a00000002001d00000000003004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000000a03000029000000000113004b000008c30000813d0000000b0100002900000000001004350000000601000039000000200010043f0000004002000039000b00000002001d00000000010000191606021b0000040f0000000a020000290000000000200435000000200010043f00000000010000190000000b020000291606021b0000040f000000000101041a000000400200043d00000000001204350000058301000041000005830320009c00000000010240190000004001100210000005ba011001c7000016070001042e0000000c030000290000000000430435000000000473004b000007e20000813d000005d0040000410000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000007db0000413d0000002002300039000b00000001001d16060eb60000040f0000002001000039000000400200043d000a00000002001d00000000021204360000000b0100002916060e880000040f0000000a0400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f000016070001042e0000058a02200197000000000226019f000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004002100210000000c001300210000b00000002001d000000000112019f0000058c011001c70000800d0200003900000003030000390000058d04000041160615fc0000040f000000010120019000000e860000613d0000000b01000029000016070001042e000900000002001d00000000002004350000000501000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000b020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000a03000029000000000232019f000000000021041b000000400100043d000000000031043500000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004001100210000000c002300210000000000112019f00000589011001c70000800d020000390000000303000039000005ce0400004100000009050000290000000b06000029160615fc0000040f000000010120019000000e860000613d0000058301000041000000400200043d000005830320009c00000000020180190000000c03000029000005830430009c000000000103401900000060011002100000004002200210000000000112019f000016070001042e000000400100043d0000004402100039000005d4030000410000000000320435000000240210003900000017030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000001000400008a000000000343016f0000002004100039000000000034043500000000022400190000000002120049000000200320008a00000000003104350000001f02200039000000200300008a000000000232016f0000000004120019000000000224004b00000000020000190000000102004039000005840340009c00000a040000213d000000010220019000000a040000c13d000000400040043f000b00000004001d0000002002000039000000000224043616060e880000040f0000000b0400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000112019f000016070001042e0000000003000411000000000213004b000008d80000c13d0000000a0100002900000000001004350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a022001970000000b03000029000000000232019f000000000021041b0000000a0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b05100198000005160000613d000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004002100210000000c001300210000900000002001d000000000112019f0000058c011001c70000800d020000390000000403000039000005dc040000410000000b060000290000000a07000029160615fc0000040f000000010120019000000e860000613d0000000901000029000016070001042e000000400100043d0000006402100039000005d60300004100000000003204350000004402100039000005d703000041000000000032043500000024021000390000002b030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000800000003001d00000000001004350000000501000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b00000008020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000000ff01100190000008870000c13d000000400100043d0000006402100039000005da0300004100000000003204350000004402100039000005db03000041000000000032043500000024021000390000003d030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000000400100043d0000006402100039000005c90300004100000000003204350000004402100039000005ca030000410000000000320435000000240210003900000025030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000000090100002900000000001004350000000201000039000700000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d0000000002000411000600000002001d000000000212004b00000a5a0000c13d000000090100002900000000001004350000000701000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d0000000b02000029000000000121004b00000cdf0000c13d0000000a01000029000000000101004b00000b010000c13d000000400100043d0000006402100039000005c50300004100000000003204350000004402100039000005c6030000410000000000320435000000240210003900000024030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000b0100002900000000001004350000000701000039000500000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d0000000602000029000000010220008a000000000101043b000000000101041a000600000002001d000400000001001d000000000121004b00000a0a0000c13d0000000b01000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000001041b000000080100002900000000001004350000000601000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b00000006020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000001041b0000000801000039000800000001001d000000000101041a000600000001001d000000000101004b000007970000613d0000000b0100002900000000001004350000000901000039000500000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d0000000602000029000000010220008a000000000101043b000000000101041a000400000001001d0000000801000029000000000101041a000000000121004b00000cf40000a13d00000008010000290000000000100435000000000101041a0000000402000029000000000121004b00000cf40000a13d0000000401000029000005c1011000410000000602000029000005d502200041000000000202041a000000000021041b00000000002004350000000501000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000402000029000000000021041b0000000b01000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000001041b0000000801000029000000000101041a000000000201004b00000dad0000c13d0000058f0100004100000000001004350000003101000039000000040010043f000005900100004100001608000104300000000b01000039000000000201041a0000000102200039000b00000002001d000000000021041b000000400100043d000a00000001001d000005bc0110009c00000ac00000a13d0000058f0100004100000000001004350000004101000039000000040010043f00000590010000410000160800010430000000080100002900000000001004350000000601000039000300000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b00000006020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000200000001001d000000080100002900000000001004350000000301000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b00000004020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000202000029000000000021041b00000000002004350000000501000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000402000029000000000021041b0000097d0000013d0000000c0400002900000000001404350000000501000039000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000060200002900000005030000290000000000230435000000200010043f0000000c0100002900000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004001100210000000c002300210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000000ff01100190000009390000c13d000000090100002900000000001004350000000701000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d000000090100002900000000001004350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b011001970000000602000029000000000121004b000009390000613d000000400100043d0000006402100039000005be0300004100000000003204350000004402100039000005bf03000041000000000032043500000024021000390000002d030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000a020000290000002001200039000000400010043f0000000c0100002900000000001204350000000b0100002900000000001004350000000201000039000900000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b0110019800000bfa0000c13d0000000801000039000400000001001d000000000101041a000500000001001d0000000c040000290000000b0100002900000000001404350000000901000039000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c000300000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000502000029000000000021041b000005c00120009c00000b2d0000413d0000058f01000041000000030200002900000000001204350000004101000039000000040010043f00000583010000410000000c02000029000005830320009c0000000001024019000000400110021000000590011001c700001608000104300000000b01000029000000000101004b00000c0c0000c13d0000000801000039000500000001001d000000000101041a000600000001001d0000000c04000029000000090100002900000000001404350000000901000039000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c000400000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000602000029000000000021041b000005c00120009c00000c300000413d0000058f01000041000000040200002900000000001204350000004101000039000000040010043f00000583010000410000000c02000029000005830320009c0000000001024019000000400110021000000590011001c70000160800010430000000050200002900000001012000390000000403000029000000000013041b000000000103041a000000000121004b00000cf40000a13d000000040100002900000000001004350000000501000029000005c1011000410000000b02000029000000000021041b000000060100002900000000001004350000000701000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000600000001001d0000000801000029000000030200002900000000001204350000000601000039000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000060200002900000005030000290000000000230435000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000b02000029000000000021041b000000050100002900000000002104350000000701000039000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000602000029000000000021041b0000000b0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b0110019800000bfa0000c13d0000000801000029000000050200002900000000001204350000000701000029000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000700000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000b01000029000000070200002900000000001204350000000901000029000000200010043f00000583010000410000000c040000290000000002000414000005830320009c0000000002018019000000c002200210000005830340009c000900000004001d0000000001044019000700000001001d0000004001100210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a022001970000000806000029000000000262019f000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c0000000001028019000000070200002900000060022002100000004001100210000700000002001d000000000121019f000000c002300210000000000121019f0000058c011001c70000800d020000390000000403000039000005c40400004100000009050000290000000b07000029160615fc0000040f000000010120019000000e860000613d00000008010000290000000b020000290000000a0300002916060ffd0000040f16060fe80000040f0000058301000041000000400200043d000005830320009c000000000102401900000040011002100000000702000029000000000121019f000016070001042e000000400100043d0000004402100039000005cb03000041000000000032043500000024021000390000001c030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000000b010000290000000a02000029000000000121004b00000c3d0000613d0000000b0100002900000000001004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d0000000c02000029000600000002001d000000000101043b000000000101041a000500000001001d000000000101004b00000d4e0000c13d0000058f01000041000000060300002900000000001304350000001101000039000000040010043f0000058301000041000005830230009c0000000001034019000000400110021000000590011001c70000160800010430000000060200002900000001012000390000000503000029000000000013041b000000000103041a000000000121004b00000cf40000a13d000000050100002900000000001004350000000601000029000005c1011000410000000902000029000000000021041b0000000b010000290000000a02000029000000000112004b00000cfa0000c13d000000090100002900000000001004350000000701000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000005160000613d0000000b02000029000000000121004b00000cdf0000c13d0000000c04000029000000090100002900000000001404350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a02200197000000000021041b0000000b01000029000000060200002900000000001204350000000301000039000000200010043f00000583010000410000000c040000290000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000a01000029000000060200002900000000001204350000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000901000029000000060200002900000000001204350000000701000029000000200010043f00000583010000410000000c02000029000005830320009c000000000401001900000000040240190000000002000414000005830320009c0000000001024019000000c001100210000700000004001d0000004002400210000000000112019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a022001970000000a06000029000000000262019f000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c0000000001028019000000070200002900000060022002100000004001100210000700000002001d000000000121019f000000c002300210000000000121019f0000058c011001c70000800d020000390000000403000039000005c4040000410000000b050000290000000907000029160615fc0000040f000000010120019000000e860000613d0000000b010000290000000a0200002900000009030000290000000804000029160610e70000040f16060fe80000040f0000058301000041000000400200043d000005830320009c000000000102401900000040011002100000000702000029000000000121019f000016070001042e000000400100043d0000006402100039000005c20300004100000000003204350000004402100039000005c3030000410000000000320435000000240210003900000025030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000058f0100004100000000001004350000003201000039000000040010043f000005900100004100001608000104300000000a0100002900000000001004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000600000001001d0000000c040000290000000a0100002900000000001404350000000601000039000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000060200002900000005030000290000000000230435000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000500000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000902000029000000000021041b000000050100002900000000002104350000000701000039000000200010043f0000000c0100002900000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004001100210000000c002300210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000602000029000000000021041b00000c410000013d0000000901000029000000060400002900000000001404350000000701000039000400000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000002018019000005830340009c00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d0000000502000029000000010220008a000000000101043b000000000101041a000500000002001d000300000001001d000000000121004b00000e130000c13d0000000901000029000000060200002900000000001204350000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000602000029000000000021041b0000000b0100002900000000001204350000000601000039000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000050200002900000006030000290000000000230435000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000602000029000000000021041b00000c3d0000013d00000008030000290000000000300435000005d502100041000000000002041b000000010110008a000000000013041b0000000b0100002900000000001004350000000a01000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a0000058b01100198000800000001001d000005160000613d0000000b0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a02200197000000000021041b000000080100002900000000001004350000000701000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000b0100002900000000001004350000000a01000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000201041a0000058a02200197000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004002100210000000c001300210000a00000002001d000000000112019f0000058c011001c70000800d020000390000000403000039000005c404000041000000080500002900000000060000190000000b07000029160615fc0000040f000000010120019000000e860000613d0000000a01000029000016070001042e0000000b01000029000000060200002900000000001204350000000601000039000200000001001d000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000050200002900000006030000290000000000230435000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000000101041a000100000001001d0000000b01000029000000060200002900000000001204350000000201000029000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b000000030200002900000006030000290000000000230435000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000102000029000000000021041b000000060100002900000000002104350000000401000029000000200010043f0000000c0400002900000583010000410000000002000414000005830320009c0000000002018019000005830340009c000600000004001d00000000010440190000004001100210000000c002200210000000000121019f000005bd011001c70000801002000039160616010000040f000000010220019000000e860000613d000000000101043b0000000302000029000000000021041b00000d6a0000013d0000000001000019000016080001043000000000030104330000000002320436000000000403004b00000e940000613d000000000400001900000000054200190000002004400039000000000614001900000000060604330000000000650435000000000534004b00000e8d0000413d000000000132001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d000000040110008a00000585020000410000005f0310008c000000000300001900000000030220190000058501100197000000000401004b0000000002008019000005850110009c00000000010300190000000001026019000000000101004b00000eb40000613d00000002030003670000000401300370000000000101043b0000058b0210009c00000eb40000213d0000002402300370000000000202043b0000058b0420009c00000eb40000213d0000004403300370000000000303043b000000000001042d000000000100001900001608000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000005840310009c00000ec30000213d000000010220019000000ec30000c13d000000400010043f000000000001042d0000058f0100004100000000001004350000004101000039000000040010043f000005900100004100001608000104300000000003010019000000040130008a00000585020000410000003f0410008c000000000400001900000000040220190000058501100197000000000501004b0000000002008019000005850110009c00000000010400190000000001026019000000000101004b00000f250000613d00000002020003670000000401200370000000000101043b0000058b0410009c00000f250000213d0000002404200370000000000504043b000005840450009c00000f250000213d00000023045000390000058506000041000000000734004b0000000007000019000000000706801900000585083001970000058504400197000000000984004b0000000006008019000000000484013f000005850440009c00000000040700190000000004066019000000000404004b00000f250000c13d0000000404500039000000000242034f000000000402043b000005c00240009c00000f270000813d0000003f02400039000000200600008a000000000662016f000000400200043d0000000006620019000000000726004b00000000070000190000000107004039000005840860009c00000f270000213d000000010770019000000f270000c13d0000002407500039000000400060043f00000000054204360000000006740019000000000336004b00000f250000213d0000001f0340018f0000000206700367000000050740027200000f130000613d00000000080000190000000509800210000000000a950019000000000996034f000000000909043b00000000009a04350000000108800039000000000978004b00000f0b0000413d000000000803004b00000f220000613d0000000507700210000000000676034f00000000077500190000000303300210000000000807043300000000083801cf000000000838022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000383019f000000000037043500000000034500190000000000030435000000000001042d000000000100001900001608000104300000058f0100004100000000001004350000004101000039000000040010043f000005900100004100001608000104300000000a01000039000000000101041a0000058b011001970000000002000411000000000121004b00000f340000c13d000000000001042d000000400100043d0000004402100039000005d1030000410000000000320435000005b8020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000058b0110019800000f570000613d00000000001004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000f6c0000613d000000000101043b000000000101041a000000000001042d000000400100043d0000006402100039000005d80300004100000000003204350000004402100039000005d9030000410000000000320435000000240210003900000029030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000000001000019000016080001043000000000001004350000000201000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000f800000613d000000000101043b000000000101041a0000058b0110019800000f820000613d000000000001042d00000000010000190000160800010430000000400100043d0000004402100039000005df030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300001000000000002000100000001001d00000000001004350000000201000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000fb90000613d000000000101043b000000000101041a0000058b0110019800000fbb0000613d000000010100002900000000001004350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f000000010220019000000fb90000613d000000000101043b000000000101041a0000058b01100197000000000001042d00000000010000190000160800010430000000400100043d0000004402100039000005df030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300000000802000039000000000302041a000000000313004b00000fd50000a13d0000000000200435000005c1011000410000000002000019000000000001042d0000058f0100004100000000001004350000003201000039000000040010043f000005900100004100001608000104300000006002100039000005e90300004100000000003204350000004002100039000005ea030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0001000000000002000000000101004b00000fec0000613d000000000001042d000000400200043d000100000002001d000005b8010000410000000000120435000000040120003916060fdb0000040f000000010400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f00001608000104300005000000000002000200000003001d000100000002001d000005eb020000410000000000200439000300000001001d000000040010044300000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005ec011001c70000800202000039160616010000040f000000000301034f0000000101200190000010940000613d0000000101000039000000000203043b000000000202004b000010930000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a0003900000001020000290000000000210435000005ed0100004100000000001a04350000000401a00039000000000200041100000000002104350000002401a000390000000000010435000000020600002900000000010604330000008402a000390000000000120435000000a402a00039000000000301004b000010300000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b000010290000413d00000000022100190000000000020435000000000300041400000003020000290000058b02200197000000040420008c000010400000c13d0000000001000415000000050110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000500000000001d0000107d0000013d0000001f01100039000000200400008a000000000141016f00000583040000410000058305a0009c000000000504001900000000050a40190000004005500210000000a401100039000005830610009c00000000010480190000006001100210000000000151019f000005830530009c0000000003048019000000c003300210000000000113019f00030000000a001d160615fc0000040f000000030a000029000000000301001900000060033002700000058303300197000000200430008c000000200400003900000000040340190000001f0540018f0000000506400272000010660000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000105e0000413d000000000705004b000010750000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000040110008a00000020011000c9000400000000001d0000000102200190000010960000613d0000001f02400039000000600420018f0000000002a40019000000000442004b00000000040000190000000104004039000005840520009c000010d80000213d0000000104400190000010d80000c13d000000400020043f000000200230008c000010940000413d00000000020a0433000005e303200197000000000332004b000010940000c13d000000200110011a000000000102001f000005ed0120009c00000000010000190000000101006039000000000001042d000000000100001900001608000104300000006001000039000000000203004b000010ad0000c13d0000000021010434000000000301004b000010de0000c13d000000400200043d000300000002001d000005b8010000410000000000120435000000040120003916060fdb0000040f000000030400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f00001608000104300000003f01300039000005ee02100197000000400100043d0000000002210019000000000412004b00000000040000190000000104004039000005840520009c000010d80000213d0000000104400190000010d80000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f0000000505500272000010c80000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000010c00000413d000000000604004b000010990000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000010990000013d0000058f0100004100000000001004350000004101000039000000040010043f000005900100004100001608000104300000058303000041000005830420009c0000000002038019000005830410009c000000000103801900000060011002100000004002200210000000000121019f00001608000104300006000000000002000300000004001d000200000003001d000100000001001d000005eb010000410000000000100439000400000002001d000000040020044300000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005ec011001c70000800202000039160616010000040f000000000301034f0000000101200190000011810000613d0000000101000039000000000203043b000000000202004b000011800000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a000390000000202000029000000000021043500000001010000290000058b011001970000002402a000390000000000120435000005ed0100004100000000001a04350000000401a0003900000000020004110000000000210435000000030600002900000000010604330000008402a000390000000000120435000000a402a00039000000000301004b0000111d0000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b000011160000413d00000000022100190000000000020435000000000300041400000004020000290000058b02200197000000040420008c0000112d0000c13d0000000001000415000000060110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000600000000001d0000116a0000013d0000001f01100039000000200400008a000000000141016f00000583040000410000058305a0009c000000000504001900000000050a40190000004005500210000000a401100039000005830610009c00000000010480190000006001100210000000000151019f000005830530009c0000000003048019000000c003300210000000000113019f00040000000a001d160615fc0000040f000000040a000029000000000301001900000060033002700000058303300197000000200430008c000000200400003900000000040340190000001f0540018f0000000506400272000011530000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000114b0000413d000000000705004b000011620000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000050110008a00000020011000c9000500000000001d0000000102200190000011830000613d0000001f02400039000000600420018f0000000002a40019000000000442004b00000000040000190000000104004039000005840520009c000011c50000213d0000000104400190000011c50000c13d000000400020043f000000200230008c000011810000413d00000000020a0433000005e303200197000000000332004b000011810000c13d000000200110011a000000000102001f000005ed0120009c00000000010000190000000101006039000000000001042d000000000100001900001608000104300000006001000039000000000203004b0000119a0000c13d0000000021010434000000000301004b000011cb0000c13d000000400200043d000400000002001d000005b8010000410000000000120435000000040120003916060fdb0000040f000000040400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f00001608000104300000003f01300039000005ee02100197000000400100043d0000000002210019000000000412004b00000000040000190000000104004039000005840520009c000011c50000213d0000000104400190000011c50000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f0000000505500272000011b50000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000011ad0000413d000000000604004b000011860000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000011860000013d0000058f0100004100000000001004350000004101000039000000040010043f000005900100004100001608000104300000058303000041000005830420009c0000000002038019000005830410009c000000000103801900000060011002100000004002200210000000000121019f00001608000104300001000000000002000100000002001d000000400200043d0000001403000039000000000332043600000060011002100000000000130435000005ef0120009c000012520000813d0000004001200039000000400010043f0000058301000041000005830430009c000000000301801900000040033002100000000002020433000005830420009c00000000020180190000006002200210000000000232019f0000000003000414000005830430009c0000000001034019000000c001100210000000000121019f0000058c011001c70000801002000039160616010000040f0000000102200190000012500000613d000000000101043b000005f00200004100000000002004350000001c0010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005f1011001c70000801002000039160616010000040f0000000102200190000012500000613d000000000101043b00000001050000290000000023050434000000410330008c000012580000c13d00000040035000390000000003030433000005f30430009c0000126a0000213d000000600450003900000000040404330000000002020433000000400500043d0000006006500039000000000036043500000040035000390000000000230435000000f802400270000000200350003900000000002304350000000000150435000000000000043500000583010000410000000002000414000005830320009c0000000002018019000005830350009c00000000010540190000004001100210000000c002200210000000000112019f000005f4011001c70000000102000039160616010000040f000000000301001900000060033002700000058303300197000000200430008c000000200400003900000000040340190000001f0540018f0000000504400272000012330000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b0000122c0000413d000000000605004b000012410000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f000300000001035500000001022001900000127f0000613d00000000010004330000058b02100198000012a50000613d0000000d02000039000000000202041a0000000802200270000000000112013f0000058b0110019800000000010000190000000101006039000000000001042d000000000100001900001608000104300000058f0100004100000000001004350000004101000039000000040010043f00000590010000410000160800010430000000400100043d0000004402100039000005f203000041000000000032043500000024021000390000001f030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000000400100043d0000006402100039000005f60300004100000000003204350000004402100039000005f7030000410000000000320435000000240210003900000022030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000000400200043d0000001f0430018f00000005033002720000128c0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000012840000413d000000000504004b0000129b0000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000583010000410000000103000031000005830430009c0000000003018019000005830420009c000000000102401900000040011002100000006002300210000000000112019f0000160800010430000000400100043d0000004402100039000005f5030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c700001608000104300001000000000002000100000002001d000000400200043d0000001403000039000000000332043600000060011002100000000000130435000005ef0120009c0000132e0000813d0000004001200039000000400010043f0000058301000041000005830430009c000000000301801900000040033002100000000002020433000005830420009c00000000020180190000006002200210000000000232019f0000000003000414000005830430009c0000000001034019000000c001100210000000000121019f0000058c011001c70000801002000039160616010000040f00000001022001900000132c0000613d000000000101043b000005f00200004100000000002004350000001c0010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005f1011001c70000801002000039160616010000040f00000001022001900000132c0000613d000000000101043b00000001050000290000000023050434000000410330008c000013340000c13d00000040035000390000000003030433000005f30430009c000013460000213d000000600450003900000000040404330000000002020433000000400500043d0000006006500039000000000036043500000040035000390000000000230435000000f802400270000000200350003900000000002304350000000000150435000000000000043500000583010000410000000002000414000005830320009c0000000002018019000005830350009c00000000010540190000004001100210000000c002200210000000000112019f000005f4011001c70000000102000039160616010000040f000000000301001900000060033002700000058303300197000000200430008c000000200400003900000000040340190000001f0540018f0000000504400272000013160000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b0000130f0000413d000000000605004b000013240000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f000300000001035500000001022001900000135b0000613d00000000010004330000058b02100198000013810000613d000000000001042d000000000100001900001608000104300000058f0100004100000000001004350000004101000039000000040010043f00000590010000410000160800010430000000400100043d0000004402100039000005f203000041000000000032043500000024021000390000001f030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000000400100043d0000006402100039000005f60300004100000000003204350000004402100039000005f7030000410000000000320435000000240210003900000022030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000000400200043d0000001f0430018f0000000503300272000013680000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000013600000413d000000000504004b000013770000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000583010000410000000103000031000005830430009c0000000003018019000005830420009c000000000102401900000040011002100000006002300210000000000112019f0000160800010430000000400100043d0000004402100039000005f5030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000c000000000002000c00000003001d000700000002001d000800000001001d000000400300043d0000000d01000039000000000101041a000000ff01100190000015a40000613d000005f80130009c000015b50000813d0000002001300039000000400010043f000600000003001d00000000000304350000000c0100002900000000001004350000000201000039000900000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a0000058b011001980000157d0000613d0000000002000411000b00000002001d000000000212004b000013fe0000613d00000000001004350000000501000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b0000000b020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a000000ff01100190000013fe0000c13d0000000c0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a0000058b011001980000157d0000613d0000000c0100002900000000001004350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a0000058b011001970000000b02000029000000000121004b000015e70000c13d0000000c0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a0000058b021001980000157d0000613d00000008010000290000058b01100197000000000112004b0000158f0000c13d00000007010000290000058b03100198000015bb0000613d000000000132004b000b00000002001d000a00000003001d000014c10000613d00000000002004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a000500000001001d000000000101004b000015e10000613d0000000c0100002900000000001004350000000701000039000400000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d0000000502000029000000010220008a000000000101043b000000000301041a000500000002001d000000000123004b000014930000613d000300000003001d0000000b0100002900000000001004350000000601000039000200000001001d000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b00000005020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a000100000001001d0000000b0100002900000000001004350000000201000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b00000003020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b0000000102000029000000000021041b00000000002004350000000401000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b0000000302000029000000000021041b0000000c01000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000001041b0000000b0100002900000000001004350000000601000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b00000005020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000001041b0000000b020000290000000a03000029000000000123004b000015030000613d0000000a0100002900000000001004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a000500000001001d0000000a0100002900000000001004350000000601000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b00000005020000290000000000200435000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b0000000c02000029000000000021041b00000000002004350000000701000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b0000000502000029000000000021041b0000000c0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000101041a0000058b011001980000000b020000290000157d0000613d000000000121004b0000158f0000c13d0000000c0100002900000000001004350000000401000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000201041a0000058a02200197000000000021041b0000000b0100002900000000001004350000000301000039000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000a01000029000000000010043500000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000c0100002900000000001004350000000901000029000000200010043f00000583010000410000000002000414000005830320009c0000000001024019000000c001100210000005bd011001c70000801002000039160616010000040f00000001022001900000157b0000613d000000000101043b000000000201041a0000058a022001970000000a06000029000000000262019f000000000021041b000000400100043d00000583020000410000000003000414000005830430009c0000000003028019000005830410009c00000000010280190000004001100210000000c002300210000000000121019f0000058c011001c70000800d020000390000000403000039000005c4040000410000000b050000290000000c07000029160615fc0000040f00000001012001900000157b0000613d000000080100002900000007020000290000000c030000290000000604000029160610e70000040f000000000101004b000015d00000613d000000000001042d00000000010000190000160800010430000000400100043d0000004402100039000005df030000410000000000320435000000240210003900000018030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005c8011001c70000160800010430000000400100043d0000006402100039000005c20300004100000000003204350000004402100039000005c3030000410000000000320435000000240210003900000025030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c700001608000104300000004401300039000005c702000041000000000021043500000024013000390000001d020000390000000000210435000005b80100004100000000001304350000000401300039000000200200003900000000002104350000058301000041000005830230009c00000000010340190000004001100210000005c8011001c700001608000104300000058f0100004100000000001004350000004101000039000000040010043f00000590010000410000160800010430000000400100043d0000006402100039000005c50300004100000000003204350000004402100039000005c6030000410000000000320435000000240210003900000024030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000000400200043d000c00000002001d000005b8010000410000000000120435000000040120003916060fdb0000040f0000000c0400002900000000014100490000058302000041000005830310009c0000000001028019000005830340009c000000000204401900000040022002100000006001100210000000000121019f00001608000104300000058f0100004100000000001004350000001101000039000000040010043f00000590010000410000160800010430000000400100043d0000006402100039000005be0300004100000000003204350000004402100039000005bf03000041000000000032043500000024021000390000002d030000390000000000320435000005b80200004100000000002104350000000402100039000000200300003900000000003204350000058302000041000005830310009c00000000010280190000004001100210000005b9011001c70000160800010430000015ff002104210000000102000039000000000001042d0000000002000019000000000001042d00001604002104230000000102000039000000000001042d0000000002000019000000000001042d0000160600000432000016070001042e000016080001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf506f7050696c6f7450617373000000000000000000000000000000000000000050505000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000002000000000000000000000000000000400000010000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e53e3a0400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000ab9ecbdf00000000000000000000000000000000000000000000000000000000b88d4fde000000000000000000000000000000000000000000000000000000008da5cb5a0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009cd23707000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000092ff0d310000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000771282f60000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000042966c67000000000000000000000000000000000000000000000000000000004f6ccce6000000000000000000000000000000000000000000000000000000004f6ccce7000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004a41d1ac0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000046dc1660000000000000000000000000000000000000000000000000000000006fdde0364647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c7000000000000000000000000000000000000000000000000ffffffffffffffdf020000000000000000000000000000000000004000000000000000000000000072206f7220617070726f766564000000000000000000000000000000000000004552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e650000000000000000000000000000000000000000000000010000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee36f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f727265637420ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef72657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f20616464506f70536f756c426f6e643a206e6f74207472616e7366657261626c6500000000000000000000000000000000000000000000640000000000000000000000006e206f6e65000000000000000000000000000000000000000000000000000000506f70536f756c426f6e643a2063616e27742068617665206d6f7265207468614552433732313a20746f6b656e20616c7265616479206d696e746564000000007265000000000000000000000000000000000000000000000000000000000000506f70536f756c426f6e643a20756e617661696c61626c65207369676e61747517307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c657200000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65727574206f6620626f756e64730000000000000000000000000000000000000000455243373231456e756d657261626c653a20676c6f62616c20696e646578206f506f70536f756c426f6e643a206e6f74206f776e206974000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee274206f6620626f756e6473000000000000000000000000000000000000000000455243373231456e756d657261626c653a206f776e657220696e646578206f756c6964206f776e657200000000000000000000000000000000000000000000004552433732313a2061646472657373207a65726f206973206e6f7420612076616b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000004552433732313a20617070726f76652063616c6c6572206973206e6f7420746f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92572000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e654552433732313a20696e76616c696420746f6b656e2049440000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5630000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffff0000000000000000000000000000000000000000000000000000000080ac58cd00000000000000000000000000000000000000000000000000000000780e9d630000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000063656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152651806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffc019457468657265756d205369676e6564204d6573736167653a0a333200000000020000000000000000000000000000000000003c00000000000000000000000045434453413a20696e76616c6964207369676e6174757265206c656e677468007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0000000000000000000000000000000000000008000000000000000000000000045434453413a20696e76616c6964207369676e61747572650000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c000000000000000000000000000000000000000000000000ffffffffffffffe000000000000000000000000000000000000000000000000000000000000000005b005bd74ad0bb6ed96654c8f691222ecf576254ca452974849abc6243d40c43
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f6433376f6f726e6e3033323779672e636c6f756466726f6e742e6e65742f646174612f6d657461646174612f6e66742f706f7070696c6f74706173732f506f7050696c6f74506173732e6a736f6e00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://d37oornn0327yg.cloudfront.net/data/metadata/nft/poppilotpass/PopPilotPass.json
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.