More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 50,858 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 59021209 | 11 days ago | IN | 0 ETH | 0.00000436 | ||||
Set Approval For... | 58783987 | 15 days ago | IN | 0 ETH | 0.00000423 | ||||
Set Approval For... | 58783845 | 15 days ago | IN | 0 ETH | 0.00000445 | ||||
Set Approval For... | 58009432 | 32 days ago | IN | 0 ETH | 0.00000441 | ||||
Set Approval For... | 52830268 | 109 days ago | IN | 0 ETH | 0.00000533 | ||||
Set Approval For... | 52607050 | 112 days ago | IN | 0 ETH | 0.00000586 | ||||
Set Approval For... | 51892538 | 121 days ago | IN | 0 ETH | 0.00000548 | ||||
Set Approval For... | 51891077 | 122 days ago | IN | 0 ETH | 0.00000477 | ||||
Set Approval For... | 51016575 | 132 days ago | IN | 0 ETH | 0.00000511 | ||||
Set Approval For... | 46323438 | 194 days ago | IN | 0 ETH | 0.00000589 | ||||
Set Approval For... | 46297696 | 194 days ago | IN | 0 ETH | 0.00000527 | ||||
Set Approval For... | 46293048 | 194 days ago | IN | 0 ETH | 0.00000595 | ||||
Set Approval For... | 46200963 | 195 days ago | IN | 0 ETH | 0.00000753 | ||||
Set Approval For... | 46161151 | 196 days ago | IN | 0 ETH | 0.00000535 | ||||
Safe Transfer Fr... | 45426594 | 205 days ago | IN | 0 ETH | 0.00000568 | ||||
Set Approval For... | 41526530 | 253 days ago | IN | 0 ETH | 0.00000486 | ||||
Set Approval For... | 41415160 | 254 days ago | IN | 0 ETH | 0.0000044 | ||||
Set Approval For... | 40820596 | 261 days ago | IN | 0 ETH | 0.0000044 | ||||
Set Approval For... | 37829848 | 297 days ago | IN | 0 ETH | 0.00000259 | ||||
Set Approval For... | 37185075 | 305 days ago | IN | 0 ETH | 0.00000303 | ||||
Set Approval For... | 37137657 | 305 days ago | IN | 0 ETH | 0.00000295 | ||||
Set Approval For... | 36568878 | 312 days ago | IN | 0 ETH | 0.00000351 | ||||
Set Approval For... | 36357624 | 315 days ago | IN | 0 ETH | 0.00000313 | ||||
Set Approval For... | 36357596 | 315 days ago | IN | 0 ETH | 0.00000313 | ||||
Set Approval For... | 36357028 | 315 days ago | IN | 0 ETH | 0.00000397 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20726903 | 504 days ago | Contract Creation | 0 ETH |
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:
NFTReward
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./SignatureVerifier.sol"; /** * NFTs can be minted by providing his address signed by the right address * Only one NFT can be minted per user */ contract NFTReward is ERC721, SignatureVerifier { using Counters for Counters.Counter; Counters.Counter private tokenIds; mapping(address => bool) public minters; string private baseTokenURI; constructor( string memory _name, string memory _symbol, string memory _tokenURI, address _signerAddress ) ERC721(_name, _symbol) SignatureVerifier(_signerAddress) { baseTokenURI = _tokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return baseTokenURI; } function mint(bytes memory signature) external isSignatureValid(msg.sender, signature) { require(minters[msg.sender] == false, "already minted"); minters[msg.sender] = true; tokenIds.increment(); uint256 newItemId = tokenIds.current(); _mint(msg.sender, newItemId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); 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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @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); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {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 a {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 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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// 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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 } 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"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' 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) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ 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. 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 if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } 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 (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // 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) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @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) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// 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: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; abstract contract SignatureVerifier is Ownable { using ECDSA for bytes32; address public masterSigner; string public constant messagePrefix = "rhinoZkSyncNFT"; constructor(address _masterSigner) { masterSigner = _masterSigner; } function updateSignerAddress(address _masterSignerAddress) external onlyOwner { masterSigner = _masterSignerAddress; } modifier isSignatureValid(address message, bytes memory signature) { bytes32 messagehash = keccak256(abi.encodePacked(messagePrefix, message)); address signerAddress = messagehash.toEthSignedMessageHash().recover( signature ); require(signerAddress == masterSigner, "invalid signature"); _; } }
{ "compilerPath": "", "experimental": { "dockerImage": "matterlabs/zksolc", "tag": "latest" }, "optimizer": { "enabled": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address","name":"_signerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"masterSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"messagePrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"_masterSignerAddress","type":"address"}],"name":"updateSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000451c01b96bddee1a055fb37181f406ab8edf6afa6f96609ddb38433cf1600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d2aeb826a8c42708de7af3a10d18f51074de7610000000000000000000000000000000000000000000000000000000000000001a7268696e6f2e6669207a6b53796e632050726f2048756e7465720000000000000000000000000000000000000000000000000000000000000000000000000006525a4b53504800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a726b68785458705876416e626f636f7379723579325848324572456165354142536a676b5a394e784541670000000000000000000000
Deployed Bytecode
0x0004000000000002000a00000000000200000000030100190000006003300270000003eb0430019700030000004103550002000000010355000003eb0030019d000100000000001f0000008001000039000000400010043f0000000101200190000000590000c13d0000000001000031000000040110008c000007210000413d0000000201000367000000000101043b000000e001100270000003f40210009c000000ae0000a13d000003f50210009c000000d40000a13d000003f60210009c000001350000213d000003fa0210009c000001d30000613d000003fb0210009c000002080000613d000003fc0110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b00000000001004350000000201000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000400700043d000000000101043b000000000101041a000003ee01100198000005200000c13d00000064017000390000041702000041000000000021043500000044017000390000041802000041000000000021043500000024017000390000002f02000039000000000021043500000413010000410000000000170435000000040170003900000020020000390000000000210435000003eb01000041000003eb0270009c0000000001074019000000400110021000000414011001c700000faa000104300000000001000416000000000101004b000007210000c13d00000000020000310000001f01200039000000200a00008a0000000004a1016f000000400100043d0000000003140019000000000443004b00000000040000190000000104004039000003ec0530009c000000a80000213d0000000104400190000000a80000c13d000000400030043f0000001f0320018f00000002040003670000000505200272000000770000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000006f0000413d000000000603004b000000860000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000003ed03000041000000800420008c00000000040000190000000004034019000003ed05200197000000000605004b000000000300a019000003ed0550009c000000000304c019000000000303004b000007210000c13d0000000034010434000003ec0540009c000007210000213d000000000221001900000000041400190000001f05400039000003ed06000041000000000725004b00000000070000190000000007068019000003ed05500197000003ed08200197000000000985004b0000000006008019000000000585013f000003ed0550009c00000000050700190000000005066019000000000505004b000007210000c13d0000000005040433000003ec0650009c0000040d0000a13d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa00010430000004030210009c000001050000213d0000040a0210009c000001830000a13d0000040b0210009c000002330000613d0000040c0210009c000002510000613d0000040d0110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d0000000701000039000000000101041a000003ee01100197000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e000003fd0210009c000001630000a13d000003fe0210009c000002910000613d000003ff0210009c000002b80000613d000004000110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d0000000104000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000001a40000c13d000000400100043d0000000002710436000000000505004b000005360000c13d000001000400008a000000000343016f0000000000320435000000000207004b00000020030000390000000003006019000005430000013d000004040210009c000001aa0000a13d000004050210009c000002da0000613d000004060210009c000002f80000613d000004070110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d0000000601000039000000000201041a000003ee032001970000000005000411000000000353004b000005040000c13d000003f002200197000000000021041b000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d020000390000000303000039000003f20400004100000000060000190fa80f9e0000040f0000000101200190000007210000613d000000000100001900000fa90001042e000003f70210009c000003250000613d000003f80210009c000003540000613d000003f90110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b000003ee0210009c000007210000213d00000000001004350000000901000039000000200010043f000000400200003900000000010000190fa8073a0000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e000004010210009c000003870000613d000004020110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d0000000601000039000000000101041a000003ee01100197000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000040e0210009c000003d30000613d0000040f0110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d000000000300041a000000010430019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000005150000613d000004220100004100000000001004350000002201000039000000040010043f000004230100004100000faa00010430000004080210009c000003fb0000613d000004090110009c000007210000c13d0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000600310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000002030003670000000401300370000000000101043b000003ee0210009c000007210000213d0000002402300370000000000202043b000003ee0420009c000007210000213d000000400400043d000004210540009c000000a80000213d0000004403300370000000000303043b0000002005400039000000400050043f00000000000404350fa808ee0000040f000000000100001900000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000400310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000002010003670000000402100370000000000202043b000a00000002001d000003ee0220009c000007210000213d0000002401100370000000000201043b000000000102004b0000000001000019000000010100c039000900000002001d000000000112004b000007210000c13d00000000020004110000000a01000029000000000112004b000005830000c13d000000400100043d00000044021000390000041a03000041000000000032043500000024021000390000001903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa000104300000000001000416000000000101004b000007210000c13d0000000002000031000000040120008a000003ed03000041000000800410008c00000000040000190000000004034019000003ed01100197000000000501004b000000000300a019000003ed0110009c00000000010400190000000001036019000000000101004b000007210000c13d00000002010003670000000403100370000000000303043b000a00000003001d000003ee0330009c000007210000213d0000002403100370000000000303043b000900000003001d000003ee0330009c000007210000213d0000006401100370000000000101043b000003ec0310009c000007210000213d00000004011000390fa807bf0000040f00000044020000390000000202200367000000000302043b00000000040100190000000a0100002900000009020000290fa808ee0000040f000000000100001900000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b0fa8089a0000040f000003ee01100197000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000400310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000002010003670000000402100370000000000202043b000a00000002001d000003ee0220009c000007210000213d0000002401100370000000000101043b000900000001001d00000000001004350000000201000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000000101043b000000000101041a000003ee02100198000005bb0000c13d000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b000a00000001001d000003ee0110009c000007210000213d0000000601000039000000000101041a000003ee011001970000000002000411000000000121004b000000000100001900000001010060390fa8082f0000040f0000000701000039000000000201041a000003f0022001970000000a03000029000000000232019f000000000021041b000000000100001900000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000000301004b00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d0fa8080d0000040f0000002002000039000000400300043d000a00000003001d00000000022304360fa8075d0000040f0000000a040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b0fa808590000040f000003ee01100197000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b000003ee0210009c000007210000213d000000000201004b000005550000c13d000000400100043d00000064021000390000041f03000041000000000032043500000044021000390000042003000041000000000032043500000024021000390000002a03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000400310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000002020003670000000401200370000000000101043b000003ee0310009c000007210000213d0000002402200370000000000202043b000a00000002001d000003ee0220009c000007210000213d00000000001004350000000501000039000000200010043f000000400200003900000000010000190fa8073a0000040f0000000a020000290fa8081e0000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b000003ee0210009c000007210000213d0000000602000039000000000202041a000003ee022001970000000003000411000000000232004b000005040000c13d000000000201004b000005d30000c13d000000400100043d00000064021000390000041103000041000000000032043500000044021000390000041203000041000000000032043500000024021000390000002603000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300000000001000416000000000101004b000007210000c13d0000000002000031000000040120008a000003ed03000041000000200410008c00000000040000190000000004034019000003ed01100197000000000501004b000000000300a019000003ed0110009c00000000010400190000000001036019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b000003ec0310009c000007210000213d00000004011000390fa807bf0000040f000800000001001d0fa8080d0000040f0000000013010434000700000003001d000000400200043d000900000002001d0000002002200039000a00000002001d0fa807500000040f000000000100041100000060011002100000000a0200002900000007030000290000000002320019000000000012043500000014023000390000000901000029000000000021043500000034023000390fa807ac0000040f000000090100002900000000020104330000000a010000290fa8073a0000040f0000041d02000041000000400400043d000900000004001d0000002003400039000a00000003001d00000000002304350000003c0240003900000000001204350000003c01000039000000000014043500000000010400190fa807a10000040f000000090100002900000000020104330000000a010000290fa8073a0000040f00000008020000290fa80e540000040f0000000702000039000000000202041a000000000112013f000003ee01100198000000000100001900000001010060390fa80d840000040f0fa80d990000040f000000000100001900000fa90001042e0000000001000416000000000101004b000007210000c13d000000040100008a0000000001100031000003ed02000041000000200310008c00000000030000190000000003024019000003ed01100197000000000401004b000000000200a019000003ed0110009c00000000010300190000000001026019000000000101004b000007210000c13d00000004010000390000000201100367000000000101043b0000042902100197000000000212004b000007210000c13d00000001020000390000042a0310009c000003f20000613d0000042b0310009c000003f20000613d0000042c0110009c00000000020000190000000102006039000000010120018f000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000000001000416000000000101004b000007210000c13d00000000010000310fa807860000040f000a00000001001d000900000002001d0000000002030019000800000002001d00000000010004110fa80aa90000040f0fa808d60000040f0000000a01000029000000090200002900000008030000290fa80b600000040f000000000100001900000fa90001042e0000003f065000390000000006a6016f000000400900043d0000000006690019000000000796004b00000000070000190000000107004039000003ec0860009c000000a80000213d0000000107700190000000a80000c13d000000400060043f000a00000009001d0000000006590436000900000006001d00000020065000390000000007460019000000000727004b000007210000213d000000000705004b0000000a0b0000290000042b0000613d000000000700001900000020077000390000000008b70019000000000947001900000000090904330000000000980435000000000857004b000004240000413d00000000046b001900000000000404350000000003030433000003ec0430009c000007210000213d00000000031300190000001f04300039000003ed05000041000000000624004b00000000060000190000000006058019000003ed04400197000003ed07200197000000000874004b0000000005008019000000000474013f000003ed0440009c00000000040600190000000004056019000000000404004b000007210000c13d0000000004030433000003ec0540009c000000a80000213d0000003f054000390000000005a5016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000003ec0750009c000000a80000213d0000000106600190000000a80000c13d000000400050043f000800000008001d0000000005480436000600000005001d00000020054000390000000006350019000000000626004b000007210000213d00070000000a001d000000000604004b0000000809000029000004620000613d000000000600001900000020066000390000000007960019000000000836001900000000080804330000000000870435000000000746004b0000045b0000413d0000000003590019000000000003043500000040031000390000000003030433000003ec0430009c0000000709000029000007210000213d00000000031300190000001f04300039000003ed05000041000000000624004b00000000060000190000000006058019000003ed04400197000003ed07200197000000000874004b0000000005008019000000000474013f000003ed0440009c00000000040600190000000004056019000000000404004b000007210000c13d0000000004030433000003ec0540009c000000a80000213d0000003f05400039000000000595016f000000400600043d0000000005560019000500000006001d000000000665004b00000000060000190000000106004039000003ec0750009c000000a80000213d0000000106600190000000a80000c13d000000400050043f00000005050000290000000005450436000400000005001d00000020054000390000000006350019000000000226004b000007210000213d000000000204004b00000005080000290000049b0000613d000000000200001900000020022000390000000006820019000000000732001900000000070704330000000000760435000000000642004b000004940000413d0000000002580019000000000002043500000060011000390000000001010433000003ee02100197000300000002001d000003ee0110009c000007210000213d0000000a010000290000000001010433000200000001001d000003ec0110009c000000a80000213d000000000100041a000000010210019000000001011002700000007f0310018f0000000001036019000100000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000001a40000c13d0000000101000029000000200110008c000004d30000413d0000000000000435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d00000002030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000004d30000813d000000000002041b0000000102200039000000000312004b000004cf0000413d00000002010000290000001f0110008c000006200000a13d0000000000000435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f00000001022001900000000702000029000007210000613d000000020300002900000000032301700000002002000039000000000101043b0000000a06000029000004f20000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000004ea0000413d0000000204000029000000000343004b000005000000813d00000002030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000a0400002900000000024200190000000002020433000000000232016f000000000021041b0000000201000029000000010110021000000001011001bf0000062e0000013d000000400100043d00000044021000390000041e0300004100000000003204350000041302000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa00010430000000400100043d0000000002710436000000000404004b000005640000c13d000001000400008a000000000343016f0000000000320435000000000207004b00000020030000390000000003006019000005710000013d0000000a04000039000000000304041a000000010530019000000001013002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000223013f0000000102200190000001a40000c13d0000000002170436000000000505004b000005d60000c13d000001000400008a000000000343016f0000000000320435000000000101004b00000020030000390000000003006019000005e30000013d0000000000400435000000000307004b0000000003000019000005430000613d0000041c0400004100000000030000190000000005230019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000053c0000413d0000002002300039000a00000001001d0fa807ac0000040f000000400100043d000900000001001d0000000a020000290fa807700000040f00000009040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000fa90001042e00000000001004350000000301000039000000200010043f000000400200003900000000010000190fa8073a0000040f000000000101041a000000400200043d0000000000120435000003eb01000041000003eb0320009c0000000001024019000000400110021000000410011001c700000fa90001042e0000000000000435000000000307004b0000000003000019000005710000613d000004280400004100000000030000190000000005230019000000000604041a000000000065043500000001044000390000002003300039000000000573004b0000056a0000413d0000002002300039000a00000001001d0fa807ac0000040f000000400100043d000900000001001d0000000a020000290fa807700000040f00000009040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000fa90001042e000800000002001d00000000002004350000000501000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000000101043b0000000a020000290000000000200435000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000000101043b000000000201041a000001000300008a000000000232016f0000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000003eb020000410000000003000414000003eb0430009c0000000003028019000003eb0410009c00000000010280190000004001100210000000c002300210000000000112019f000003ef011001c70000800d020000390000000303000039000004190400004100000008050000290000000a060000290fa80f9e0000040f0000000101200190000001330000c13d000007210000013d0000000a01000029000000000121004b000005f60000c13d000000400100043d00000064021000390000042403000041000000000032043500000044021000390000042503000041000000000032043500000024021000390000002103000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300fa808430000040f000000000100001900000fa90001042e0000000000400435000000000301004b0000000003000019000005e30000613d000004160400004100000000030000190000000005230019000000000604041a000000000065043500000001044000390000002003300039000000000513004b000005dc0000413d00000020023000390000000001070019000a00000007001d0fa807ac0000040f000000400100043d000900000001001d0000000a020000290fa807700000040f00000009040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000fa90001042e00000001010000390000000003000411000800000003001d000000000323004b0000061a0000613d00000000002004350000000501000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000000101043b0000000802000029000003ee022001970000000000200435000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d000000000101043b000000000101041a000000ff0110018f0fa808820000040f0000000a0100002900000009020000290fa80c460000040f000000000100001900000fa90001042e0000000201000029000000000101004b0000000001000019000006260000613d0000000901000029000000000101043300000002040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f000000000010041b00000008010000290000000001010433000a00000001001d000003ec0110009c000000a80000213d0000000101000039000200000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000900000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000001a40000c13d0000000901000029000000200110008c000006620000413d00000001010000390000000000100435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000009010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000006620000813d000000000002041b0000000102200039000000000312004b0000065e0000413d0000000a010000290000001f0110008c000006940000a13d00000001010000390000000000100435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f00000001022001900000000702000029000007210000613d0000000a0300002900000000032301700000002002000039000000000101043b0000000806000029000006820000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000067a0000413d0000000a04000029000000000343004b000006900000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000080400002900000000024200190000000002020433000000000232016f000000000021041b0000000a01000029000000010110021000000001011001bf000006a20000013d0000000a01000029000000000101004b00000000010000190000069a0000613d000000060100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000202000029000000000012041b0000000601000039000000000201041a000003f0032001970000000006000411000000000363019f000000000031041b000003eb010000410000000003000414000003eb0430009c0000000001034019000000c001100210000003f1011001c7000003ee052001970000800d020000390000000303000039000003f2040000410fa80f9e0000040f0000000101200190000007210000613d0000000701000039000000000201041a000003f0022001970000000303000029000000000232019f000000000021041b00000005010000290000000001010433000a00000001001d000003ec0110009c000000a80000213d0000000a01000039000900000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000800000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000001a40000c13d0000000801000029000000200110008c000006f00000413d00000009010000290000000000100435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f0000000102200190000007210000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000008010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000006f00000813d000000000002041b0000000102200039000000000312004b000006ec0000413d0000000a010000290000001f0110008c000007230000a13d00000009010000290000000000100435000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003ef011001c700008010020000390fa80fa30000040f00000001022001900000000702000029000007210000613d0000000a0300002900000000032301700000002002000039000000000101043b0000000506000029000007100000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000007080000413d0000000a04000029000000000343004b0000071e0000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000050400002900000000024200190000000002020433000000000232016f000000000021041b0000000a010000290000000101100210000007310000013d000000000100001900000faa000104300000000a01000029000000000101004b0000000001000019000007290000613d000000040100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000200000002001d0000000202000029000000000121019f0000000902000029000000000012041b000000200100003900000100001004430000012000000443000003f30100004100000fa90001042e000003eb03000041000003eb0410009c00000000010380190000004001100210000003eb0420009c00000000020380190000006002200210000000000112019f0000000002000414000003eb0420009c0000000002038019000000c002200210000000000112019f000003f1011001c700008010020000390fa80fa30000040f00000001022001900000074e0000613d000000000101043b000000000001042d000000000100001900000faa00010430000000000403004b0000075a0000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000534004b000007530000413d00000000012300190000000000010435000000000001042d00000000030104330000000002320436000000000403004b000007690000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b000007620000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b0000077f0000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b000007780000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d000000040110008a000003ed020000410000005f0310008c00000000030000190000000003022019000003ed01100197000000000401004b0000000002008019000003ed0110009c00000000010300190000000001026019000000000101004b0000079f0000613d00000002030003670000000401300370000000000101043b000003ee0210009c0000079f0000213d0000002402300370000000000202043b000003ee0420009c0000079f0000213d0000004403300370000000000303043b000000000001042d000000000100001900000faa000104300000042d0210009c000007a60000813d0000006001100039000000400010043f000000000001042d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000003ec0310009c000007b90000213d0000000102200190000007b90000c13d000000400010043f000000000001042d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa0001043000000000030100190000001f01300039000003ed04000041000000000521004b00000000050000190000000005044019000003ed06200197000003ed01100197000000000761004b000000000400a019000000000161013f000003ed0110009c00000000010500190000000001046019000000000101004b0000080b0000613d0000000201300367000000000401043b0000042e0140009c000008050000813d0000003f01400039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000003ec0750009c000008050000213d0000000106600190000008050000c13d000000400050043f000000000541043600000020033000390000000006430019000000000226004b0000080b0000213d0000001f0240018f00000002033003670000000506400272000007f20000613d000000000700001900000005087002100000000009850019000000000883034f000000000808043b00000000008904350000000107700039000000000867004b000007ea0000413d000000000702004b000008010000613d0000000506600210000000000363034f00000000056500190000000302200210000000000605043300000000062601cf000000000626022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000262019f0000000000250435000000000214001900000020022000390000000000020435000000000001042d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa00010430000000000100001900000faa00010430000000400100043d0000042f0210009c000008180000813d0000004002100039000000400020043f0000002002100039000004300300004100000000003204350000000e020000390000000000210435000000000001042d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa00010430000003ee022001970000000000200435000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f00000001022001900000082d0000613d000000000101043b000000000001042d000000000100001900000faa00010430000000000101004b000008320000613d000000000001042d000000400100043d00000044021000390000041e0300004100000000003204350000041302000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa00010430000003ee061001970000000601000039000000000201041a000003f003200197000000000363019f000000000031041b000003eb010000410000000003000414000003eb0430009c0000000001034019000000c001100210000003f1011001c7000003ee052001970000800d020000390000000303000039000003f2040000410fa80f9e0000040f0000000101200190000008570000613d000000000001042d000000000100001900000faa0001043000000000001004350000000201000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f00000001022001900000086b0000613d000000000101043b000000000101041a000003ee011001980000086d0000613d000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000000101004b000008850000613d000000000001042d000000400100043d00000064021000390000043103000041000000000032043500000044021000390000043203000041000000000032043500000024021000390000003803000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300001000000000002000100000001001d00000000001004350000000201000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000008bf0000613d000000000101043b000000000101041a000003ee01100198000008c10000613d000000010100002900000000001004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f0000000102200190000008bf0000613d000000000101043b000000000101041a000003ee01100197000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000043303000041000000000032043500000044021000390000043403000041000000000032043500000024021000390000002c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000000101004b000008d90000613d000000000001042d000000400100043d00000064021000390000043503000041000000000032043500000044021000390000043603000041000000000032043500000024021000390000003103000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300008000000000002000200000004001d000400000002001d000500000001001d000800000003001d00000000003004350000000201000039000700000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee0110019800000a220000613d000000080100002900000000001004350000000701000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee0310019800000a070000613d0000000001000411000003ee02100197000000000132004b000009630000613d000300000003001d000600000002001d000000080100002900000000001004350000000701000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee0110019800000a720000613d000000080100002900000000001004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee011001970000000602000029000000000121004b0000000301000029000009630000613d00000000001004350000000501000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b00000006020000290000000000200435000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000000ff0110019000000a870000613d000000080100002900000000001004350000000701000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee01100198000600000001001d00000a070000613d0000000501000029000003ee011001970000000602000029000000000112004b00000a370000c13d0000000401000029000003ee01100198000300000001001d00000a4c0000613d000000080100002900000000001004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000201041a000003f002200197000000000021041b000000080100002900000000001004350000000701000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000101041a000003ee0510019800000a070000613d000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d0200003900000004030000390000043904000041000000000600001900000008070000290fa80f9e0000040f000000010120019000000a050000613d000000060100002900000000001004350000000301000039000100000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000201041a000000000302004b00000a1c0000613d000000010220008a000000000021041b000000030100002900000000001004350000000101000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000201041a000000010300008a000000000332004b00000a1c0000613d0000000102200039000000000021041b000000080100002900000000001004350000000701000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000a050000613d000000000101043b000000000201041a000003f0022001970000000306000029000000000262019f000000000021041b000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d0200003900000004030000390000043a04000041000000060500002900000008070000290fa80f9e0000040f000000010120019000000a050000613d00000005010000290000000402000029000000080300002900000002040000290fa80c960000040f000000000101004b00000a610000613d000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000004220100004100000000001004350000001101000039000000040010043f000004230100004100000faa00010430000000400100043d00000064021000390000043303000041000000000032043500000044021000390000043d03000041000000000032043500000024021000390000002c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000043703000041000000000032043500000044021000390000043803000041000000000032043500000024021000390000002503000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000043b03000041000000000032043500000044021000390000043c03000041000000000032043500000024021000390000002403000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400200043d000800000002001d0000041301000041000000000012043500000004012000390fa80a9c0000040f00000008040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa00010430000000400100043d00000064021000390000043303000041000000000032043500000044021000390000043403000041000000000032043500000024021000390000002c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000043503000041000000000032043500000044021000390000043603000041000000000032043500000024021000390000003103000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa0001043000000060021000390000043e03000041000000000032043500000040021000390000043f030000410000000000320435000000200210003900000032030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0005000000000002000300000001001d000500000002001d00000000002004350000000201000039000400000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b000000000101041a000003ee0110019800000b210000613d000000050100002900000000001004350000000401000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b000000000101041a000003ee0310019800000b360000613d00000001010000390000000302000029000003ee02200197000000000432004b00000b1e0000613d000100000001001d000200000003001d000300000002001d000000050100002900000000001004350000000401000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b000000000101041a000003ee0110019800000b4b0000613d000000050100002900000000001004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b000000000101041a000003ee011001970000000302000029000000000121004b0000000202000029000000010100002900000b1e0000613d00000000002004350000000501000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b00000003020000290000000000200435000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000b1f0000613d000000000101043b000000000101041a000000ff0110018f000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000043303000041000000000032043500000044021000390000043d03000041000000000032043500000024021000390000002c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000043303000041000000000032043500000044021000390000043403000041000000000032043500000024021000390000002c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300005000000000002000100000002001d000200000001001d000500000003001d00000000003004350000000201000039000300000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000101041a000003ee01100198000400000001001d00000c010000613d0000000201000029000003ee011001970000000402000029000000000112004b00000c1c0000c13d0000000101000029000003ee01100198000200000001001d00000c310000613d000000050100002900000000001004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000201041a000003f002200197000000000021041b000000050100002900000000001004350000000301000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000101041a000003ee0510019800000c010000613d000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d0200003900000004030000390000043904000041000000000600001900000005070000290fa80f9e0000040f000000010120019000000bff0000613d000000040100002900000000001004350000000301000039000100000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000201041a000000000302004b00000c160000613d000000010220008a000000000021041b000000020100002900000000001004350000000101000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000201041a000000010300008a000000000332004b00000c160000613d0000000102200039000000000021041b000000050100002900000000001004350000000301000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000bff0000613d000000000101043b000000000201041a000003f0022001970000000206000029000000000262019f000000000021041b000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d0200003900000004030000390000043a04000041000000040500002900000005070000290fa80f9e0000040f000000010120019000000bff0000613d000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000004220100004100000000001004350000001101000039000000040010043f000004230100004100000faa00010430000000400100043d00000064021000390000043703000041000000000032043500000044021000390000043803000041000000000032043500000024021000390000002503000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa00010430000000400100043d00000064021000390000043b03000041000000000032043500000044021000390000043c03000041000000000032043500000024021000390000002403000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300002000000000002000100000001001d000200000002001d00000000002004350000000401000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000c7f0000613d0000000102000029000003ee03200197000000000101043b000000000201041a000003f002200197000100000003001d000000000232019f000000000021041b000000020100002900000000001004350000000201000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000c7f0000613d0000000207000029000000000101043b000000000101041a000003ee0510019800000c810000613d000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d020000390000000403000039000004390400004100000001060000290fa80f9e0000040f000000010120019000000c7f0000613d000000000001042d000000000100001900000faa00010430000000400100043d00000064021000390000042603000041000000000032043500000044021000390000042703000041000000000032043500000024021000390000002903000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c0000000001028019000000400110021000000414011001c700000faa000104300006000000000002000300000004001d000200000003001d000100000001001d00000440010000410000000000100439000400000002001d0000000400200443000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000441011001c700008002020000390fa80fa30000040f000000000301034f000000010120019000000d310000613d0000000101000039000000000203043b000000000202004b00000d300000613d000000400a00043d0000006401a00039000000800200003900000000002104350000004401a00039000000020200002900000000002104350000000101000029000003ee011001970000002402a000390000000000120435000004420100004100000000001a04350000000001000411000003ee011001970000000402a000390000000000120435000000030600002900000000010604330000008402a000390000000000120435000000a402a00039000000000301004b00000ccd0000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b00000cc60000413d0000000002210019000000000002043500000000030004140000000402000029000003ee02200197000000040420008c00000cdd0000c13d0000000001000415000000060110008a00000020011000c90000000103000031000000200230008c00000020040000390000000004034019000600000000001d00000d1a0000013d0000001f01100039000000200400008a000000000141016f000003eb04000041000003eb05a0009c000000000504001900000000050a40190000004005500210000000a401100039000003eb0610009c00000000010480190000006001100210000000000151019f000003eb0530009c0000000003048019000000c003300210000000000113019f00040000000a001d0fa80f9e0000040f000000040a00002900000000030100190000006003300270000003eb03300197000000200430008c000000200400003900000000040340190000001f0540018f000000050640027200000d030000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b00000cfb0000413d000000000705004b00000d120000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000001000415000000050110008a00000020011000c9000500000000001d000000010220019000000d330000613d0000001f02400039000000600420018f0000000002a40019000000000442004b00000000040000190000000104004039000003ec0520009c00000d750000213d000000010440019000000d750000c13d000000400020043f000000200230008c00000d310000413d00000000020a04330000042903200197000000000323004b00000d310000c13d000000200110011a000000000102001f000004420120009c00000000010000190000000101006039000000000001042d000000000100001900000faa000104300000006001000039000000000203004b00000d4a0000c13d0000000021010434000000000301004b00000d7b0000c13d000000400200043d000400000002001d0000041301000041000000000012043500000004012000390fa80a9c0000040f00000004040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa000104300000003f013000390000044302100197000000400100043d0000000002210019000000000412004b00000000040000190000000104004039000003ec0520009c00000d750000213d000000010440019000000d750000c13d000000400020043f0000000002310436000000030300036700000001050000310000001f0450018f000000050550027200000d650000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000d5d0000413d000000000604004b00000d360000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000032043500000d360000013d000004220100004100000000001004350000004101000039000000040010043f000004230100004100000faa00010430000003eb03000041000003eb0420009c0000000002038019000003eb0410009c000000000103801900000060011002100000004002200210000000000121019f00000faa00010430000000000101004b00000d870000613d000000000001042d000000400100043d00000044021000390000044403000041000000000032043500000024021000390000001103000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa0001043000040000000000020000000001000411000400000001001d00000000001004350000000901000039000300000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000e170000613d000000000101043b000000000101041a000000ff0110019000000e190000c13d000000040100002900000000001004350000000301000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000e170000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b0000000801000039000000000201041a0000000102200039000000000021041b0000000401000029000000000101004b00000e2b0000613d000300000002001d00000000002004350000000201000039000200000001001d000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000e170000613d000000000101043b000000000101041a000003ee0110019800000e3c0000c13d0000000401000029000003ee01100197000100000001001d00000000001004350000000301000039000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000e170000613d000000000101043b000000000201041a000000010300008a000000000332004b00000e4e0000613d0000000102200039000000000021041b000000030100002900000000001004350000000201000029000000200010043f000003eb010000410000000002000414000003eb0320009c0000000001024019000000c00110021000000415011001c700008010020000390fa80fa30000040f000000010220019000000e170000613d000000000101043b000000000201041a000003f0022001970000000103000029000000000232019f000000000021041b000003eb010000410000000002000414000003eb0320009c0000000001024019000000c001100210000003f1011001c70000800d0200003900000004030000390000043a040000410000000005000019000000040600002900000003070000290fa80f9e0000040f000000010120019000000e170000613d000000000001042d000000000100001900000faa00010430000000400100043d00000044021000390000044503000041000000000032043500000024021000390000000e03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa00010430000000400100043d0000004402100039000004470300004100000000003204350000041302000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa00010430000000400100043d00000044021000390000044603000041000000000032043500000024021000390000001c03000039000000000032043500000413020000410000000000210435000000040210003900000020030000390000000000320435000003eb02000041000003eb0310009c000000000102801900000040011002100000041b011001c700000faa00010430000004220100004100000000001004350000001101000039000000040010043f000004230100004100000faa0001043000010000000000020000000034020434000000410540008c00000ec10000c13d00000000030304330000006004200039000000000404043300000040022000390000000002020433000004490520009c00000f070000213d000000f804400270000000400600043d0000001b0540008a000000010550008c00000f290000213d00000060056000390000000000250435000000400260003900000000003204350000002002600039000000000042043500000000001604350000000000000435000003eb010000410000000002000414000003eb0320009c0000000002018019000003eb0360009c00000000010640190000004001100210000000c002200210000000000112019f0000044a011001c700000001020000390fa80fa30000040f00000000030100190000006003300270000003eb03300197000000200430008c000000200400003900000000040340190000001f0540018f000000050440027200000e890000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b00000e820000413d000000000605004b00000e970000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f0003000000010355000000010220019000000f030000c13d000000400200043d0000001f0430018f000000050330027200000ea80000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00000ea00000413d000000000504004b00000eb70000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000003eb010000410000000103000031000003eb0430009c0000000003018019000003eb0420009c000000000102401900000040011002100000006002300210000000000112019f00000faa00010430000000400440008c00000f390000c13d000000400220003900000000020204330000044804200197000004490540009c00000f070000213d0000000003030433000000400500043d0000006006500039000000000046043500000040045000390000000000340435000000ff022002700000001b022000390000002003500039000000000023043500000000001504350000000000000435000003eb010000410000000002000414000003eb0320009c0000000002018019000003eb0350009c00000000010540190000004001100210000000c002200210000000000112019f0000044a011001c700000001020000390fa80fa30000040f00000000030100190000006003300270000003eb03300197000000200430008c000000200400003900000000040340190000001f0540018f000000050440027200000ef10000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b00000eea0000413d000000000605004b00000eff0000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f0003000000010355000000010220019000000f4a0000613d0000000001000433000003ee0210019800000f180000613d000000000001042d000000400200043d000100000002001d0000041301000041000000000012043500000004012000390fa80f7d0000040f00000001040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa00010430000000400200043d000100000002001d0000041301000041000000000012043500000004012000390fa80f940000040f00000001040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa00010430000004130100004100000000001604350000000401600039000100000006001d0fa80f700000040f00000001040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa00010430000000400200043d000100000002001d0000041301000041000000000012043500000004012000390fa80f8a0000040f00000001040000290000000001410049000003eb02000041000003eb0310009c0000000001028019000003eb0340009c000000000204401900000040022002100000006001100210000000000121019f00000faa00010430000000400200043d0000001f0430018f000000050330027200000f570000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00000f4f0000413d000000000504004b00000f660000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000003eb010000410000000103000031000003eb0430009c0000000003018019000003eb0420009c000000000102401900000040011002100000006002300210000000000112019f00000faa0001043000000060021000390000044b03000041000000000032043500000040021000390000044c030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000060021000390000044b03000041000000000032043500000040021000390000044d030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000040021000390000044e03000041000000000032043500000020021000390000001f030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00000040021000390000044f030000410000000000320435000000200210003900000018030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00000fa1002104210000000102000039000000000001042d0000000002000019000000000001042d00000fa6002104230000000102000039000000000001042d0000000002000019000000000001042d00000fa80000043200000fa90001042e00000faa00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000007ba0e2e600000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f46eccc400000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd000000000000000000000000000000000000000000000000000000008fa2a9ef000000000000000000000000000000000000000000000000000000008fa2a9f00000000000000000000000000000000000000000000000000000000091da2b3d0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000007ba0e2e7000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000006352211d000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000042842e0e00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000020a3cd010000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000000200000000000000000000000000000000000040000000000000000000000000c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a86e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c314552433732313a20617070726f766520746f2063616c6c6572000000000000000000000000000000000000000000000000000064000000000000000000000000b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf619457468657265756d205369676e6564204d6573736167653a0a3332000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572726f2061646472657373000000000000000000000000000000000000000000004552433732313a2062616c616e636520717565727920666f7220746865207a65000000000000000000000000000000000000000000000000ffffffffffffffdf4e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000072000000000000000000000000000000000000000000000000000000000000004552433732313a20617070726f76616c20746f2063757272656e74206f776e65656e7420746f6b656e00000000000000000000000000000000000000000000004552433732313a206f776e657220717565727920666f72206e6f6e6578697374290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563ffffffff0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa00000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc07268696e6f5a6b53796e634e46540000000000000000000000000000000000006e6572206e6f7220617070726f76656420666f7220616c6c00000000000000004552433732313a20617070726f76652063616c6c6572206973206e6f74206f77697374656e7420746f6b656e00000000000000000000000000000000000000004552433732313a20617070726f76656420717565727920666f72206e6f6e6578776e6572206e6f7220617070726f7665640000000000000000000000000000004552433732313a207472616e736665722063616c6c6572206973206e6f74206f6f776e65720000000000000000000000000000000000000000000000000000004552433732313a207472616e736665722066726f6d20696e636f7272656374208c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef72657373000000000000000000000000000000000000000000000000000000004552433732313a207472616e7366657220746f20746865207a65726f206164644552433732313a206f70657261746f7220717565727920666f72206e6f6e657863656976657220696d706c656d656e74657200000000000000000000000000004552433732313a207472616e7366657220746f206e6f6e2045524337323152651806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe0696e76616c6964207369676e6174757265000000000000000000000000000000616c7265616479206d696e7465640000000000000000000000000000000000004552433732313a20746f6b656e20616c7265616479206d696e746564000000004552433732313a206d696e7420746f20746865207a65726f20616464726573737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a00000000000000000000000000000000000000080000000000000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c45434453413a20696e76616c6964207369676e6174757265202773272076616c45434453413a20696e76616c6964207369676e6174757265206c656e6774680045434453413a20696e76616c6964207369676e617475726500000000000000001273c1896ca1827782783d7f435a26a050eea03b882568210d0aa3814c3ee2a1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d2aeb826a8c42708de7af3a10d18f51074de7610000000000000000000000000000000000000000000000000000000000000001a7268696e6f2e6669207a6b53796e632050726f2048756e7465720000000000000000000000000000000000000000000000000000000000000000000000000006525a4b53504800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a726b68785458705876416e626f636f7379723579325848324572456165354142536a676b5a394e784541670000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): rhino.fi zkSync Pro Hunter
Arg [1] : _symbol (string): RZKSPH
Arg [2] : _tokenURI (string): ipfs://QmZrkhxTXpXvAnbocosyr5y2XH2ErEae5ABSjgkZ9NxEAg
Arg [3] : _signerAddress (address): 0xD2aEB826A8c42708dE7aF3A10D18F51074dE7610
-----Encoded View---------------
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.