Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 537 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 81694932 | 94 days ago | IN | 0 ETH | 0.00000031 | ||||
Set Approval For... | 80935439 | 122 days ago | IN | 0 ETH | 0.00000027 | ||||
Set Approval For... | 78337006 | 185 days ago | IN | 0 ETH | 0.00000038 | ||||
Set Approval For... | 78336645 | 185 days ago | IN | 0 ETH | 0.00000039 | ||||
Set Approval For... | 74317843 | 279 days ago | IN | 0 ETH | 0.00000029 | ||||
Set Approval For... | 73747961 | 296 days ago | IN | 0 ETH | 0.00000026 | ||||
Set Approval For... | 73730994 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73730992 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73728710 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73728705 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73727310 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73727305 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73725579 | 297 days ago | IN | 0 ETH | 0.00000025 | ||||
Set Approval For... | 73095970 | 315 days ago | IN | 0 ETH | 0.00000045 | ||||
Set Approval For... | 72512330 | 325 days ago | IN | 0 ETH | 0.00000026 | ||||
Set Approval For... | 69451944 | 346 days ago | IN | 0 ETH | 0.00000296 | ||||
Set Approval For... | 69451894 | 346 days ago | IN | 0 ETH | 0.00000277 | ||||
Set Approval For... | 68765740 | 350 days ago | IN | 0 ETH | 0.00000038 | ||||
Set Approval For... | 67278048 | 364 days ago | IN | 0 ETH | 0.00000073 | ||||
Set Approval For... | 66627822 | 367 days ago | IN | 0 ETH | 0.00000047 | ||||
Set Approval For... | 63431811 | 381 days ago | IN | 0 ETH | 0.00000144 | ||||
Set Approval For... | 63431158 | 381 days ago | IN | 0 ETH | 0.0000016 | ||||
Set Approval For... | 55739395 | 410 days ago | IN | 0 ETH | 0.00000063 | ||||
Set Approval For... | 55011165 | 412 days ago | IN | 0 ETH | 0.00000054 | ||||
Set Approval For... | 54932722 | 413 days ago | IN | 0 ETH | 0.00000032 |
Loading...
Loading
Contract Name:
NovaCryptoPunks3D
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Nova.Arbiscan.io on 2022-12-12 */ // 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); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.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); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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; } } /** * @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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _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 {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev 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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.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); } } // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } contract NovaCryptoPunks3D is ERC721Enumerable, Ownable { using Strings for string; uint public constant MAX_TOKENS = 5000; uint public PRESALE_LIMIT = 1000; uint public presaleTokensSold = 0; uint public constant NUMBER_RESERVED_TOKENS = 2000; uint256 public PRICE = 500000000000000000; //0.005 eth uint public perAddressLimit = 5000; bool public saleIsActive = false; bool public preSaleIsActive = false; bool public whitelist = false; bool public revealed = false; uint public reservedTokensMinted = 0; string private _baseTokenURI; string public notRevealedUri; bytes32 root; mapping(address => uint) public addressMintedBalance; address payable private devguy = payable(0x42526abD3f010DdD05A4Ee32c58AD63c4c2C6D28); constructor() ERC721("3D Nova CryptoPunks", "3DNPUNK") {} function mintToken(uint256 amount, bytes32[] memory proof) external payable { require(!whitelist || verify(proof), "Address not whitelisted"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(preSaleIsActive || saleIsActive, "Sale must be active to mint"); require(amount > 0 && amount <= 10, "Max 10 NFTs per transaction"); require(!preSaleIsActive || presaleTokensSold + amount <= PRESALE_LIMIT, "Purchase would exceed max supply"); require(totalSupply() + amount <= MAX_TOKENS - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply"); require(msg.value >= PRICE * amount, "Not enough ETH for transaction"); require(addressMintedBalance[msg.sender] + amount <= perAddressLimit, "Max NFT per address exceeded"); for (uint i = 0; i < amount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, totalSupply() + 1); } if (preSaleIsActive) presaleTokensSold++; } //case ethereum does something crazy function setPrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function setPresaleLimit(uint newLimit) external onlyOwner { PRESALE_LIMIT = newLimit; } function setPerAddressLimit(uint newLimit) external onlyOwner { perAddressLimit = newLimit; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() external onlyOwner { preSaleIsActive = !preSaleIsActive; } function flipWhitelistingState() external onlyOwner { whitelist = !whitelist; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function mintReservedTokens(address to, uint256 amount) external onlyOwner { require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed"); for (uint i = 0; i < amount; i++) { _safeMint(to, totalSupply() + 1); reservedTokensMinted++; } } function withdraw() external { require(msg.sender == devguy || msg.sender == owner(), "Invalid sender"); (bool success, ) = devguy.call{value: address(this).balance / 100 * 25}(""); (bool success2, ) = owner().call{value: address(this).balance}(""); require(success, "Transfer 1 failed"); require(success2, "Transfer 2 failed"); } function setRoot(bytes32 _root) external onlyOwner { root = _root; } function verify(bytes32[] memory proof) internal view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(proof, root, leaf); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } //// //URI management part //// function _setBaseURI(string memory baseURI) internal virtual { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistingState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"perAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526103e8600b556000600c8190556706f05b59d3b20000600d55611388600e55600f805463ffffffff19169055601055601580546001600160a01b0319167342526abd3f010ddd05a4ee32c58ad63c4c2c6d281790553480156200006657600080fd5b50604080518082018252601381527f3344204e6f76612043727970746f50756e6b730000000000000000000000000060208083019182528351808501909452600784526633444e50554e4b60c81b908401528151919291620000cb916000916200015a565b508051620000e19060019060208401906200015a565b505050620000fe620000f86200010460201b60201c565b62000108565b6200023d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001689062000200565b90600052602060002090601f0160209004810192826200018c5760008555620001d7565b82601f10620001a757805160ff1916838001178555620001d7565b82800160010185558215620001d7579182015b82811115620001d7578251825591602001919060010190620001ba565b50620001e5929150620001e9565b5090565b5b80821115620001e55760008155600101620001ea565b600181811c908216806200021557607f821691505b602082108114156200023757634e487b7160e01b600052602260045260246000fd5b50919050565b612cdd806200024d6000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063ae7c122e116100c1578063eb8d24441161007a578063eb8d244414610767578063f032554914610781578063f2c4ce1e14610796578063f2fde38b146107b6578063f3e38821146107d6578063f47c84c5146107ec57600080fd5b8063ae7c122e14610695578063b22edfbc146106a8578063b88d4fde146106be578063c87b56dd146106de578063dab5f340146106fe578063e985e9c51461071e57600080fd5b806391b7f5ed1161011357806391b7f5ed146105f657806393e59dc11461061657806395d89b4114610636578063969a55ec1461064b578063a22cb46514610660578063a475b5dd1461068057600080fd5b806370a082311461056d578063715018a61461058d5780637fd255f1146105a25780638d859f3e146105c25780638da5cb5b146105d857600080fd5b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146104b657806351830227146104d657806355f804b3146104f757806357535c43146105175780636007eeed146105375780636352211e1461054d57600080fd5b80632f745c5914610409578063341c33041461042957806334918dfd1461043f5780633ccfd60b1461045457806342842e0e14610469578063438b63001461048957600080fd5b806318160ddd1161024557806318160ddd1461034857806318cae269146103675780631aee3f91146103945780631f0234d8146103aa57806323b872dd146103c957806329f767e8146103e957600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a3565b610802565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610813565b6040516102ae9190612618565b3480156102e557600080fd5b506102f96102f436600461262b565b6108a5565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61093f565b34801561033257600080fd5b50610346610341366004612660565b6109cd565b005b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b5061035961038236600461268a565b60146020526000908152604090205481565b3480156103a057600080fd5b50610359600b5481565b3480156103b657600080fd5b50600f546102a290610100900460ff1681565b3480156103d557600080fd5b506103466103e43660046126a5565b610ae3565b3480156103f557600080fd5b5061034661040436600461262b565b610b14565b34801561041557600080fd5b50610359610424366004612660565b610b43565b34801561043557600080fd5b50610359600c5481565b34801561044b57600080fd5b50610346610bd9565b34801561046057600080fd5b50610346610c17565b34801561047557600080fd5b506103466104843660046126a5565b610dce565b34801561049557600080fd5b506104a96104a436600461268a565b610de9565b6040516102ae91906126e1565b3480156104c257600080fd5b506103596104d136600461262b565b610e8b565b3480156104e257600080fd5b50600f546102a2906301000000900460ff1681565b34801561050357600080fd5b506103466105123660046127c4565b610f1e565b34801561052357600080fd5b50610346610532366004612660565b610f54565b34801561054357600080fd5b50610359600e5481565b34801561055957600080fd5b506102f961056836600461262b565b611039565b34801561057957600080fd5b5061035961058836600461268a565b6110b0565b34801561059957600080fd5b50610346611137565b3480156105ae57600080fd5b506103466105bd36600461262b565b61116d565b3480156105ce57600080fd5b50610359600d5481565b3480156105e457600080fd5b50600a546001600160a01b03166102f9565b34801561060257600080fd5b5061034661061136600461262b565b61119c565b34801561062257600080fd5b50600f546102a29062010000900460ff1681565b34801561064257600080fd5b506102cc6111cb565b34801561065757600080fd5b506103466111da565b34801561066c57600080fd5b5061034661067b36600461280d565b611223565b34801561068c57600080fd5b5061034661122e565b6103466106a3366004612849565b61126d565b3480156106b457600080fd5b506103596107d081565b3480156106ca57600080fd5b506103466106d93660046128fb565b61161d565b3480156106ea57600080fd5b506102cc6106f936600461262b565b611655565b34801561070a57600080fd5b5061034661071936600461262b565b611782565b34801561072a57600080fd5b506102a2610739366004612977565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077357600080fd5b50600f546102a29060ff1681565b34801561078d57600080fd5b506103466117b1565b3480156107a257600080fd5b506103466107b13660046127c4565b6117f8565b3480156107c257600080fd5b506103466107d136600461268a565b611835565b3480156107e257600080fd5b5061035960105481565b3480156107f857600080fd5b5061035961138881565b600061080d826118cd565b92915050565b606060008054610822906129aa565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906129aa565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6012805461094c906129aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906129aa565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b505050505081565b60006109d882611039565b9050806001600160a01b0316836001600160a01b03161415610a465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161091a565b336001600160a01b0382161480610a625750610a628133610739565b610ad45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161091a565b610ade83836118f2565b505050565b610aed3382611960565b610b095760405162461bcd60e51b815260040161091a906129e5565b610ade838383611a57565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161091a90612a36565b600e55565b6000610b4e836110b0565b8210610bb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161091a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c035760405162461bcd60e51b815260040161091a90612a36565b600f805460ff19811660ff90911615179055565b6015546001600160a01b0316331480610c3a5750600a546001600160a01b031633145b610c775760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b604482015260640161091a565b6015546000906001600160a01b0316610c91606447612a97565b610c9c906019612aab565b604051600081818185875af1925050503d8060008114610cd8576040519150601f19603f3d011682016040523d82523d6000602084013e610cdd565b606091505b505090506000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905081610d895760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c4819985a5b1959607a1b604482015260640161091a565b80610dca5760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c8819985a5b1959607a1b604482015260640161091a565b5050565b610ade8383836040518060200160405280600081525061161d565b60606000610df6836110b0565b905060008167ffffffffffffffff811115610e1357610e13612725565b604051908082528060200260200182016040528015610e3c578160200160208202803683370190505b50905060005b82811015610e8357610e548582610b43565b828281518110610e6657610e66612aca565b602090810291909101015280610e7b81612ae0565b915050610e42565b509392505050565b6000610e9660085490565b8210610ef95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161091a565b60088281548110610f0c57610f0c612aca565b90600052602060002001549050919050565b600a546001600160a01b03163314610f485760405162461bcd60e51b815260040161091a90612a36565b610f5181611bfe565b50565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161091a90612a36565b6107d081601054610f8f9190612afb565b1115610fe95760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b606482015260840161091a565b60005b81811015610ade576110118361100160085490565b61100c906001612afb565b611c11565b6010805490600061102183612ae0565b9190505550808061103190612ae0565b915050610fec565b6000818152600260205260408120546001600160a01b03168061080d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161091a565b60006001600160a01b03821661111b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161091a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111615760405162461bcd60e51b815260040161091a90612a36565b61116b6000611c2b565b565b600a546001600160a01b031633146111975760405162461bcd60e51b815260040161091a90612a36565b600b55565b600a546001600160a01b031633146111c65760405162461bcd60e51b815260040161091a90612a36565b600d55565b606060018054610822906129aa565b600a546001600160a01b031633146112045760405162461bcd60e51b815260040161091a90612a36565b600f805462ff0000198116620100009182900460ff1615909102179055565b610dca338383611c7d565b600a546001600160a01b031633146112585760405162461bcd60e51b815260040161091a90612a36565b600f805463ff00000019166301000000179055565b600f5462010000900460ff161580611289575061128981611d4c565b6112d55760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161091a565b3332146113305760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b606482015260840161091a565b600f54610100900460ff16806113485750600f5460ff165b6113945760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161091a565b6000821180156113a55750600a8211155b6113f15760405162461bcd60e51b815260206004820152601b60248201527f4d6178203130204e46547320706572207472616e73616374696f6e0000000000604482015260640161091a565b600f54610100900460ff1615806114175750600b5482600c546114149190612afb565b11155b6114635760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161091a565b601054611472906107d0612b13565b61147e90611388612b13565b8261148860085490565b6114929190612afb565b11156114e05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161091a565b81600d546114ee9190612aab565b34101561153d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000604482015260640161091a565b600e543360009081526014602052604090205461155b908490612afb565b11156115a95760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161091a565b60005b828110156115f3573360009081526014602052604081208054916115cf83612ae0565b91905055506115e13361100160085490565b806115eb81612ae0565b9150506115ac565b50600f54610100900460ff1615610dca57600c805490600061161483612ae0565b91905055505050565b6116273383611960565b6116435760405162461bcd60e51b815260040161091a906129e5565b61164f84848484611d94565b50505050565b6000818152600260205260409020546060906001600160a01b031661168c5760405162461bcd60e51b815260040161091a90612b2a565b600f546301000000900460ff1661172f57601280546116aa906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546116d6906129aa565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b50505050509050919050565b600061173a83611dc7565b9050600081511161175a576040518060200160405280600081525061177b565b8060405160200161176b9190612b79565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117ac5760405162461bcd60e51b815260040161091a90612a36565b601355565b600a546001600160a01b031633146117db5760405162461bcd60e51b815260040161091a90612a36565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146118225760405162461bcd60e51b815260040161091a90612a36565b8051610dca9060129060208401906124f4565b600a546001600160a01b0316331461185f5760405162461bcd60e51b815260040161091a90612a36565b6001600160a01b0381166118c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091a565b610f5181611c2b565b60006001600160e01b0319821663780e9d6360e01b148061080d575061080d82611e43565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192782611039565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161091a565b60006119e483611039565b9050806001600160a01b0316846001600160a01b03161480611a2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a4f5750836001600160a01b0316611a44846108a5565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6a82611039565b6001600160a01b031614611ace5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161091a565b6001600160a01b038216611b305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091a565b611b3b838383611e93565b611b466000826118f2565b6001600160a01b0383166000908152600360205260408120805460019290611b6f908490612b13565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9d908490612afb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610dca9060119060208401906124f4565b610dca828260405180602001604052806000815250611e9e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061177b8360135483611ed1565b611d9f848484611a57565b611dab84848484611ee7565b61164f5760405162461bcd60e51b815260040161091a90612ba2565b6000818152600260205260409020546060906001600160a01b0316611dfe5760405162461bcd60e51b815260040161091a90612b2a565b6000611e08611fe5565b90506000815111611e28576040518060200160405280600081525061177b565b80611e3284611ff4565b60405160200161176b929190612bf4565b60006001600160e01b031982166380ac58cd60e01b1480611e7457506001600160e01b03198216635b5e139f60e01b145b8061080d57506301ffc9a760e01b6001600160e01b031983161461080d565b610ade8383836120f2565b611ea883836121aa565b611eb56000848484611ee7565b610ade5760405162461bcd60e51b815260040161091a90612ba2565b600082611ede85846122f8565b14949350505050565b60006001600160a01b0384163b15611fda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b903390899088908890600401612c23565b6020604051808303816000875af1925050508015611f66575060408051601f3d908101601f19168201909252611f6391810190612c60565b60015b611fc0573d808015611f94576040519150601f19603f3d011682016040523d82523d6000602084013e611f99565b606091505b508051611fb85760405162461bcd60e51b815260040161091a90612ba2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4f565b506001949350505050565b606060118054610822906129aa565b6060816120185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612042578061202c81612ae0565b915061203b9050600a83612a97565b915061201c565b60008167ffffffffffffffff81111561205d5761205d612725565b6040519080825280601f01601f191660200182016040528015612087576020820181803683370190505b5090505b8415611a4f5761209c600183612b13565b91506120a9600a86612c7d565b6120b4906030612afb565b60f81b8183815181106120c9576120c9612aca565b60200101906001600160f81b031916908160001a9053506120eb600a86612a97565b945061208b565b6001600160a01b03831661214d5761214881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612170565b816001600160a01b0316836001600160a01b031614612170576121708382612364565b6001600160a01b03821661218757610ade81612401565b826001600160a01b0316826001600160a01b031614610ade57610ade82826124b0565b6001600160a01b0382166122005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091a565b6000818152600260205260409020546001600160a01b0316156122655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091a565b61227160008383611e93565b6001600160a01b038216600090815260036020526040812080546001929061229a908490612afb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610e8357600085828151811061231a5761231a612aca565b602002602001015190508083116123405760008381526020829052604090209250612351565b600081815260208490526040902092505b508061235c81612ae0565b9150506122fd565b60006001612371846110b0565b61237b9190612b13565b6000838152600760205260409020549091508082146123ce576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061241390600190612b13565b6000838152600960205260408120546008805493945090928490811061243b5761243b612aca565b90600052602060002001549050806008838154811061245c5761245c612aca565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061249457612494612c91565b6001900381819060005260206000200160009055905550505050565b60006124bb836110b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612500906129aa565b90600052602060002090601f0160209004810192826125225760008555612568565b82601f1061253b57805160ff1916838001178555612568565b82800160010185558215612568579182015b8281111561256857825182559160200191906001019061254d565b50612574929150612578565b5090565b5b808211156125745760008155600101612579565b6001600160e01b031981168114610f5157600080fd5b6000602082840312156125b557600080fd5b813561177b8161258d565b60005b838110156125db5781810151838201526020016125c3565b8381111561164f5750506000910152565b600081518084526126048160208601602086016125c0565b601f01601f19169290920160200192915050565b60208152600061177b60208301846125ec565b60006020828403121561263d57600080fd5b5035919050565b80356001600160a01b038116811461265b57600080fd5b919050565b6000806040838503121561267357600080fd5b61267c83612644565b946020939093013593505050565b60006020828403121561269c57600080fd5b61177b82612644565b6000806000606084860312156126ba57600080fd5b6126c384612644565b92506126d160208501612644565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612719578351835292840192918401916001016126fd565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561276457612764612725565b604052919050565b600067ffffffffffffffff83111561278657612786612725565b612799601f8401601f191660200161273b565b90508281528383830111156127ad57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127d657600080fd5b813567ffffffffffffffff8111156127ed57600080fd5b8201601f810184136127fe57600080fd5b611a4f8482356020840161276c565b6000806040838503121561282057600080fd5b61282983612644565b91506020830135801515811461283e57600080fd5b809150509250929050565b6000806040838503121561285c57600080fd5b8235915060208084013567ffffffffffffffff8082111561287c57600080fd5b818601915086601f83011261289057600080fd5b8135818111156128a2576128a2612725565b8060051b91506128b384830161273b565b81815291830184019184810190898411156128cd57600080fd5b938501935b838510156128eb578435825293850193908501906128d2565b8096505050505050509250929050565b6000806000806080858703121561291157600080fd5b61291a85612644565b935061292860208601612644565b925060408501359150606085013567ffffffffffffffff81111561294b57600080fd5b8501601f8101871361295c57600080fd5b61296b8782356020840161276c565b91505092959194509250565b6000806040838503121561298a57600080fd5b61299383612644565b91506129a160208401612644565b90509250929050565b600181811c908216806129be57607f821691505b602082108114156129df57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612aa657612aa6612a6b565b500490565b6000816000190483118215151615612ac557612ac5612a81565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612af457612af4612a81565b5060010190565b60008219821115612b0e57612b0e612a81565b500190565b600082821015612b2557612b25612a81565b500390565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008251612b8b8184602087016125c0565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612c068184602088016125c0565b835190830190612c1a8183602088016125c0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c56908301846125ec565b9695505050505050565b600060208284031215612c7257600080fd5b815161177b8161258d565b600082612c8c57612c8c612a6b565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122047abe4fe413443506f2ef3adc050b825c8cad3c48051150fafe1c72bb799149b64736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063ae7c122e116100c1578063eb8d24441161007a578063eb8d244414610767578063f032554914610781578063f2c4ce1e14610796578063f2fde38b146107b6578063f3e38821146107d6578063f47c84c5146107ec57600080fd5b8063ae7c122e14610695578063b22edfbc146106a8578063b88d4fde146106be578063c87b56dd146106de578063dab5f340146106fe578063e985e9c51461071e57600080fd5b806391b7f5ed1161011357806391b7f5ed146105f657806393e59dc11461061657806395d89b4114610636578063969a55ec1461064b578063a22cb46514610660578063a475b5dd1461068057600080fd5b806370a082311461056d578063715018a61461058d5780637fd255f1146105a25780638d859f3e146105c25780638da5cb5b146105d857600080fd5b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146104b657806351830227146104d657806355f804b3146104f757806357535c43146105175780636007eeed146105375780636352211e1461054d57600080fd5b80632f745c5914610409578063341c33041461042957806334918dfd1461043f5780633ccfd60b1461045457806342842e0e14610469578063438b63001461048957600080fd5b806318160ddd1161024557806318160ddd1461034857806318cae269146103675780631aee3f91146103945780631f0234d8146103aa57806323b872dd146103c957806329f767e8146103e957600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a3565b610802565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610813565b6040516102ae9190612618565b3480156102e557600080fd5b506102f96102f436600461262b565b6108a5565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61093f565b34801561033257600080fd5b50610346610341366004612660565b6109cd565b005b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b5061035961038236600461268a565b60146020526000908152604090205481565b3480156103a057600080fd5b50610359600b5481565b3480156103b657600080fd5b50600f546102a290610100900460ff1681565b3480156103d557600080fd5b506103466103e43660046126a5565b610ae3565b3480156103f557600080fd5b5061034661040436600461262b565b610b14565b34801561041557600080fd5b50610359610424366004612660565b610b43565b34801561043557600080fd5b50610359600c5481565b34801561044b57600080fd5b50610346610bd9565b34801561046057600080fd5b50610346610c17565b34801561047557600080fd5b506103466104843660046126a5565b610dce565b34801561049557600080fd5b506104a96104a436600461268a565b610de9565b6040516102ae91906126e1565b3480156104c257600080fd5b506103596104d136600461262b565b610e8b565b3480156104e257600080fd5b50600f546102a2906301000000900460ff1681565b34801561050357600080fd5b506103466105123660046127c4565b610f1e565b34801561052357600080fd5b50610346610532366004612660565b610f54565b34801561054357600080fd5b50610359600e5481565b34801561055957600080fd5b506102f961056836600461262b565b611039565b34801561057957600080fd5b5061035961058836600461268a565b6110b0565b34801561059957600080fd5b50610346611137565b3480156105ae57600080fd5b506103466105bd36600461262b565b61116d565b3480156105ce57600080fd5b50610359600d5481565b3480156105e457600080fd5b50600a546001600160a01b03166102f9565b34801561060257600080fd5b5061034661061136600461262b565b61119c565b34801561062257600080fd5b50600f546102a29062010000900460ff1681565b34801561064257600080fd5b506102cc6111cb565b34801561065757600080fd5b506103466111da565b34801561066c57600080fd5b5061034661067b36600461280d565b611223565b34801561068c57600080fd5b5061034661122e565b6103466106a3366004612849565b61126d565b3480156106b457600080fd5b506103596107d081565b3480156106ca57600080fd5b506103466106d93660046128fb565b61161d565b3480156106ea57600080fd5b506102cc6106f936600461262b565b611655565b34801561070a57600080fd5b5061034661071936600461262b565b611782565b34801561072a57600080fd5b506102a2610739366004612977565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077357600080fd5b50600f546102a29060ff1681565b34801561078d57600080fd5b506103466117b1565b3480156107a257600080fd5b506103466107b13660046127c4565b6117f8565b3480156107c257600080fd5b506103466107d136600461268a565b611835565b3480156107e257600080fd5b5061035960105481565b3480156107f857600080fd5b5061035961138881565b600061080d826118cd565b92915050565b606060008054610822906129aa565b80601f016020809104026020016040519081016040528092919081815260200182805461084e906129aa565b801561089b5780601f106108705761010080835404028352916020019161089b565b820191906000526020600020905b81548152906001019060200180831161087e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6012805461094c906129aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610978906129aa565b80156109c55780601f1061099a576101008083540402835291602001916109c5565b820191906000526020600020905b8154815290600101906020018083116109a857829003601f168201915b505050505081565b60006109d882611039565b9050806001600160a01b0316836001600160a01b03161415610a465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161091a565b336001600160a01b0382161480610a625750610a628133610739565b610ad45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161091a565b610ade83836118f2565b505050565b610aed3382611960565b610b095760405162461bcd60e51b815260040161091a906129e5565b610ade838383611a57565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161091a90612a36565b600e55565b6000610b4e836110b0565b8210610bb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161091a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c035760405162461bcd60e51b815260040161091a90612a36565b600f805460ff19811660ff90911615179055565b6015546001600160a01b0316331480610c3a5750600a546001600160a01b031633145b610c775760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b604482015260640161091a565b6015546000906001600160a01b0316610c91606447612a97565b610c9c906019612aab565b604051600081818185875af1925050503d8060008114610cd8576040519150601f19603f3d011682016040523d82523d6000602084013e610cdd565b606091505b505090506000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905081610d895760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c4819985a5b1959607a1b604482015260640161091a565b80610dca5760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c8819985a5b1959607a1b604482015260640161091a565b5050565b610ade8383836040518060200160405280600081525061161d565b60606000610df6836110b0565b905060008167ffffffffffffffff811115610e1357610e13612725565b604051908082528060200260200182016040528015610e3c578160200160208202803683370190505b50905060005b82811015610e8357610e548582610b43565b828281518110610e6657610e66612aca565b602090810291909101015280610e7b81612ae0565b915050610e42565b509392505050565b6000610e9660085490565b8210610ef95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161091a565b60088281548110610f0c57610f0c612aca565b90600052602060002001549050919050565b600a546001600160a01b03163314610f485760405162461bcd60e51b815260040161091a90612a36565b610f5181611bfe565b50565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161091a90612a36565b6107d081601054610f8f9190612afb565b1115610fe95760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b606482015260840161091a565b60005b81811015610ade576110118361100160085490565b61100c906001612afb565b611c11565b6010805490600061102183612ae0565b9190505550808061103190612ae0565b915050610fec565b6000818152600260205260408120546001600160a01b03168061080d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161091a565b60006001600160a01b03821661111b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161091a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111615760405162461bcd60e51b815260040161091a90612a36565b61116b6000611c2b565b565b600a546001600160a01b031633146111975760405162461bcd60e51b815260040161091a90612a36565b600b55565b600a546001600160a01b031633146111c65760405162461bcd60e51b815260040161091a90612a36565b600d55565b606060018054610822906129aa565b600a546001600160a01b031633146112045760405162461bcd60e51b815260040161091a90612a36565b600f805462ff0000198116620100009182900460ff1615909102179055565b610dca338383611c7d565b600a546001600160a01b031633146112585760405162461bcd60e51b815260040161091a90612a36565b600f805463ff00000019166301000000179055565b600f5462010000900460ff161580611289575061128981611d4c565b6112d55760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161091a565b3332146113305760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b606482015260840161091a565b600f54610100900460ff16806113485750600f5460ff165b6113945760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161091a565b6000821180156113a55750600a8211155b6113f15760405162461bcd60e51b815260206004820152601b60248201527f4d6178203130204e46547320706572207472616e73616374696f6e0000000000604482015260640161091a565b600f54610100900460ff1615806114175750600b5482600c546114149190612afb565b11155b6114635760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161091a565b601054611472906107d0612b13565b61147e90611388612b13565b8261148860085490565b6114929190612afb565b11156114e05760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161091a565b81600d546114ee9190612aab565b34101561153d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e0000604482015260640161091a565b600e543360009081526014602052604090205461155b908490612afb565b11156115a95760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161091a565b60005b828110156115f3573360009081526014602052604081208054916115cf83612ae0565b91905055506115e13361100160085490565b806115eb81612ae0565b9150506115ac565b50600f54610100900460ff1615610dca57600c805490600061161483612ae0565b91905055505050565b6116273383611960565b6116435760405162461bcd60e51b815260040161091a906129e5565b61164f84848484611d94565b50505050565b6000818152600260205260409020546060906001600160a01b031661168c5760405162461bcd60e51b815260040161091a90612b2a565b600f546301000000900460ff1661172f57601280546116aa906129aa565b80601f01602080910402602001604051908101604052809291908181526020018280546116d6906129aa565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b50505050509050919050565b600061173a83611dc7565b9050600081511161175a576040518060200160405280600081525061177b565b8060405160200161176b9190612b79565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117ac5760405162461bcd60e51b815260040161091a90612a36565b601355565b600a546001600160a01b031633146117db5760405162461bcd60e51b815260040161091a90612a36565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146118225760405162461bcd60e51b815260040161091a90612a36565b8051610dca9060129060208401906124f4565b600a546001600160a01b0316331461185f5760405162461bcd60e51b815260040161091a90612a36565b6001600160a01b0381166118c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091a565b610f5181611c2b565b60006001600160e01b0319821663780e9d6360e01b148061080d575061080d82611e43565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192782611039565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161091a565b60006119e483611039565b9050806001600160a01b0316846001600160a01b03161480611a2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a4f5750836001600160a01b0316611a44846108a5565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6a82611039565b6001600160a01b031614611ace5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161091a565b6001600160a01b038216611b305760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091a565b611b3b838383611e93565b611b466000826118f2565b6001600160a01b0383166000908152600360205260408120805460019290611b6f908490612b13565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9d908490612afb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610dca9060119060208401906124f4565b610dca828260405180602001604052806000815250611e9e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160405160208183030381529060405280519060200120905061177b8360135483611ed1565b611d9f848484611a57565b611dab84848484611ee7565b61164f5760405162461bcd60e51b815260040161091a90612ba2565b6000818152600260205260409020546060906001600160a01b0316611dfe5760405162461bcd60e51b815260040161091a90612b2a565b6000611e08611fe5565b90506000815111611e28576040518060200160405280600081525061177b565b80611e3284611ff4565b60405160200161176b929190612bf4565b60006001600160e01b031982166380ac58cd60e01b1480611e7457506001600160e01b03198216635b5e139f60e01b145b8061080d57506301ffc9a760e01b6001600160e01b031983161461080d565b610ade8383836120f2565b611ea883836121aa565b611eb56000848484611ee7565b610ade5760405162461bcd60e51b815260040161091a90612ba2565b600082611ede85846122f8565b14949350505050565b60006001600160a01b0384163b15611fda57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f2b903390899088908890600401612c23565b6020604051808303816000875af1925050508015611f66575060408051601f3d908101601f19168201909252611f6391810190612c60565b60015b611fc0573d808015611f94576040519150601f19603f3d011682016040523d82523d6000602084013e611f99565b606091505b508051611fb85760405162461bcd60e51b815260040161091a90612ba2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4f565b506001949350505050565b606060118054610822906129aa565b6060816120185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612042578061202c81612ae0565b915061203b9050600a83612a97565b915061201c565b60008167ffffffffffffffff81111561205d5761205d612725565b6040519080825280601f01601f191660200182016040528015612087576020820181803683370190505b5090505b8415611a4f5761209c600183612b13565b91506120a9600a86612c7d565b6120b4906030612afb565b60f81b8183815181106120c9576120c9612aca565b60200101906001600160f81b031916908160001a9053506120eb600a86612a97565b945061208b565b6001600160a01b03831661214d5761214881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612170565b816001600160a01b0316836001600160a01b031614612170576121708382612364565b6001600160a01b03821661218757610ade81612401565b826001600160a01b0316826001600160a01b031614610ade57610ade82826124b0565b6001600160a01b0382166122005760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091a565b6000818152600260205260409020546001600160a01b0316156122655760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091a565b61227160008383611e93565b6001600160a01b038216600090815260036020526040812080546001929061229a908490612afb565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610e8357600085828151811061231a5761231a612aca565b602002602001015190508083116123405760008381526020829052604090209250612351565b600081815260208490526040902092505b508061235c81612ae0565b9150506122fd565b60006001612371846110b0565b61237b9190612b13565b6000838152600760205260409020549091508082146123ce576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061241390600190612b13565b6000838152600960205260408120546008805493945090928490811061243b5761243b612aca565b90600052602060002001549050806008838154811061245c5761245c612aca565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061249457612494612c91565b6001900381819060005260206000200160009055905550505050565b60006124bb836110b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612500906129aa565b90600052602060002090601f0160209004810192826125225760008555612568565b82601f1061253b57805160ff1916838001178555612568565b82800160010185558215612568579182015b8281111561256857825182559160200191906001019061254d565b50612574929150612578565b5090565b5b808211156125745760008155600101612579565b6001600160e01b031981168114610f5157600080fd5b6000602082840312156125b557600080fd5b813561177b8161258d565b60005b838110156125db5781810151838201526020016125c3565b8381111561164f5750506000910152565b600081518084526126048160208601602086016125c0565b601f01601f19169290920160200192915050565b60208152600061177b60208301846125ec565b60006020828403121561263d57600080fd5b5035919050565b80356001600160a01b038116811461265b57600080fd5b919050565b6000806040838503121561267357600080fd5b61267c83612644565b946020939093013593505050565b60006020828403121561269c57600080fd5b61177b82612644565b6000806000606084860312156126ba57600080fd5b6126c384612644565b92506126d160208501612644565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612719578351835292840192918401916001016126fd565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561276457612764612725565b604052919050565b600067ffffffffffffffff83111561278657612786612725565b612799601f8401601f191660200161273b565b90508281528383830111156127ad57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127d657600080fd5b813567ffffffffffffffff8111156127ed57600080fd5b8201601f810184136127fe57600080fd5b611a4f8482356020840161276c565b6000806040838503121561282057600080fd5b61282983612644565b91506020830135801515811461283e57600080fd5b809150509250929050565b6000806040838503121561285c57600080fd5b8235915060208084013567ffffffffffffffff8082111561287c57600080fd5b818601915086601f83011261289057600080fd5b8135818111156128a2576128a2612725565b8060051b91506128b384830161273b565b81815291830184019184810190898411156128cd57600080fd5b938501935b838510156128eb578435825293850193908501906128d2565b8096505050505050509250929050565b6000806000806080858703121561291157600080fd5b61291a85612644565b935061292860208601612644565b925060408501359150606085013567ffffffffffffffff81111561294b57600080fd5b8501601f8101871361295c57600080fd5b61296b8782356020840161276c565b91505092959194509250565b6000806040838503121561298a57600080fd5b61299383612644565b91506129a160208401612644565b90509250929050565b600181811c908216806129be57607f821691505b602082108114156129df57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612aa657612aa6612a6b565b500490565b6000816000190483118215151615612ac557612ac5612a81565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612af457612af4612a81565b5060010190565b60008219821115612b0e57612b0e612a81565b500190565b600082821015612b2557612b25612a81565b500390565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008251612b8b8184602087016125c0565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612c068184602088016125c0565b835190830190612c1a8183602088016125c0565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c56908301846125ec565b9695505050505050565b600060208284031215612c7257600080fd5b815161177b8161258d565b600082612c8c57612c8c612a6b565b500690565b634e487b7160e01b600052603160045260246000fdfea264697066735822122047abe4fe413443506f2ef3adc050b825c8cad3c48051150fafe1c72bb799149b64736f6c634300080b0033
Deployed Bytecode Sourcemap
47087:5621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51657:177;;;;;;;;;;-1:-1:-1;51657:177:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51657:177:0;;;;;;;;21929:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23489:221::-;;;;;;;;;;-1:-1:-1;23489:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23489:221:0;1528:203:1;47705:28:0;;;;;;;;;;;;;:::i;23012:411::-;;;;;;;;;;-1:-1:-1;23012:411:0;;;;;:::i;:::-;;:::i;:::-;;36532:113;;;;;;;;;;-1:-1:-1;36620:10:0;:17;36532:113;;;2319:25:1;;;2307:2;2292:18;36532:113:0;2173:177:1;47759:52:0;;;;;;;;;;-1:-1:-1;47759:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;47230:32;;;;;;;;;;;;;;;;47512:35;;;;;;;;;;-1:-1:-1;47512:35:0;;;;;;;;;;;24239:339;;;;;;;;;;-1:-1:-1;24239:339:0;;;;;:::i;:::-;;:::i;49340:113::-;;;;;;;;;;-1:-1:-1;49340:113:0;;;;;:::i;:::-;;:::i;36200:256::-;;;;;;;;;;-1:-1:-1;36200:256:0;;;;;:::i;:::-;;:::i;47269:33::-;;;;;;;;;;;;;;;;49672:97;;;;;;;;;;;;;:::i;50745:386::-;;;;;;;;;;;;;:::i;24649:185::-;;;;;;;;;;-1:-1:-1;24649:185:0;;;;;:::i;:::-;;:::i;49998:375::-;;;;;;;;;;-1:-1:-1;49998:375:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36722:233::-;;;;;;;;;;-1:-1:-1;36722:233:0;;;;;:::i;:::-;;:::i;47590:28::-;;;;;;;;;;-1:-1:-1;47590:28:0;;;;;;;;;;;52128:101;;;;;;;;;;-1:-1:-1;52128:101:0;;;;;:::i;:::-;;:::i;50381:356::-;;;;;;;;;;-1:-1:-1;50381:356:0;;;;;:::i;:::-;;:::i;47426:34::-;;;;;;;;;;;;;;;;21623:239;;;;;;;;;;-1:-1:-1;21623:239:0;;;;;:::i;:::-;;:::i;21353:208::-;;;;;;;;;;-1:-1:-1;21353:208:0;;;;;:::i;:::-;;:::i;43677:103::-;;;;;;;;;;;;;:::i;49224:108::-;;;;;;;;;;-1:-1:-1;49224:108:0;;;;;:::i;:::-;;:::i;47366:41::-;;;;;;;;;;;;;;;;43026:87;;;;;;;;;;-1:-1:-1;43099:6:0;;-1:-1:-1;;;;;43099:6:0;43026:87;;49120:96;;;;;;;;;;-1:-1:-1;49120:96:0;;;;;:::i;:::-;;:::i;47554:29::-;;;;;;;;;;-1:-1:-1;47554:29:0;;;;;;;;;;;22098:104;;;;;;;;;;;;;:::i;49891:99::-;;;;;;;;;;;;;:::i;23782:155::-;;;;;;;;;;-1:-1:-1;23782:155:0;;;;;:::i;:::-;;:::i;49595:69::-;;;;;;;;;;;;;:::i;47978:1092::-;;;;;;:::i;:::-;;:::i;47309:50::-;;;;;;;;;;;;47355:4;47309:50;;24905:328;;;;;;;;;;-1:-1:-1;24905:328:0;;;;;:::i;:::-;;:::i;52239:466::-;;;;;;;;;;-1:-1:-1;52239:466:0;;;;;:::i;:::-;;:::i;51139:87::-;;;;;;;;;;-1:-1:-1;51139:87:0;;;;;:::i;:::-;;:::i;24008:164::-;;;;;;;;;;-1:-1:-1;24008:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24129:25:0;;;24105:4;24129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24008:164;47473:32;;;;;;;;;;-1:-1:-1;47473:32:0;;;;;;;;49777:106;;;;;;;;;;;;;:::i;49461:126::-;;;;;;;;;;-1:-1:-1;49461:126:0;;;;;:::i;:::-;;:::i;43935:201::-;;;;;;;;;;-1:-1:-1;43935:201:0;;;;;:::i;:::-;;:::i;47627:36::-;;;;;;;;;;;;;;;;47185:38;;;;;;;;;;;;47219:4;47185:38;;51657:177;51761:4;51790:36;51814:11;51790:23;:36::i;:::-;51783:43;51657:177;-1:-1:-1;;51657:177:0:o;21929:100::-;21983:13;22016:5;22009:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21929:100;:::o;23489:221::-;23565:7;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;23585:73;;;;-1:-1:-1;;;23585:73:0;;7876:2:1;23585:73:0;;;7858:21:1;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;-1:-1:-1;;;8005:18:1;;;7998:42;8057:19;;23585:73:0;;;;;;;;;-1:-1:-1;23678:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23678:24:0;;23489:221::o;47705:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23012:411::-;23093:13;23109:23;23124:7;23109:14;:23::i;:::-;23093:39;;23157:5;-1:-1:-1;;;;;23151:11:0;:2;-1:-1:-1;;;;;23151:11:0;;;23143:57;;;;-1:-1:-1;;;23143:57:0;;8289:2:1;23143:57:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:31;8459:19;;23143:57:0;8087:397:1;23143:57:0;8398:10;-1:-1:-1;;;;;23235:21:0;;;;:62;;-1:-1:-1;23260:37:0;23277:5;8398:10;24008:164;:::i;23260:37::-;23213:168;;;;-1:-1:-1;;;23213:168:0;;8691:2:1;23213:168:0;;;8673:21:1;8730:2;8710:18;;;8703:30;8769:34;8749:18;;;8742:62;8840:26;8820:18;;;8813:54;8884:19;;23213:168:0;8489:420:1;23213:168:0;23394:21;23403:2;23407:7;23394:8;:21::i;:::-;23082:341;23012:411;;:::o;24239:339::-;24434:41;8398:10;24467:7;24434:18;:41::i;:::-;24426:103;;;;-1:-1:-1;;;24426:103:0;;;;;;;:::i;:::-;24542:28;24552:4;24558:2;24562:7;24542:9;:28::i;49340:113::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49419:15:::1;:26:::0;49340:113::o;36200:256::-;36297:7;36333:23;36350:5;36333:16;:23::i;:::-;36325:5;:31;36317:87;;;;-1:-1:-1;;;36317:87:0;;9895:2:1;36317:87:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:41;10075:19;;36317:87:0;9693:407:1;36317:87:0;-1:-1:-1;;;;;;36422:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36200:256::o;49672:97::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49749:12:::1;::::0;;-1:-1:-1;;49733:28:0;::::1;49749:12;::::0;;::::1;49748:13;49733:28;::::0;;49672:97::o;50745:386::-;50813:6;;-1:-1:-1;;;;;50813:6:0;50799:10;:20;;:45;;-1:-1:-1;43099:6:0;;-1:-1:-1;;;;;43099:6:0;50823:10;:21;50799:45;50791:72;;;;-1:-1:-1;;;50791:72:0;;10307:2:1;50791:72:0;;;10289:21:1;10346:2;10326:18;;;10319:30;-1:-1:-1;;;10365:18:1;;;10358:44;10419:18;;50791:72:0;10105:338:1;50791:72:0;50893:6;;50875:12;;-1:-1:-1;;;;;50893:6:0;50912:27;50936:3;50912:21;:27;:::i;:::-;:32;;50942:2;50912:32;:::i;:::-;50893:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50874:75;;;50961:13;50980:7;43099:6;;-1:-1:-1;;;;;43099:6:0;;43026:87;50980:7;-1:-1:-1;;;;;50980:12:0;51000:21;50980:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50960:66;;;51045:7;51037:37;;;;-1:-1:-1;;;51037:37:0;;11422:2:1;51037:37:0;;;11404:21:1;11461:2;11441:18;;;11434:30;-1:-1:-1;;;11480:18:1;;;11473:47;11537:18;;51037:37:0;11220:341:1;51037:37:0;51093:8;51085:38;;;;-1:-1:-1;;;51085:38:0;;11768:2:1;51085:38:0;;;11750:21:1;11807:2;11787:18;;;11780:30;-1:-1:-1;;;11826:18:1;;;11819:47;11883:18;;51085:38:0;11566:341:1;51085:38:0;50780:351;;50745:386::o;24649:185::-;24787:39;24804:4;24810:2;24814:7;24787:39;;;;;;;;;;;;:16;:39::i;49998:375::-;50058:16;50092:23;50118:17;50128:6;50118:9;:17::i;:::-;50092:43;;50146:25;50188:15;50174:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50174:30:0;;50146:58;;50230:9;50225:113;50245:15;50241:1;:19;50225:113;;;50296:30;50316:6;50324:1;50296:19;:30::i;:::-;50282:8;50291:1;50282:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50262:3;;;;:::i;:::-;;;;50225:113;;;-1:-1:-1;50357:8:0;49998:375;-1:-1:-1;;;49998:375:0:o;36722:233::-;36797:7;36833:30;36620:10;:17;;36532:113;36833:30;36825:5;:38;36817:95;;;;-1:-1:-1;;;36817:95:0;;12386:2:1;36817:95:0;;;12368:21:1;12425:2;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;-1:-1:-1;;;12515:18:1;;;12508:42;12567:19;;36817:95:0;12184:408:1;36817:95:0;36930:10;36941:5;36930:17;;;;;;;;:::i;:::-;;;;;;;;;36923:24;;36722:233;;;:::o;52128:101::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;52201:20:::1;52213:7;52201:11;:20::i;:::-;52128:101:::0;:::o;50381:356::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;47355:4:::1;50504:6;50481:20;;:29;;;;:::i;:::-;:55;;50473:104;;;::::0;-1:-1:-1;;;50473:104:0;;12932:2:1;50473:104:0::1;::::0;::::1;12914:21:1::0;12971:2;12951:18;;;12944:30;13010:34;12990:18;;;12983:62;-1:-1:-1;;;13061:18:1;;;13054:34;13105:19;;50473:104:0::1;12730:400:1::0;50473:104:0::1;50595:6;50590:140;50611:6;50607:1;:10;50590:140;;;50649:32;50659:2;50663:13;36620:10:::0;:17;;36532:113;50663:13:::1;:17;::::0;50679:1:::1;50663:17;:::i;:::-;50649:9;:32::i;:::-;50696:20;:22:::0;;;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;50619:3;;;;;:::i;:::-;;;;50590:140;;21623:239:::0;21695:7;21731:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21731:16:0;21766:19;21758:73;;;;-1:-1:-1;;;21758:73:0;;13337:2:1;21758:73:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:39;13515:19;;21758:73:0;13135:405:1;21353:208:0;21425:7;-1:-1:-1;;;;;21453:19:0;;21445:74;;;;-1:-1:-1;;;21445:74:0;;13747:2:1;21445:74:0;;;13729:21:1;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:1;;;13869:40;13926:19;;21445:74:0;13545:406:1;21445:74:0;-1:-1:-1;;;;;;21537:16:0;;;;;:9;:16;;;;;;;21353:208::o;43677:103::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;43742:30:::1;43769:1;43742:18;:30::i;:::-;43677:103::o:0;49224:108::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49300:13:::1;:24:::0;49224:108::o;49120:96::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49192:5:::1;:16:::0;49120:96::o;22098:104::-;22154:13;22187:7;22180:14;;;;;:::i;49891:99::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49973:9:::1;::::0;;-1:-1:-1;;49960:22:0;::::1;49973:9:::0;;;;::::1;;;49972:10;49960:22:::0;;::::1;;::::0;;49891:99::o;23782:155::-;23877:52;8398:10;23910:8;23920;23877:18;:52::i;49595:69::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49641:8:::1;:15:::0;;-1:-1:-1;;49641:15:0::1;::::0;::::1;::::0;;49595:69::o;47978:1092::-;48079:9;;;;;;;48078:10;;:27;;;48092:13;48099:5;48092:6;:13::i;:::-;48070:63;;;;-1:-1:-1;;;48070:63:0;;14158:2:1;48070:63:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:25;14216:18;;;14209:53;14279:18;;48070:63:0;13956:347:1;48070:63:0;48152:10;48166:9;48152:23;48144:72;;;;-1:-1:-1;;;48144:72:0;;14510:2:1;48144:72:0;;;14492:21:1;14549:2;14529:18;;;14522:30;14588:34;14568:18;;;14561:62;-1:-1:-1;;;14639:18:1;;;14632:34;14683:19;;48144:72:0;14308:400:1;48144:72:0;48235:15;;;;;;;;:31;;-1:-1:-1;48254:12:0;;;;48235:31;48227:71;;;;-1:-1:-1;;;48227:71:0;;14915:2:1;48227:71:0;;;14897:21:1;14954:2;14934:18;;;14927:30;14993:29;14973:18;;;14966:57;15040:18;;48227:71:0;14713:351:1;48227:71:0;48326:1;48317:6;:10;:26;;;;;48341:2;48331:6;:12;;48317:26;48309:66;;;;-1:-1:-1;;;48309:66:0;;15271:2:1;48309:66:0;;;15253:21:1;15310:2;15290:18;;;15283:30;15349:29;15329:18;;;15322:57;15396:18;;48309:66:0;15069:351:1;48309:66:0;48395:15;;;;;;;48394:16;;:63;;;48444:13;;48434:6;48414:17;;:26;;;;:::i;:::-;:43;;48394:63;48386:108;;;;-1:-1:-1;;;48386:108:0;;15627:2:1;48386:108:0;;;15609:21:1;;;15646:18;;;15639:30;15705:34;15685:18;;;15678:62;15757:18;;48386:108:0;15425:356:1;48386:108:0;48578:20;;48553:45;;47355:4;48553:45;:::i;:::-;48539:60;;47219:4;48539:60;:::i;:::-;48529:6;48513:13;36620:10;:17;;36532:113;48513:13;:22;;;;:::i;:::-;:86;;48505:131;;;;-1:-1:-1;;;48505:131:0;;15627:2:1;48505:131:0;;;15609:21:1;;;15646:18;;;15639:30;15705:34;15685:18;;;15678:62;15757:18;;48505:131:0;15425:356:1;48505:131:0;48676:6;48668:5;;:14;;;;:::i;:::-;48655:9;:27;;48647:70;;;;-1:-1:-1;;;48647:70:0;;16118:2:1;48647:70:0;;;16100:21:1;16157:2;16137:18;;;16130:30;16196:32;16176:18;;;16169:60;16246:18;;48647:70:0;15916:354:1;48647:70:0;48781:15;;48757:10;48736:32;;;;:20;:32;;;;;;:41;;48771:6;;48736:41;:::i;:::-;:60;;48728:101;;;;-1:-1:-1;;;48728:101:0;;16477:2:1;48728:101:0;;;16459:21:1;16516:2;16496:18;;;16489:30;16555;16535:18;;;16528:58;16603:18;;48728:101:0;16275:352:1;48728:101:0;48855:6;48850:160;48871:6;48867:1;:10;48850:160;;;48930:10;48909:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;48958:40;48968:10;48980:13;36620:10;:17;;36532:113;48958:40;48879:3;;;;:::i;:::-;;;;48850:160;;;-1:-1:-1;49026:15:0;;;;;;;49022:40;;;49043:17;:19;;;:17;:19;;;:::i;:::-;;;;;;47978:1092;;:::o;24905:328::-;25080:41;8398:10;25113:7;25080:18;:41::i;:::-;25072:103;;;;-1:-1:-1;;;25072:103:0;;;;;;;:::i;:::-;25186:39;25200:4;25206:2;25210:7;25219:5;25186:13;:39::i;:::-;24905:328;;;;:::o;52239:466::-;26808:4;26832:16;;;:7;:16;;;;;;52312:13;;-1:-1:-1;;;;;26832:16:0;52343:113;;;;-1:-1:-1;;;52343:113:0;;;;;;;:::i;:::-;52472:8;;;;;;;52469:70;;52513:14;52506:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52239:466;;;:::o;52469:70::-;52551:23;52577;52592:7;52577:14;:23::i;:::-;52551:49;;52644:1;52624:9;52618:23;:27;:79;;;;;;;;;;;;;;;;;52672:9;52655:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;52618:79;52611:86;52239:466;-1:-1:-1;;;52239:466:0:o;51139:87::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;51206:4:::1;:12:::0;51139:87::o;49777:106::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49860:15:::1;::::0;;-1:-1:-1;;49841:34:0;::::1;49860:15;::::0;;;::::1;;;49859:16;49841:34:::0;;::::1;;::::0;;49777:106::o;49461:126::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49547:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;43935:201::-:0;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44024:22:0;::::1;44016:73;;;::::0;-1:-1:-1;;;44016:73:0;;17698:2:1;44016:73:0::1;::::0;::::1;17680:21:1::0;17737:2;17717:18;;;17710:30;17776:34;17756:18;;;17749:62;-1:-1:-1;;;17827:18:1;;;17820:36;17873:19;;44016:73:0::1;17496:402:1::0;44016:73:0::1;44100:28;44119:8;44100:18;:28::i;35892:224::-:0;35994:4;-1:-1:-1;;;;;;36018:50:0;;-1:-1:-1;;;36018:50:0;;:90;;;36072:36;36096:11;36072:23;:36::i;30889:174::-;30964:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30964:29:0;-1:-1:-1;;;;;30964:29:0;;;;;;;;:24;;31018:23;30964:24;31018:14;:23::i;:::-;-1:-1:-1;;;;;31009:46:0;;;;;;;;;;;30889:174;;:::o;27037:348::-;27130:4;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;27147:73;;;;-1:-1:-1;;;27147:73:0;;18105:2:1;27147:73:0;;;18087:21:1;18144:2;18124:18;;;18117:30;18183:34;18163:18;;;18156:62;-1:-1:-1;;;18234:18:1;;;18227:42;18286:19;;27147:73:0;17903:408:1;27147:73:0;27231:13;27247:23;27262:7;27247:14;:23::i;:::-;27231:39;;27300:5;-1:-1:-1;;;;;27289:16:0;:7;-1:-1:-1;;;;;27289:16:0;;:52;;;-1:-1:-1;;;;;;24129:25:0;;;24105:4;24129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27309:32;27289:87;;;;27369:7;-1:-1:-1;;;;;27345:31:0;:20;27357:7;27345:11;:20::i;:::-;-1:-1:-1;;;;;27345:31:0;;27289:87;27281:96;27037:348;-1:-1:-1;;;;27037:348:0:o;30146:625::-;30305:4;-1:-1:-1;;;;;30278:31:0;:23;30293:7;30278:14;:23::i;:::-;-1:-1:-1;;;;;30278:31:0;;30270:81;;;;-1:-1:-1;;;30270:81:0;;18518:2:1;30270:81:0;;;18500:21:1;18557:2;18537:18;;;18530:30;18596:34;18576:18;;;18569:62;-1:-1:-1;;;18647:18:1;;;18640:35;18692:19;;30270:81:0;18316:401:1;30270:81:0;-1:-1:-1;;;;;30370:16:0;;30362:65;;;;-1:-1:-1;;;30362:65:0;;18924:2:1;30362:65:0;;;18906:21:1;18963:2;18943:18;;;18936:30;19002:34;18982:18;;;18975:62;-1:-1:-1;;;19053:18:1;;;19046:34;19097:19;;30362:65:0;18722:400:1;30362:65:0;30440:39;30461:4;30467:2;30471:7;30440:20;:39::i;:::-;30544:29;30561:1;30565:7;30544:8;:29::i;:::-;-1:-1:-1;;;;;30586:15:0;;;;;;:9;:15;;;;;:20;;30605:1;;30586:15;:20;;30605:1;;30586:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30617:13:0;;;;;;:9;:13;;;;;:18;;30634:1;;30617:13;:18;;30634:1;;30617:18;:::i;:::-;;;;-1:-1:-1;;30646:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30646:21:0;-1:-1:-1;;;;;30646:21:0;;;;;;;;;30685:27;;30646:16;;30685:27;;;;;;;23082:341;23012:411;;:::o;51899:103::-;51971:23;;;;:13;;:23;;;;;:::i;27727:110::-;27803:26;27813:2;27817:7;27803:26;;;;;;;;;;;;:9;:26::i;44296:191::-;44389:6;;;-1:-1:-1;;;;;44406:17:0;;;-1:-1:-1;;;;;;44406:17:0;;;;;;;44439:40;;44389:6;;;44406:17;44389:6;;44439:40;;44370:16;;44439:40;44359:128;44296:191;:::o;31205:315::-;31360:8;-1:-1:-1;;;;;31351:17:0;:5;-1:-1:-1;;;;;31351:17:0;;;31343:55;;;;-1:-1:-1;;;31343:55:0;;19329:2:1;31343:55:0;;;19311:21:1;19368:2;19348:18;;;19341:30;19407:27;19387:18;;;19380:55;19452:18;;31343:55:0;19127:349:1;31343:55:0;-1:-1:-1;;;;;31409:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31409:46:0;;;;;;;;;;31471:41;;540::1;;;31471::0;;513:18:1;31471:41:0;;;;;;;31205:315;;;:::o;51234:203::-;51345:28;;-1:-1:-1;;51362:10:0;19630:2:1;19626:15;19622:53;51345:28:0;;;19610:66:1;51297:4:0;;;;19692:12:1;;51345:28:0;;;;;;;;;;;;51335:39;;;;;;51320:54;;51392:37;51411:5;51418:4;;51424;51392:18;:37::i;26115:315::-;26272:28;26282:4;26288:2;26292:7;26272:9;:28::i;:::-;26319:48;26342:4;26348:2;26352:7;26361:5;26319:22;:48::i;:::-;26311:111;;;;-1:-1:-1;;;26311:111:0;;;;;;;:::i;22273:334::-;26808:4;26832:16;;;:7;:16;;;;;;22346:13;;-1:-1:-1;;;;;26832:16:0;22372:76;;;;-1:-1:-1;;;22372:76:0;;;;;;;:::i;:::-;22461:21;22485:10;:8;:10::i;:::-;22461:34;;22537:1;22519:7;22513:21;:25;:86;;;;;;;;;;;;;;;;;22565:7;22574:18;:7;:16;:18::i;:::-;22548:45;;;;;;;;;:::i;20984:305::-;21086:4;-1:-1:-1;;;;;;21123:40:0;;-1:-1:-1;;;21123:40:0;;:105;;-1:-1:-1;;;;;;;21180:48:0;;-1:-1:-1;;;21180:48:0;21123:105;:158;;;-1:-1:-1;;;;;;;;;;19700:40:0;;;21245:36;19591:157;51449:196;51592:45;51619:4;51625:2;51629:7;51592:26;:45::i;28064:321::-;28194:18;28200:2;28204:7;28194:5;:18::i;:::-;28245:54;28276:1;28280:2;28284:7;28293:5;28245:22;:54::i;:::-;28223:154;;;;-1:-1:-1;;;28223:154:0;;;;;;;:::i;45620:190::-;45745:4;45798;45769:25;45782:5;45789:4;45769:12;:25::i;:::-;:33;;45620:190;-1:-1:-1;;;;45620:190:0:o;32085:799::-;32240:4;-1:-1:-1;;;;;32261:13:0;;11835:19;:23;32257:620;;32297:72;;-1:-1:-1;;;32297:72:0;;-1:-1:-1;;;;;32297:36:0;;;;;:72;;8398:10;;32348:4;;32354:7;;32363:5;;32297:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32297:72:0;;;;;;;;-1:-1:-1;;32297:72:0;;;;;;;;;;;;:::i;:::-;;;32293:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32539:13:0;;32535:272;;32582:60;;-1:-1:-1;;;32582:60:0;;;;;;;:::i;32535:272::-;32757:6;32751:13;32742:6;32738:2;32734:15;32727:38;32293:529;-1:-1:-1;;;;;;32420:51:0;-1:-1:-1;;;32420:51:0;;-1:-1:-1;32413:58:0;;32257:620;-1:-1:-1;32861:4:0;32085:799;;;;;;:::o;52010:106::-;52062:13;52095;52088:20;;;;;:::i;5959:723::-;6015:13;6236:10;6232:53;;-1:-1:-1;;6263:10:0;;;;;;;;;;;;-1:-1:-1;;;6263:10:0;;;;;5959:723::o;6232:53::-;6310:5;6295:12;6351:78;6358:9;;6351:78;;6384:8;;;;:::i;:::-;;-1:-1:-1;6407:10:0;;-1:-1:-1;6415:2:0;6407:10;;:::i;:::-;;;6351:78;;;6439:19;6471:6;6461:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6461:17:0;;6439:39;;6489:154;6496:10;;6489:154;;6523:11;6533:1;6523:11;;:::i;:::-;;-1:-1:-1;6592:10:0;6600:2;6592:5;:10;:::i;:::-;6579:24;;:2;:24;:::i;:::-;6566:39;;6549:6;6556;6549:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6549:56:0;;;;;;;;-1:-1:-1;6620:11:0;6629:2;6620:11;;:::i;:::-;;;6489:154;;37568:589;-1:-1:-1;;;;;37774:18:0;;37770:187;;37809:40;37841:7;38984:10;:17;;38957:24;;;;:15;:24;;;;;:44;;;39012:24;;;;;;;;;;;;38880:164;37809:40;37770:187;;;37879:2;-1:-1:-1;;;;;37871:10:0;:4;-1:-1:-1;;;;;37871:10:0;;37867:90;;37898:47;37931:4;37937:7;37898:32;:47::i;:::-;-1:-1:-1;;;;;37971:16:0;;37967:183;;38004:45;38041:7;38004:36;:45::i;37967:183::-;38077:4;-1:-1:-1;;;;;38071:10:0;:2;-1:-1:-1;;;;;38071:10:0;;38067:83;;38098:40;38126:2;38130:7;38098:27;:40::i;28721:439::-;-1:-1:-1;;;;;28801:16:0;;28793:61;;;;-1:-1:-1;;;28793:61:0;;21676:2:1;28793:61:0;;;21658:21:1;;;21695:18;;;21688:30;21754:34;21734:18;;;21727:62;21806:18;;28793:61:0;21474:356:1;28793:61:0;26808:4;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;:30;28865:58;;;;-1:-1:-1;;;28865:58:0;;22037:2:1;28865:58:0;;;22019:21:1;22076:2;22056:18;;;22049:30;22115;22095:18;;;22088:58;22163:18;;28865:58:0;21835:352:1;28865:58:0;28936:45;28965:1;28969:2;28973:7;28936:20;:45::i;:::-;-1:-1:-1;;;;;28994:13:0;;;;;;:9;:13;;;;;:18;;29011:1;;28994:13;:18;;29011:1;;28994:18;:::i;:::-;;;;-1:-1:-1;;29023:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29023:21:0;-1:-1:-1;;;;;29023:21:0;;;;;;;;29062:33;;29023:16;;;29062:33;;29023:16;;29062:33;50780:351;;50745:386::o;46171:675::-;46254:7;46297:4;46254:7;46312:497;46336:5;:12;46332:1;:16;46312:497;;;46370:20;46393:5;46399:1;46393:8;;;;;;;;:::i;:::-;;;;;;;46370:31;;46436:12;46420;:28;46416:382;;46922:13;46972:15;;;47008:4;47001:15;;;47055:4;47039:21;;46548:57;;46416:382;;;46922:13;46972:15;;;47008:4;47001:15;;;47055:4;47039:21;;46725:57;;46416:382;-1:-1:-1;46350:3:0;;;;:::i;:::-;;;;46312:497;;39671:988;39937:22;39987:1;39962:22;39979:4;39962:16;:22::i;:::-;:26;;;;:::i;:::-;39999:18;40020:26;;;:17;:26;;;;;;39937:51;;-1:-1:-1;40153:28:0;;;40149:328;;-1:-1:-1;;;;;40220:18:0;;40198:19;40220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40271:30;;;;;;:44;;;40388:30;;:17;:30;;;;;:43;;;40149:328;-1:-1:-1;40573:26:0;;;;:17;:26;;;;;;;;40566:33;;;-1:-1:-1;;;;;40617:18:0;;;;;:12;:18;;;;;:34;;;;;;;40610:41;39671:988::o;40954:1079::-;41232:10;:17;41207:22;;41232:21;;41252:1;;41232:21;:::i;:::-;41264:18;41285:24;;;:15;:24;;;;;;41658:10;:26;;41207:46;;-1:-1:-1;41285:24:0;;41207:46;;41658:26;;;;;;:::i;:::-;;;;;;;;;41636:48;;41722:11;41697:10;41708;41697:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41802:28;;;:15;:28;;;;;;;:41;;;41974:24;;;;;41967:31;42009:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41025:1008;;;40954:1079;:::o;38458:221::-;38543:14;38560:20;38577:2;38560:16;:20::i;:::-;-1:-1:-1;;;;;38591:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38636:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38458:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:275;3719:2;3713:9;3784:2;3765:13;;-1:-1:-1;;3761:27:1;3749:40;;3819:18;3804:34;;3840:22;;;3801:62;3798:88;;;3866:18;;:::i;:::-;3902:2;3895:22;3648:275;;-1:-1:-1;3648:275:1:o;3928:407::-;3993:5;4027:18;4019:6;4016:30;4013:56;;;4049:18;;:::i;:::-;4087:57;4132:2;4111:15;;-1:-1:-1;;4107:29:1;4138:4;4103:40;4087:57;:::i;:::-;4078:66;;4167:6;4160:5;4153:21;4207:3;4198:6;4193:3;4189:16;4186:25;4183:45;;;4224:1;4221;4214:12;4183:45;4273:6;4268:3;4261:4;4254:5;4250:16;4237:43;4327:1;4320:4;4311:6;4304:5;4300:18;4296:29;4289:40;3928:407;;;;;:::o;4340:451::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4518:9;4505:23;4551:18;4543:6;4540:30;4537:50;;;4583:1;4580;4573:12;4537:50;4606:22;;4659:4;4651:13;;4647:27;-1:-1:-1;4637:55:1;;4688:1;4685;4678:12;4637:55;4711:74;4777:7;4772:2;4759:16;4754:2;4750;4746:11;4711:74;:::i;4796:347::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4961:29;4980:9;4961:29;:::i;:::-;4951:39;;5040:2;5029:9;5025:18;5012:32;5087:5;5080:13;5073:21;5066:5;5063:32;5053:60;;5109:1;5106;5099:12;5053:60;5132:5;5122:15;;;4796:347;;;;;:::o;5148:1014::-;5241:6;5249;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;5354:9;5341:23;5331:33;;5383:2;5436;5425:9;5421:18;5408:32;5459:18;5500:2;5492:6;5489:14;5486:34;;;5516:1;5513;5506:12;5486:34;5554:6;5543:9;5539:22;5529:32;;5599:7;5592:4;5588:2;5584:13;5580:27;5570:55;;5621:1;5618;5611:12;5570:55;5657:2;5644:16;5679:2;5675;5672:10;5669:36;;;5685:18;;:::i;:::-;5731:2;5728:1;5724:10;5714:20;;5754:28;5778:2;5774;5770:11;5754:28;:::i;:::-;5816:15;;;5886:11;;;5882:20;;;5847:12;;;;5914:19;;;5911:39;;;5946:1;5943;5936:12;5911:39;5970:11;;;;5990:142;6006:6;6001:3;5998:15;5990:142;;;6072:17;;6060:30;;6023:12;;;;6110;;;;5990:142;;;6151:5;6141:15;;;;;;;;5148:1014;;;;;:::o;6167:667::-;6262:6;6270;6278;6286;6339:3;6327:9;6318:7;6314:23;6310:33;6307:53;;;6356:1;6353;6346:12;6307:53;6379:29;6398:9;6379:29;:::i;:::-;6369:39;;6427:38;6461:2;6450:9;6446:18;6427:38;:::i;:::-;6417:48;;6512:2;6501:9;6497:18;6484:32;6474:42;;6567:2;6556:9;6552:18;6539:32;6594:18;6586:6;6583:30;6580:50;;;6626:1;6623;6616:12;6580:50;6649:22;;6702:4;6694:13;;6690:27;-1:-1:-1;6680:55:1;;6731:1;6728;6721:12;6680:55;6754:74;6820:7;6815:2;6802:16;6797:2;6793;6789:11;6754:74;:::i;:::-;6744:84;;;6167:667;;;;;;;:::o;7024:260::-;7092:6;7100;7153:2;7141:9;7132:7;7128:23;7124:32;7121:52;;;7169:1;7166;7159:12;7121:52;7192:29;7211:9;7192:29;:::i;:::-;7182:39;;7240:38;7274:2;7263:9;7259:18;7240:38;:::i;:::-;7230:48;;7024:260;;;;;:::o;7289:380::-;7368:1;7364:12;;;;7411;;;7432:61;;7486:4;7478:6;7474:17;7464:27;;7432:61;7539:2;7531:6;7528:14;7508:18;7505:38;7502:161;;;7585:10;7580:3;7576:20;7573:1;7566:31;7620:4;7617:1;7610:15;7648:4;7645:1;7638:15;7502:161;;7289:380;;;:::o;8914:413::-;9116:2;9098:21;;;9155:2;9135:18;;;9128:30;9194:34;9189:2;9174:18;;9167:62;-1:-1:-1;;;9260:2:1;9245:18;;9238:47;9317:3;9302:19;;8914:413::o;9332:356::-;9534:2;9516:21;;;9553:18;;;9546:30;9612:34;9607:2;9592:18;;9585:62;9679:2;9664:18;;9332:356::o;10448:127::-;10509:10;10504:3;10500:20;10497:1;10490:31;10540:4;10537:1;10530:15;10564:4;10561:1;10554:15;10580:127;10641:10;10636:3;10632:20;10629:1;10622:31;10672:4;10669:1;10662:15;10696:4;10693:1;10686:15;10712:120;10752:1;10778;10768:35;;10783:18;;:::i;:::-;-1:-1:-1;10817:9:1;;10712:120::o;10837:168::-;10877:7;10943:1;10939;10935:6;10931:14;10928:1;10925:21;10920:1;10913:9;10906:17;10902:45;10899:71;;;10950:18;;:::i;:::-;-1:-1:-1;10990:9:1;;10837:168::o;11912:127::-;11973:10;11968:3;11964:20;11961:1;11954:31;12004:4;12001:1;11994:15;12028:4;12025:1;12018:15;12044:135;12083:3;-1:-1:-1;;12104:17:1;;12101:43;;;12124:18;;:::i;:::-;-1:-1:-1;12171:1:1;12160:13;;12044:135::o;12597:128::-;12637:3;12668:1;12664:6;12661:1;12658:13;12655:39;;;12674:18;;:::i;:::-;-1:-1:-1;12710:9:1;;12597:128::o;15786:125::-;15826:4;15854:1;15851;15848:8;15845:34;;;15859:18;;:::i;:::-;-1:-1:-1;15896:9:1;;15786:125::o;16632:411::-;16834:2;16816:21;;;16873:2;16853:18;;;16846:30;16912:34;16907:2;16892:18;;16885:62;-1:-1:-1;;;16978:2:1;16963:18;;16956:45;17033:3;17018:19;;16632:411::o;17048:443::-;17280:3;17318:6;17312:13;17334:53;17380:6;17375:3;17368:4;17360:6;17356:17;17334:53;:::i;:::-;-1:-1:-1;;;17409:16:1;;17434:22;;;-1:-1:-1;17483:1:1;17472:13;;17048:443;-1:-1:-1;17048:443:1:o;19715:414::-;19917:2;19899:21;;;19956:2;19936:18;;;19929:30;19995:34;19990:2;19975:18;;19968:62;-1:-1:-1;;;20061:2:1;20046:18;;20039:48;20119:3;20104:19;;19715:414::o;20134:470::-;20313:3;20351:6;20345:13;20367:53;20413:6;20408:3;20401:4;20393:6;20389:17;20367:53;:::i;:::-;20483:13;;20442:16;;;;20505:57;20483:13;20442:16;20539:4;20527:17;;20505:57;:::i;:::-;20578:20;;20134:470;-1:-1:-1;;;;20134:470:1:o;20609:489::-;-1:-1:-1;;;;;20878:15:1;;;20860:34;;20930:15;;20925:2;20910:18;;20903:43;20977:2;20962:18;;20955:34;;;21025:3;21020:2;21005:18;;20998:31;;;20803:4;;21046:46;;21072:19;;21064:6;21046:46;:::i;:::-;21038:54;20609:489;-1:-1:-1;;;;;;20609:489:1:o;21103:249::-;21172:6;21225:2;21213:9;21204:7;21200:23;21196:32;21193:52;;;21241:1;21238;21231:12;21193:52;21273:9;21267:16;21292:30;21316:5;21292:30;:::i;21357:112::-;21389:1;21415;21405:35;;21420:18;;:::i;:::-;-1:-1:-1;21454:9:1;;21357:112::o;22192:127::-;22253:10;22248:3;22244:20;22241:1;22234:31;22284:4;22281:1;22274:15;22308:4;22305:1;22298:15
Swarm Source
ipfs://47abe4fe413443506f2ef3adc050b825c8cad3c48051150fafe1c72bb799149b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ 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.