More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16307914 | 843 days ago | IN | 0 ETH | 0.0006187 | ||||
Set Approval For... | 16301899 | 843 days ago | IN | 0 ETH | 0.00082024 | ||||
Set Approval For... | 15060678 | 1025 days ago | IN | 0 ETH | 0.00060393 | ||||
Release | 14288576 | 1150 days ago | IN | 0 ETH | 0.00201595 | ||||
Mint | 14272375 | 1152 days ago | IN | 0.1 ETH | 0.00507327 | ||||
Mint | 14272348 | 1152 days ago | IN | 0.25 ETH | 0.01652724 | ||||
Transfer From | 14270373 | 1153 days ago | IN | 0 ETH | 0.00199217 | ||||
Transfer From | 14270268 | 1153 days ago | IN | 0 ETH | 0.00196973 | ||||
Mint | 14265647 | 1153 days ago | IN | 0.025 ETH | 0.00405966 | ||||
Set Approval For... | 14263077 | 1154 days ago | IN | 0 ETH | 0.00271619 | ||||
Mint | 14260483 | 1154 days ago | IN | 0.025 ETH | 0.00355736 | ||||
Mint | 14260474 | 1154 days ago | IN | 0.025 ETH | 0.00315788 | ||||
Mint | 14254252 | 1155 days ago | IN | 0.05 ETH | 0.00630965 | ||||
Transfer From | 14253654 | 1155 days ago | IN | 0 ETH | 0.00387194 | ||||
Transfer From | 14252554 | 1155 days ago | IN | 0 ETH | 0.00251862 | ||||
Transfer From | 14252410 | 1156 days ago | IN | 0 ETH | 0.00317312 | ||||
Mint | 14252362 | 1156 days ago | IN | 0.025 ETH | 0.00590091 | ||||
Mint | 14252342 | 1156 days ago | IN | 0.075 ETH | 0.01170849 | ||||
Mint | 14251265 | 1156 days ago | IN | 0.05 ETH | 0.01770676 | ||||
Mint | 14251123 | 1156 days ago | IN | 0.1 ETH | 0.0175727 | ||||
Mint | 14251025 | 1156 days ago | IN | 0.075 ETH | 0.01252813 | ||||
Set Approval For... | 14250772 | 1156 days ago | IN | 0 ETH | 0.00651432 | ||||
Mint | 14250734 | 1156 days ago | IN | 0.25 ETH | 0.05330187 | ||||
Mint | 14245399 | 1157 days ago | IN | 0.025 ETH | 0.00344571 | ||||
Mint | 14245219 | 1157 days ago | IN | 0.025 ETH | 0.0030678 |
Loading...
Loading
Contract Name:
LarvaCrabsV2
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-20 */ // SPDX-License-Identifier: MIT AND BSD-3-Clause // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts-source/ERC721B.sol pragma solidity ^0.8.0; /******************** * @author: Squeebo * ********************/ abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata { using Address for address; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address address[] internal _owners; // 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"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721B.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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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 tokenId < _owners.length && _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 = ERC721B.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(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 = ERC721B.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(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(ERC721B.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(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(ERC721B.ownerOf(tokenId), to, tokenId); } /** * @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 {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @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 tokenId); /** * @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); } // File contracts-source/ERC721EnumerableLite.sol pragma solidity ^0.8.0; /** * @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 ERC721EnumerableLite is ERC721B, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721B.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enumerable: owner index out of bounds"); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721EnumerableLite.totalSupply(), "ERC721Enumerable: global index out of bounds"); return index; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File @openzeppelin/contracts/finance/[email protected] // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File contracts-source/LarvaCrabsV2.sol pragma solidity >=0.7.0 <0.9.0; // ████████████████ // ██████████████████████ // ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█ // ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ // ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ // ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ // ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ // ▄▄███▓▓▓▓▓██▓▓▓▓▓▓▓▓▓██▓▓██▌ // ███▓▓▓▓▓▓▓██▓▓▓▓▓▓▓▓▓██▓▓██▌ // ▄▄ ▄▄▄ ███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ▄▄ ▄▄ // ▄▄██▄▄███▄▄ ▀▀███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ▄▄██▌▄▄██▄▄ // ▐██▓▓██▌▓▓██ ▐██▓▓▓▓▓▓▓▓▓▓▓█████▓▓▓▓██▌ ██▌▓███▓▓██▌ // ▐██▓▓██▌▓▓██ ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ██▌▓▓██▓▓██▌ // ▐██▓▓▓▓▓▓▓██ ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ██▌▓▓▓▓▓▓██▌ // ██████▌ ▐██▓▓▓▓▓▓▓▓▓███████▓▓▓▓██▌ ███████ // ██▓▓██▌ ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ███▓▓██ // ██▓▓▓▓▓██ ▐██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▌ ██▌▓▓▓▓██ // ██▌▓▓▓▓█████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█████▓▓▓▓███ // ███▓▓██▌▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▓▓██▌ // ▐████▌▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████ // ███▓▓▓▓███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓███▓▓▓▓██▌ // ██▌▓▓▓▓█████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█████▓▓▓▓███ // ███████ ▐████▓▓▓▓▓▓▓▓▓▓▓▓▓▓████▌ ███████ // ██▌ ███▓▓▓▓██████████████▓▓▓▓██▌ ▐██ // ███▓▓██ ▐██▓▓██▌ // █████ ████▌ // ██▌ ██▌ pragma solidity >=0.7.0 <0.9.0; contract LarvaCrabsV2 is ERC721EnumerableLite, Ownable, PaymentSplitter { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; bool public isPauseMode = true; uint256 public PriceNFT = 0.025 ether; uint256 public MaxCollection = 5001; //account for 0 based array uint256 public maxMintPerTrx = 10; bool public isProxied = true; address[] private addressList = [ 0x3Fc6C5047c28917FB27c79bF1D9B49419CFDc04B, 0x273962695a1d24f8E3316B12Ca294800b5A88659 ]; uint[] private shareList = [ 95, 5 ]; constructor(string memory _initBaseURI) ERC721B("Larva Crabs", "LARVACRABS2") PaymentSplitter(addressList, shareList){ setBaseURI(_initBaseURI); } function _baseURI() internal view virtual returns (string memory) { return baseURI; } function mint(uint256 _mintAmount) public payable { require(!isPauseMode, "Paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "Select at least 1 NFT"); require(supply + _mintAmount <= MaxCollection, "Not Enough Left"); if (msg.sender != owner()) { require(_mintAmount <= maxMintPerTrx, "Max Mint Amount Reached"); require(msg.value >= PriceNFT * _mintAmount, "Balance Insufficient"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } 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 tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory base = _baseURI(); string memory retURI = ""; if (isProxied) { retURI = bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString())) : ""; } else { retURI = bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), baseExtension)) : ""; } return retURI; } function gift(uint[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "Must provide equal quantities and recipients" ); uint totalQuantity = 0; uint256 supply = totalSupply(); for(uint i = 0; i < quantity.length; ++i){ totalQuantity += quantity[i]; } require( supply + totalQuantity <= MaxCollection, "Mint/order exceeds supply" ); delete totalQuantity; for(uint i = 0; i < recipient.length; ++i){ for(uint j = 0; j < quantity[i]; ++j){ _safeMint( recipient[i], supply++, "" ); } } } function reserve() public onlyOwner { uint256 i; uint256 supply = totalSupply(); for (i = 0; i < 30; i++) { _safeMint(msg.sender, supply++, ""); } } function setIsPauseMode(bool _state) public onlyOwner { isPauseMode = _state; } function setPriceNFT(uint256 _newPriceNFT) public onlyOwner { PriceNFT = _newPriceNFT; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintPerTrx = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function withdraw() public payable onlyOwner { (bool cc, ) = payable(owner()).call{value: address(this).balance}(""); require(cc); } function flipIsProxied() public onlyOwner { isProxied = !isProxied; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"MaxCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PriceNFT","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipIsProxied","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":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPauseMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isProxied","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTrx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPauseMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceNFT","type":"uint256"}],"name":"setPriceNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600e919062000646565b50600f8054600160ff1991821681179092556658d15e17628000601055611389601155600a60125560138054909116909117905560408051808201909152733fc6c5047c28917fb27c79bf1d9b49419cfdc04b815273273962695a1d24f8e3316b12ca294800b5a886596020820152620000a7906014906002620006d5565b5060408051808201909152605f815260056020820152620000cd9060159060026200072d565b50348015620000db57600080fd5b5060405162003e6e38038062003e6e833981016040819052620000fe916200079d565b60148054806020026020016040519081016040528092919081815260200182805480156200015657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000137575b50505050506015805480602002602001604051908101604052809291908181526020018280548015620001a957602002820191906000526020600020905b81548152602001906001019080831162000194575b50505050506040518060400160405280600b81526020016a4c6172766120437261627360a81b8152506040518060400160405280600b81526020016a2620a92b20a1a920a1299960a91b81525081600090805190602001906200020e92919062000646565b5080516200022490600190602084019062000646565b505050620002416200023b6200038d60201b60201c565b62000391565b8051825114620002b35760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003065760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002aa565b60005b825181101562000372576200035d8382815181106200032c576200032c62000879565b602002602001015183838151811062000349576200034962000879565b6020026020010151620003e360201b60201c565b806200036981620008a5565b91505062000309565b5050506200038681620005d160201b60201c565b506200091b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004505760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002aa565b60008111620004a25760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002aa565b6001600160a01b038216600090815260086020526040902054156200051e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002aa565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038416908117909155600090815260086020526040902081905560065462000588908290620008c3565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b031633146200062d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002aa565b80516200064290600d90602084019062000646565b5050565b8280546200065490620008de565b90600052602060002090601f016020900481019282620006785760008555620006c3565b82601f106200069357805160ff1916838001178555620006c3565b82800160010185558215620006c3579182015b82811115620006c3578251825591602001919060010190620006a6565b50620006d192915062000770565b5090565b828054828255906000526020600020908101928215620006c3579160200282015b82811115620006c357825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006f6565b828054828255906000526020600020908101928215620006c3579160200282015b82811115620006c3578251829060ff169055916020019190600101906200074e565b5b80821115620006d1576000815560010162000771565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620007b157600080fd5b82516001600160401b0380821115620007c957600080fd5b818501915085601f830112620007de57600080fd5b815181811115620007f357620007f362000787565b604051601f8201601f19908116603f011681019083821181831017156200081e576200081e62000787565b8160405282815288868487010111156200083757600080fd5b600093505b828410156200085b57848401860151818501870152928501926200083c565b828411156200086d5760008684830101525b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620008bc57620008bc6200088f565b5060010190565b60008219821115620008d957620008d96200088f565b500190565b600181811c90821680620008f357607f821691505b602082108114156200091557634e487b7160e01b600052602260045260246000fd5b50919050565b613543806200092b6000396000f3fe6080604052600436106102f65760003560e01c8063715018a61161018f578063bc9587fe116100e1578063ce7c2ac21161008a578063e793c96011610064578063e793c96014610886578063e985e9c5146108a0578063f2fde38b146108e957600080fd5b8063ce7c2ac214610805578063d79779b21461083b578063e33b7de31461087157600080fd5b8063c87b56dd116100bb578063c87b56dd146107bb578063cc1efca6146107db578063cd3293de146107f057600080fd5b8063bc9587fe1461077a578063bf9bbad214610790578063c6682862146107a657600080fd5b806395d89b4111610143578063a0712d681161011d578063a0712d6814610727578063a22cb4651461073a578063b88d4fde1461075a57600080fd5b806395d89b41146106bc57806396ea3a47146106d15780639852595c146106f157600080fd5b80637f00c7a6116101745780637f00c7a61461065e5780638b83209b1461067e5780638da5cb5b1461069e57600080fd5b8063715018a614610629578063761ef7b61461063e57600080fd5b806342842e0e11610248578063518fe7c5116101fc5780636352211e116101d65780636352211e146105d45780636c0360eb146105f457806370a082311461060957600080fd5b8063518fe7c51461058457806355f804b31461059e5780635d4ddb0d146105be57600080fd5b806345888a211161022d57806345888a211461052457806348b75044146105445780634f6ccce71461056457600080fd5b806342842e0e146104d7578063438b6300146104f757600080fd5b806319165587116102aa5780633a98ef39116102845780633a98ef39146104745780633ccfd60b14610489578063406072a91461049157600080fd5b8063191655871461041457806323b872dd146104345780632f745c591461045457600080fd5b8063081812fc116102db578063081812fc1461039b578063095ea7b3146103d357806318160ddd146103f557600080fd5b806301ffc9a71461034457806306fdde031461037957600080fd5b3661033f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561035057600080fd5b5061036461035f366004612e3e565b610909565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b5061038e61094d565b6040516103709190612eb3565b3480156103a757600080fd5b506103bb6103b6366004612ec6565b6109df565b6040516001600160a01b039091168152602001610370565b3480156103df57600080fd5b506103f36103ee366004612ef4565b610a6c565b005b34801561040157600080fd5b506002545b604051908152602001610370565b34801561042057600080fd5b506103f361042f366004612f20565b610b9e565b34801561044057600080fd5b506103f361044f366004612f3d565b610d4f565b34801561046057600080fd5b5061040661046f366004612ef4565b610dd6565b34801561048057600080fd5b50600654610406565b6103f3610f0d565b34801561049d57600080fd5b506104066104ac366004612f7e565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156104e357600080fd5b506103f36104f2366004612f3d565b610fdb565b34801561050357600080fd5b50610517610512366004612f20565b610ff6565b6040516103709190612fb7565b34801561053057600080fd5b506103f361053f366004613009565b611098565b34801561055057600080fd5b506103f361055f366004612f7e565b611105565b34801561057057600080fd5b5061040661057f366004612ec6565b611389565b34801561059057600080fd5b506013546103649060ff1681565b3480156105aa57600080fd5b506103f36105b93660046130b2565b61140c565b3480156105ca57600080fd5b5061040660115481565b3480156105e057600080fd5b506103bb6105ef366004612ec6565b61147d565b34801561060057600080fd5b5061038e61151d565b34801561061557600080fd5b50610406610624366004612f20565b6115ab565b34801561063557600080fd5b506103f3611690565b34801561064a57600080fd5b506103f3610659366004612ec6565b6116f6565b34801561066a57600080fd5b506103f3610679366004612ec6565b611755565b34801561068a57600080fd5b506103bb610699366004612ec6565b6117b4565b3480156106aa57600080fd5b506005546001600160a01b03166103bb565b3480156106c857600080fd5b5061038e6117e4565b3480156106dd57600080fd5b506103f36106ec366004613147565b6117f3565b3480156106fd57600080fd5b5061040661070c366004612f20565b6001600160a01b031660009081526009602052604090205490565b6103f3610735366004612ec6565b611a14565b34801561074657600080fd5b506103f36107553660046131b3565b611c0f565b34801561076657600080fd5b506103f36107753660046131e1565b611cd4565b34801561078657600080fd5b5061040660125481565b34801561079c57600080fd5b5061040660105481565b3480156107b257600080fd5b5061038e611d62565b3480156107c757600080fd5b5061038e6107d6366004612ec6565b611d6f565b3480156107e757600080fd5b506103f3611eba565b3480156107fc57600080fd5b506103f3611f28565b34801561081157600080fd5b50610406610820366004612f20565b6001600160a01b031660009081526008602052604090205490565b34801561084757600080fd5b50610406610856366004612f20565b6001600160a01b03166000908152600b602052604090205490565b34801561087d57600080fd5b50600754610406565b34801561089257600080fd5b50600f546103649060ff1681565b3480156108ac57600080fd5b506103646108bb366004612f7e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156108f557600080fd5b506103f3610904366004612f20565b611fd5565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109475750610947826120b4565b92915050565b60606000805461095c90613261565b80601f016020809104026020016040519081016040528092919081815260200182805461098890613261565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea8261214f565b610a505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a778261147d565b9050806001600160a01b0316836001600160a01b03161415610b015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a47565b336001600160a01b0382161480610b1d5750610b1d81336108bb565b610b8f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a47565b610b998383612199565b505050565b6001600160a01b038116600090815260086020526040902054610c125760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a47565b6000610c1d60075490565b610c2790476132b2565b90506000610c548383610c4f866001600160a01b031660009081526009602052604090205490565b612214565b905080610cb75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a47565b6001600160a01b03831660009081526009602052604081208054839290610cdf9084906132b2565b925050819055508060076000828254610cf891906132b2565b90915550610d0890508382612252565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d59338261236b565b610dcb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a47565b610b99838383612455565b6000610de1836115ab565b8210610e435760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a47565b6000805b600254811015610eb05760028181548110610e6457610e646132ca565b6000918252602090912001546001600160a01b0386811691161415610ea05783821415610e945791506109479050565b610e9d826132e0565b91505b610ea9816132e0565b9050610e47565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a47565b6005546001600160a01b03163314610f675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6000610f7b6005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b5050905080610fd857600080fd5b50565b610b9983838360405180602001604052806000815250611cd4565b60606000611003836115ab565b905060008167ffffffffffffffff81111561102057611020613026565b604051908082528060200260200182016040528015611049578160200160208202803683370190505b50905060005b82811015611090576110618582610dd6565b828281518110611073576110736132ca565b602090810291909101015280611088816132e0565b91505061104f565b509392505050565b6005546001600160a01b031633146110f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b600f805460ff1916911515919091179055565b6001600160a01b0381166000908152600860205260409020546111795760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a47565b6001600160a01b0382166000908152600b60205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111ea57600080fd5b505afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122291906132fb565b61122c91906132b2565b905060006112658383610c4f87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806112c85760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a47565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906112ff9084906132b2565b90915550506001600160a01b0384166000908152600b60205260408120805483929061132c9084906132b2565b9091555061133d90508484836125e5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061139460025490565b82106114085760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a47565b5090565b6005546001600160a01b031633146114665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b805161147990600d906020840190612d98565b5050565b60008060028381548110611493576114936132ca565b6000918252602090912001546001600160a01b03169050806109475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a47565b600d805461152a90613261565b80601f016020809104026020016040519081016040528092919081815260200182805461155690613261565b80156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b505050505081565b60006001600160a01b0382166116295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a47565b600254600090815b81811015611687576002818154811061164c5761164c6132ca565b6000918252602090912001546001600160a01b038681169116141561167757611674836132e0565b92505b611680816132e0565b9050611631565b50909392505050565b6005546001600160a01b031633146116ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6116f46000612665565b565b6005546001600160a01b031633146117505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b601055565b6005546001600160a01b031633146117af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b601255565b6000600a82815481106117c9576117c96132ca565b6000918252602090912001546001600160a01b031692915050565b60606001805461095c90613261565b6005546001600160a01b0316331461184d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b8281146118c25760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201527f6420726563697069656e747300000000000000000000000000000000000000006064820152608401610a47565b6000806118ce60025490565b905060005b85811015611911578686828181106118ed576118ed6132ca565b90506020020135836118ff91906132b2565b925061190a816132e0565b90506118d3565b5060115461191f83836132b2565b111561196d5760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610a47565b6000915060005b83811015611a0b5760005b878783818110611991576119916132ca565b905060200201358110156119fa576119ea8686848181106119b4576119b46132ca565b90506020020160208101906119c99190612f20565b846119d3816132e0565b9550604051806020016040528060008152506126c4565b6119f3816132e0565b905061197f565b50611a04816132e0565b9050611974565b50505050505050565b600f5460ff1615611a675760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610a47565b6000611a7260025490565b905060008211611ac45760405162461bcd60e51b815260206004820152601560248201527f53656c656374206174206c656173742031204e465400000000000000000000006044820152606401610a47565b601154611ad183836132b2565b1115611b1f5760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420456e6f756768204c65667400000000000000000000000000000000006044820152606401610a47565b6005546001600160a01b03163314611be057601254821115611b835760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a47565b81601054611b919190613314565b341015611be05760405162461bcd60e51b815260206004820152601460248201527f42616c616e636520496e73756666696369656e740000000000000000000000006044820152606401610a47565b60015b828111610b9957611bfd33611bf883856132b2565b612742565b80611c07816132e0565b915050611be3565b6001600160a01b038216331415611c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a47565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cde338361236b565b611d505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a47565b611d5c8484848461275c565b50505050565b600e805461152a90613261565b6060611d7a8261214f565b611dec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a47565b6000611df66127da565b6040805160208101909152600081526013549192509060ff1615611e64576000825111611e325760405180602001604052806000815250611e5d565b81611e3c856127e9565b604051602001611e4d929190613333565b6040516020818303038152906040525b9050611eb3565b6000825111611e825760405180602001604052806000815250611eb0565b81611e8c856127e9565b600e604051602001611ea093929190613362565b6040516020818303038152906040525b90505b9392505050565b6005546001600160a01b03163314611f145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6013805460ff19811660ff90911615179055565b6005546001600160a01b03163314611f825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b600080611f8e60025490565b9050600091505b601e82101561147957611fc33382611fac816132e0565b9350604051806020016040528060008152506126c4565b81611fcd816132e0565b925050611f95565b6005546001600160a01b0316331461202f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6001600160a01b0381166120ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a47565b610fd881612665565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061211757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610947565b60025460009082108015610947575060006001600160a01b03166002838154811061217c5761217c6132ca565b6000918252602090912001546001600160a01b0316141592915050565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121db8261147d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0384166000908152600860205260408120549091839161223e9086613314565b612248919061343c565b611eb09190613450565b804710156122a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a47565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146122ef576040519150601f19603f3d011682016040523d82523d6000602084013e6122f4565b606091505b5050905080610b995760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a47565b60006123768261214f565b6123d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a47565b60006123e28361147d565b9050806001600160a01b0316846001600160a01b0316148061241d5750836001600160a01b0316612412846109df565b6001600160a01b0316145b8061244d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124688261147d565b6001600160a01b0316146124e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a47565b6001600160a01b03821661255f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a47565b61256a600082612199565b816002828154811061257e5761257e6132ca565b60009182526020822001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b9990849061291b565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126ce8383612a00565b6126db6000848484612b35565b610b995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b6114798282604051806020016040528060008152506126c4565b612767848484612455565b61277384848484612b35565b611d5c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b6060600d805461095c90613261565b60608161282957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612853578061283d816132e0565b915061284c9050600a8361343c565b915061282d565b60008167ffffffffffffffff81111561286e5761286e613026565b6040519080825280601f01601f191660200182016040528015612898576020820181803683370190505b5090505b841561244d576128ad600183613450565b91506128ba600a86613467565b6128c59060306132b2565b60f81b8183815181106128da576128da6132ca565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612914600a8661343c565b945061289c565b6000612970826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c8d9092919063ffffffff16565b805190915015610b99578080602001905181019061298e919061347b565b610b995760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a47565b6001600160a01b038216612a565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a47565b612a5f8161214f565b15612aac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a47565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612c8257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b79903390899088908890600401613498565b602060405180830381600087803b158015612b9357600080fd5b505af1925050508015612bc3575060408051601f3d908101601f19168201909252612bc0918101906134d4565b60015b612c68573d808015612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b508051612c605760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061244d565b506001949350505050565b6060611eb0848460008585843b612ce65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a47565b600080866001600160a01b03168587604051612d0291906134f1565b60006040518083038185875af1925050503d8060008114612d3f576040519150601f19603f3d011682016040523d82523d6000602084013e612d44565b606091505b5091509150612d54828286612d5f565b979650505050505050565b60608315612d6e575081611eb3565b825115612d7e5782518084602001fd5b8160405162461bcd60e51b8152600401610a479190612eb3565b828054612da490613261565b90600052602060002090601f016020900481019282612dc65760008555612e0c565b82601f10612ddf57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0c578251825591602001919060010190612df1565b506114089291505b808211156114085760008155600101612e14565b6001600160e01b031981168114610fd857600080fd5b600060208284031215612e5057600080fd5b8135611eb381612e28565b60005b83811015612e76578181015183820152602001612e5e565b83811115611d5c5750506000910152565b60008151808452612e9f816020860160208601612e5b565b601f01601f19169290920160200192915050565b602081526000611eb36020830184612e87565b600060208284031215612ed857600080fd5b5035919050565b6001600160a01b0381168114610fd857600080fd5b60008060408385031215612f0757600080fd5b8235612f1281612edf565b946020939093013593505050565b600060208284031215612f3257600080fd5b8135611eb381612edf565b600080600060608486031215612f5257600080fd5b8335612f5d81612edf565b92506020840135612f6d81612edf565b929592945050506040919091013590565b60008060408385031215612f9157600080fd5b8235612f9c81612edf565b91506020830135612fac81612edf565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015612fef57835183529284019291840191600101612fd3565b50909695505050505050565b8015158114610fd857600080fd5b60006020828403121561301b57600080fd5b8135611eb381612ffb565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561305757613057613026565b604051601f8501601f19908116603f0116810190828211818310171561307f5761307f613026565b8160405280935085815286868601111561309857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130c457600080fd5b813567ffffffffffffffff8111156130db57600080fd5b8201601f810184136130ec57600080fd5b61244d8482356020840161303c565b60008083601f84011261310d57600080fd5b50813567ffffffffffffffff81111561312557600080fd5b6020830191508360208260051b850101111561314057600080fd5b9250929050565b6000806000806040858703121561315d57600080fd5b843567ffffffffffffffff8082111561317557600080fd5b613181888389016130fb565b9096509450602087013591508082111561319a57600080fd5b506131a7878288016130fb565b95989497509550505050565b600080604083850312156131c657600080fd5b82356131d181612edf565b91506020830135612fac81612ffb565b600080600080608085870312156131f757600080fd5b843561320281612edf565b9350602085013561321281612edf565b925060408501359150606085013567ffffffffffffffff81111561323557600080fd5b8501601f8101871361324657600080fd5b6132558782356020840161303c565b91505092959194509250565b600181811c9082168061327557607f821691505b6020821081141561329657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156132c5576132c561329c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156132f4576132f461329c565b5060010190565b60006020828403121561330d57600080fd5b5051919050565b600081600019048311821515161561332e5761332e61329c565b500290565b60008351613345818460208801612e5b565b835190830190613359818360208801612e5b565b01949350505050565b6000845160206133758285838a01612e5b565b8551918401916133888184848a01612e5b565b8554920191600090600181811c90808316806133a557607f831692505b8583108114156133c357634e487b7160e01b85526022600452602485fd5b8080156133d757600181146133e857613415565b60ff19851688528388019550613415565b60008b81526020902060005b8581101561340d5781548a8201529084019088016133f4565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261344b5761344b613426565b500490565b6000828210156134625761346261329c565b500390565b60008261347657613476613426565b500690565b60006020828403121561348d57600080fd5b8151611eb381612ffb565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134ca6080830184612e87565b9695505050505050565b6000602082840312156134e657600080fd5b8151611eb381612e28565b60008251613503818460208701612e5b565b919091019291505056fea264697066735822122057450d61f8b74c10cdf84ed493db14b38906a15daa469ddb17bfbfced249880464736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c742f6c617276615f63726162735f70726f78792f000000000000000000000000
Deployed Bytecode
0x6080604052600436106102f65760003560e01c8063715018a61161018f578063bc9587fe116100e1578063ce7c2ac21161008a578063e793c96011610064578063e793c96014610886578063e985e9c5146108a0578063f2fde38b146108e957600080fd5b8063ce7c2ac214610805578063d79779b21461083b578063e33b7de31461087157600080fd5b8063c87b56dd116100bb578063c87b56dd146107bb578063cc1efca6146107db578063cd3293de146107f057600080fd5b8063bc9587fe1461077a578063bf9bbad214610790578063c6682862146107a657600080fd5b806395d89b4111610143578063a0712d681161011d578063a0712d6814610727578063a22cb4651461073a578063b88d4fde1461075a57600080fd5b806395d89b41146106bc57806396ea3a47146106d15780639852595c146106f157600080fd5b80637f00c7a6116101745780637f00c7a61461065e5780638b83209b1461067e5780638da5cb5b1461069e57600080fd5b8063715018a614610629578063761ef7b61461063e57600080fd5b806342842e0e11610248578063518fe7c5116101fc5780636352211e116101d65780636352211e146105d45780636c0360eb146105f457806370a082311461060957600080fd5b8063518fe7c51461058457806355f804b31461059e5780635d4ddb0d146105be57600080fd5b806345888a211161022d57806345888a211461052457806348b75044146105445780634f6ccce71461056457600080fd5b806342842e0e146104d7578063438b6300146104f757600080fd5b806319165587116102aa5780633a98ef39116102845780633a98ef39146104745780633ccfd60b14610489578063406072a91461049157600080fd5b8063191655871461041457806323b872dd146104345780632f745c591461045457600080fd5b8063081812fc116102db578063081812fc1461039b578063095ea7b3146103d357806318160ddd146103f557600080fd5b806301ffc9a71461034457806306fdde031461037957600080fd5b3661033f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561035057600080fd5b5061036461035f366004612e3e565b610909565b60405190151581526020015b60405180910390f35b34801561038557600080fd5b5061038e61094d565b6040516103709190612eb3565b3480156103a757600080fd5b506103bb6103b6366004612ec6565b6109df565b6040516001600160a01b039091168152602001610370565b3480156103df57600080fd5b506103f36103ee366004612ef4565b610a6c565b005b34801561040157600080fd5b506002545b604051908152602001610370565b34801561042057600080fd5b506103f361042f366004612f20565b610b9e565b34801561044057600080fd5b506103f361044f366004612f3d565b610d4f565b34801561046057600080fd5b5061040661046f366004612ef4565b610dd6565b34801561048057600080fd5b50600654610406565b6103f3610f0d565b34801561049d57600080fd5b506104066104ac366004612f7e565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156104e357600080fd5b506103f36104f2366004612f3d565b610fdb565b34801561050357600080fd5b50610517610512366004612f20565b610ff6565b6040516103709190612fb7565b34801561053057600080fd5b506103f361053f366004613009565b611098565b34801561055057600080fd5b506103f361055f366004612f7e565b611105565b34801561057057600080fd5b5061040661057f366004612ec6565b611389565b34801561059057600080fd5b506013546103649060ff1681565b3480156105aa57600080fd5b506103f36105b93660046130b2565b61140c565b3480156105ca57600080fd5b5061040660115481565b3480156105e057600080fd5b506103bb6105ef366004612ec6565b61147d565b34801561060057600080fd5b5061038e61151d565b34801561061557600080fd5b50610406610624366004612f20565b6115ab565b34801561063557600080fd5b506103f3611690565b34801561064a57600080fd5b506103f3610659366004612ec6565b6116f6565b34801561066a57600080fd5b506103f3610679366004612ec6565b611755565b34801561068a57600080fd5b506103bb610699366004612ec6565b6117b4565b3480156106aa57600080fd5b506005546001600160a01b03166103bb565b3480156106c857600080fd5b5061038e6117e4565b3480156106dd57600080fd5b506103f36106ec366004613147565b6117f3565b3480156106fd57600080fd5b5061040661070c366004612f20565b6001600160a01b031660009081526009602052604090205490565b6103f3610735366004612ec6565b611a14565b34801561074657600080fd5b506103f36107553660046131b3565b611c0f565b34801561076657600080fd5b506103f36107753660046131e1565b611cd4565b34801561078657600080fd5b5061040660125481565b34801561079c57600080fd5b5061040660105481565b3480156107b257600080fd5b5061038e611d62565b3480156107c757600080fd5b5061038e6107d6366004612ec6565b611d6f565b3480156107e757600080fd5b506103f3611eba565b3480156107fc57600080fd5b506103f3611f28565b34801561081157600080fd5b50610406610820366004612f20565b6001600160a01b031660009081526008602052604090205490565b34801561084757600080fd5b50610406610856366004612f20565b6001600160a01b03166000908152600b602052604090205490565b34801561087d57600080fd5b50600754610406565b34801561089257600080fd5b50600f546103649060ff1681565b3480156108ac57600080fd5b506103646108bb366004612f7e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156108f557600080fd5b506103f3610904366004612f20565b611fd5565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109475750610947826120b4565b92915050565b60606000805461095c90613261565b80601f016020809104026020016040519081016040528092919081815260200182805461098890613261565b80156109d55780601f106109aa576101008083540402835291602001916109d5565b820191906000526020600020905b8154815290600101906020018083116109b857829003601f168201915b5050505050905090565b60006109ea8261214f565b610a505760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a778261147d565b9050806001600160a01b0316836001600160a01b03161415610b015760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a47565b336001600160a01b0382161480610b1d5750610b1d81336108bb565b610b8f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a47565b610b998383612199565b505050565b6001600160a01b038116600090815260086020526040902054610c125760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a47565b6000610c1d60075490565b610c2790476132b2565b90506000610c548383610c4f866001600160a01b031660009081526009602052604090205490565b612214565b905080610cb75760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a47565b6001600160a01b03831660009081526009602052604081208054839290610cdf9084906132b2565b925050819055508060076000828254610cf891906132b2565b90915550610d0890508382612252565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d59338261236b565b610dcb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a47565b610b99838383612455565b6000610de1836115ab565b8210610e435760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a47565b6000805b600254811015610eb05760028181548110610e6457610e646132ca565b6000918252602090912001546001600160a01b0386811691161415610ea05783821415610e945791506109479050565b610e9d826132e0565b91505b610ea9816132e0565b9050610e47565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a47565b6005546001600160a01b03163314610f675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6000610f7b6005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b5050905080610fd857600080fd5b50565b610b9983838360405180602001604052806000815250611cd4565b60606000611003836115ab565b905060008167ffffffffffffffff81111561102057611020613026565b604051908082528060200260200182016040528015611049578160200160208202803683370190505b50905060005b82811015611090576110618582610dd6565b828281518110611073576110736132ca565b602090810291909101015280611088816132e0565b91505061104f565b509392505050565b6005546001600160a01b031633146110f25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b600f805460ff1916911515919091179055565b6001600160a01b0381166000908152600860205260409020546111795760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a47565b6001600160a01b0382166000908152600b60205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111ea57600080fd5b505afa1580156111fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122291906132fb565b61122c91906132b2565b905060006112658383610c4f87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806112c85760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a47565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906112ff9084906132b2565b90915550506001600160a01b0384166000908152600b60205260408120805483929061132c9084906132b2565b9091555061133d90508484836125e5565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061139460025490565b82106114085760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a47565b5090565b6005546001600160a01b031633146114665760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b805161147990600d906020840190612d98565b5050565b60008060028381548110611493576114936132ca565b6000918252602090912001546001600160a01b03169050806109475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a47565b600d805461152a90613261565b80601f016020809104026020016040519081016040528092919081815260200182805461155690613261565b80156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b505050505081565b60006001600160a01b0382166116295760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a47565b600254600090815b81811015611687576002818154811061164c5761164c6132ca565b6000918252602090912001546001600160a01b038681169116141561167757611674836132e0565b92505b611680816132e0565b9050611631565b50909392505050565b6005546001600160a01b031633146116ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6116f46000612665565b565b6005546001600160a01b031633146117505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b601055565b6005546001600160a01b031633146117af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b601255565b6000600a82815481106117c9576117c96132ca565b6000918252602090912001546001600160a01b031692915050565b60606001805461095c90613261565b6005546001600160a01b0316331461184d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b8281146118c25760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201527f6420726563697069656e747300000000000000000000000000000000000000006064820152608401610a47565b6000806118ce60025490565b905060005b85811015611911578686828181106118ed576118ed6132ca565b90506020020135836118ff91906132b2565b925061190a816132e0565b90506118d3565b5060115461191f83836132b2565b111561196d5760405162461bcd60e51b815260206004820152601960248201527f4d696e742f6f72646572206578636565647320737570706c79000000000000006044820152606401610a47565b6000915060005b83811015611a0b5760005b878783818110611991576119916132ca565b905060200201358110156119fa576119ea8686848181106119b4576119b46132ca565b90506020020160208101906119c99190612f20565b846119d3816132e0565b9550604051806020016040528060008152506126c4565b6119f3816132e0565b905061197f565b50611a04816132e0565b9050611974565b50505050505050565b600f5460ff1615611a675760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610a47565b6000611a7260025490565b905060008211611ac45760405162461bcd60e51b815260206004820152601560248201527f53656c656374206174206c656173742031204e465400000000000000000000006044820152606401610a47565b601154611ad183836132b2565b1115611b1f5760405162461bcd60e51b815260206004820152600f60248201527f4e6f7420456e6f756768204c65667400000000000000000000000000000000006044820152606401610a47565b6005546001600160a01b03163314611be057601254821115611b835760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a47565b81601054611b919190613314565b341015611be05760405162461bcd60e51b815260206004820152601460248201527f42616c616e636520496e73756666696369656e740000000000000000000000006044820152606401610a47565b60015b828111610b9957611bfd33611bf883856132b2565b612742565b80611c07816132e0565b915050611be3565b6001600160a01b038216331415611c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a47565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611cde338361236b565b611d505760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a47565b611d5c8484848461275c565b50505050565b600e805461152a90613261565b6060611d7a8261214f565b611dec5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a47565b6000611df66127da565b6040805160208101909152600081526013549192509060ff1615611e64576000825111611e325760405180602001604052806000815250611e5d565b81611e3c856127e9565b604051602001611e4d929190613333565b6040516020818303038152906040525b9050611eb3565b6000825111611e825760405180602001604052806000815250611eb0565b81611e8c856127e9565b600e604051602001611ea093929190613362565b6040516020818303038152906040525b90505b9392505050565b6005546001600160a01b03163314611f145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6013805460ff19811660ff90911615179055565b6005546001600160a01b03163314611f825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b600080611f8e60025490565b9050600091505b601e82101561147957611fc33382611fac816132e0565b9350604051806020016040528060008152506126c4565b81611fcd816132e0565b925050611f95565b6005546001600160a01b0316331461202f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a47565b6001600160a01b0381166120ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a47565b610fd881612665565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061211757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610947565b60025460009082108015610947575060006001600160a01b03166002838154811061217c5761217c6132ca565b6000918252602090912001546001600160a01b0316141592915050565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121db8261147d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0384166000908152600860205260408120549091839161223e9086613314565b612248919061343c565b611eb09190613450565b804710156122a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a47565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146122ef576040519150601f19603f3d011682016040523d82523d6000602084013e6122f4565b606091505b5050905080610b995760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a47565b60006123768261214f565b6123d75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a47565b60006123e28361147d565b9050806001600160a01b0316846001600160a01b0316148061241d5750836001600160a01b0316612412846109df565b6001600160a01b0316145b8061244d57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124688261147d565b6001600160a01b0316146124e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a47565b6001600160a01b03821661255f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a47565b61256a600082612199565b816002828154811061257e5761257e6132ca565b60009182526020822001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b9990849061291b565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6126ce8383612a00565b6126db6000848484612b35565b610b995760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b6114798282604051806020016040528060008152506126c4565b612767848484612455565b61277384848484612b35565b611d5c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b6060600d805461095c90613261565b60608161282957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612853578061283d816132e0565b915061284c9050600a8361343c565b915061282d565b60008167ffffffffffffffff81111561286e5761286e613026565b6040519080825280601f01601f191660200182016040528015612898576020820181803683370190505b5090505b841561244d576128ad600183613450565b91506128ba600a86613467565b6128c59060306132b2565b60f81b8183815181106128da576128da6132ca565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612914600a8661343c565b945061289c565b6000612970826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612c8d9092919063ffffffff16565b805190915015610b99578080602001905181019061298e919061347b565b610b995760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a47565b6001600160a01b038216612a565760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a47565b612a5f8161214f565b15612aac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a47565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612c8257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612b79903390899088908890600401613498565b602060405180830381600087803b158015612b9357600080fd5b505af1925050508015612bc3575060408051601f3d908101601f19168201909252612bc0918101906134d4565b60015b612c68573d808015612bf1576040519150601f19603f3d011682016040523d82523d6000602084013e612bf6565b606091505b508051612c605760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061244d565b506001949350505050565b6060611eb0848460008585843b612ce65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a47565b600080866001600160a01b03168587604051612d0291906134f1565b60006040518083038185875af1925050503d8060008114612d3f576040519150601f19603f3d011682016040523d82523d6000602084013e612d44565b606091505b5091509150612d54828286612d5f565b979650505050505050565b60608315612d6e575081611eb3565b825115612d7e5782518084602001fd5b8160405162461bcd60e51b8152600401610a479190612eb3565b828054612da490613261565b90600052602060002090601f016020900481019282612dc65760008555612e0c565b82601f10612ddf57805160ff1916838001178555612e0c565b82800160010185558215612e0c579182015b82811115612e0c578251825591602001919060010190612df1565b506114089291505b808211156114085760008155600101612e14565b6001600160e01b031981168114610fd857600080fd5b600060208284031215612e5057600080fd5b8135611eb381612e28565b60005b83811015612e76578181015183820152602001612e5e565b83811115611d5c5750506000910152565b60008151808452612e9f816020860160208601612e5b565b601f01601f19169290920160200192915050565b602081526000611eb36020830184612e87565b600060208284031215612ed857600080fd5b5035919050565b6001600160a01b0381168114610fd857600080fd5b60008060408385031215612f0757600080fd5b8235612f1281612edf565b946020939093013593505050565b600060208284031215612f3257600080fd5b8135611eb381612edf565b600080600060608486031215612f5257600080fd5b8335612f5d81612edf565b92506020840135612f6d81612edf565b929592945050506040919091013590565b60008060408385031215612f9157600080fd5b8235612f9c81612edf565b91506020830135612fac81612edf565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015612fef57835183529284019291840191600101612fd3565b50909695505050505050565b8015158114610fd857600080fd5b60006020828403121561301b57600080fd5b8135611eb381612ffb565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561305757613057613026565b604051601f8501601f19908116603f0116810190828211818310171561307f5761307f613026565b8160405280935085815286868601111561309857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130c457600080fd5b813567ffffffffffffffff8111156130db57600080fd5b8201601f810184136130ec57600080fd5b61244d8482356020840161303c565b60008083601f84011261310d57600080fd5b50813567ffffffffffffffff81111561312557600080fd5b6020830191508360208260051b850101111561314057600080fd5b9250929050565b6000806000806040858703121561315d57600080fd5b843567ffffffffffffffff8082111561317557600080fd5b613181888389016130fb565b9096509450602087013591508082111561319a57600080fd5b506131a7878288016130fb565b95989497509550505050565b600080604083850312156131c657600080fd5b82356131d181612edf565b91506020830135612fac81612ffb565b600080600080608085870312156131f757600080fd5b843561320281612edf565b9350602085013561321281612edf565b925060408501359150606085013567ffffffffffffffff81111561323557600080fd5b8501601f8101871361324657600080fd5b6132558782356020840161303c565b91505092959194509250565b600181811c9082168061327557607f821691505b6020821081141561329657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156132c5576132c561329c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156132f4576132f461329c565b5060010190565b60006020828403121561330d57600080fd5b5051919050565b600081600019048311821515161561332e5761332e61329c565b500290565b60008351613345818460208801612e5b565b835190830190613359818360208801612e5b565b01949350505050565b6000845160206133758285838a01612e5b565b8551918401916133888184848a01612e5b565b8554920191600090600181811c90808316806133a557607f831692505b8583108114156133c357634e487b7160e01b85526022600452602485fd5b8080156133d757600181146133e857613415565b60ff19851688528388019550613415565b60008b81526020902060005b8581101561340d5781548a8201529084019088016133f4565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b60008261344b5761344b613426565b500490565b6000828210156134625761346261329c565b500390565b60008261347657613476613426565b500690565b60006020828403121561348d57600080fd5b8151611eb381612ffb565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134ca6080830184612e87565b9695505050505050565b6000602082840312156134e657600080fd5b8151611eb381612e28565b60008251613503818460208701612e5b565b919091019291505056fea264697066735822122057450d61f8b74c10cdf84ed493db14b38906a15daa469ddb17bfbfced249880464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c742f6c617276615f63726162735f70726f78792f000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://api.larvacrabs.co/default/larva_crabs_proxy/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [2] : 68747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c
Arg [3] : 742f6c617276615f63726162735f70726f78792f000000000000000000000000
Deployed Bytecode Sourcemap
56093:3928:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48015:40;16690:10;48015:40;;;-1:-1:-1;;;;;206:55:1;;;188:74;;48045:9:0;293:2:1;278:18;;271:34;161:18;48015:40:0;;;;;;;56093:3928;;;;;31844:225;;;;;;;;;;-1:-1:-1;31844:225:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;31844:225:0;;;;;;;;19992:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20805:221::-;;;;;;;;;;-1:-1:-1;20805:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2040:55:1;;;2022:74;;2010:2;1995:18;20805:221:0;1876:226:1;20327:412:0;;;;;;;;;;-1:-1:-1;20327:412:0;;;;;:::i;:::-;;:::i;:::-;;32775:110;;;;;;;;;;-1:-1:-1;32863:7:0;:14;32775:110;;;2732:25:1;;;2720:2;2705:18;32775:110:0;2586:177:1;49801:566:0;;;;;;;;;;-1:-1:-1;49801:566:0;;;;;:::i;:::-;;:::i;21697:339::-;;;;;;;;;;-1:-1:-1;21697:339:0;;;;;:::i;:::-;;:::i;32153:546::-;;;;;;;;;;-1:-1:-1;32153:546:0;;;;;:::i;:::-;;:::i;48146:91::-;;;;;;;;;;-1:-1:-1;48217:12:0;;48146:91;;59784:145;;;:::i;49275:135::-;;;;;;;;;;-1:-1:-1;49275:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;49372:21:0;;;49345:7;49372:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;49275:135;22107:185;;;;;;;;;;-1:-1:-1;22107:185:0;;;;;:::i;:::-;;:::i;57529:333::-;;;;;;;;;;-1:-1:-1;57529:333:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59363:87::-;;;;;;;;;;-1:-1:-1;59363:87:0;;;;;:::i;:::-;;:::i;50635:641::-;;;;;;;;;;-1:-1:-1;50635:641:0;;;;;:::i;:::-;;:::i;32962:225::-;;;;;;;;;;-1:-1:-1;32962:225:0;;;;;:::i;:::-;;:::i;56453:28::-;;;;;;;;;;-1:-1:-1;56453:28:0;;;;;;;;59680:98;;;;;;;;;;-1:-1:-1;59680:98:0;;;;;:::i;:::-;;:::i;56347:35::-;;;;;;;;;;;;;;;;19686:239;;;;;;;;;;-1:-1:-1;19686:239:0;;;;;:::i;:::-;;:::i;56202:21::-;;;;;;;;;;;;;:::i;19206:418::-;;;;;;;;;;-1:-1:-1;19206:418:0;;;;;:::i;:::-;;:::i;34913:103::-;;;;;;;;;;;;;:::i;59456:96::-;;;;;;;;;;-1:-1:-1;59456:96:0;;;;;:::i;:::-;;:::i;59558:116::-;;;;;;;;;;-1:-1:-1;59558:116:0;;;;;:::i;:::-;;:::i;49501:100::-;;;;;;;;;;-1:-1:-1;49501:100:0;;;;;:::i;:::-;;:::i;34262:87::-;;;;;;;;;;-1:-1:-1;34335:6:0;;-1:-1:-1;;;;;34335:6:0;34262:87;;20161:104;;;;;;;;;;;;;:::i;58519:630::-;;;;;;;;;;-1:-1:-1;58519:630:0;;;;;:::i;:::-;;:::i;48997:109::-;;;;;;;;;;-1:-1:-1;48997:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;49080:18:0;49053:7;49080:18;;;:9;:18;;;;;;;48997:109;56955:568;;;;;;:::i;:::-;;:::i;21098:295::-;;;;;;;;;;-1:-1:-1;21098:295:0;;;;;:::i;:::-;;:::i;22363:328::-;;;;;;;;;;-1:-1:-1;22363:328:0;;;;;:::i;:::-;;:::i;56415:33::-;;;;;;;;;;;;;;;;56305:37;;;;;;;;;;;;;;;;56228;;;;;;;;;;;;;:::i;57868:645::-;;;;;;;;;;-1:-1:-1;57868:645:0;;;;;:::i;:::-;;:::i;59935:83::-;;;;;;;;;;;;;:::i;59155:202::-;;;;;;;;;;;;;:::i;48793:105::-;;;;;;;;;;-1:-1:-1;48793:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;48874:16:0;48847:7;48874:16;;;:7;:16;;;;;;;48793:105;48583:119;;;;;;;;;;-1:-1:-1;48583:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;48668:26:0;48641:7;48668:26;;;:19;:26;;;;;;;48583:119;48331:95;;;;;;;;;;-1:-1:-1;48404:14:0;;48331:95;;56270:30;;;;;;;;;;-1:-1:-1;56270:30:0;;;;;;;;21464:164;;;;;;;;;;-1:-1:-1;21464:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21585:25:0;;;21561:4;21585:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21464:164;35171:201;;;;;;;;;;-1:-1:-1;35171:201:0;;;;;:::i;:::-;;:::i;31844:225::-;31947:4;-1:-1:-1;;;;;;31971:50:0;;31986:35;31971:50;;:90;;;32025:36;32049:11;32025:23;:36::i;:::-;31964:97;31844:225;-1:-1:-1;;31844:225:0:o;19992:100::-;20046:13;20079:5;20072:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19992:100;:::o;20805:221::-;20881:7;20909:16;20917:7;20909;:16::i;:::-;20901:73;;;;-1:-1:-1;;;20901:73:0;;10078:2:1;20901:73:0;;;10060:21:1;10117:2;10097:18;;;10090:30;10156:34;10136:18;;;10129:62;-1:-1:-1;;;10207:18:1;;;10200:42;10259:19;;20901:73:0;;;;;;;;;-1:-1:-1;20994:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20994:24:0;;20805:221::o;20327:412::-;20408:13;20424:24;20440:7;20424:15;:24::i;:::-;20408:40;;20473:5;-1:-1:-1;;;;;20467:11:0;:2;-1:-1:-1;;;;;20467:11:0;;;20459:57;;;;-1:-1:-1;;;20459:57:0;;10491:2:1;20459:57:0;;;10473:21:1;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;10640:3;10620:18;;;10613:31;10661:19;;20459:57:0;10289:397:1;20459:57:0;16690:10;-1:-1:-1;;;;;20551:21:0;;;;:62;;-1:-1:-1;20576:37:0;20593:5;16690:10;21464:164;:::i;20576:37::-;20529:168;;;;-1:-1:-1;;;20529:168:0;;10893:2:1;20529:168:0;;;10875:21:1;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;11042:26;11022:18;;;11015:54;11086:19;;20529:168:0;10691:420:1;20529:168:0;20710:21;20719:2;20723:7;20710:8;:21::i;:::-;20397:342;20327:412;;:::o;49801:566::-;-1:-1:-1;;;;;49877:16:0;;49896:1;49877:16;;;:7;:16;;;;;;49869:71;;;;-1:-1:-1;;;49869:71:0;;11318:2:1;49869:71:0;;;11300:21:1;11357:2;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;-1:-1:-1;;;11447:18:1;;;11440:36;11493:19;;49869:71:0;11116:402:1;49869:71:0;49953:21;50001:15;48404:14;;;48331:95;50001:15;49977:39;;:21;:39;:::i;:::-;49953:63;;50027:15;50045:58;50061:7;50070:13;50085:17;50094:7;-1:-1:-1;;;;;49080:18:0;49053:7;49080:18;;;:9;:18;;;;;;;48997:109;50085:17;50045:15;:58::i;:::-;50027:76;-1:-1:-1;50124:12:0;50116:68;;;;-1:-1:-1;;;50116:68:0;;12047:2:1;50116:68:0;;;12029:21:1;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;-1:-1:-1;;;12176:18:1;;;12169:41;12227:19;;50116:68:0;11845:407:1;50116:68:0;-1:-1:-1;;;;;50197:18:0;;;;;;:9;:18;;;;;:29;;50219:7;;50197:18;:29;;50219:7;;50197:29;:::i;:::-;;;;;;;;50255:7;50237:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;50275:35:0;;-1:-1:-1;50293:7:0;50302;50275:17;:35::i;:::-;50326:33;;;-1:-1:-1;;;;;206:55:1;;188:74;;293:2;278:18;;271:34;;;50326:33:0;;161:18:1;50326:33:0;;;;;;;49858:509;;49801:566;:::o;21697:339::-;21892:41;16690:10;21925:7;21892:18;:41::i;:::-;21884:103;;;;-1:-1:-1;;;21884:103:0;;12769:2:1;21884:103:0;;;12751:21:1;12808:2;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;12918:19;12898:18;;;12891:47;12955:19;;21884:103:0;12567:413:1;21884:103:0;22000:28;22010:4;22016:2;22020:7;22000:9;:28::i;32153:546::-;32242:15;32286:24;32304:5;32286:17;:24::i;:::-;32278:5;:32;32270:88;;;;-1:-1:-1;;;32270:88:0;;13187:2:1;32270:88:0;;;13169:21:1;13226:2;13206:18;;;13199:30;13265:34;13245:18;;;13238:62;-1:-1:-1;;;13316:18:1;;;13309:41;13367:19;;32270:88:0;12985:407:1;32270:88:0;32371:10;32397:6;32392:226;32409:7;:14;32405:18;;32392:226;;;32458:7;32466:1;32458:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32449:19:0;;;32458:10;;32449:19;32445:162;;;32502:5;32493;:14;32489:102;;;32538:1;-1:-1:-1;32531:8:0;;-1:-1:-1;32531:8:0;32489:102;32584:7;;;:::i;:::-;;;32489:102;32425:3;;;:::i;:::-;;;32392:226;;;-1:-1:-1;32630:61:0;;-1:-1:-1;;;32630:61:0;;13187:2:1;32630:61:0;;;13169:21:1;13226:2;13206:18;;;13199:30;13265:34;13245:18;;;13238:62;-1:-1:-1;;;13316:18:1;;;13309:41;13367:19;;32630:61:0;12985:407:1;59784:145:0;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59837:7:::1;59858;34335:6:::0;;-1:-1:-1;;;;;34335:6:0;;34262:87;59858:7:::1;-1:-1:-1::0;;;;;59850:21:0::1;59879;59850:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59836:69;;;59920:2;59912:11;;;::::0;::::1;;59829:100;59784:145::o:0;22107:185::-;22245:39;22262:4;22268:2;22272:7;22245:39;;;;;;;;;;;;:16;:39::i;57529:333::-;57589:16;57617:23;57643:17;57653:6;57643:9;:17::i;:::-;57617:43;;57667:25;57709:15;57695:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57695:30:0;;57667:58;;57737:9;57732:103;57752:15;57748:1;:19;57732:103;;;57797:30;57817:6;57825:1;57797:19;:30::i;:::-;57783:8;57792:1;57783:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57769:3;;;;:::i;:::-;;;;57732:103;;;-1:-1:-1;57848:8:0;57529:333;-1:-1:-1;;;57529:333:0:o;59363:87::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59424:11:::1;:20:::0;;-1:-1:-1;;59424:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59363:87::o;50635:641::-;-1:-1:-1;;;;;50717:16:0;;50736:1;50717:16;;;:7;:16;;;;;;50709:71;;;;-1:-1:-1;;;50709:71:0;;11318:2:1;50709:71:0;;;11300:21:1;11357:2;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;-1:-1:-1;;;11447:18:1;;;11440:36;11493:19;;50709:71:0;11116:402:1;50709:71:0;-1:-1:-1;;;;;48668:26:0;;50793:21;48668:26;;;:19;:26;;;;;;50817:30;;;;;50841:4;50817:30;;;2022:74:1;-1:-1:-1;;;;;50817:15:0;;;;;1995:18:1;;50817:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;50793:77;;50881:15;50899:65;50915:7;50924:13;50939:24;50948:5;50955:7;-1:-1:-1;;;;;49372:21:0;;;49345:7;49372:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;49275:135;50899:65;50881:83;-1:-1:-1;50985:12:0;50977:68;;;;-1:-1:-1;;;50977:68:0;;12047:2:1;50977:68:0;;;12029:21:1;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;-1:-1:-1;;;12176:18:1;;;12169:41;12227:19;;50977:68:0;11845:407:1;50977:68:0;-1:-1:-1;;;;;51058:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;51092:7;;51058:21;:41;;51092:7;;51058:41;:::i;:::-;;;;-1:-1:-1;;;;;;;51110:26:0;;;;;;:19;:26;;;;;:37;;51140:7;;51110:26;:37;;51140:7;;51110:37;:::i;:::-;;;;-1:-1:-1;51160:47:0;;-1:-1:-1;51183:5:0;51190:7;51199;51160:22;:47::i;:::-;51223:45;;;-1:-1:-1;;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;51223:45:0;;;;;161:18:1;51223:45:0;;;;;;;50698:578;;50635:641;;:::o;32962:225::-;33037:7;33073:34;32863:7;:14;;32775:110;33073:34;33065:5;:42;33057:99;;;;-1:-1:-1;;;33057:99:0;;14688:2:1;33057:99:0;;;14670:21:1;14727:2;14707:18;;;14700:30;14766:34;14746:18;;;14739:62;14837:14;14817:18;;;14810:42;14869:19;;33057:99:0;14486:408:1;33057:99:0;-1:-1:-1;33174:5:0;32962:225::o;59680:98::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59751:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59680:98:::0;:::o;19686:239::-;19758:7;19778:13;19794:7;19802;19794:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19794:16:0;;-1:-1:-1;19829:19:0;19821:73;;;;-1:-1:-1;;;19821:73:0;;15101:2:1;19821:73:0;;;15083:21:1;15140:2;15120:18;;;15113:30;15179:34;15159:18;;;15152:62;15250:11;15230:18;;;15223:39;15279:19;;19821:73:0;14899:405:1;56202:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19206:418::-;19278:7;-1:-1:-1;;;;;19306:19:0;;19298:74;;;;-1:-1:-1;;;19298:74:0;;15511:2:1;19298:74:0;;;15493:21:1;15550:2;15530:18;;;15523:30;15589:34;15569:18;;;15562:62;15660:12;15640:18;;;15633:40;15690:19;;19298:74:0;15309:406:1;19298:74:0;19424:7;:14;19385:10;;;19449:119;19470:6;19466:1;:10;19449:119;;;19509:7;19517:1;19509:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19500:19:0;;;19509:10;;19500:19;19496:61;;;19536:7;;;:::i;:::-;;;19496:61;19478:3;;;:::i;:::-;;;19449:119;;;-1:-1:-1;19611:5:0;;19206:418;-1:-1:-1;;;19206:418:0:o;34913:103::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;34978:30:::1;35005:1;34978:18;:30::i;:::-;34913:103::o:0;59456:96::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59523:8:::1;:23:::0;59456:96::o;59558:116::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59635:13:::1;:33:::0;59558:116::o;49501:100::-;49552:7;49579;49587:5;49579:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49579:14:0;;49501:100;-1:-1:-1;;49501:100:0:o;20161:104::-;20217:13;20250:7;20243:14;;;;;:::i;58519:630::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;58622:35;;::::1;58614:93;;;::::0;-1:-1:-1;;;58614:93:0;;15922:2:1;58614:93:0::1;::::0;::::1;15904:21:1::0;15961:2;15941:18;;;15934:30;16000:34;15980:18;;;15973:62;16071:14;16051:18;;;16044:42;16103:19;;58614:93:0::1;15720:408:1::0;58614:93:0::1;58716:18;58745:14:::0;58762:13:::1;32863:7:::0;:14;;32775:110;58762:13:::1;58745:30;;58786:6;58782:86;58798:19:::0;;::::1;58782:86;;;58849:8;;58858:1;58849:11;;;;;;;:::i;:::-;;;;;;;58832:28;;;;;:::i;:::-;::::0;-1:-1:-1;58819:3:0::1;::::0;::::1;:::i;:::-;;;58782:86;;;-1:-1:-1::0;58909:13:0::1;::::0;58883:22:::1;58892:13:::0;58883:6;:22:::1;:::i;:::-;:39;;58874:79;;;::::0;-1:-1:-1;;;58874:79:0;;16335:2:1;58874:79:0::1;::::0;::::1;16317:21:1::0;16374:2;16354:18;;;16347:30;16413:27;16393:18;;;16386:55;16458:18;;58874:79:0::1;16133:349:1::0;58874:79:0::1;58960:20;;;58993:6;58989:155;59005:20:::0;;::::1;58989:155;;;59044:6;59040:97;59060:8;;59069:1;59060:11;;;;;;;:::i;:::-;;;;;;;59056:1;:15;59040:97;;;59088:39;59099:9;;59109:1;59099:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59113:8:::0;::::1;::::0;::::1;:::i;:::-;;;59088:39;;;;;;;;;;;::::0;:9:::1;:39::i;:::-;59073:3;::::0;::::1;:::i;:::-;;;59040:97;;;-1:-1:-1::0;59027:3:0::1;::::0;::::1;:::i;:::-;;;58989:155;;;;58607:542;;58519:630:::0;;;;:::o;56955:568::-;57021:11;;;;57020:12;57012:31;;;;-1:-1:-1;;;57012:31:0;;16689:2:1;57012:31:0;;;16671:21:1;16728:1;16708:18;;;16701:29;16766:8;16746:18;;;16739:36;16792:18;;57012:31:0;16487:329:1;57012:31:0;57050:14;57067:13;32863:7;:14;;32775:110;57067:13;57050:30;;57109:1;57095:11;:15;57087:49;;;;-1:-1:-1;;;57087:49:0;;17023:2:1;57087:49:0;;;17005:21:1;17062:2;17042:18;;;17035:30;17101:23;17081:18;;;17074:51;17142:18;;57087:49:0;16821:345:1;57087:49:0;57175:13;;57151:20;57160:11;57151:6;:20;:::i;:::-;:37;;57143:65;;;;-1:-1:-1;;;57143:65:0;;17373:2:1;57143:65:0;;;17355:21:1;17412:2;17392:18;;;17385:30;17451:17;17431:18;;;17424:45;17486:18;;57143:65:0;17171:339:1;57143:65:0;34335:6;;-1:-1:-1;;;;;34335:6:0;57223:10;:21;57219:200;;57280:13;;57265:11;:28;;57257:64;;;;-1:-1:-1;;;57257:64:0;;17717:2:1;57257:64:0;;;17699:21:1;17756:2;17736:18;;;17729:30;17795:25;17775:18;;;17768:53;17838:18;;57257:64:0;17515:347:1;57257:64:0;57364:11;57353:8;;:22;;;;:::i;:::-;57340:9;:35;;57332:68;;;;-1:-1:-1;;;57332:68:0;;18242:2:1;57332:68:0;;;18224:21:1;18281:2;18261:18;;;18254:30;18320:22;18300:18;;;18293:50;18360:18;;57332:68:0;18040:344:1;57332:68:0;57442:1;57425:93;57450:11;57445:1;:16;57425:93;;57477:33;57487:10;57499;57508:1;57499:6;:10;:::i;:::-;57477:9;:33::i;:::-;57463:3;;;;:::i;:::-;;;;57425:93;;21098:295;-1:-1:-1;;;;;21201:24:0;;16690:10;21201:24;;21193:62;;;;-1:-1:-1;;;21193:62:0;;18591:2:1;21193:62:0;;;18573:21:1;18630:2;18610:18;;;18603:30;18669:27;18649:18;;;18642:55;18714:18;;21193:62:0;18389:349:1;21193:62:0;16690:10;21268:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21268:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21268:53:0;;;;;;;;;;21337:48;;888:41:1;;;21268:42:0;;16690:10;21337:48;;861:18:1;21337:48:0;;;;;;;21098:295;;:::o;22363:328::-;22538:41;16690:10;22571:7;22538:18;:41::i;:::-;22530:103;;;;-1:-1:-1;;;22530:103:0;;12769:2:1;22530:103:0;;;12751:21:1;12808:2;12788:18;;;12781:30;12847:34;12827:18;;;12820:62;12918:19;12898:18;;;12891:47;12955:19;;22530:103:0;12567:413:1;22530:103:0;22644:39;22658:4;22664:2;22668:7;22677:5;22644:13;:39::i;:::-;22363:328;;;;:::o;56228:37::-;;;;;;;:::i;57868:645::-;57941:13;57974:16;57982:7;57974;:16::i;:::-;57966:76;;;;-1:-1:-1;;;57966:76:0;;18945:2:1;57966:76:0;;;18927:21:1;18984:2;18964:18;;;18957:30;19023:34;19003:18;;;18996:62;19094:17;19074:18;;;19067:45;19129:19;;57966:76:0;18743:411:1;57966:76:0;58049:18;58070:10;:8;:10::i;:::-;58091:25;;;;;;;;;:20;:25;;58131:9;;58049:31;;-1:-1:-1;58091:25:0;58131:9;;58127:355;;;58187:1;58172:4;58166:18;:22;:124;;;;;;;;;;;;;;;;;58237:4;58243:18;:7;:16;:18::i;:::-;58220:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58166:124;58157:133;;58127:355;;;58353:1;58338:4;58332:18;:22;:138;;;;;;;;;;;;;;;;;58403:4;58409:18;:7;:16;:18::i;:::-;58429:13;58386:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58332:138;58323:147;;58127:355;58501:6;57868:645;-1:-1:-1;;;57868:645:0:o;59935:83::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;60001:9:::1;::::0;;-1:-1:-1;;59988:22:0;::::1;60001:9;::::0;;::::1;60000:10;59988:22;::::0;;59935:83::o;59155:202::-;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;59202:9:::1;59222:14:::0;59239:13:::1;32863:7:::0;:14;;32775:110;59239:13:::1;59222:30;;59272:1;59268:5;;59263:87;59279:2;59275:1;:6;59263:87;;;59303:35;59313:10;59325:8:::0;::::1;::::0;::::1;:::i;:::-;;;59303:35;;;;;;;;;;;::::0;:9:::1;:35::i;:::-;59283:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59263:87;;35171:201:::0;34335:6;;-1:-1:-1;;;;;34335:6:0;16690:10;34482:23;34474:68;;;;-1:-1:-1;;;34474:68:0;;13928:2:1;34474:68:0;;;13910:21:1;;;13947:18;;;13940:30;14006:34;13986:18;;;13979:62;14058:18;;34474:68:0;13726:356:1;34474:68:0;-1:-1:-1;;;;;35260:22:0;::::1;35252:73;;;::::0;-1:-1:-1;;;35252:73:0;;21551:2:1;35252:73:0::1;::::0;::::1;21533:21:1::0;21590:2;21570:18;;;21563:30;21629:34;21609:18;;;21602:62;21700:8;21680:18;;;21673:36;21726:19;;35252:73:0::1;21349:402:1::0;35252:73:0::1;35336:28;35355:8;35336:18;:28::i;18837:305::-:0;18939:4;-1:-1:-1;;;;;;18976:40:0;;18991:25;18976:40;;:105;;-1:-1:-1;;;;;;;19033:48:0;;19048:33;19033:48;18976:105;:158;;;-1:-1:-1;17819:25:0;-1:-1:-1;;;;;;17804:40:0;;;19098:36;17695:157;24201:155;24300:7;:14;24266:4;;24290:24;;:58;;;;;24346:1;-1:-1:-1;;;;;24318:30:0;:7;24326;24318:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;24318:16:0;:30;;24283:65;24201:155;-1:-1:-1;;24201:155:0:o;28090:175::-;28165:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;28165:29:0;-1:-1:-1;;;;;28165:29:0;;;;;;;;:24;;28219;28165;28219:15;:24::i;:::-;-1:-1:-1;;;;;28210:47:0;;;;;;;;;;;28090:175;;:::o;51454:248::-;51664:12;;-1:-1:-1;;;;;51644:16:0;;51600:7;51644:16;;;:7;:16;;;;;;51600:7;;51679:15;;51628:32;;:13;:32;:::i;:::-;51627:49;;;;:::i;:::-;:67;;;;:::i;9914:317::-;10029:6;10004:21;:31;;9996:73;;;;-1:-1:-1;;;9996:73:0;;22402:2:1;9996:73:0;;;22384:21:1;22441:2;22421:18;;;22414:30;22480:31;22460:18;;;22453:59;22529:18;;9996:73:0;22200:353:1;9996:73:0;10083:12;10101:9;-1:-1:-1;;;;;10101:14:0;10123:6;10101:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10082:52;;;10153:7;10145:78;;;;-1:-1:-1;;;10145:78:0;;22760:2:1;10145:78:0;;;22742:21:1;22799:2;22779:18;;;22772:30;22838:34;22818:18;;;22811:62;22909:28;22889:18;;;22882:56;22955:19;;10145:78:0;22558:422:1;24523:349:0;24616:4;24641:16;24649:7;24641;:16::i;:::-;24633:73;;;;-1:-1:-1;;;24633:73:0;;23187:2:1;24633:73:0;;;23169:21:1;23226:2;23206:18;;;23199:30;23265:34;23245:18;;;23238:62;-1:-1:-1;;;23316:18:1;;;23309:42;23368:19;;24633:73:0;22985:408:1;24633:73:0;24717:13;24733:24;24749:7;24733:15;:24::i;:::-;24717:40;;24787:5;-1:-1:-1;;;;;24776:16:0;:7;-1:-1:-1;;;;;24776:16:0;;:51;;;;24820:7;-1:-1:-1;;;;;24796:31:0;:20;24808:7;24796:11;:20::i;:::-;-1:-1:-1;;;;;24796:31:0;;24776:51;:87;;;-1:-1:-1;;;;;;21585:25:0;;;21561:4;21585:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;24831:32;24768:96;24523:349;-1:-1:-1;;;;24523:349:0:o;27455:517::-;27615:4;-1:-1:-1;;;;;27587:32:0;:24;27603:7;27587:15;:24::i;:::-;-1:-1:-1;;;;;27587:32:0;;27579:86;;;;-1:-1:-1;;;27579:86:0;;23600:2:1;27579:86:0;;;23582:21:1;23639:2;23619:18;;;23612:30;23678:34;23658:18;;;23651:62;23749:11;23729:18;;;23722:39;23778:19;;27579:86:0;23398:405:1;27579:86:0;-1:-1:-1;;;;;27684:16:0;;27676:65;;;;-1:-1:-1;;;27676:65:0;;24010:2:1;27676:65:0;;;23992:21:1;24049:2;24029:18;;;24022:30;24088:34;24068:18;;;24061:62;24159:6;24139:18;;;24132:34;24183:19;;27676:65:0;23808:400:1;27676:65:0;27858:29;27875:1;27879:7;27858:8;:29::i;:::-;27917:2;27898:7;27906;27898:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;27898:21:0;-1:-1:-1;;;;;27898:21:0;;;;;;27937:27;;27956:7;;27937:27;;;;;;;;;;27898:16;27937:27;27455:517;;;:::o;41469:211::-;41613:58;;;-1:-1:-1;;;;;206:55:1;;41613:58:0;;;188:74:1;278:18;;;;271:34;;;41613:58:0;;;;;;;;;;161:18:1;;;;41613:58:0;;;;;;;;;;41636:23;41613:58;;;41586:86;;41606:5;;41586:19;:86::i;35532:191::-;35625:6;;;-1:-1:-1;;;;;35642:17:0;;;-1:-1:-1;;35642:17:0;;;;;;;35675:40;;35625:6;;;35642:17;35625:6;;35675:40;;35606:16;;35675:40;35595:128;35532:191;:::o;25553:321::-;25683:18;25689:2;25693:7;25683:5;:18::i;:::-;25734:54;25765:1;25769:2;25773:7;25782:5;25734:22;:54::i;:::-;25712:154;;;;-1:-1:-1;;;25712:154:0;;24415:2:1;25712:154:0;;;24397:21:1;24454:2;24434:18;;;24427:30;24493:34;24473:18;;;24466:62;-1:-1:-1;;;24544:18:1;;;24537:48;24602:19;;25712:154:0;24213:414:1;25214:110:0;25290:26;25300:2;25304:7;25290:26;;;;;;;;;;;;:9;:26::i;23573:315::-;23730:28;23740:4;23746:2;23750:7;23730:9;:28::i;:::-;23777:48;23800:4;23806:2;23810:7;23819:5;23777:22;:48::i;:::-;23769:111;;;;-1:-1:-1;;;23769:111:0;;24415:2:1;23769:111:0;;;24397:21:1;24454:2;24434:18;;;24427:30;24493:34;24473:18;;;24466:62;-1:-1:-1;;;24544:18:1;;;24537:48;24602:19;;23769:111:0;24213:414:1;56856:93:0;56907:13;56936:7;56929:14;;;;;:::i;36103:723::-;36159:13;36380:10;36376:53;;-1:-1:-1;;36407:10:0;;;;;;;;;;;;;;;;;;36103:723::o;36376:53::-;36454:5;36439:12;36495:78;36502:9;;36495:78;;36528:8;;;;:::i;:::-;;-1:-1:-1;36551:10:0;;-1:-1:-1;36559:2:0;36551:10;;:::i;:::-;;;36495:78;;;36583:19;36615:6;36605:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36605:17:0;;36583:39;;36633:154;36640:10;;36633:154;;36667:11;36677:1;36667:11;;:::i;:::-;;-1:-1:-1;36736:10:0;36744:2;36736:5;:10;:::i;:::-;36723:24;;:2;:24;:::i;:::-;36710:39;;36693:6;36700;36693:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;36764:11:0;36773:2;36764:11;;:::i;:::-;;;36633:154;;44042:716;44466:23;44492:69;44520:4;44492:69;;;;;;;;;;;;;;;;;44500:5;-1:-1:-1;;;;;44492:27:0;;;:69;;;;;:::i;:::-;44576:17;;44466:95;;-1:-1:-1;44576:21:0;44572:179;;44673:10;44662:30;;;;;;;;;;;;:::i;:::-;44654:85;;;;-1:-1:-1;;;44654:85:0;;25201:2:1;44654:85:0;;;25183:21:1;25240:2;25220:18;;;25213:30;25279:34;25259:18;;;25252:62;25350:12;25330:18;;;25323:40;25380:19;;44654:85:0;24999:406:1;26210:346:0;-1:-1:-1;;;;;26290:16:0;;26282:61;;;;-1:-1:-1;;;26282:61:0;;25612:2:1;26282:61:0;;;25594:21:1;;;25631:18;;;25624:30;25690:34;25670:18;;;25663:62;25742:18;;26282:61:0;25410:356:1;26282:61:0;26363:16;26371:7;26363;:16::i;:::-;26362:17;26354:58;;;;-1:-1:-1;;;26354:58:0;;25973:2:1;26354:58:0;;;25955:21:1;26012:2;25992:18;;;25985:30;26051;26031:18;;;26024:58;26099:18;;26354:58:0;25771:352:1;26354:58:0;26481:7;:16;;;;;;;-1:-1:-1;26481:16:0;;;;;;;-1:-1:-1;;26481:16:0;-1:-1:-1;;;;;26481:16:0;;;;;;;;26515:33;;26540:7;;-1:-1:-1;26515:33:0;;-1:-1:-1;;26515:33:0;26210:346;;:::o;28832:799::-;28987:4;-1:-1:-1;;;;;29008:13:0;;8915:20;8963:8;29004:620;;29044:72;;-1:-1:-1;;;29044:72:0;;-1:-1:-1;;;;;29044:36:0;;;;;:72;;16690:10;;29095:4;;29101:7;;29110:5;;29044:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29044:72:0;;;;;;;;-1:-1:-1;;29044:72:0;;;;;;;;;;;;:::i;:::-;;;29040:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29286:13:0;;29282:272;;29329:60;;-1:-1:-1;;;29329:60:0;;24415:2:1;29329:60:0;;;24397:21:1;24454:2;24434:18;;;24427:30;24493:34;24473:18;;;24466:62;-1:-1:-1;;;24544:18:1;;;24537:48;24602:19;;29329:60:0;24213:414:1;29282:272:0;29504:6;29498:13;29489:6;29485:2;29481:15;29474:38;29040:529;-1:-1:-1;;;;;;29167:51:0;-1:-1:-1;;;29167:51:0;;-1:-1:-1;29160:58:0;;29004:620;-1:-1:-1;29608:4:0;28832:799;;;;;;:::o;11398:229::-;11535:12;11567:52;11589:6;11597:4;11603:1;11606:12;11535;8915:20;;12805:60;;;;-1:-1:-1;;;12805:60:0;;27508:2:1;12805:60:0;;;27490:21:1;27547:2;27527:18;;;27520:30;27586:31;27566:18;;;27559:59;27635:18;;12805:60:0;27306:353:1;12805:60:0;12879:12;12893:23;12920:6;-1:-1:-1;;;;;12920:11:0;12939:5;12946:4;12920:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12878:73;;;;12969:51;12986:7;12995:10;13007:12;12969:16;:51::i;:::-;12962:58;12518:510;-1:-1:-1;;;;;;;12518:510:0:o;15204:712::-;15354:12;15383:7;15379:530;;;-1:-1:-1;15414:10:0;15407:17;;15379:530;15528:17;;:21;15524:374;;15726:10;15720:17;15787:15;15774:10;15770:2;15766:19;15759:44;15524:374;15869:12;15862:20;;-1:-1:-1;;;15862:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:1;-1:-1:-1;;;;;;394:5:1;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:258::-;1012:1;1022:113;1036:6;1033:1;1030:13;1022:113;;;1112:11;;;1106:18;1093:11;;;1086:39;1058:2;1051:10;1022:113;;;1153:6;1150:1;1147:13;1144:48;;;-1:-1:-1;;1188:1:1;1170:16;;1163:27;940:258::o;1203:::-;1245:3;1283:5;1277:12;1310:6;1305:3;1298:19;1326:63;1382:6;1375:4;1370:3;1366:14;1359:4;1352:5;1348:16;1326:63;:::i;:::-;1443:2;1422:15;-1:-1:-1;;1418:29:1;1409:39;;;;1450:4;1405:50;;1203:258;-1:-1:-1;;1203:258:1:o;1466:220::-;1615:2;1604:9;1597:21;1578:4;1635:45;1676:2;1665:9;1661:18;1653:6;1635:45;:::i;1691:180::-;1750:6;1803:2;1791:9;1782:7;1778:23;1774:32;1771:52;;;1819:1;1816;1809:12;1771:52;-1:-1:-1;1842:23:1;;1691:180;-1:-1:-1;1691:180:1:o;2107:154::-;-1:-1:-1;;;;;2186:5:1;2182:54;2175:5;2172:65;2162:93;;2251:1;2248;2241:12;2266:315;2334:6;2342;2395:2;2383:9;2374:7;2370:23;2366:32;2363:52;;;2411:1;2408;2401:12;2363:52;2450:9;2437:23;2469:31;2494:5;2469:31;:::i;:::-;2519:5;2571:2;2556:18;;;;2543:32;;-1:-1:-1;;;2266:315:1:o;2768:255::-;2835:6;2888:2;2876:9;2867:7;2863:23;2859:32;2856:52;;;2904:1;2901;2894:12;2856:52;2943:9;2930:23;2962:31;2987:5;2962:31;:::i;3028:456::-;3105:6;3113;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3028:456;;3420:7;;-1:-1:-1;;;3474:2:1;3459:18;;;;3446:32;;3028:456::o;3489:403::-;3572:6;3580;3633:2;3621:9;3612:7;3608:23;3604:32;3601:52;;;3649:1;3646;3639:12;3601:52;3688:9;3675:23;3707:31;3732:5;3707:31;:::i;:::-;3757:5;-1:-1:-1;3814:2:1;3799:18;;3786:32;3827:33;3786:32;3827:33;:::i;:::-;3879:7;3869:17;;;3489:403;;;;;:::o;4149:632::-;4320:2;4372:21;;;4442:13;;4345:18;;;4464:22;;;4291:4;;4320:2;4543:15;;;;4517:2;4502:18;;;4291:4;4586:169;4600:6;4597:1;4594:13;4586:169;;;4661:13;;4649:26;;4730:15;;;;4695:12;;;;4622:1;4615:9;4586:169;;;-1:-1:-1;4772:3:1;;4149:632;-1:-1:-1;;;;;;4149:632:1:o;4786:118::-;4872:5;4865:13;4858:21;4851:5;4848:32;4838:60;;4894:1;4891;4884:12;4909:241;4965:6;5018:2;5006:9;4997:7;4993:23;4989:32;4986:52;;;5034:1;5031;5024:12;4986:52;5073:9;5060:23;5092:28;5114:5;5092:28;:::i;5155:184::-;-1:-1:-1;;;5204:1:1;5197:88;5304:4;5301:1;5294:15;5328:4;5325:1;5318:15;5344:632;5409:5;5439:18;5480:2;5472:6;5469:14;5466:40;;;5486:18;;:::i;:::-;5561:2;5555:9;5529:2;5615:15;;-1:-1:-1;;5611:24:1;;;5637:2;5607:33;5603:42;5591:55;;;5661:18;;;5681:22;;;5658:46;5655:72;;;5707:18;;:::i;:::-;5747:10;5743:2;5736:22;5776:6;5767:15;;5806:6;5798;5791:22;5846:3;5837:6;5832:3;5828:16;5825:25;5822:45;;;5863:1;5860;5853:12;5822:45;5913:6;5908:3;5901:4;5893:6;5889:17;5876:44;5968:1;5961:4;5952:6;5944;5940:19;5936:30;5929:41;;;;5344:632;;;;;:::o;5981:451::-;6050:6;6103:2;6091:9;6082:7;6078:23;6074:32;6071:52;;;6119:1;6116;6109:12;6071:52;6159:9;6146:23;6192:18;6184:6;6181:30;6178:50;;;6224:1;6221;6214:12;6178:50;6247:22;;6300:4;6292:13;;6288:27;-1:-1:-1;6278:55:1;;6329:1;6326;6319:12;6278:55;6352:74;6418:7;6413:2;6400:16;6395:2;6391;6387:11;6352:74;:::i;6437:367::-;6500:8;6510:6;6564:3;6557:4;6549:6;6545:17;6541:27;6531:55;;6582:1;6579;6572:12;6531:55;-1:-1:-1;6605:20:1;;6648:18;6637:30;;6634:50;;;6680:1;6677;6670:12;6634:50;6717:4;6709:6;6705:17;6693:29;;6777:3;6770:4;6760:6;6757:1;6753:14;6745:6;6741:27;6737:38;6734:47;6731:67;;;6794:1;6791;6784:12;6731:67;6437:367;;;;;:::o;6809:773::-;6931:6;6939;6947;6955;7008:2;6996:9;6987:7;6983:23;6979:32;6976:52;;;7024:1;7021;7014:12;6976:52;7064:9;7051:23;7093:18;7134:2;7126:6;7123:14;7120:34;;;7150:1;7147;7140:12;7120:34;7189:70;7251:7;7242:6;7231:9;7227:22;7189:70;:::i;:::-;7278:8;;-1:-1:-1;7163:96:1;-1:-1:-1;7366:2:1;7351:18;;7338:32;;-1:-1:-1;7382:16:1;;;7379:36;;;7411:1;7408;7401:12;7379:36;;7450:72;7514:7;7503:8;7492:9;7488:24;7450:72;:::i;:::-;6809:773;;;;-1:-1:-1;7541:8:1;-1:-1:-1;;;;6809:773:1:o;7587:382::-;7652:6;7660;7713:2;7701:9;7692:7;7688:23;7684:32;7681:52;;;7729:1;7726;7719:12;7681:52;7768:9;7755:23;7787:31;7812:5;7787:31;:::i;:::-;7837:5;-1:-1:-1;7894:2:1;7879:18;;7866:32;7907:30;7866:32;7907:30;:::i;7974:795::-;8069:6;8077;8085;8093;8146:3;8134:9;8125:7;8121:23;8117:33;8114:53;;;8163:1;8160;8153:12;8114:53;8202:9;8189:23;8221:31;8246:5;8221:31;:::i;:::-;8271:5;-1:-1:-1;8328:2:1;8313:18;;8300:32;8341:33;8300:32;8341:33;:::i;:::-;8393:7;-1:-1:-1;8447:2:1;8432:18;;8419:32;;-1:-1:-1;8502:2:1;8487:18;;8474:32;8529:18;8518:30;;8515:50;;;8561:1;8558;8551:12;8515:50;8584:22;;8637:4;8629:13;;8625:27;-1:-1:-1;8615:55:1;;8666:1;8663;8656:12;8615:55;8689:74;8755:7;8750:2;8737:16;8732:2;8728;8724:11;8689:74;:::i;:::-;8679:84;;;7974:795;;;;;;;:::o;9434:437::-;9513:1;9509:12;;;;9556;;;9577:61;;9631:4;9623:6;9619:17;9609:27;;9577:61;9684:2;9676:6;9673:14;9653:18;9650:38;9647:218;;;-1:-1:-1;;;9718:1:1;9711:88;9822:4;9819:1;9812:15;9850:4;9847:1;9840:15;9647:218;;9434:437;;;:::o;11523:184::-;-1:-1:-1;;;11572:1:1;11565:88;11672:4;11669:1;11662:15;11696:4;11693:1;11686:15;11712:128;11752:3;11783:1;11779:6;11776:1;11773:13;11770:39;;;11789:18;;:::i;:::-;-1:-1:-1;11825:9:1;;11712:128::o;13397:184::-;-1:-1:-1;;;13446:1:1;13439:88;13546:4;13543:1;13536:15;13570:4;13567:1;13560:15;13586:135;13625:3;-1:-1:-1;;13646:17:1;;13643:43;;;13666:18;;:::i;:::-;-1:-1:-1;13713:1:1;13702:13;;13586:135::o;14297:184::-;14367:6;14420:2;14408:9;14399:7;14395:23;14391:32;14388:52;;;14436:1;14433;14426:12;14388:52;-1:-1:-1;14459:16:1;;14297:184;-1:-1:-1;14297:184:1:o;17867:168::-;17907:7;17973:1;17969;17965:6;17961:14;17958:1;17955:21;17950:1;17943:9;17936:17;17932:45;17929:71;;;17980:18;;:::i;:::-;-1:-1:-1;18020:9:1;;17867:168::o;19159:470::-;19338:3;19376:6;19370:13;19392:53;19438:6;19433:3;19426:4;19418:6;19414:17;19392:53;:::i;:::-;19508:13;;19467:16;;;;19530:57;19508:13;19467:16;19564:4;19552:17;;19530:57;:::i;:::-;19603:20;;19159:470;-1:-1:-1;;;;19159:470:1:o;19760:1584::-;19984:3;20022:6;20016:13;20048:4;20061:51;20105:6;20100:3;20095:2;20087:6;20083:15;20061:51;:::i;:::-;20175:13;;20134:16;;;;20197:55;20175:13;20134:16;20219:15;;;20197:55;:::i;:::-;20341:13;;20274:20;;;20314:1;;20401;20423:18;;;;20476;;;;20503:93;;20581:4;20571:8;20567:19;20555:31;;20503:93;20644:2;20634:8;20631:16;20611:18;20608:40;20605:224;;;-1:-1:-1;;;20678:3:1;20671:90;20784:4;20781:1;20774:15;20814:4;20809:3;20802:17;20605:224;20845:18;20872:110;;;;20996:1;20991:328;;;;20838:481;;20872:110;-1:-1:-1;;20907:24:1;;20893:39;;20952:20;;;;-1:-1:-1;20872:110:1;;20991:328;19707:1;19700:14;;;19744:4;19731:18;;21086:1;21100:169;21114:8;21111:1;21108:15;21100:169;;;21196:14;;21181:13;;;21174:37;21239:16;;;;21131:10;;21100:169;;;21104:3;;21300:8;21293:5;21289:20;21282:27;;20838:481;-1:-1:-1;21335:3:1;;19760:1584;-1:-1:-1;;;;;;;;;;;19760:1584:1:o;21756:184::-;-1:-1:-1;;;21805:1:1;21798:88;21905:4;21902:1;21895:15;21929:4;21926:1;21919:15;21945:120;21985:1;22011;22001:35;;22016:18;;:::i;:::-;-1:-1:-1;22050:9:1;;21945:120::o;22070:125::-;22110:4;22138:1;22135;22132:8;22129:34;;;22143:18;;:::i;:::-;-1:-1:-1;22180:9:1;;22070:125::o;24632:112::-;24664:1;24690;24680:35;;24695:18;;:::i;:::-;-1:-1:-1;24729:9:1;;24632:112::o;24749:245::-;24816:6;24869:2;24857:9;24848:7;24844:23;24840:32;24837:52;;;24885:1;24882;24875:12;24837:52;24917:9;24911:16;24936:28;24958:5;24936:28;:::i;26128:512::-;26322:4;-1:-1:-1;;;;;26432:2:1;26424:6;26420:15;26409:9;26402:34;26484:2;26476:6;26472:15;26467:2;26456:9;26452:18;26445:43;;26524:6;26519:2;26508:9;26504:18;26497:34;26567:3;26562:2;26551:9;26547:18;26540:31;26588:46;26629:3;26618:9;26614:19;26606:6;26588:46;:::i;:::-;26580:54;26128:512;-1:-1:-1;;;;;;26128:512:1:o;26645:249::-;26714:6;26767:2;26755:9;26746:7;26742:23;26738:32;26735:52;;;26783:1;26780;26773:12;26735:52;26815:9;26809:16;26834:30;26858:5;26834:30;:::i;27664:274::-;27793:3;27831:6;27825:13;27847:53;27893:6;27888:3;27881:4;27873:6;27869:17;27847:53;:::i;:::-;27916:16;;;;;27664:274;-1:-1:-1;;27664:274:1:o
Swarm Source
ipfs://57450d61f8b74c10cdf84ed493db14b38906a15daa469ddb17bfbfced2498804
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.