ETH Price: $3,108.61 (+1.30%)
Gas: 7 Gwei

Token

Larva Crabs (LARVACRABSV4)
 

Overview

Max Total Supply

2,555 LARVACRABSV4

Holders

430

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nftcasually.eth
Balance
1 LARVACRABSV4
0xd9e1da631da9b9bd061f47725fa624f407e51dd6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LarvaCrabsV4

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-28
*/

// SPDX-License-Identifier: MIT AND BSD-3-Clause 
// Sources flattened with hardhat v2.8.4 https://hardhat.org
pragma solidity ^0.8.1;
// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)



/**
 * @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)



/**
 * @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)



/**
 * @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)



/**
 * @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 (last updated v4.5.0) (utils/Address.sol)



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)



/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File contracts/ERC721B.sol





/********************
* @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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File contracts/ERC721EnumerableLite.sol



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract 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)



/**
 * @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)



/**
 * @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 (last updated v4.5.0) (token/ERC20/IERC20.sol)



/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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)




/**
 * @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)





/**
 * @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/LarvaCrabsV3.sol




contract LarvaCrabsV4 is ERC721EnumerableLite, Ownable, PaymentSplitter {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  bool public isPauseMode = true;
  uint256 public Price = 0.025 ether;
  uint256 public MaxCollection = 5001;
  uint256 public maxMintPerTrx = 10;
  bool public isProxied = true;

  address[] private addressList = [
    0x7Efa12Bb53D462e12FC136f1AfFA2510D3b4a580,
    0x273962695a1d24f8E3316B12Ca294800b5A88659
  ];
  uint[] private shareList = [
    95,
    5
  ];

  constructor(string memory _name,
              string memory _symbol,
              string memory _initBaseURI)
    ERC721B(_name, _symbol) 
    PaymentSplitter(addressList, shareList){
    setBaseURI(_initBaseURI);
  }

  function _baseURI() internal view virtual returns (string memory) {
    return baseURI;
  }

  /// #if_succeeds {:msg "totalSupply increase by mint amount"} old(totalSupply()) == totalSupply() - _mintAmount;
  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 >= Price * _mintAmount, "Balance Insufficient"); 
        
    }
    for (uint256 i = 0; i < _mintAmount; ++i) {
      _safeMint(msg.sender, supply + i);
    }
  }

  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,
             "Not Enough Left" );
    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();
        require( supply + 30 <= MaxCollection,
             "Not Enough Left" );
            
        for (i = 0; i < 30; i++) {
            _safeMint(msg.sender, supply++, "");
        }
    }

  function flipPauseMode() public onlyOwner{
    isPauseMode = !isPauseMode;
  }
  
  function setPrice(uint256 _newPrice) public onlyOwner {
    Price = _newPrice;
  }

  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

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":"Price","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":[],"name":"flipPauseMode","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":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e919062000601565b50600f8054600160ff1991821681179092556658d15e17628000601055611389601155600a60125560138054909116909117905560408051808201909152737efa12bb53d462e12fc136f1affa2510d3b4a580815273273962695a1d24f8e3316b12ca294800b5a886596020820152620000a790601490600262000690565b5060408051808201909152605f815260056020820152620000cd906015906002620006e8565b50348015620000db57600080fd5b5060405162003d8b38038062003d8b833981016040819052620000fe916200080f565b60148054806020026020016040519081016040528092919081815260200182805480156200015657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000137575b50505050506015805480602002602001604051908101604052809291908181526020018280548015620001a957602002820191906000526020600020905b81548152602001906001019080831162000194575b50508751889350879250620001c79150600090602085019062000601565b508051620001dd90600190602084019062000601565b505050620001fa620001f46200034860201b60201c565b6200034c565b80518251146200026c5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002bf5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000263565b60005b82518110156200032b5762000316838281518110620002e557620002e5620008a0565b6020026020010151838381518110620003025762000302620008a0565b60200260200101516200039e60201b60201c565b806200032281620008cc565b915050620002c2565b5050506200033f816200058c60201b60201c565b50505062000942565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200040b5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000263565b600081116200045d5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000263565b6001600160a01b03821660009081526008602052604090205415620004d95760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000263565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038416908117909155600090815260086020526040902081905560065462000543908290620008ea565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620005e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000263565b8051620005fd90600d90602084019062000601565b5050565b8280546200060f9062000905565b90600052602060002090601f0160209004810192826200063357600085556200067e565b82601f106200064e57805160ff19168380011785556200067e565b828001600101855582156200067e579182015b828111156200067e57825182559160200191906001019062000661565b506200068c9291506200072b565b5090565b8280548282559060005260206000209081019282156200067e579160200282015b828111156200067e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006b1565b8280548282559060005260206000209081019282156200067e579160200282015b828111156200067e578251829060ff1690559160200191906001019062000709565b5b808211156200068c57600081556001016200072c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200076a57600080fd5b81516001600160401b038082111562000787576200078762000742565b604051601f8301601f19908116603f01168101908282118183101715620007b257620007b262000742565b81604052838152602092508683858801011115620007cf57600080fd5b600091505b83821015620007f35785820183015181830184015290820190620007d4565b83821115620008055760008385830101525b9695505050505050565b6000806000606084860312156200082557600080fd5b83516001600160401b03808211156200083d57600080fd5b6200084b8783880162000758565b945060208601519150808211156200086257600080fd5b620008708783880162000758565b935060408601519150808211156200088757600080fd5b50620008968682870162000758565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620008e357620008e3620008b6565b5060010190565b60008219821115620009005762000900620008b6565b500190565b600181811c908216806200091a57607f821691505b602082108114156200093c57634e487b7160e01b600052602260045260246000fd5b50919050565b61343980620009526000396000f3fe6080604052600436106102eb5760003560e01c80638b83209b11610184578063c6682862116100d6578063d79779b21161008a578063e793c96011610064578063e793c96014610843578063e985e9c51461085d578063f2fde38b146108a657600080fd5b8063d79779b2146107e3578063dde4988714610819578063e33b7de31461082e57600080fd5b8063cc1efca6116100bb578063cc1efca614610783578063cd3293de14610798578063ce7c2ac2146107ad57600080fd5b8063c66828621461074e578063c87b56dd1461076357600080fd5b80639852595c11610138578063a22cb46511610112578063a22cb465146106f8578063b88d4fde14610718578063bc9587fe1461073857600080fd5b80639852595c146106995780639dfde201146106cf578063a0712d68146106e557600080fd5b806391b7f5ed1161016957806391b7f5ed1461064457806395d89b411461066457806396ea3a471461067957600080fd5b80638b83209b146106065780638da5cb5b1461062657600080fd5b806342842e0e1161023d5780635d4ddb0d116101f157806370a08231116101cb57806370a08231146105b1578063715018a6146105d15780637f00c7a6146105e657600080fd5b80635d4ddb0d146105665780636352211e1461057c5780636c0360eb1461059c57600080fd5b80634f6ccce7116102225780634f6ccce71461050c578063518fe7c51461052c57806355f804b31461054657600080fd5b806342842e0e146104cc57806348b75044146104ec57600080fd5b8063191655871161029f5780633a98ef39116102795780633a98ef39146104695780633ccfd60b1461047e578063406072a91461048657600080fd5b8063191655871461040957806323b872dd146104295780632f745c591461044957600080fd5b8063081812fc116102d0578063081812fc14610390578063095ea7b3146103c857806318160ddd146103ea57600080fd5b806301ffc9a71461033957806306fdde031461036e57600080fd5b36610334577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034557600080fd5b50610359610354366004612d95565b6108c6565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b5061038361090a565b6040516103659190612e0a565b34801561039c57600080fd5b506103b06103ab366004612e1d565b61099c565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e3366004612e4b565b610a29565b005b3480156103f657600080fd5b506002545b604051908152602001610365565b34801561041557600080fd5b506103e8610424366004612e77565b610b5b565b34801561043557600080fd5b506103e8610444366004612e94565b610d0c565b34801561045557600080fd5b506103fb610464366004612e4b565b610d93565b34801561047557600080fd5b506006546103fb565b6103e8610eca565b34801561049257600080fd5b506103fb6104a1366004612ed5565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156104d857600080fd5b506103e86104e7366004612e94565b610f98565b3480156104f857600080fd5b506103e8610507366004612ed5565b610fb3565b34801561051857600080fd5b506103fb610527366004612e1d565b611237565b34801561053857600080fd5b506013546103599060ff1681565b34801561055257600080fd5b506103e8610561366004612f9a565b6112ba565b34801561057257600080fd5b506103fb60115481565b34801561058857600080fd5b506103b0610597366004612e1d565b61132b565b3480156105a857600080fd5b506103836113cb565b3480156105bd57600080fd5b506103fb6105cc366004612e77565b611459565b3480156105dd57600080fd5b506103e861153e565b3480156105f257600080fd5b506103e8610601366004612e1d565b6115a4565b34801561061257600080fd5b506103b0610621366004612e1d565b611603565b34801561063257600080fd5b506005546001600160a01b03166103b0565b34801561065057600080fd5b506103e861065f366004612e1d565b611633565b34801561067057600080fd5b50610383611692565b34801561068557600080fd5b506103e861069436600461302f565b6116a1565b3480156106a557600080fd5b506103fb6106b4366004612e77565b6001600160a01b031660009081526009602052604090205490565b3480156106db57600080fd5b506103fb60105481565b6103e86106f3366004612e1d565b6118b4565b34801561070457600080fd5b506103e86107133660046130a9565b611aa0565b34801561072457600080fd5b506103e86107333660046130d7565b611b65565b34801561074457600080fd5b506103fb60125481565b34801561075a57600080fd5b50610383611bf3565b34801561076f57600080fd5b5061038361077e366004612e1d565b611c00565b34801561078f57600080fd5b506103e8611d4b565b3480156107a457600080fd5b506103e8611db9565b3480156107b957600080fd5b506103fb6107c8366004612e77565b6001600160a01b031660009081526008602052604090205490565b3480156107ef57600080fd5b506103fb6107fe366004612e77565b6001600160a01b03166000908152600b602052604090205490565b34801561082557600080fd5b506103e8611eb5565b34801561083a57600080fd5b506007546103fb565b34801561084f57600080fd5b50600f546103599060ff1681565b34801561086957600080fd5b50610359610878366004612ed5565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156108b257600080fd5b506103e86108c1366004612e77565b611f23565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610904575061090482612002565b92915050565b60606000805461091990613157565b80601f016020809104026020016040519081016040528092919081815260200182805461094590613157565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b5050505050905090565b60006109a78261209d565b610a0d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a348261132b565b9050806001600160a01b0316836001600160a01b03161415610abe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a04565b336001600160a01b0382161480610ada5750610ada8133610878565b610b4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a04565b610b5683836120e7565b505050565b6001600160a01b038116600090815260086020526040902054610bcf5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a04565b6000610bda60075490565b610be490476131a8565b90506000610c118383610c0c866001600160a01b031660009081526009602052604090205490565b612162565b905080610c745760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a04565b6001600160a01b03831660009081526009602052604081208054839290610c9c9084906131a8565b925050819055508060076000828254610cb591906131a8565b90915550610cc5905083826121a0565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d1633826122b9565b610d885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a04565b610b568383836123a3565b6000610d9e83611459565b8210610e005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b6000805b600254811015610e6d5760028181548110610e2157610e216131c0565b6000918252602090912001546001600160a01b0386811691161415610e5d5783821415610e515791506109049050565b610e5a826131d6565b91505b610e66816131d6565b9050610e04565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b6005546001600160a01b03163314610f245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000610f386005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f82576040519150601f19603f3d011682016040523d82523d6000602084013e610f87565b606091505b5050905080610f9557600080fd5b50565b610b5683838360405180602001604052806000815250611b65565b6001600160a01b0381166000908152600860205260409020546110275760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a04565b6001600160a01b0382166000908152600b60205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561109857600080fd5b505afa1580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906131f1565b6110da91906131a8565b905060006111138383610c0c87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111765760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a04565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906111ad9084906131a8565b90915550506001600160a01b0384166000908152600b6020526040812080548392906111da9084906131a8565b909155506111eb9050848483612533565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061124260025490565b82106112b65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a04565b5090565b6005546001600160a01b031633146113145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b805161132790600d906020840190612cef565b5050565b60008060028381548110611341576113416131c0565b6000918252602090912001546001600160a01b03169050806109045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a04565b600d80546113d890613157565b80601f016020809104026020016040519081016040528092919081815260200182805461140490613157565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60006001600160a01b0382166114d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a04565b600254600090815b8181101561153557600281815481106114fa576114fa6131c0565b6000918252602090912001546001600160a01b038681169116141561152557611522836131d6565b92505b61152e816131d6565b90506114df565b50909392505050565b6005546001600160a01b031633146115985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6115a260006125b3565b565b6005546001600160a01b031633146115fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b601255565b6000600a8281548110611618576116186131c0565b6000918252602090912001546001600160a01b031692915050565b6005546001600160a01b0316331461168d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b601055565b60606001805461091990613157565b6005546001600160a01b031633146116fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b8281146117705760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201527f6420726563697069656e747300000000000000000000000000000000000000006064820152608401610a04565b60008061177c60025490565b905060005b858110156117bf5786868281811061179b5761179b6131c0565b90506020020135836117ad91906131a8565b92506117b8816131d6565b9050611781565b506011546117cd83836131a8565b111561180d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b6000915060005b838110156118ab5760005b878783818110611831576118316131c0565b9050602002013581101561189a5761188a868684818110611854576118546131c0565b90506020020160208101906118699190612e77565b84611873816131d6565b955060405180602001604052806000815250612612565b611893816131d6565b905061181f565b506118a4816131d6565b9050611814565b50505050505050565b600f5460ff16156119075760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610a04565b600061191260025490565b9050600082116119645760405162461bcd60e51b815260206004820152601560248201527f53656c656374206174206c656173742031204e465400000000000000000000006044820152606401610a04565b60115461197183836131a8565b11156119b15760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b6005546001600160a01b03163314611a7257601254821115611a155760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a04565b81601054611a23919061320a565b341015611a725760405162461bcd60e51b815260206004820152601460248201527f42616c616e636520496e73756666696369656e740000000000000000000000006044820152606401610a04565b60005b82811015610b5657611a9033611a8b83856131a8565b612690565b611a99816131d6565b9050611a75565b6001600160a01b038216331415611af95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a04565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6f33836122b9565b611be15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a04565b611bed848484846126aa565b50505050565b600e80546113d890613157565b6060611c0b8261209d565b611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a04565b6000611c87612728565b6040805160208101909152600081526013549192509060ff1615611cf5576000825111611cc35760405180602001604052806000815250611cee565b81611ccd85612737565b604051602001611cde929190613229565b6040516020818303038152906040525b9050611d44565b6000825111611d135760405180602001604052806000815250611d41565b81611d1d85612737565b600e604051602001611d3193929190613258565b6040516020818303038152906040525b90505b9392505050565b6005546001600160a01b03163314611da55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6013805460ff19811660ff90911615179055565b6005546001600160a01b03163314611e135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b600080611e1f60025490565b601154909150611e3082601e6131a8565b1115611e705760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b600091505b601e82101561132757611ea33382611e8c816131d6565b935060405180602001604052806000815250612612565b81611ead816131d6565b925050611e75565b6005546001600160a01b03163314611f0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b600f805460ff19811660ff90911615179055565b6005546001600160a01b03163314611f7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6001600160a01b038116611ff95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a04565b610f95816125b3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061206557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061090457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610904565b60025460009082108015610904575060006001600160a01b0316600283815481106120ca576120ca6131c0565b6000918252602090912001546001600160a01b0316141592915050565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121298261132b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0384166000908152600860205260408120549091839161218c908661320a565b6121969190613332565b611d419190613346565b804710156121f05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5050905080610b565760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a04565b60006122c48261209d565b6123255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a04565b60006123308361132b565b9050806001600160a01b0316846001600160a01b0316148061236b5750836001600160a01b03166123608461099c565b6001600160a01b0316145b8061239b57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123b68261132b565b6001600160a01b0316146124325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a04565b6001600160a01b0382166124ad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a04565b6124b86000826120e7565b81600282815481106124cc576124cc6131c0565b60009182526020822001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b56908490612869565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61261c838361294e565b6126296000848484612a83565b610b565760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b611327828260405180602001604052806000815250612612565b6126b58484846123a3565b6126c184848484612a83565b611bed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b6060600d805461091990613157565b60608161277757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127a1578061278b816131d6565b915061279a9050600a83613332565b915061277b565b60008167ffffffffffffffff8111156127bc576127bc612f0e565b6040519080825280601f01601f1916602001820160405280156127e6576020820181803683370190505b5090505b841561239b576127fb600183613346565b9150612808600a8661335d565b6128139060306131a8565b60f81b818381518110612828576128286131c0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612862600a86613332565b94506127ea565b60006128be826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612bdb9092919063ffffffff16565b805190915015610b5657808060200190518101906128dc9190613371565b610b565760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a04565b6001600160a01b0382166129a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a04565b6129ad8161209d565b156129fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a04565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612bd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ac790339089908890889060040161338e565b602060405180830381600087803b158015612ae157600080fd5b505af1925050508015612b11575060408051601f3d908101601f19168201909252612b0e918101906133ca565b60015b612bb6573d808015612b3f576040519150601f19603f3d011682016040523d82523d6000602084013e612b44565b606091505b508051612bae5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061239b565b506001949350505050565b6060611d418484600085856001600160a01b0385163b612c3d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a04565b600080866001600160a01b03168587604051612c5991906133e7565b60006040518083038185875af1925050503d8060008114612c96576040519150601f19603f3d011682016040523d82523d6000602084013e612c9b565b606091505b5091509150612cab828286612cb6565b979650505050505050565b60608315612cc5575081611d44565b825115612cd55782518084602001fd5b8160405162461bcd60e51b8152600401610a049190612e0a565b828054612cfb90613157565b90600052602060002090601f016020900481019282612d1d5760008555612d63565b82601f10612d3657805160ff1916838001178555612d63565b82800160010185558215612d63579182015b82811115612d63578251825591602001919060010190612d48565b506112b69291505b808211156112b65760008155600101612d6b565b6001600160e01b031981168114610f9557600080fd5b600060208284031215612da757600080fd5b8135611d4481612d7f565b60005b83811015612dcd578181015183820152602001612db5565b83811115611bed5750506000910152565b60008151808452612df6816020860160208601612db2565b601f01601f19169290920160200192915050565b602081526000611d446020830184612dde565b600060208284031215612e2f57600080fd5b5035919050565b6001600160a01b0381168114610f9557600080fd5b60008060408385031215612e5e57600080fd5b8235612e6981612e36565b946020939093013593505050565b600060208284031215612e8957600080fd5b8135611d4481612e36565b600080600060608486031215612ea957600080fd5b8335612eb481612e36565b92506020840135612ec481612e36565b929592945050506040919091013590565b60008060408385031215612ee857600080fd5b8235612ef381612e36565b91506020830135612f0381612e36565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612f3f57612f3f612f0e565b604051601f8501601f19908116603f01168101908282118183101715612f6757612f67612f0e565b81604052809350858152868686011115612f8057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612fac57600080fd5b813567ffffffffffffffff811115612fc357600080fd5b8201601f81018413612fd457600080fd5b61239b84823560208401612f24565b60008083601f840112612ff557600080fd5b50813567ffffffffffffffff81111561300d57600080fd5b6020830191508360208260051b850101111561302857600080fd5b9250929050565b6000806000806040858703121561304557600080fd5b843567ffffffffffffffff8082111561305d57600080fd5b61306988838901612fe3565b9096509450602087013591508082111561308257600080fd5b5061308f87828801612fe3565b95989497509550505050565b8015158114610f9557600080fd5b600080604083850312156130bc57600080fd5b82356130c781612e36565b91506020830135612f038161309b565b600080600080608085870312156130ed57600080fd5b84356130f881612e36565b9350602085013561310881612e36565b925060408501359150606085013567ffffffffffffffff81111561312b57600080fd5b8501601f8101871361313c57600080fd5b61314b87823560208401612f24565b91505092959194509250565b600181811c9082168061316b57607f821691505b6020821081141561318c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156131bb576131bb613192565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156131ea576131ea613192565b5060010190565b60006020828403121561320357600080fd5b5051919050565b600081600019048311821515161561322457613224613192565b500290565b6000835161323b818460208801612db2565b83519083019061324f818360208801612db2565b01949350505050565b60008451602061326b8285838a01612db2565b85519184019161327e8184848a01612db2565b8554920191600090600181811c908083168061329b57607f831692505b8583108114156132b957634e487b7160e01b85526022600452602485fd5b8080156132cd57600181146132de5761330b565b60ff1985168852838801955061330b565b60008b81526020902060005b858110156133035781548a8201529084019088016132ea565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826133415761334161331c565b500490565b60008282101561335857613358613192565b500390565b60008261336c5761336c61331c565b500690565b60006020828403121561338357600080fd5b8151611d448161309b565b60006001600160a01b038087168352808616602084015250836040830152608060608301526133c06080830184612dde565b9695505050505050565b6000602082840312156133dc57600080fd5b8151611d4481612d7f565b600082516133f9818460208701612db2565b919091019291505056fea26469706673582212201006cd4e7facaff96d7d5eb02400d33aa247fb7af180ec6f225b341a0c7dbeba64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4c61727661204372616273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c41525641435241425356340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c742f6c617276615f63726162735f70726f78792f000000000000000000000000

Deployed Bytecode

0x6080604052600436106102eb5760003560e01c80638b83209b11610184578063c6682862116100d6578063d79779b21161008a578063e793c96011610064578063e793c96014610843578063e985e9c51461085d578063f2fde38b146108a657600080fd5b8063d79779b2146107e3578063dde4988714610819578063e33b7de31461082e57600080fd5b8063cc1efca6116100bb578063cc1efca614610783578063cd3293de14610798578063ce7c2ac2146107ad57600080fd5b8063c66828621461074e578063c87b56dd1461076357600080fd5b80639852595c11610138578063a22cb46511610112578063a22cb465146106f8578063b88d4fde14610718578063bc9587fe1461073857600080fd5b80639852595c146106995780639dfde201146106cf578063a0712d68146106e557600080fd5b806391b7f5ed1161016957806391b7f5ed1461064457806395d89b411461066457806396ea3a471461067957600080fd5b80638b83209b146106065780638da5cb5b1461062657600080fd5b806342842e0e1161023d5780635d4ddb0d116101f157806370a08231116101cb57806370a08231146105b1578063715018a6146105d15780637f00c7a6146105e657600080fd5b80635d4ddb0d146105665780636352211e1461057c5780636c0360eb1461059c57600080fd5b80634f6ccce7116102225780634f6ccce71461050c578063518fe7c51461052c57806355f804b31461054657600080fd5b806342842e0e146104cc57806348b75044146104ec57600080fd5b8063191655871161029f5780633a98ef39116102795780633a98ef39146104695780633ccfd60b1461047e578063406072a91461048657600080fd5b8063191655871461040957806323b872dd146104295780632f745c591461044957600080fd5b8063081812fc116102d0578063081812fc14610390578063095ea7b3146103c857806318160ddd146103ea57600080fd5b806301ffc9a71461033957806306fdde031461036e57600080fd5b36610334577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561034557600080fd5b50610359610354366004612d95565b6108c6565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b5061038361090a565b6040516103659190612e0a565b34801561039c57600080fd5b506103b06103ab366004612e1d565b61099c565b6040516001600160a01b039091168152602001610365565b3480156103d457600080fd5b506103e86103e3366004612e4b565b610a29565b005b3480156103f657600080fd5b506002545b604051908152602001610365565b34801561041557600080fd5b506103e8610424366004612e77565b610b5b565b34801561043557600080fd5b506103e8610444366004612e94565b610d0c565b34801561045557600080fd5b506103fb610464366004612e4b565b610d93565b34801561047557600080fd5b506006546103fb565b6103e8610eca565b34801561049257600080fd5b506103fb6104a1366004612ed5565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156104d857600080fd5b506103e86104e7366004612e94565b610f98565b3480156104f857600080fd5b506103e8610507366004612ed5565b610fb3565b34801561051857600080fd5b506103fb610527366004612e1d565b611237565b34801561053857600080fd5b506013546103599060ff1681565b34801561055257600080fd5b506103e8610561366004612f9a565b6112ba565b34801561057257600080fd5b506103fb60115481565b34801561058857600080fd5b506103b0610597366004612e1d565b61132b565b3480156105a857600080fd5b506103836113cb565b3480156105bd57600080fd5b506103fb6105cc366004612e77565b611459565b3480156105dd57600080fd5b506103e861153e565b3480156105f257600080fd5b506103e8610601366004612e1d565b6115a4565b34801561061257600080fd5b506103b0610621366004612e1d565b611603565b34801561063257600080fd5b506005546001600160a01b03166103b0565b34801561065057600080fd5b506103e861065f366004612e1d565b611633565b34801561067057600080fd5b50610383611692565b34801561068557600080fd5b506103e861069436600461302f565b6116a1565b3480156106a557600080fd5b506103fb6106b4366004612e77565b6001600160a01b031660009081526009602052604090205490565b3480156106db57600080fd5b506103fb60105481565b6103e86106f3366004612e1d565b6118b4565b34801561070457600080fd5b506103e86107133660046130a9565b611aa0565b34801561072457600080fd5b506103e86107333660046130d7565b611b65565b34801561074457600080fd5b506103fb60125481565b34801561075a57600080fd5b50610383611bf3565b34801561076f57600080fd5b5061038361077e366004612e1d565b611c00565b34801561078f57600080fd5b506103e8611d4b565b3480156107a457600080fd5b506103e8611db9565b3480156107b957600080fd5b506103fb6107c8366004612e77565b6001600160a01b031660009081526008602052604090205490565b3480156107ef57600080fd5b506103fb6107fe366004612e77565b6001600160a01b03166000908152600b602052604090205490565b34801561082557600080fd5b506103e8611eb5565b34801561083a57600080fd5b506007546103fb565b34801561084f57600080fd5b50600f546103599060ff1681565b34801561086957600080fd5b50610359610878366004612ed5565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156108b257600080fd5b506103e86108c1366004612e77565b611f23565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610904575061090482612002565b92915050565b60606000805461091990613157565b80601f016020809104026020016040519081016040528092919081815260200182805461094590613157565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b5050505050905090565b60006109a78261209d565b610a0d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610a348261132b565b9050806001600160a01b0316836001600160a01b03161415610abe5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a04565b336001600160a01b0382161480610ada5750610ada8133610878565b610b4c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a04565b610b5683836120e7565b505050565b6001600160a01b038116600090815260086020526040902054610bcf5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a04565b6000610bda60075490565b610be490476131a8565b90506000610c118383610c0c866001600160a01b031660009081526009602052604090205490565b612162565b905080610c745760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a04565b6001600160a01b03831660009081526009602052604081208054839290610c9c9084906131a8565b925050819055508060076000828254610cb591906131a8565b90915550610cc5905083826121a0565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610d1633826122b9565b610d885760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a04565b610b568383836123a3565b6000610d9e83611459565b8210610e005760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b6000805b600254811015610e6d5760028181548110610e2157610e216131c0565b6000918252602090912001546001600160a01b0386811691161415610e5d5783821415610e515791506109049050565b610e5a826131d6565b91505b610e66816131d6565b9050610e04565b5060405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b6005546001600160a01b03163314610f245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000610f386005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f82576040519150601f19603f3d011682016040523d82523d6000602084013e610f87565b606091505b5050905080610f9557600080fd5b50565b610b5683838360405180602001604052806000815250611b65565b6001600160a01b0381166000908152600860205260409020546110275760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610a04565b6001600160a01b0382166000908152600b60205260408120546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561109857600080fd5b505afa1580156110ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d091906131f1565b6110da91906131a8565b905060006111138383610c0c87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806111765760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610a04565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906111ad9084906131a8565b90915550506001600160a01b0384166000908152600b6020526040812080548392906111da9084906131a8565b909155506111eb9050848483612533565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061124260025490565b82106112b65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a04565b5090565b6005546001600160a01b031633146113145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b805161132790600d906020840190612cef565b5050565b60008060028381548110611341576113416131c0565b6000918252602090912001546001600160a01b03169050806109045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a04565b600d80546113d890613157565b80601f016020809104026020016040519081016040528092919081815260200182805461140490613157565b80156114515780601f1061142657610100808354040283529160200191611451565b820191906000526020600020905b81548152906001019060200180831161143457829003601f168201915b505050505081565b60006001600160a01b0382166114d75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a04565b600254600090815b8181101561153557600281815481106114fa576114fa6131c0565b6000918252602090912001546001600160a01b038681169116141561152557611522836131d6565b92505b61152e816131d6565b90506114df565b50909392505050565b6005546001600160a01b031633146115985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6115a260006125b3565b565b6005546001600160a01b031633146115fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b601255565b6000600a8281548110611618576116186131c0565b6000918252602090912001546001600160a01b031692915050565b6005546001600160a01b0316331461168d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b601055565b60606001805461091990613157565b6005546001600160a01b031633146116fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b8281146117705760405162461bcd60e51b815260206004820152602c60248201527f4d7573742070726f7669646520657175616c207175616e74697469657320616e60448201527f6420726563697069656e747300000000000000000000000000000000000000006064820152608401610a04565b60008061177c60025490565b905060005b858110156117bf5786868281811061179b5761179b6131c0565b90506020020135836117ad91906131a8565b92506117b8816131d6565b9050611781565b506011546117cd83836131a8565b111561180d5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b6000915060005b838110156118ab5760005b878783818110611831576118316131c0565b9050602002013581101561189a5761188a868684818110611854576118546131c0565b90506020020160208101906118699190612e77565b84611873816131d6565b955060405180602001604052806000815250612612565b611893816131d6565b905061181f565b506118a4816131d6565b9050611814565b50505050505050565b600f5460ff16156119075760405162461bcd60e51b815260206004820152600660248201527f50617573656400000000000000000000000000000000000000000000000000006044820152606401610a04565b600061191260025490565b9050600082116119645760405162461bcd60e51b815260206004820152601560248201527f53656c656374206174206c656173742031204e465400000000000000000000006044820152606401610a04565b60115461197183836131a8565b11156119b15760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b6005546001600160a01b03163314611a7257601254821115611a155760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a04565b81601054611a23919061320a565b341015611a725760405162461bcd60e51b815260206004820152601460248201527f42616c616e636520496e73756666696369656e740000000000000000000000006044820152606401610a04565b60005b82811015610b5657611a9033611a8b83856131a8565b612690565b611a99816131d6565b9050611a75565b6001600160a01b038216331415611af95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a04565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b6f33836122b9565b611be15760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a04565b611bed848484846126aa565b50505050565b600e80546113d890613157565b6060611c0b8261209d565b611c7d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a04565b6000611c87612728565b6040805160208101909152600081526013549192509060ff1615611cf5576000825111611cc35760405180602001604052806000815250611cee565b81611ccd85612737565b604051602001611cde929190613229565b6040516020818303038152906040525b9050611d44565b6000825111611d135760405180602001604052806000815250611d41565b81611d1d85612737565b600e604051602001611d3193929190613258565b6040516020818303038152906040525b90505b9392505050565b6005546001600160a01b03163314611da55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6013805460ff19811660ff90911615179055565b6005546001600160a01b03163314611e135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b600080611e1f60025490565b601154909150611e3082601e6131a8565b1115611e705760405162461bcd60e51b815260206004820152600f60248201526e139bdd08115b9bdd59da081319599d608a1b6044820152606401610a04565b600091505b601e82101561132757611ea33382611e8c816131d6565b935060405180602001604052806000815250612612565b81611ead816131d6565b925050611e75565b6005546001600160a01b03163314611f0f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b600f805460ff19811660ff90911615179055565b6005546001600160a01b03163314611f7d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6001600160a01b038116611ff95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a04565b610f95816125b3565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061206557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061090457507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610904565b60025460009082108015610904575060006001600160a01b0316600283815481106120ca576120ca6131c0565b6000918252602090912001546001600160a01b0316141592915050565b6000818152600360205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906121298261132b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b0384166000908152600860205260408120549091839161218c908661320a565b6121969190613332565b611d419190613346565b804710156121f05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461223d576040519150601f19603f3d011682016040523d82523d6000602084013e612242565b606091505b5050905080610b565760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a04565b60006122c48261209d565b6123255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a04565b60006123308361132b565b9050806001600160a01b0316846001600160a01b0316148061236b5750836001600160a01b03166123608461099c565b6001600160a01b0316145b8061239b57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166123b68261132b565b6001600160a01b0316146124325760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a04565b6001600160a01b0382166124ad5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a04565b6124b86000826120e7565b81600282815481106124cc576124cc6131c0565b60009182526020822001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b56908490612869565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61261c838361294e565b6126296000848484612a83565b610b565760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b611327828260405180602001604052806000815250612612565b6126b58484846123a3565b6126c184848484612a83565b611bed5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b6060600d805461091990613157565b60608161277757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156127a1578061278b816131d6565b915061279a9050600a83613332565b915061277b565b60008167ffffffffffffffff8111156127bc576127bc612f0e565b6040519080825280601f01601f1916602001820160405280156127e6576020820181803683370190505b5090505b841561239b576127fb600183613346565b9150612808600a8661335d565b6128139060306131a8565b60f81b818381518110612828576128286131c0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612862600a86613332565b94506127ea565b60006128be826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612bdb9092919063ffffffff16565b805190915015610b5657808060200190518101906128dc9190613371565b610b565760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a04565b6001600160a01b0382166129a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a04565b6129ad8161209d565b156129fa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a04565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612bd057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612ac790339089908890889060040161338e565b602060405180830381600087803b158015612ae157600080fd5b505af1925050508015612b11575060408051601f3d908101601f19168201909252612b0e918101906133ca565b60015b612bb6573d808015612b3f576040519150601f19603f3d011682016040523d82523d6000602084013e612b44565b606091505b508051612bae5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610a04565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061239b565b506001949350505050565b6060611d418484600085856001600160a01b0385163b612c3d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a04565b600080866001600160a01b03168587604051612c5991906133e7565b60006040518083038185875af1925050503d8060008114612c96576040519150601f19603f3d011682016040523d82523d6000602084013e612c9b565b606091505b5091509150612cab828286612cb6565b979650505050505050565b60608315612cc5575081611d44565b825115612cd55782518084602001fd5b8160405162461bcd60e51b8152600401610a049190612e0a565b828054612cfb90613157565b90600052602060002090601f016020900481019282612d1d5760008555612d63565b82601f10612d3657805160ff1916838001178555612d63565b82800160010185558215612d63579182015b82811115612d63578251825591602001919060010190612d48565b506112b69291505b808211156112b65760008155600101612d6b565b6001600160e01b031981168114610f9557600080fd5b600060208284031215612da757600080fd5b8135611d4481612d7f565b60005b83811015612dcd578181015183820152602001612db5565b83811115611bed5750506000910152565b60008151808452612df6816020860160208601612db2565b601f01601f19169290920160200192915050565b602081526000611d446020830184612dde565b600060208284031215612e2f57600080fd5b5035919050565b6001600160a01b0381168114610f9557600080fd5b60008060408385031215612e5e57600080fd5b8235612e6981612e36565b946020939093013593505050565b600060208284031215612e8957600080fd5b8135611d4481612e36565b600080600060608486031215612ea957600080fd5b8335612eb481612e36565b92506020840135612ec481612e36565b929592945050506040919091013590565b60008060408385031215612ee857600080fd5b8235612ef381612e36565b91506020830135612f0381612e36565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612f3f57612f3f612f0e565b604051601f8501601f19908116603f01168101908282118183101715612f6757612f67612f0e565b81604052809350858152868686011115612f8057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612fac57600080fd5b813567ffffffffffffffff811115612fc357600080fd5b8201601f81018413612fd457600080fd5b61239b84823560208401612f24565b60008083601f840112612ff557600080fd5b50813567ffffffffffffffff81111561300d57600080fd5b6020830191508360208260051b850101111561302857600080fd5b9250929050565b6000806000806040858703121561304557600080fd5b843567ffffffffffffffff8082111561305d57600080fd5b61306988838901612fe3565b9096509450602087013591508082111561308257600080fd5b5061308f87828801612fe3565b95989497509550505050565b8015158114610f9557600080fd5b600080604083850312156130bc57600080fd5b82356130c781612e36565b91506020830135612f038161309b565b600080600080608085870312156130ed57600080fd5b84356130f881612e36565b9350602085013561310881612e36565b925060408501359150606085013567ffffffffffffffff81111561312b57600080fd5b8501601f8101871361313c57600080fd5b61314b87823560208401612f24565b91505092959194509250565b600181811c9082168061316b57607f821691505b6020821081141561318c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156131bb576131bb613192565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156131ea576131ea613192565b5060010190565b60006020828403121561320357600080fd5b5051919050565b600081600019048311821515161561322457613224613192565b500290565b6000835161323b818460208801612db2565b83519083019061324f818360208801612db2565b01949350505050565b60008451602061326b8285838a01612db2565b85519184019161327e8184848a01612db2565b8554920191600090600181811c908083168061329b57607f831692505b8583108114156132b957634e487b7160e01b85526022600452602485fd5b8080156132cd57600181146132de5761330b565b60ff1985168852838801955061330b565b60008b81526020902060005b858110156133035781548a8201529084019088016132ea565b505083880195505b50939b9a5050505050505050505050565b634e487b7160e01b600052601260045260246000fd5b6000826133415761334161331c565b500490565b60008282101561335857613358613192565b500390565b60008261336c5761336c61331c565b500690565b60006020828403121561338357600080fd5b8151611d448161309b565b60006001600160a01b038087168352808616602084015250836040830152608060608301526133c06080830184612dde565b9695505050505050565b6000602082840312156133dc57600080fd5b8151611d4481612d7f565b600082516133f9818460208701612db2565b919091019291505056fea26469706673582212201006cd4e7facaff96d7d5eb02400d33aa247fb7af180ec6f225b341a0c7dbeba64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4c61727661204372616273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c41525641435241425356340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c742f6c617276615f63726162735f70726f78792f000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Larva Crabs
Arg [1] : _symbol (string): LARVACRABSV4
Arg [2] : _initBaseURI (string): https://api.larvacrabs.co/default/larva_crabs_proxy/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4c61727661204372616273000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 4c41525641435241425356340000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [8] : 68747470733a2f2f6170692e6c6172766163726162732e636f2f64656661756c
Arg [9] : 742f6c617276615f63726162735f70726f78792f000000000000000000000000


Deployed Bytecode Sourcemap

52424:3888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48019:40;16927:10;48019:40;;;-1:-1:-1;;;;;206:55:1;;;188:74;;48049:9:0;293:2:1;278:18;;271:34;161:18;48019:40:0;;;;;;;52424:3888;;;;;31980:225;;;;;;;;;;-1:-1:-1;31980:225:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;31980:225:0;;;;;;;;20176:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20989:221::-;;;;;;;;;;-1:-1:-1;20989:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2040:55:1;;;2022:74;;2010:2;1995:18;20989:221:0;1876:226:1;20511:412:0;;;;;;;;;;-1:-1:-1;20511:412:0;;;;;:::i;:::-;;:::i;:::-;;32911:110;;;;;;;;;;-1:-1:-1;32999:7:0;:14;32911:110;;;2732:25:1;;;2720:2;2705:18;32911:110:0;2586:177:1;49805:566:0;;;;;;;;;;-1:-1:-1;49805:566:0;;;;;:::i;:::-;;:::i;21881:339::-;;;;;;;;;;-1:-1:-1;21881:339:0;;;;;:::i;:::-;;:::i;32289:546::-;;;;;;;;;;-1:-1:-1;32289:546:0;;;;;:::i;:::-;;:::i;48150:91::-;;;;;;;;;;-1:-1:-1;48221:12:0;;48150:91;;56075:145;;;:::i;49279:135::-;;;;;;;;;;-1:-1:-1;49279:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;49376:21:0;;;49349:7;49376:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;49279:135;22291:185;;;;;;;;;;-1:-1:-1;22291:185:0;;;;;:::i;:::-;;:::i;50639:641::-;;;;;;;;;;-1:-1:-1;50639:641:0;;;;;:::i;:::-;;:::i;33098:225::-;;;;;;;;;;-1:-1:-1;33098:225:0;;;;;:::i;:::-;;:::i;52753:28::-;;;;;;;;;;-1:-1:-1;52753:28:0;;;;;;;;55971:98;;;;;;;;;;-1:-1:-1;55971:98:0;;;;;:::i;:::-;;:::i;52675:35::-;;;;;;;;;;;;;;;;19870:239;;;;;;;;;;-1:-1:-1;19870:239:0;;;;;:::i;:::-;;:::i;52533:21::-;;;;;;;;;;;;;:::i;19390:418::-;;;;;;;;;;-1:-1:-1;19390:418:0;;;;;:::i;:::-;;:::i;35026:103::-;;;;;;;;;;;;;:::i;55849:116::-;;;;;;;;;;-1:-1:-1;55849:116:0;;;;;:::i;:::-;;:::i;49505:100::-;;;;;;;;;;-1:-1:-1;49505:100:0;;;;;:::i;:::-;;:::i;34375:87::-;;;;;;;;;;-1:-1:-1;34448:6:0;;-1:-1:-1;;;;;34448:6:0;34375:87;;55759:84;;;;;;;;;;-1:-1:-1;55759:84:0;;;;;:::i;:::-;;:::i;20345:104::-;;;;;;;;;;;;;:::i;54679:681::-;;;;;;;;;;-1:-1:-1;54679:681:0;;;;;:::i;:::-;;:::i;49001:109::-;;;;;;;;;;-1:-1:-1;49001:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;49084:18:0;49057:7;49084:18;;;:9;:18;;;;;;;49001:109;52636:34;;;;;;;;;;;;;;;;53430:564;;;;;;:::i;:::-;;:::i;21282:295::-;;;;;;;;;;-1:-1:-1;21282:295:0;;;;;:::i;:::-;;:::i;22547:328::-;;;;;;;;;;-1:-1:-1;22547:328:0;;;;;:::i;:::-;;:::i;52715:33::-;;;;;;;;;;;;;;;;52559:37;;;;;;;;;;;;;:::i;54000:673::-;;;;;;;;;;-1:-1:-1;54000:673:0;;;;;:::i;:::-;;:::i;56226:83::-;;;;;;;;;;;;;:::i;55366:299::-;;;;;;;;;;;;;:::i;48797:105::-;;;;;;;;;;-1:-1:-1;48797:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;48878:16:0;48851:7;48878:16;;;:7;:16;;;;;;;48797:105;48587:119;;;;;;;;;;-1:-1:-1;48587:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;48672:26:0;48645:7;48672:26;;;:19;:26;;;;;;;48587:119;55671:80;;;;;;;;;;;;;:::i;48335:95::-;;;;;;;;;;-1:-1:-1;48408:14:0;;48335:95;;52601:30;;;;;;;;;;-1:-1:-1;52601:30:0;;;;;;;;21648:164;;;;;;;;;;-1:-1:-1;21648:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21769:25:0;;;21745:4;21769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21648:164;35284:201;;;;;;;;;;-1:-1:-1;35284:201:0;;;;;:::i;:::-;;:::i;31980:225::-;32083:4;-1:-1:-1;;;;;;32107:50:0;;32122:35;32107:50;;:90;;;32161:36;32185:11;32161:23;:36::i;:::-;32100:97;31980:225;-1:-1:-1;;31980:225:0:o;20176:100::-;20230:13;20263:5;20256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20176:100;:::o;20989:221::-;21065:7;21093:16;21101:7;21093;:16::i;:::-;21085:73;;;;-1:-1:-1;;;21085:73:0;;9195:2:1;21085:73:0;;;9177:21:1;9234:2;9214:18;;;9207:30;9273:34;9253:18;;;9246:62;-1:-1:-1;;;9324:18:1;;;9317:42;9376:19;;21085:73:0;;;;;;;;;-1:-1:-1;21178:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21178:24:0;;20989:221::o;20511:412::-;20592:13;20608:24;20624:7;20608:15;:24::i;:::-;20592:40;;20657:5;-1:-1:-1;;;;;20651:11:0;:2;-1:-1:-1;;;;;20651:11:0;;;20643:57;;;;-1:-1:-1;;;20643:57:0;;9608:2:1;20643:57:0;;;9590:21:1;9647:2;9627:18;;;9620:30;9686:34;9666:18;;;9659:62;9757:3;9737:18;;;9730:31;9778:19;;20643:57:0;9406:397:1;20643:57:0;16927:10;-1:-1:-1;;;;;20735:21:0;;;;:62;;-1:-1:-1;20760:37:0;20777:5;16927:10;21648:164;:::i;20760:37::-;20713:168;;;;-1:-1:-1;;;20713:168:0;;10010:2:1;20713:168:0;;;9992:21:1;10049:2;10029:18;;;10022:30;10088:34;10068:18;;;10061:62;10159:26;10139:18;;;10132:54;10203:19;;20713:168:0;9808:420:1;20713:168:0;20894:21;20903:2;20907:7;20894:8;:21::i;:::-;20581:342;20511:412;;:::o;49805:566::-;-1:-1:-1;;;;;49881:16:0;;49900:1;49881:16;;;:7;:16;;;;;;49873:71;;;;-1:-1:-1;;;49873:71:0;;10435:2:1;49873:71:0;;;10417:21:1;10474:2;10454:18;;;10447:30;10513:34;10493:18;;;10486:62;-1:-1:-1;;;10564:18:1;;;10557:36;10610:19;;49873:71:0;10233:402:1;49873:71:0;49957:21;50005:15;48408:14;;;48335:95;50005:15;49981:39;;:21;:39;:::i;:::-;49957:63;;50031:15;50049:58;50065:7;50074:13;50089:17;50098:7;-1:-1:-1;;;;;49084:18:0;49057:7;49084:18;;;:9;:18;;;;;;;49001:109;50089:17;50049:15;:58::i;:::-;50031:76;-1:-1:-1;50128:12:0;50120:68;;;;-1:-1:-1;;;50120:68:0;;11164:2:1;50120:68:0;;;11146:21:1;11203:2;11183:18;;;11176:30;11242:34;11222:18;;;11215:62;-1:-1:-1;;;11293:18:1;;;11286:41;11344:19;;50120:68:0;10962:407:1;50120:68:0;-1:-1:-1;;;;;50201:18:0;;;;;;:9;:18;;;;;:29;;50223:7;;50201:18;:29;;50223:7;;50201:29;:::i;:::-;;;;;;;;50259:7;50241:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;50279:35:0;;-1:-1:-1;50297:7:0;50306;50279:17;:35::i;:::-;50330:33;;;-1:-1:-1;;;;;206:55:1;;188:74;;293:2;278:18;;271:34;;;50330:33:0;;161:18:1;50330:33:0;;;;;;;49862:509;;49805:566;:::o;21881:339::-;22076:41;16927:10;22109:7;22076:18;:41::i;:::-;22068:103;;;;-1:-1:-1;;;22068:103:0;;11886:2:1;22068:103:0;;;11868:21:1;11925:2;11905:18;;;11898:30;11964:34;11944:18;;;11937:62;12035:19;12015:18;;;12008:47;12072:19;;22068:103:0;11684:413:1;22068:103:0;22184:28;22194:4;22200:2;22204:7;22184:9;:28::i;32289:546::-;32378:15;32422:24;32440:5;32422:17;:24::i;:::-;32414:5;:32;32406:88;;;;-1:-1:-1;;;32406:88:0;;12304:2:1;32406:88:0;;;12286:21:1;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:41;12484:19;;32406:88:0;12102:407:1;32406:88:0;32507:10;32533:6;32528:226;32545:7;:14;32541:18;;32528:226;;;32594:7;32602:1;32594:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32585:19:0;;;32594:10;;32585:19;32581:162;;;32638:5;32629;:14;32625:102;;;32674:1;-1:-1:-1;32667:8:0;;-1:-1:-1;32667:8:0;32625:102;32720:7;;;:::i;:::-;;;32625:102;32561:3;;;:::i;:::-;;;32528:226;;;-1:-1:-1;32766:61:0;;-1:-1:-1;;;32766:61:0;;12304:2:1;32766:61:0;;;12286:21:1;12343:2;12323:18;;;12316:30;12382:34;12362:18;;;12355:62;-1:-1:-1;;;12433:18:1;;;12426:41;12484:19;;32766:61:0;12102:407:1;56075:145:0;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;56128:7:::1;56149;34448:6:::0;;-1:-1:-1;;;;;34448:6:0;;34375:87;56149:7:::1;-1:-1:-1::0;;;;;56141:21:0::1;56170;56141:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56127:69;;;56211:2;56203:11;;;::::0;::::1;;56120:100;56075:145::o:0;22291:185::-;22429:39;22446:4;22452:2;22456:7;22429:39;;;;;;;;;;;;:16;:39::i;50639:641::-;-1:-1:-1;;;;;50721:16:0;;50740:1;50721:16;;;:7;:16;;;;;;50713:71;;;;-1:-1:-1;;;50713:71:0;;10435:2:1;50713:71:0;;;10417:21:1;10474:2;10454:18;;;10447:30;10513:34;10493:18;;;10486:62;-1:-1:-1;;;10564:18:1;;;10557:36;10610:19;;50713:71:0;10233:402:1;50713:71:0;-1:-1:-1;;;;;48672:26:0;;50797:21;48672:26;;;:19;:26;;;;;;50821:30;;;;;50845:4;50821:30;;;2022:74:1;-1:-1:-1;;;;;50821:15:0;;;;;1995:18:1;;50821:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;50797:77;;50885:15;50903:65;50919:7;50928:13;50943:24;50952:5;50959:7;-1:-1:-1;;;;;49376:21:0;;;49349:7;49376:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;49279:135;50903:65;50885:83;-1:-1:-1;50989:12:0;50981:68;;;;-1:-1:-1;;;50981:68:0;;11164:2:1;50981:68:0;;;11146:21:1;11203:2;11183:18;;;11176:30;11242:34;11222:18;;;11215:62;-1:-1:-1;;;11293:18:1;;;11286:41;11344:19;;50981:68:0;10962:407:1;50981:68:0;-1:-1:-1;;;;;51062:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;51096:7;;51062:21;:41;;51096:7;;51062:41;:::i;:::-;;;;-1:-1:-1;;;;;;;51114:26:0;;;;;;:19;:26;;;;;:37;;51144:7;;51114:26;:37;;51144:7;;51114:37;:::i;:::-;;;;-1:-1:-1;51164:47:0;;-1:-1:-1;51187:5:0;51194:7;51203;51164:22;:47::i;:::-;51227:45;;;-1:-1:-1;;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;51227:45:0;;;;;161:18:1;51227:45:0;;;;;;;50702:578;;50639:641;;:::o;33098:225::-;33173:7;33209:34;32999:7;:14;;32911:110;33209:34;33201:5;:42;33193:99;;;;-1:-1:-1;;;33193:99:0;;13805:2:1;33193:99:0;;;13787:21:1;13844:2;13824:18;;;13817:30;13883:34;13863:18;;;13856:62;13954:14;13934:18;;;13927:42;13986:19;;33193:99:0;13603:408:1;33193:99:0;-1:-1:-1;33310:5:0;33098:225::o;55971:98::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;56042:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55971:98:::0;:::o;19870:239::-;19942:7;19962:13;19978:7;19986;19978:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19978:16:0;;-1:-1:-1;20013:19:0;20005:73;;;;-1:-1:-1;;;20005:73:0;;14218:2:1;20005:73:0;;;14200:21:1;14257:2;14237:18;;;14230:30;14296:34;14276:18;;;14269:62;14367:11;14347:18;;;14340:39;14396:19;;20005:73:0;14016:405:1;52533:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19390:418::-;19462:7;-1:-1:-1;;;;;19490:19:0;;19482:74;;;;-1:-1:-1;;;19482:74:0;;14628:2:1;19482:74:0;;;14610:21:1;14667:2;14647:18;;;14640:30;14706:34;14686:18;;;14679:62;14777:12;14757:18;;;14750:40;14807:19;;19482:74:0;14426:406:1;19482:74:0;19608:7;:14;19569:10;;;19633:119;19654:6;19650:1;:10;19633:119;;;19693:7;19701:1;19693:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19684:19:0;;;19693:10;;19684:19;19680:61;;;19720:7;;;:::i;:::-;;;19680:61;19662:3;;;:::i;:::-;;;19633:119;;;-1:-1:-1;19795:5:0;;19390:418;-1:-1:-1;;;19390:418:0:o;35026:103::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;35091:30:::1;35118:1;35091:18;:30::i;:::-;35026:103::o:0;55849:116::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;55926:13:::1;:33:::0;55849:116::o;49505:100::-;49556:7;49583;49591:5;49583:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49583:14:0;;49505:100;-1:-1:-1;;49505:100:0:o;55759:84::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;55820:5:::1;:17:::0;55759:84::o;20345:104::-;20401:13;20434:7;20427:14;;;;;:::i;54679:681::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;54816:35;;::::1;54808:106;;;::::0;-1:-1:-1;;;54808:106:0;;15039:2:1;54808:106:0::1;::::0;::::1;15021:21:1::0;15078:2;15058:18;;;15051:30;15117:34;15097:18;;;15090:62;15188:14;15168:18;;;15161:42;15220:19;;54808:106:0::1;14837:408:1::0;54808:106:0::1;54923:18;54952:14:::0;54969:13:::1;32999:7:::0;:14;;32911:110;54969:13:::1;54952:30;;54993:6;54989:86;55005:19:::0;;::::1;54989:86;;;55056:8;;55065:1;55056:11;;;;;;;:::i;:::-;;;;;;;55039:28;;;;;:::i;:::-;::::0;-1:-1:-1;55026:3:0::1;::::0;::::1;:::i;:::-;;;54989:86;;;-1:-1:-1::0;55116:13:0::1;::::0;55090:22:::1;55099:13:::0;55090:6;:22:::1;:::i;:::-;:39;;55081:83;;;::::0;-1:-1:-1;;;55081:83:0;;15452:2:1;55081:83:0::1;::::0;::::1;15434:21:1::0;15491:2;15471:18;;;15464:30;-1:-1:-1;;;15510:18:1;;;15503:45;15565:18;;55081:83:0::1;15250:339:1::0;55081:83:0::1;55171:20;;;55204:6;55200:155;55216:20:::0;;::::1;55200:155;;;55255:6;55251:97;55271:8;;55280:1;55271:11;;;;;;;:::i;:::-;;;;;;;55267:1;:15;55251:97;;;55299:39;55310:9;;55320:1;55310:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55324:8:::0;::::1;::::0;::::1;:::i;:::-;;;55299:39;;;;;;;;;;;::::0;:9:::1;:39::i;:::-;55284:3;::::0;::::1;:::i;:::-;;;55251:97;;;-1:-1:-1::0;55238:3:0::1;::::0;::::1;:::i;:::-;;;55200:155;;;;54801:559;;54679:681:::0;;;;:::o;53430:564::-;53496:11;;;;53495:12;53487:31;;;;-1:-1:-1;;;53487:31:0;;15796:2:1;53487:31:0;;;15778:21:1;15835:1;15815:18;;;15808:29;15873:8;15853:18;;;15846:36;15899:18;;53487:31:0;15594:329:1;53487:31:0;53525:14;53542:13;32999:7;:14;;32911:110;53542:13;53525:30;;53584:1;53570:11;:15;53562:49;;;;-1:-1:-1;;;53562:49:0;;16130:2:1;53562:49:0;;;16112:21:1;16169:2;16149:18;;;16142:30;16208:23;16188:18;;;16181:51;16249:18;;53562:49:0;15928:345:1;53562:49:0;53650:13;;53626:20;53635:11;53626:6;:20;:::i;:::-;:37;;53618:65;;;;-1:-1:-1;;;53618:65:0;;15452:2:1;53618:65:0;;;15434:21:1;15491:2;15471:18;;;15464:30;-1:-1:-1;;;15510:18:1;;;15503:45;15565:18;;53618:65:0;15250:339:1;53618:65:0;34448:6;;-1:-1:-1;;;;;34448:6:0;53698:10;:21;53694:197;;53755:13;;53740:11;:28;;53732:64;;;;-1:-1:-1;;;53732:64:0;;16480:2:1;53732:64:0;;;16462:21:1;16519:2;16499:18;;;16492:30;16558:25;16538:18;;;16531:53;16601:18;;53732:64:0;16278:347:1;53732:64:0;53836:11;53828:5;;:19;;;;:::i;:::-;53815:9;:32;;53807:65;;;;-1:-1:-1;;;53807:65:0;;17005:2:1;53807:65:0;;;16987:21:1;17044:2;17024:18;;;17017:30;17083:22;17063:18;;;17056:50;17123:18;;53807:65:0;16803:344:1;53807:65:0;53902:9;53897:92;53921:11;53917:1;:15;53897:92;;;53948:33;53958:10;53970;53979:1;53970:6;:10;:::i;:::-;53948:9;:33::i;:::-;53934:3;;;:::i;:::-;;;53897:92;;21282:295;-1:-1:-1;;;;;21385:24:0;;16927:10;21385:24;;21377:62;;;;-1:-1:-1;;;21377:62:0;;17354:2:1;21377:62:0;;;17336:21:1;17393:2;17373:18;;;17366:30;17432:27;17412:18;;;17405:55;17477:18;;21377:62:0;17152:349:1;21377:62:0;16927:10;21452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21452:53:0;;;;;;;;;;21521:48;;888:41:1;;;21452:42:0;;16927:10;21521:48;;861:18:1;21521:48:0;;;;;;;21282:295;;:::o;22547:328::-;22722:41;16927:10;22755:7;22722:18;:41::i;:::-;22714:103;;;;-1:-1:-1;;;22714:103:0;;11886:2:1;22714:103:0;;;11868:21:1;11925:2;11905:18;;;11898:30;11964:34;11944:18;;;11937:62;12035:19;12015:18;;;12008:47;12072:19;;22714:103:0;11684:413:1;22714:103:0;22828:39;22842:4;22848:2;22852:7;22861:5;22828:13;:39::i;:::-;22547:328;;;;:::o;52559:37::-;;;;;;;:::i;54000:673::-;54077:13;54110:16;54118:7;54110;:16::i;:::-;54102:76;;;;-1:-1:-1;;;54102:76:0;;17708:2:1;54102:76:0;;;17690:21:1;17747:2;17727:18;;;17720:30;17786:34;17766:18;;;17759:62;17857:17;17837:18;;;17830:45;17892:19;;54102:76:0;17506:411:1;54102:76:0;54185:18;54206:10;:8;:10::i;:::-;54227:25;;;;;;;;;:20;:25;;54267:9;;54185:31;;-1:-1:-1;54227:25:0;54267:9;;54263:379;;;54323:1;54308:4;54302:18;:22;:124;;;;;;;;;;;;;;;;;54373:4;54379:18;:7;:16;:18::i;:::-;54356:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54302:124;54293:133;;54263:379;;;54489:1;54474:4;54468:18;:22;:162;;;;;;;;;;;;;;;;;54539:4;54545:18;:7;:16;:18::i;:::-;54589:13;54522:81;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54468:162;54459:171;;54263:379;54661:6;54000:673;-1:-1:-1;;;54000:673:0:o;56226:83::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;56292:9:::1;::::0;;-1:-1:-1;;56279:22:0;::::1;56292:9;::::0;;::::1;56291:10;56279:22;::::0;;56226:83::o;55366:299::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;55413:9:::1;55433:14:::0;55450:13:::1;32999:7:::0;:14;;32911:110;55450:13:::1;55498;::::0;55433:30;;-1:-1:-1;55483:11:0::1;55433:30:::0;55492:2:::1;55483:11;:::i;:::-;:28;;55474:72;;;::::0;-1:-1:-1;;;55474:72:0;;15452:2:1;55474:72:0::1;::::0;::::1;15434:21:1::0;15491:2;15471:18;;;15464:30;-1:-1:-1;;;15510:18:1;;;15503:45;15565:18;;55474:72:0::1;15250:339:1::0;55474:72:0::1;55580:1;55576:5;;55571:87;55587:2;55583:1;:6;55571:87;;;55611:35;55621:10;55633:8:::0;::::1;::::0;::::1;:::i;:::-;;;55611:35;;;;;;;;;;;::::0;:9:::1;:35::i;:::-;55591:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55571:87;;55671:80:::0;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;55734:11:::1;::::0;;-1:-1:-1;;55719:26:0;::::1;55734:11;::::0;;::::1;55733:12;55719:26;::::0;;55671:80::o;35284:201::-;34448:6;;-1:-1:-1;;;;;34448:6:0;16927:10;34595:23;34587:68;;;;-1:-1:-1;;;34587:68:0;;13045:2:1;34587:68:0;;;13027:21:1;;;13064:18;;;13057:30;13123:34;13103:18;;;13096:62;13175:18;;34587:68:0;12843:356:1;34587:68:0;-1:-1:-1;;;;;35373:22:0;::::1;35365:73;;;::::0;-1:-1:-1;;;35365:73:0;;20314:2:1;35365:73:0::1;::::0;::::1;20296:21:1::0;20353:2;20333:18;;;20326:30;20392:34;20372:18;;;20365:62;20463:8;20443:18;;;20436:36;20489:19;;35365:73:0::1;20112:402:1::0;35365:73:0::1;35449:28;35468:8;35449:18;:28::i;19021:305::-:0;19123:4;-1:-1:-1;;;;;;19160:40:0;;19175:25;19160:40;;:105;;-1:-1:-1;;;;;;;19217:48:0;;19232:33;19217:48;19160:105;:158;;;-1:-1:-1;18033:25:0;-1:-1:-1;;;;;;18018:40:0;;;19282:36;17909:157;24385:155;24484:7;:14;24450:4;;24474:24;;:58;;;;;24530:1;-1:-1:-1;;;;;24502:30:0;:7;24510;24502:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;24502:16:0;:30;;24467:65;24385:155;-1:-1:-1;;24385:155:0:o;28274:175::-;28349:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;28349:29:0;-1:-1:-1;;;;;28349:29:0;;;;;;;;:24;;28403;28349;28403:15;:24::i;:::-;-1:-1:-1;;;;;28394:47:0;;;;;;;;;;;28274:175;;:::o;51458:248::-;51668:12;;-1:-1:-1;;;;;51648:16:0;;51604:7;51648:16;;;:7;:16;;;;;;51604:7;;51683:15;;51632:32;;:13;:32;:::i;:::-;51631:49;;;;:::i;:::-;:67;;;;:::i;10174:317::-;10289:6;10264:21;:31;;10256:73;;;;-1:-1:-1;;;10256:73:0;;21165:2:1;10256:73:0;;;21147:21:1;21204:2;21184:18;;;21177:30;21243:31;21223:18;;;21216:59;21292:18;;10256:73:0;20963:353:1;10256:73:0;10343:12;10361:9;-1:-1:-1;;;;;10361:14:0;10383:6;10361:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10342:52;;;10413:7;10405:78;;;;-1:-1:-1;;;10405:78:0;;21523:2:1;10405:78:0;;;21505:21:1;21562:2;21542:18;;;21535:30;21601:34;21581:18;;;21574:62;21672:28;21652:18;;;21645:56;21718:19;;10405:78:0;21321:422:1;24707:349:0;24800:4;24825:16;24833:7;24825;:16::i;:::-;24817:73;;;;-1:-1:-1;;;24817:73:0;;21950:2:1;24817:73:0;;;21932:21:1;21989:2;21969:18;;;21962:30;22028:34;22008:18;;;22001:62;-1:-1:-1;;;22079:18:1;;;22072:42;22131:19;;24817:73:0;21748:408:1;24817:73:0;24901:13;24917:24;24933:7;24917:15;:24::i;:::-;24901:40;;24971:5;-1:-1:-1;;;;;24960:16:0;:7;-1:-1:-1;;;;;24960:16:0;;:51;;;;25004:7;-1:-1:-1;;;;;24980:31:0;:20;24992:7;24980:11;:20::i;:::-;-1:-1:-1;;;;;24980:31:0;;24960:51;:87;;;-1:-1:-1;;;;;;21769:25:0;;;21745:4;21769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;25015:32;24952:96;24707:349;-1:-1:-1;;;;24707:349:0:o;27639:517::-;27799:4;-1:-1:-1;;;;;27771:32:0;:24;27787:7;27771:15;:24::i;:::-;-1:-1:-1;;;;;27771:32:0;;27763:86;;;;-1:-1:-1;;;27763:86:0;;22363:2:1;27763:86:0;;;22345:21:1;22402:2;22382:18;;;22375:30;22441:34;22421:18;;;22414:62;22512:11;22492:18;;;22485:39;22541:19;;27763:86:0;22161:405:1;27763:86:0;-1:-1:-1;;;;;27868:16:0;;27860:65;;;;-1:-1:-1;;;27860:65:0;;22773:2:1;27860:65:0;;;22755:21:1;22812:2;22792:18;;;22785:30;22851:34;22831:18;;;22824:62;22922:6;22902:18;;;22895:34;22946:19;;27860:65:0;22571:400:1;27860:65:0;28042:29;28059:1;28063:7;28042:8;:29::i;:::-;28101:2;28082:7;28090;28082:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;28082:21:0;-1:-1:-1;;;;;28082:21:0;;;;;;28121:27;;28140:7;;28121:27;;;;;;;;;;28082:16;28121:27;27639:517;;;:::o;41496:211::-;41640:58;;;-1:-1:-1;;;;;206:55:1;;41640:58:0;;;188:74:1;278:18;;;;271:34;;;41640:58:0;;;;;;;;;;161:18:1;;;;41640:58:0;;;;;;;;;;41663:23;41640:58;;;41613:86;;41633:5;;41613:19;:86::i;35645:191::-;35738:6;;;-1:-1:-1;;;;;35755:17:0;;;-1:-1:-1;;35755:17:0;;;;;;;35788:40;;35738:6;;;35755:17;35738:6;;35788:40;;35719:16;;35788:40;35708:128;35645:191;:::o;25737:321::-;25867:18;25873:2;25877:7;25867:5;:18::i;:::-;25918:54;25949:1;25953:2;25957:7;25966:5;25918:22;:54::i;:::-;25896:154;;;;-1:-1:-1;;;25896:154:0;;23178:2:1;25896:154:0;;;23160:21:1;23217:2;23197:18;;;23190:30;23256:34;23236:18;;;23229:62;-1:-1:-1;;;23307:18:1;;;23300:48;23365:19;;25896:154:0;22976:414:1;25398:110:0;25474:26;25484:2;25488:7;25474:26;;;;;;;;;;;;:9;:26::i;23757:315::-;23914:28;23924:4;23930:2;23934:7;23914:9;:28::i;:::-;23961:48;23984:4;23990:2;23994:7;24003:5;23961:22;:48::i;:::-;23953:111;;;;-1:-1:-1;;;23953:111:0;;23178:2:1;23953:111:0;;;23160:21:1;23217:2;23197:18;;;23190:30;23256:34;23236:18;;;23229:62;-1:-1:-1;;;23307:18:1;;;23300:48;23365:19;;23953:111:0;22976:414:1;53215:93:0;53266:13;53295:7;53288:14;;;;;:::i;36193:723::-;36249:13;36470:10;36466:53;;-1:-1:-1;;36497:10:0;;;;;;;;;;;;;;;;;;36193:723::o;36466:53::-;36544:5;36529:12;36585:78;36592:9;;36585:78;;36618:8;;;;:::i;:::-;;-1:-1:-1;36641:10:0;;-1:-1:-1;36649:2:0;36641:10;;:::i;:::-;;;36585:78;;;36673:19;36705:6;36695:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36695:17:0;;36673:39;;36723:154;36730:10;;36723:154;;36757:11;36767:1;36757:11;;:::i;:::-;;-1:-1:-1;36826:10:0;36834:2;36826:5;:10;:::i;:::-;36813:24;;:2;:24;:::i;:::-;36800:39;;36783:6;36790;36783:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;36854:11:0;36863:2;36854:11;;:::i;:::-;;;36723:154;;44069:716;44493:23;44519:69;44547:4;44519:69;;;;;;;;;;;;;;;;;44527:5;-1:-1:-1;;;;;44519:27:0;;;:69;;;;;:::i;:::-;44603:17;;44493:95;;-1:-1:-1;44603:21:0;44599:179;;44700:10;44689:30;;;;;;;;;;;;:::i;:::-;44681:85;;;;-1:-1:-1;;;44681:85:0;;23964:2:1;44681:85:0;;;23946:21:1;24003:2;23983:18;;;23976:30;24042:34;24022:18;;;24015:62;24113:12;24093:18;;;24086:40;24143:19;;44681:85:0;23762:406:1;26394:346:0;-1:-1:-1;;;;;26474:16:0;;26466:61;;;;-1:-1:-1;;;26466:61:0;;24375:2:1;26466:61:0;;;24357:21:1;;;24394:18;;;24387:30;24453:34;24433:18;;;24426:62;24505:18;;26466:61:0;24173:356:1;26466:61:0;26547:16;26555:7;26547;:16::i;:::-;26546:17;26538:58;;;;-1:-1:-1;;;26538:58:0;;24736:2:1;26538:58:0;;;24718:21:1;24775:2;24755:18;;;24748:30;24814;24794:18;;;24787:58;24862:18;;26538:58:0;24534:352:1;26538:58:0;26665:7;:16;;;;;;;-1:-1:-1;26665:16:0;;;;;;;-1:-1:-1;;26665:16:0;-1:-1:-1;;;;;26665:16:0;;;;;;;;26699:33;;26724:7;;-1:-1:-1;26699:33:0;;-1:-1:-1;;26699:33:0;26394:346;;:::o;29016:799::-;29171:4;-1:-1:-1;;;;;29192:13:0;;9208:19;:23;29188:620;;29228:72;;-1:-1:-1;;;29228:72:0;;-1:-1:-1;;;;;29228:36:0;;;;;:72;;16927:10;;29279:4;;29285:7;;29294:5;;29228:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29228:72:0;;;;;;;;-1:-1:-1;;29228:72:0;;;;;;;;;;;;:::i;:::-;;;29224:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29470:13:0;;29466:272;;29513:60;;-1:-1:-1;;;29513:60:0;;23178:2:1;29513:60:0;;;23160:21:1;23217:2;23197:18;;;23190:30;23256:34;23236:18;;;23229:62;-1:-1:-1;;;23307:18:1;;;23300:48;23365:19;;29513:60:0;22976:414:1;29466:272:0;29688:6;29682:13;29673:6;29669:2;29665:15;29658:38;29224:529;-1:-1:-1;;;;;;29351:51:0;-1:-1:-1;;;29351:51:0;;-1:-1:-1;29344:58:0;;29188:620;-1:-1:-1;29792:4:0;29016:799;;;;;;:::o;11658:229::-;11795:12;11827:52;11849:6;11857:4;11863:1;11866:12;11795;-1:-1:-1;;;;;9208:19:0;;;13065:60;;;;-1:-1:-1;;;13065:60:0;;26271:2:1;13065:60:0;;;26253:21:1;26310:2;26290:18;;;26283:30;26349:31;26329:18;;;26322:59;26398:18;;13065:60:0;26069:353:1;13065:60:0;13139:12;13153:23;13180:6;-1:-1:-1;;;;;13180:11:0;13199:5;13206:4;13180:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13138:73;;;;13229:51;13246:7;13255:10;13267:12;13229:16;:51::i;:::-;13222:58;12778:510;-1:-1:-1;;;;;;;12778:510:0:o;15464:712::-;15614:12;15643:7;15639:530;;;-1:-1:-1;15674:10:0;15667:17;;15639:530;15788:17;;:21;15784:374;;15986:10;15980:17;16047:15;16034:10;16030:2;16026:19;16019:44;15784:374;16129:12;16122:20;;-1:-1:-1;;;16122: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;3897:184::-;-1:-1:-1;;;3946:1:1;3939:88;4046:4;4043:1;4036:15;4070:4;4067:1;4060:15;4086:632;4151:5;4181:18;4222:2;4214:6;4211:14;4208:40;;;4228:18;;:::i;:::-;4303:2;4297:9;4271:2;4357:15;;-1:-1:-1;;4353:24:1;;;4379:2;4349:33;4345:42;4333:55;;;4403:18;;;4423:22;;;4400:46;4397:72;;;4449:18;;:::i;:::-;4489:10;4485:2;4478:22;4518:6;4509:15;;4548:6;4540;4533:22;4588:3;4579:6;4574:3;4570:16;4567:25;4564:45;;;4605:1;4602;4595:12;4564:45;4655:6;4650:3;4643:4;4635:6;4631:17;4618:44;4710:1;4703:4;4694:6;4686;4682:19;4678:30;4671:41;;;;4086:632;;;;;:::o;4723:451::-;4792:6;4845:2;4833:9;4824:7;4820:23;4816:32;4813:52;;;4861:1;4858;4851:12;4813:52;4901:9;4888:23;4934:18;4926:6;4923:30;4920:50;;;4966:1;4963;4956:12;4920:50;4989:22;;5042:4;5034:13;;5030:27;-1:-1:-1;5020:55:1;;5071:1;5068;5061:12;5020:55;5094:74;5160:7;5155:2;5142:16;5137:2;5133;5129:11;5094:74;:::i;5431:367::-;5494:8;5504:6;5558:3;5551:4;5543:6;5539:17;5535:27;5525:55;;5576:1;5573;5566:12;5525:55;-1:-1:-1;5599:20:1;;5642:18;5631:30;;5628:50;;;5674:1;5671;5664:12;5628:50;5711:4;5703:6;5699:17;5687:29;;5771:3;5764:4;5754:6;5751:1;5747:14;5739:6;5735:27;5731:38;5728:47;5725:67;;;5788:1;5785;5778:12;5725:67;5431:367;;;;;:::o;5803:773::-;5925:6;5933;5941;5949;6002:2;5990:9;5981:7;5977:23;5973:32;5970:52;;;6018:1;6015;6008:12;5970:52;6058:9;6045:23;6087:18;6128:2;6120:6;6117:14;6114:34;;;6144:1;6141;6134:12;6114:34;6183:70;6245:7;6236:6;6225:9;6221:22;6183:70;:::i;:::-;6272:8;;-1:-1:-1;6157:96:1;-1:-1:-1;6360:2:1;6345:18;;6332:32;;-1:-1:-1;6376:16:1;;;6373:36;;;6405:1;6402;6395:12;6373:36;;6444:72;6508:7;6497:8;6486:9;6482:24;6444:72;:::i;:::-;5803:773;;;;-1:-1:-1;6535:8:1;-1:-1:-1;;;;5803:773:1:o;6581:118::-;6667:5;6660:13;6653:21;6646:5;6643:32;6633:60;;6689:1;6686;6679:12;6704:382;6769:6;6777;6830:2;6818:9;6809:7;6805:23;6801:32;6798:52;;;6846:1;6843;6836:12;6798:52;6885:9;6872:23;6904:31;6929:5;6904:31;:::i;:::-;6954:5;-1:-1:-1;7011:2:1;6996:18;;6983:32;7024:30;6983:32;7024:30;:::i;7091:795::-;7186:6;7194;7202;7210;7263:3;7251:9;7242:7;7238:23;7234:33;7231:53;;;7280:1;7277;7270:12;7231:53;7319:9;7306:23;7338:31;7363:5;7338:31;:::i;:::-;7388:5;-1:-1:-1;7445:2:1;7430:18;;7417:32;7458:33;7417:32;7458:33;:::i;:::-;7510:7;-1:-1:-1;7564:2:1;7549:18;;7536:32;;-1:-1:-1;7619:2:1;7604:18;;7591:32;7646:18;7635:30;;7632:50;;;7678:1;7675;7668:12;7632:50;7701:22;;7754:4;7746:13;;7742:27;-1:-1:-1;7732:55:1;;7783:1;7780;7773:12;7732:55;7806:74;7872:7;7867:2;7854:16;7849:2;7845;7841:11;7806:74;:::i;:::-;7796:84;;;7091:795;;;;;;;:::o;8551:437::-;8630:1;8626:12;;;;8673;;;8694:61;;8748:4;8740:6;8736:17;8726:27;;8694:61;8801:2;8793:6;8790:14;8770:18;8767:38;8764:218;;;-1:-1:-1;;;8835:1:1;8828:88;8939:4;8936:1;8929:15;8967:4;8964:1;8957:15;8764:218;;8551:437;;;:::o;10640:184::-;-1:-1:-1;;;10689:1:1;10682:88;10789:4;10786:1;10779:15;10813:4;10810:1;10803:15;10829:128;10869:3;10900:1;10896:6;10893:1;10890:13;10887:39;;;10906:18;;:::i;:::-;-1:-1:-1;10942:9:1;;10829:128::o;12514:184::-;-1:-1:-1;;;12563:1:1;12556:88;12663:4;12660:1;12653:15;12687:4;12684:1;12677:15;12703:135;12742:3;-1:-1:-1;;12763:17:1;;12760:43;;;12783:18;;:::i;:::-;-1:-1:-1;12830:1:1;12819:13;;12703:135::o;13414:184::-;13484:6;13537:2;13525:9;13516:7;13512:23;13508:32;13505:52;;;13553:1;13550;13543:12;13505:52;-1:-1:-1;13576:16:1;;13414:184;-1:-1:-1;13414:184:1:o;16630:168::-;16670:7;16736:1;16732;16728:6;16724:14;16721:1;16718:21;16713:1;16706:9;16699:17;16695:45;16692:71;;;16743:18;;:::i;:::-;-1:-1:-1;16783:9:1;;16630:168::o;17922:470::-;18101:3;18139:6;18133:13;18155:53;18201:6;18196:3;18189:4;18181:6;18177:17;18155:53;:::i;:::-;18271:13;;18230:16;;;;18293:57;18271:13;18230:16;18327:4;18315:17;;18293:57;:::i;:::-;18366:20;;17922:470;-1:-1:-1;;;;17922:470:1:o;18523:1584::-;18747:3;18785:6;18779:13;18811:4;18824:51;18868:6;18863:3;18858:2;18850:6;18846:15;18824:51;:::i;:::-;18938:13;;18897:16;;;;18960:55;18938:13;18897:16;18982:15;;;18960:55;:::i;:::-;19104:13;;19037:20;;;19077:1;;19164;19186:18;;;;19239;;;;19266:93;;19344:4;19334:8;19330:19;19318:31;;19266:93;19407:2;19397:8;19394:16;19374:18;19371:40;19368:224;;;-1:-1:-1;;;19441:3:1;19434:90;19547:4;19544:1;19537:15;19577:4;19572:3;19565:17;19368:224;19608:18;19635:110;;;;19759:1;19754:328;;;;19601:481;;19635:110;-1:-1:-1;;19670:24:1;;19656:39;;19715:20;;;;-1:-1:-1;19635:110:1;;19754:328;18470:1;18463:14;;;18507:4;18494:18;;19849:1;19863:169;19877:8;19874:1;19871:15;19863:169;;;19959:14;;19944:13;;;19937:37;20002:16;;;;19894:10;;19863:169;;;19867:3;;20063:8;20056:5;20052:20;20045:27;;19601:481;-1:-1:-1;20098:3:1;;18523:1584;-1:-1:-1;;;;;;;;;;;18523:1584:1:o;20519:184::-;-1:-1:-1;;;20568:1:1;20561:88;20668:4;20665:1;20658:15;20692:4;20689:1;20682:15;20708:120;20748:1;20774;20764:35;;20779:18;;:::i;:::-;-1:-1:-1;20813:9:1;;20708:120::o;20833:125::-;20873:4;20901:1;20898;20895:8;20892:34;;;20906:18;;:::i;:::-;-1:-1:-1;20943:9:1;;20833:125::o;23395:112::-;23427:1;23453;23443:35;;23458:18;;:::i;:::-;-1:-1:-1;23492:9:1;;23395:112::o;23512:245::-;23579:6;23632:2;23620:9;23611:7;23607:23;23603:32;23600:52;;;23648:1;23645;23638:12;23600:52;23680:9;23674:16;23699:28;23721:5;23699:28;:::i;24891:512::-;25085:4;-1:-1:-1;;;;;25195:2:1;25187:6;25183:15;25172:9;25165:34;25247:2;25239:6;25235:15;25230:2;25219:9;25215:18;25208:43;;25287:6;25282:2;25271:9;25267:18;25260:34;25330:3;25325:2;25314:9;25310:18;25303:31;25351:46;25392:3;25381:9;25377:19;25369:6;25351:46;:::i;:::-;25343:54;24891:512;-1:-1:-1;;;;;;24891:512:1:o;25408:249::-;25477:6;25530:2;25518:9;25509:7;25505:23;25501:32;25498:52;;;25546:1;25543;25536:12;25498:52;25578:9;25572:16;25597:30;25621:5;25597:30;:::i;26427:274::-;26556:3;26594:6;26588:13;26610:53;26656:6;26651:3;26644:4;26636:6;26632:17;26610:53;:::i;:::-;26679:16;;;;;26427:274;-1:-1:-1;;26427:274:1:o

Swarm Source

ipfs://1006cd4e7facaff96d7d5eb02400d33aa247fb7af180ec6f225b341a0c7dbeba
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.