ETH Price: $3,197.55 (+3.83%)
 

Overview

Max Total Supply

118 ATOM

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
p1ckle.eth
Balance
31 ATOM
0x3E4FBAa149c7a03eC73bEf6e62B4FE3183A640ba
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:
CryptoAtomica

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-01
*/

// SPDX-License-Identifier: MIT
/*
 _____                  _           ___  _                  _           
/  __ \                | |         / _ \| |                (_)          
| /  \/_ __ _   _ _ __ | |_ ___   / /_\ \ |_ ___  _ __ ___  _  ___ __ _ 
| |   | '__| | | | '_ \| __/ _ \  |  _  | __/ _ \| '_ ` _ \| |/ __/ _` |
| \__/\ |  | |_| | |_) | || (_) | | | | | || (_) | | | | | | | (_| (_| |
 \____/_|   \__, | .__/ \__\___/  \_| |_/\__\___/|_| |_| |_|_|\___\__,_|
             __/ | |                                                    
            |___/|_|                                                    
                         by Devko.dev#7286
*/

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.4;

contract CryptoAtomica is ERC721A , Ownable {
    string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmS5vw63BiDvJ9rTkssLQLnaRJYVPK3bCyuKMEPkmyN1yQ/";
    uint256 public CA_MAX = 4000;
    uint256 public _tokensMinted;
    uint256 public CA_PRICE = 0.08 ether;
    uint256 public WALLET_LIMIT = 3;
    IERC721 public ishidaSocialClub = IERC721(0x79731D6f294e47129B7C6eb0Ae5ABFA02d5c9193);

    bool public publicLive;
    bool public privateLive;
    bool public ishidaFreeMintLive;

    address private _signer = 0xeFC1Fe47e6D560d4a68f40047cb9aACdd3Ee133b;
    string private constant SIG_WORD = "CryptoAtomica_SC";

    mapping(address => uint256) public mintList;
    mapping(uint256 => bool) public ishidaList;

    using Strings for uint256;
    using ECDSA for bytes32;

    constructor() ERC721A("ATOM", "ATOM") {}

    function matchAddresSigner(bytes memory signature) private view returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(msg.sender, SIG_WORD))));
        return _signer == hash.recover(signature);
    }

    function gift(address[] calldata receivers) external onlyOwner {
        require(_tokensMinted + receivers.length <= CA_MAX, "EXCEED_MAX");
          _tokensMinted += receivers.length;
        for (uint256 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

    function founderMint(uint256 tokenQuantity) external onlyOwner {
        require(_tokensMinted + tokenQuantity <= CA_MAX, "EXCEED_MAX");
        _tokensMinted += tokenQuantity;
        _safeMint(msg.sender, tokenQuantity);          
    }

    function mint(uint256 tokenQuantity) payable external {
        require(publicLive, "MINT_CLOSED");
        require(_tokensMinted + tokenQuantity <= CA_MAX, "EXCEED_MAX");
        require(CA_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");

        _tokensMinted += tokenQuantity;
        _safeMint(msg.sender, tokenQuantity);
    }

    function ishidaHolderMint(uint256 tokenId) external {
        require(ishidaFreeMintLive, "MINT_CLOSED");
        require(!ishidaList[tokenId], "TOKEN_USED");
        require(tokenId <= 1001, "ID_OUT_OF_RANGE");
        require(tokenId != 0, "ID_OUT_OF_RANGE");
        require(ishidaSocialClub.ownerOf(tokenId) == msg.sender, "NOT_THE_OWNER");

        ishidaList[tokenId] = true;
        _safeMint(msg.sender, 1);
    }

    function privateMint(uint256 tokenQuantity, bytes memory signature) payable external {
        require(privateLive, "MINT_CLOSED");
        require(matchAddresSigner(signature), "DIRECT_MINT_DISALLOWED");
        require(_tokensMinted + tokenQuantity <= CA_MAX, "EXCEED_MAX");
        require(mintList[msg.sender] + tokenQuantity <= WALLET_LIMIT, "EXCEED_ALLOWED");
        require(CA_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        mintList[msg.sender] += tokenQuantity;
        _tokensMinted += tokenQuantity;
        _safeMint(msg.sender, tokenQuantity);
    }

    function togglePublicMintStatus() external onlyOwner {
        publicLive = !publicLive;
    }

    function togglePrivateStatus() external onlyOwner {
        privateLive = !privateLive;
        ishidaFreeMintLive = true;
    }

    function toggleIshidaFreeMintStatus() external onlyOwner {
        ishidaFreeMintLive = !ishidaFreeMintLive;
    }

    function setSigner(address newAddress) external onlyOwner {
        _signer = newAddress;
    }

    function setMax(uint256 newMax) external onlyOwner {
        CA_MAX = newMax;
    }

    function setWalletLimit(uint256 newLimit) external onlyOwner {
        WALLET_LIMIT = newLimit;
    }
    
    function setPrice(uint256 newPrice) external onlyOwner {
        CA_PRICE = newPrice;
    }

    function setIshidaSocialClubContract(address contractAddress) external onlyOwner {
       ishidaSocialClub = IERC721(contractAddress);
    }

    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        payable(0x058772C526637B72026e766a397625500F88026B).transfer(currentBalance *  90 / 100);
        payable(0x11111F01570EeAA3e5a2Fd51f4A2f127661B9834).transfer(address(this).balance);
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenBaseURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _tokenBaseURI = baseURI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CA_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensMinted","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":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","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":"ishidaFreeMintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ishidaHolderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ishidaList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ishidaSocialClub","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setIshidaSocialClubContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleIshidaFreeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePrivateStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052605160808181529062002ae260a03980516200002a9160099160209091019062000158565b50610fa0600a5567011c37937e080000600c556003600d55600e80546001600160a01b03199081167379731d6f294e47129b7c6eb0ae5abfa02d5c919317909155600f805490911673efc1fe47e6d560d4a68f40047cb9aacdd3ee133b1790553480156200009757600080fd5b5060408051808201825260048082526341544f4d60e01b602080840182815285518087019096529285528401528151919291620000d79160029162000158565b508051620000ed90600390602084019062000158565b5050600160005550620001003362000106565b6200023b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016690620001fe565b90600052602060002090601f0160209004810192826200018a5760008555620001d5565b82601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b50620001e3929150620001e7565b5090565b5b80821115620001e35760008155600101620001e8565b600181811c908216806200021357607f821691505b602082108114156200023557634e487b7160e01b600052602260045260246000fd5b50919050565b612897806200024b6000396000f3fe6080604052600436106102515760003560e01c806391b7f5ed11610139578063b7f751d8116100b6578063c87b56dd1161007a578063c87b56dd146106b2578063d8e22bee146106d2578063e985e9c5146106e8578063f1d5f51714610731578063f2fde38b14610751578063f42202e81461077157600080fd5b8063b7f751d8146105ff578063b88d4fde14610620578063bef432c614610640578063c46eb6851461066d578063c63b5aca1461068257600080fd5b80639a64aa71116100fd5780639a64aa7114610577578063a0712d681461058c578063a22cb4651461059f578063a51fd1a7146105bf578063adcf3234146105df57600080fd5b806391b7f5ed146104f957806392eca5b41461051957806395d89b411461052c57806397283d2f1461054157806397f5ec671461056257600080fd5b80633ccfd60b116101d25780636dc3508e116101965780636dc3508e1461045a57806370a082311461047a578063715018a61461049a5780637f9ee892146104af5780638d6f5df6146104c55780638da5cb5b146104db57600080fd5b80633ccfd60b146103c557806342842e0e146103da57806355f804b3146103fa5780636352211e1461041a5780636c19e7831461043a57600080fd5b806318160ddd1161021957806318160ddd146103275780631fe9eabc1461034e57806323b872dd1461036e578063351ed9511461038e5780633840512a146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063163e1e6114610307575b600080fd5b34801561026257600080fd5b506102766102713660046123e1565b610791565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e3565b604051610282919061263f565b3480156102b957600080fd5b506102cd6102c836600461247b565b610875565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b6108b9565b005b34801561031357600080fd5b5061030561032236600461236c565b610947565b34801561033357600080fd5b5060015460005403600019015b604051908152602001610282565b34801561035a57600080fd5b5061030561036936600461247b565b610a12565b34801561037a57600080fd5b50610305610389366004612260565b610a41565b34801561039a57600080fd5b50610340600d5481565b3480156103b057600080fd5b50600e5461027690600160b01b900460ff1681565b3480156103d157600080fd5b50610305610a4c565b3480156103e657600080fd5b506103056103f5366004612260565b610b13565b34801561040657600080fd5b5061030561041536600461241b565b610b2e565b34801561042657600080fd5b506102cd61043536600461247b565b610b64565b34801561044657600080fd5b506103056104553660046121e6565b610b76565b34801561046657600080fd5b5061030561047536600461247b565b610bc2565b34801561048657600080fd5b506103406104953660046121e6565b610da6565b3480156104a657600080fd5b50610305610df5565b3480156104bb57600080fd5b50610340600c5481565b3480156104d157600080fd5b50610340600b5481565b3480156104e757600080fd5b506008546001600160a01b03166102cd565b34801561050557600080fd5b5061030561051436600461247b565b610e2b565b610305610527366004612494565b610e5a565b34801561053857600080fd5b506102a0610ff5565b34801561054d57600080fd5b50600e5461027690600160a81b900460ff1681565b34801561056e57600080fd5b50610305611004565b34801561058357600080fd5b5061030561104f565b61030561059a36600461247b565b61109a565b3480156105ab57600080fd5b506103056105ba36600461230d565b611164565b3480156105cb57600080fd5b50600e546102cd906001600160a01b031681565b3480156105eb57600080fd5b506103056105fa3660046121e6565b6111fa565b34801561060b57600080fd5b50600e5461027690600160a01b900460ff1681565b34801561062c57600080fd5b5061030561063b3660046122a1565b611246565b34801561064c57600080fd5b5061034061065b3660046121e6565b60106020526000908152604090205481565b34801561067957600080fd5b50610305611297565b34801561068e57600080fd5b5061027661069d36600461247b565b60116020526000908152604090205460ff1681565b3480156106be57600080fd5b506102a06106cd36600461247b565b6112f1565b3480156106de57600080fd5b50610340600a5481565b3480156106f457600080fd5b50610276610703366004612227565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073d57600080fd5b5061030561074c36600461247b565b61137a565b34801561075d57600080fd5b5061030561076c3660046121e6565b6113a9565b34801561077d57600080fd5b5061030561078c36600461247b565b611441565b60006001600160e01b031982166380ac58cd60e01b14806107c257506001600160e01b03198216635b5e139f60e01b145b806107dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107f29061275e565b80601f016020809104026020016040519081016040528092919081815260200182805461081e9061275e565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b60006108808261149a565b61089d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c482610b64565b9050806001600160a01b0316836001600160a01b031614156108f95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061091957506109178133610703565b155b15610937576040516367d9dca160e11b815260040160405180910390fd5b6109428383836114d3565b505050565b6008546001600160a01b0316331461097a5760405162461bcd60e51b815260040161097190612677565b60405180910390fd5b600a54600b5461098b9083906126d0565b11156109a95760405162461bcd60e51b8152600401610971906126ac565b81819050600b60008282546109be91906126d0565b90915550600090505b8181101561094257610a008383838181106109e4576109e461280a565b90506020020160208101906109f991906121e6565b600161152f565b80610a0a81612799565b9150506109c7565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161097190612677565b600a55565b610942838383611549565b6008546001600160a01b03163314610a765760405162461bcd60e51b815260040161097190612677565b4773058772c526637b72026e766a397625500f88026b6108fc6064610a9c84605a6126fc565b610aa691906126e8565b6040518115909202916000818181858888f19350505050158015610ace573d6000803e3d6000fd5b506040517311111f01570eeaa3e5a2fd51f4a2f127661b9834904780156108fc02916000818181858888f19350505050158015610b0f573d6000803e3d6000fd5b5050565b61094283838360405180602001604052806000815250611246565b6008546001600160a01b03163314610b585760405162461bcd60e51b815260040161097190612677565b610942600983836120c0565b6000610b6f82611739565b5192915050565b6008546001600160a01b03163314610ba05760405162461bcd60e51b815260040161097190612677565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600e54600160b01b900460ff16610beb5760405162461bcd60e51b815260040161097190612652565b60008181526011602052604090205460ff1615610c375760405162461bcd60e51b815260206004820152600a6024820152691513d2d15397d554d15160b21b6044820152606401610971565b6103e9811115610c7b5760405162461bcd60e51b815260206004820152600f60248201526e49445f4f55545f4f465f52414e474560881b6044820152606401610971565b80610cba5760405162461bcd60e51b815260206004820152600f60248201526e49445f4f55545f4f465f52414e474560881b6044820152606401610971565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610cfe57600080fd5b505afa158015610d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d36919061220a565b6001600160a01b031614610d7c5760405162461bcd60e51b815260206004820152600d60248201526c2727aa2faa2422afa7aba722a960991b6044820152606401610971565b6000818152601160205260409020805460ff19166001908117909155610da390339061152f565b50565b60006001600160a01b038216610dcf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161097190612677565b610e296000611862565b565b6008546001600160a01b03163314610e555760405162461bcd60e51b815260040161097190612677565b600c55565b600e54600160a81b900460ff16610e835760405162461bcd60e51b815260040161097190612652565b610e8c816118b4565b610ed15760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b6044820152606401610971565b600a5482600b54610ee291906126d0565b1115610f005760405162461bcd60e51b8152600401610971906126ac565b600d5433600090815260106020526040902054610f1e9084906126d0565b1115610f5d5760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b6044820152606401610971565b3482600c54610f6c91906126fc565b1115610fad5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610971565b3360009081526010602052604081208054849290610fcc9084906126d0565b9250508190555081600b6000828254610fe591906126d0565b90915550610b0f9050338361152f565b6060600380546107f29061275e565b6008546001600160a01b0316331461102e5760405162461bcd60e51b815260040161097190612677565b600e805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b031633146110795760405162461bcd60e51b815260040161097190612677565b600e805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600e54600160a01b900460ff166110c35760405162461bcd60e51b815260040161097190612652565b600a5481600b546110d491906126d0565b11156110f25760405162461bcd60e51b8152600401610971906126ac565b3481600c5461110191906126fc565b11156111425760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610971565b80600b600082825461115491906126d0565b90915550610da39050338261152f565b6001600160a01b03821633141561118e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112245760405162461bcd60e51b815260040161097190612677565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611251848484611549565b6001600160a01b0383163b15158015611273575061127184848484611977565b155b15611291576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112c15760405162461bcd60e51b815260040161097190612677565b600e805460ff60b01b1960ff600160a81b8084049190911615021661ffff60a81b1990911617600160b01b179055565b60606112fc8261149a565b6113485760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610971565b600961135383611a6f565b60405160200161136492919061255b565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146113a45760405162461bcd60e51b815260040161097190612677565b600d55565b6008546001600160a01b031633146113d35760405162461bcd60e51b815260040161097190612677565b6001600160a01b0381166114385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610971565b610da381611862565b6008546001600160a01b0316331461146b5760405162461bcd60e51b815260040161097190612677565b600a5481600b5461147c91906126d0565b11156111425760405162461bcd60e51b8152600401610971906126ac565b6000816001111580156114ae575060005482105b80156107dd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b0f828260405180602001604052806000815250611b6d565b600061155482611739565b9050836001600160a01b031681600001516001600160a01b03161461158b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115a957506115a98533610703565b806115c45750336115b984610875565b6001600160a01b0316145b9050806115e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661160b57604051633a954ecd60e21b815260040160405180910390fd5b611617600084876114d3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ed5760005482146116ed578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611769575060005481105b1561184957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118475780516001600160a01b0316156117dd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611842579392505050565b6117dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080336040518060400160405280601081526020016f43727970746f41746f6d6963615f534360801b8152506040516020016118f2929190612523565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181529190528051602090910120905061195f8184611b7a565b600f546001600160a01b039081169116149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ac903390899088908890600401612602565b602060405180830381600087803b1580156119c657600080fd5b505af19250505080156119f6575060408051601f3d908101601f191682019092526119f3918101906123fe565b60015b611a51573d808015611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b508051611a49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611a935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abd5780611aa781612799565b9150611ab69050600a836126e8565b9150611a97565b60008167ffffffffffffffff811115611ad857611ad8612820565b6040519080825280601f01601f191660200182016040528015611b02576020820181803683370190505b5090505b8415611a6757611b1760018361271b565b9150611b24600a866127b4565b611b2f9060306126d0565b60f81b818381518110611b4457611b4461280a565b60200101906001600160f81b031916908160001a905350611b66600a866126e8565b9450611b06565b6109428383836001611b9e565b6000806000611b898585611d6f565b91509150611b9681611ddf565b509392505050565b6000546001600160a01b038516611bc757604051622e076360e81b815260040160405180910390fd5b83611be55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c9757506001600160a01b0387163b15155b15611d20575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ce86000888480600101955088611977565b611d05576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c9d578260005414611d1b57600080fd5b611d66565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611d21575b50600055611732565b600080825160411415611da65760208301516040840151606085015160001a611d9a87828585611f9a565b94509450505050611dd8565b825160401415611dd05760208301516040840151611dc5868383612087565b935093505050611dd8565b506000905060025b9250929050565b6000816004811115611df357611df36127f4565b1415611dfc5750565b6001816004811115611e1057611e106127f4565b1415611e5e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610971565b6002816004811115611e7257611e726127f4565b1415611ec05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610971565b6003816004811115611ed457611ed46127f4565b1415611f2d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610971565b6004816004811115611f4157611f416127f4565b1415610da35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610971565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611fd1575060009050600361207e565b8460ff16601b14158015611fe957508460ff16601c14155b15611ffa575060009050600461207e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561204e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120775760006001925092505061207e565b9150600090505b94509492505050565b6000806001600160ff1b038316816120a460ff86901c601b6126d0565b90506120b287828885611f9a565b935093505050935093915050565b8280546120cc9061275e565b90600052602060002090601f0160209004810192826120ee5760008555612134565b82601f106121075782800160ff19823516178555612134565b82800160010185558215612134579182015b82811115612134578235825591602001919060010190612119565b50612140929150612144565b5090565b5b808211156121405760008155600101612145565b600082601f83011261216a57600080fd5b813567ffffffffffffffff8082111561218557612185612820565b604051601f8301601f19908116603f011681019082821181831017156121ad576121ad612820565b816040528381528660208588010111156121c657600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156121f857600080fd5b813561220381612836565b9392505050565b60006020828403121561221c57600080fd5b815161220381612836565b6000806040838503121561223a57600080fd5b823561224581612836565b9150602083013561225581612836565b809150509250929050565b60008060006060848603121561227557600080fd5b833561228081612836565b9250602084013561229081612836565b929592945050506040919091013590565b600080600080608085870312156122b757600080fd5b84356122c281612836565b935060208501356122d281612836565b925060408501359150606085013567ffffffffffffffff8111156122f557600080fd5b61230187828801612159565b91505092959194509250565b6000806040838503121561232057600080fd5b823561232b81612836565b91506020830135801515811461225557600080fd5b6000806040838503121561235357600080fd5b823561235e81612836565b946020939093013593505050565b6000806020838503121561237f57600080fd5b823567ffffffffffffffff8082111561239757600080fd5b818501915085601f8301126123ab57600080fd5b8135818111156123ba57600080fd5b8660208260051b85010111156123cf57600080fd5b60209290920196919550909350505050565b6000602082840312156123f357600080fd5b81356122038161284b565b60006020828403121561241057600080fd5b81516122038161284b565b6000806020838503121561242e57600080fd5b823567ffffffffffffffff8082111561244657600080fd5b818501915085601f83011261245a57600080fd5b81358181111561246957600080fd5b8660208285010111156123cf57600080fd5b60006020828403121561248d57600080fd5b5035919050565b600080604083850312156124a757600080fd5b82359150602083013567ffffffffffffffff8111156124c557600080fd5b6124d185828601612159565b9150509250929050565b600081518084526124f3816020860160208601612732565b601f01601f19169290920160200192915050565b60008151612519818560208601612732565b9290920192915050565b6bffffffffffffffffffffffff198360601b1681526000825161254d816014850160208701612732565b919091016014019392505050565b600080845481600182811c91508083168061257757607f831692505b602080841082141561259757634e487b7160e01b86526022600452602486fd5b8180156125ab57600181146125bc576125e9565b60ff198616895284890196506125e9565b60008b81526020902060005b868110156125e15781548b8201529085019083016125c8565b505084890196505b5050505050506125f98185612507565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612635908301846124db565b9695505050505050565b60208152600061220360208301846124db565b6020808252600b908201526a1352539517d0d313d4d15160aa1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526908ab0868a8a88be9a82b60b31b604082015260600190565b600082198211156126e3576126e36127c8565b500190565b6000826126f7576126f76127de565b500490565b6000816000190483118215151615612716576127166127c8565b500290565b60008282101561272d5761272d6127c8565b500390565b60005b8381101561274d578181015183820152602001612735565b838111156112915750506000910152565b600181811c9082168061277257607f821691505b6020821081141561279357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ad576127ad6127c8565b5060010190565b6000826127c3576127c36127de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610da357600080fd5b6001600160e01b031981168114610da357600080fdfea264697066735822122076d1ca60e5ef5b7c5b63bb0e5cbf49705d340542c19ca89fe26e203ef6a8847b64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d533576773633426944764a3972546b73734c514c6e61524a5956504b33624379754b4d45506b6d794e3179512f

Deployed Bytecode

0x6080604052600436106102515760003560e01c806391b7f5ed11610139578063b7f751d8116100b6578063c87b56dd1161007a578063c87b56dd146106b2578063d8e22bee146106d2578063e985e9c5146106e8578063f1d5f51714610731578063f2fde38b14610751578063f42202e81461077157600080fd5b8063b7f751d8146105ff578063b88d4fde14610620578063bef432c614610640578063c46eb6851461066d578063c63b5aca1461068257600080fd5b80639a64aa71116100fd5780639a64aa7114610577578063a0712d681461058c578063a22cb4651461059f578063a51fd1a7146105bf578063adcf3234146105df57600080fd5b806391b7f5ed146104f957806392eca5b41461051957806395d89b411461052c57806397283d2f1461054157806397f5ec671461056257600080fd5b80633ccfd60b116101d25780636dc3508e116101965780636dc3508e1461045a57806370a082311461047a578063715018a61461049a5780637f9ee892146104af5780638d6f5df6146104c55780638da5cb5b146104db57600080fd5b80633ccfd60b146103c557806342842e0e146103da57806355f804b3146103fa5780636352211e1461041a5780636c19e7831461043a57600080fd5b806318160ddd1161021957806318160ddd146103275780631fe9eabc1461034e57806323b872dd1461036e578063351ed9511461038e5780633840512a146103a457600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063163e1e6114610307575b600080fd5b34801561026257600080fd5b506102766102713660046123e1565b610791565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e3565b604051610282919061263f565b3480156102b957600080fd5b506102cd6102c836600461247b565b610875565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b6108b9565b005b34801561031357600080fd5b5061030561032236600461236c565b610947565b34801561033357600080fd5b5060015460005403600019015b604051908152602001610282565b34801561035a57600080fd5b5061030561036936600461247b565b610a12565b34801561037a57600080fd5b50610305610389366004612260565b610a41565b34801561039a57600080fd5b50610340600d5481565b3480156103b057600080fd5b50600e5461027690600160b01b900460ff1681565b3480156103d157600080fd5b50610305610a4c565b3480156103e657600080fd5b506103056103f5366004612260565b610b13565b34801561040657600080fd5b5061030561041536600461241b565b610b2e565b34801561042657600080fd5b506102cd61043536600461247b565b610b64565b34801561044657600080fd5b506103056104553660046121e6565b610b76565b34801561046657600080fd5b5061030561047536600461247b565b610bc2565b34801561048657600080fd5b506103406104953660046121e6565b610da6565b3480156104a657600080fd5b50610305610df5565b3480156104bb57600080fd5b50610340600c5481565b3480156104d157600080fd5b50610340600b5481565b3480156104e757600080fd5b506008546001600160a01b03166102cd565b34801561050557600080fd5b5061030561051436600461247b565b610e2b565b610305610527366004612494565b610e5a565b34801561053857600080fd5b506102a0610ff5565b34801561054d57600080fd5b50600e5461027690600160a81b900460ff1681565b34801561056e57600080fd5b50610305611004565b34801561058357600080fd5b5061030561104f565b61030561059a36600461247b565b61109a565b3480156105ab57600080fd5b506103056105ba36600461230d565b611164565b3480156105cb57600080fd5b50600e546102cd906001600160a01b031681565b3480156105eb57600080fd5b506103056105fa3660046121e6565b6111fa565b34801561060b57600080fd5b50600e5461027690600160a01b900460ff1681565b34801561062c57600080fd5b5061030561063b3660046122a1565b611246565b34801561064c57600080fd5b5061034061065b3660046121e6565b60106020526000908152604090205481565b34801561067957600080fd5b50610305611297565b34801561068e57600080fd5b5061027661069d36600461247b565b60116020526000908152604090205460ff1681565b3480156106be57600080fd5b506102a06106cd36600461247b565b6112f1565b3480156106de57600080fd5b50610340600a5481565b3480156106f457600080fd5b50610276610703366004612227565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073d57600080fd5b5061030561074c36600461247b565b61137a565b34801561075d57600080fd5b5061030561076c3660046121e6565b6113a9565b34801561077d57600080fd5b5061030561078c36600461247b565b611441565b60006001600160e01b031982166380ac58cd60e01b14806107c257506001600160e01b03198216635b5e139f60e01b145b806107dd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107f29061275e565b80601f016020809104026020016040519081016040528092919081815260200182805461081e9061275e565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b5050505050905090565b60006108808261149a565b61089d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108c482610b64565b9050806001600160a01b0316836001600160a01b031614156108f95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061091957506109178133610703565b155b15610937576040516367d9dca160e11b815260040160405180910390fd5b6109428383836114d3565b505050565b6008546001600160a01b0316331461097a5760405162461bcd60e51b815260040161097190612677565b60405180910390fd5b600a54600b5461098b9083906126d0565b11156109a95760405162461bcd60e51b8152600401610971906126ac565b81819050600b60008282546109be91906126d0565b90915550600090505b8181101561094257610a008383838181106109e4576109e461280a565b90506020020160208101906109f991906121e6565b600161152f565b80610a0a81612799565b9150506109c7565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b815260040161097190612677565b600a55565b610942838383611549565b6008546001600160a01b03163314610a765760405162461bcd60e51b815260040161097190612677565b4773058772c526637b72026e766a397625500f88026b6108fc6064610a9c84605a6126fc565b610aa691906126e8565b6040518115909202916000818181858888f19350505050158015610ace573d6000803e3d6000fd5b506040517311111f01570eeaa3e5a2fd51f4a2f127661b9834904780156108fc02916000818181858888f19350505050158015610b0f573d6000803e3d6000fd5b5050565b61094283838360405180602001604052806000815250611246565b6008546001600160a01b03163314610b585760405162461bcd60e51b815260040161097190612677565b610942600983836120c0565b6000610b6f82611739565b5192915050565b6008546001600160a01b03163314610ba05760405162461bcd60e51b815260040161097190612677565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600e54600160b01b900460ff16610beb5760405162461bcd60e51b815260040161097190612652565b60008181526011602052604090205460ff1615610c375760405162461bcd60e51b815260206004820152600a6024820152691513d2d15397d554d15160b21b6044820152606401610971565b6103e9811115610c7b5760405162461bcd60e51b815260206004820152600f60248201526e49445f4f55545f4f465f52414e474560881b6044820152606401610971565b80610cba5760405162461bcd60e51b815260206004820152600f60248201526e49445f4f55545f4f465f52414e474560881b6044820152606401610971565b600e546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610cfe57600080fd5b505afa158015610d12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d36919061220a565b6001600160a01b031614610d7c5760405162461bcd60e51b815260206004820152600d60248201526c2727aa2faa2422afa7aba722a960991b6044820152606401610971565b6000818152601160205260409020805460ff19166001908117909155610da390339061152f565b50565b60006001600160a01b038216610dcf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161097190612677565b610e296000611862565b565b6008546001600160a01b03163314610e555760405162461bcd60e51b815260040161097190612677565b600c55565b600e54600160a81b900460ff16610e835760405162461bcd60e51b815260040161097190612652565b610e8c816118b4565b610ed15760405162461bcd60e51b81526020600482015260166024820152751112549150d517d352539517d11254d0531313d5d15160521b6044820152606401610971565b600a5482600b54610ee291906126d0565b1115610f005760405162461bcd60e51b8152600401610971906126ac565b600d5433600090815260106020526040902054610f1e9084906126d0565b1115610f5d5760405162461bcd60e51b815260206004820152600e60248201526d115610d1515117d0531313d5d15160921b6044820152606401610971565b3482600c54610f6c91906126fc565b1115610fad5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610971565b3360009081526010602052604081208054849290610fcc9084906126d0565b9250508190555081600b6000828254610fe591906126d0565b90915550610b0f9050338361152f565b6060600380546107f29061275e565b6008546001600160a01b0316331461102e5760405162461bcd60e51b815260040161097190612677565b600e805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6008546001600160a01b031633146110795760405162461bcd60e51b815260040161097190612677565b600e805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600e54600160a01b900460ff166110c35760405162461bcd60e51b815260040161097190612652565b600a5481600b546110d491906126d0565b11156110f25760405162461bcd60e51b8152600401610971906126ac565b3481600c5461110191906126fc565b11156111425760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610971565b80600b600082825461115491906126d0565b90915550610da39050338261152f565b6001600160a01b03821633141561118e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112245760405162461bcd60e51b815260040161097190612677565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b611251848484611549565b6001600160a01b0383163b15158015611273575061127184848484611977565b155b15611291576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146112c15760405162461bcd60e51b815260040161097190612677565b600e805460ff60b01b1960ff600160a81b8084049190911615021661ffff60a81b1990911617600160b01b179055565b60606112fc8261149a565b6113485760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610971565b600961135383611a6f565b60405160200161136492919061255b565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146113a45760405162461bcd60e51b815260040161097190612677565b600d55565b6008546001600160a01b031633146113d35760405162461bcd60e51b815260040161097190612677565b6001600160a01b0381166114385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610971565b610da381611862565b6008546001600160a01b0316331461146b5760405162461bcd60e51b815260040161097190612677565b600a5481600b5461147c91906126d0565b11156111425760405162461bcd60e51b8152600401610971906126ac565b6000816001111580156114ae575060005482105b80156107dd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b0f828260405180602001604052806000815250611b6d565b600061155482611739565b9050836001600160a01b031681600001516001600160a01b03161461158b5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115a957506115a98533610703565b806115c45750336115b984610875565b6001600160a01b0316145b9050806115e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661160b57604051633a954ecd60e21b815260040160405180910390fd5b611617600084876114d3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116ed5760005482146116ed578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611769575060005481105b1561184957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906118475780516001600160a01b0316156117dd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611842579392505050565b6117dd565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080336040518060400160405280601081526020016f43727970746f41746f6d6963615f534360801b8152506040516020016118f2929190612523565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f198184030181529190528051602090910120905061195f8184611b7a565b600f546001600160a01b039081169116149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119ac903390899088908890600401612602565b602060405180830381600087803b1580156119c657600080fd5b505af19250505080156119f6575060408051601f3d908101601f191682019092526119f3918101906123fe565b60015b611a51573d808015611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b508051611a49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611a935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abd5780611aa781612799565b9150611ab69050600a836126e8565b9150611a97565b60008167ffffffffffffffff811115611ad857611ad8612820565b6040519080825280601f01601f191660200182016040528015611b02576020820181803683370190505b5090505b8415611a6757611b1760018361271b565b9150611b24600a866127b4565b611b2f9060306126d0565b60f81b818381518110611b4457611b4461280a565b60200101906001600160f81b031916908160001a905350611b66600a866126e8565b9450611b06565b6109428383836001611b9e565b6000806000611b898585611d6f565b91509150611b9681611ddf565b509392505050565b6000546001600160a01b038516611bc757604051622e076360e81b815260040160405180910390fd5b83611be55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c9757506001600160a01b0387163b15155b15611d20575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ce86000888480600101955088611977565b611d05576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c9d578260005414611d1b57600080fd5b611d66565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611d21575b50600055611732565b600080825160411415611da65760208301516040840151606085015160001a611d9a87828585611f9a565b94509450505050611dd8565b825160401415611dd05760208301516040840151611dc5868383612087565b935093505050611dd8565b506000905060025b9250929050565b6000816004811115611df357611df36127f4565b1415611dfc5750565b6001816004811115611e1057611e106127f4565b1415611e5e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610971565b6002816004811115611e7257611e726127f4565b1415611ec05760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610971565b6003816004811115611ed457611ed46127f4565b1415611f2d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610971565b6004816004811115611f4157611f416127f4565b1415610da35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610971565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611fd1575060009050600361207e565b8460ff16601b14158015611fe957508460ff16601c14155b15611ffa575060009050600461207e565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561204e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120775760006001925092505061207e565b9150600090505b94509492505050565b6000806001600160ff1b038316816120a460ff86901c601b6126d0565b90506120b287828885611f9a565b935093505050935093915050565b8280546120cc9061275e565b90600052602060002090601f0160209004810192826120ee5760008555612134565b82601f106121075782800160ff19823516178555612134565b82800160010185558215612134579182015b82811115612134578235825591602001919060010190612119565b50612140929150612144565b5090565b5b808211156121405760008155600101612145565b600082601f83011261216a57600080fd5b813567ffffffffffffffff8082111561218557612185612820565b604051601f8301601f19908116603f011681019082821181831017156121ad576121ad612820565b816040528381528660208588010111156121c657600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156121f857600080fd5b813561220381612836565b9392505050565b60006020828403121561221c57600080fd5b815161220381612836565b6000806040838503121561223a57600080fd5b823561224581612836565b9150602083013561225581612836565b809150509250929050565b60008060006060848603121561227557600080fd5b833561228081612836565b9250602084013561229081612836565b929592945050506040919091013590565b600080600080608085870312156122b757600080fd5b84356122c281612836565b935060208501356122d281612836565b925060408501359150606085013567ffffffffffffffff8111156122f557600080fd5b61230187828801612159565b91505092959194509250565b6000806040838503121561232057600080fd5b823561232b81612836565b91506020830135801515811461225557600080fd5b6000806040838503121561235357600080fd5b823561235e81612836565b946020939093013593505050565b6000806020838503121561237f57600080fd5b823567ffffffffffffffff8082111561239757600080fd5b818501915085601f8301126123ab57600080fd5b8135818111156123ba57600080fd5b8660208260051b85010111156123cf57600080fd5b60209290920196919550909350505050565b6000602082840312156123f357600080fd5b81356122038161284b565b60006020828403121561241057600080fd5b81516122038161284b565b6000806020838503121561242e57600080fd5b823567ffffffffffffffff8082111561244657600080fd5b818501915085601f83011261245a57600080fd5b81358181111561246957600080fd5b8660208285010111156123cf57600080fd5b60006020828403121561248d57600080fd5b5035919050565b600080604083850312156124a757600080fd5b82359150602083013567ffffffffffffffff8111156124c557600080fd5b6124d185828601612159565b9150509250929050565b600081518084526124f3816020860160208601612732565b601f01601f19169290920160200192915050565b60008151612519818560208601612732565b9290920192915050565b6bffffffffffffffffffffffff198360601b1681526000825161254d816014850160208701612732565b919091016014019392505050565b600080845481600182811c91508083168061257757607f831692505b602080841082141561259757634e487b7160e01b86526022600452602486fd5b8180156125ab57600181146125bc576125e9565b60ff198616895284890196506125e9565b60008b81526020902060005b868110156125e15781548b8201529085019083016125c8565b505084890196505b5050505050506125f98185612507565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612635908301846124db565b9695505050505050565b60208152600061220360208301846124db565b6020808252600b908201526a1352539517d0d313d4d15160aa1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526908ab0868a8a88be9a82b60b31b604082015260600190565b600082198211156126e3576126e36127c8565b500190565b6000826126f7576126f76127de565b500490565b6000816000190483118215151615612716576127166127c8565b500290565b60008282101561272d5761272d6127c8565b500390565b60005b8381101561274d578181015183820152602001612735565b838111156112915750506000910152565b600181811c9082168061277257607f821691505b6020821081141561279357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127ad576127ad6127c8565b5060010190565b6000826127c3576127c36127de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610da357600080fd5b6001600160e01b031981168114610da357600080fdfea264697066735822122076d1ca60e5ef5b7c5b63bb0e5cbf49705d340542c19ca89fe26e203ef6a8847b64736f6c63430008070033

Deployed Bytecode Sourcemap

53547:4946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35775:305;;;;;;;;;;-1:-1:-1;35775:305:0;;;;;:::i;:::-;;:::i;:::-;;;9093:14:1;;9086:22;9068:41;;9056:2;9041:18;35775:305:0;;;;;;;;38888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40391:204::-;;;;;;;;;;-1:-1:-1;40391:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8391:32:1;;;8373:51;;8361:2;8346:18;40391:204:0;8227:203:1;39954:371:0;;;;;;;;;;-1:-1:-1;39954:371:0;;;;;:::i;:::-;;:::i;:::-;;54699:303;;;;;;;;;;-1:-1:-1;54699:303:0;;;;;:::i;:::-;;:::i;35024:::-;;;;;;;;;;-1:-1:-1;58481:1:0;35278:12;35068:7;35262:13;:28;-1:-1:-1;;35262:46:0;35024:303;;;15507:25:1;;;15495:2;15480:18;35024:303:0;15361:177:1;57132:85:0;;;;;;;;;;-1:-1:-1;57132:85:0;;;;;:::i;:::-;;:::i;41256:170::-;;;;;;;;;;-1:-1:-1;41256:170:0;;;;;:::i;:::-;;:::i;53832:31::-;;;;;;;;;;;;;;;;54023:30;;;;;;;;;;-1:-1:-1;54023:30:0;;;;-1:-1:-1;;;54023:30:0;;;;;;57591:297;;;;;;;;;;;;;:::i;41497:185::-;;;;;;;;;;-1:-1:-1;41497:185:0;;;;;:::i;:::-;;:::i;58022:106::-;;;;;;;;;;-1:-1:-1;58022:106:0;;;;;:::i;:::-;;:::i;38696:125::-;;;;;;;;;;-1:-1:-1;38696:125:0;;;;;:::i;:::-;;:::i;57027:97::-;;;;;;;;;;-1:-1:-1;57027:97:0;;;;;:::i;:::-;;:::i;55615:430::-;;;;;;;;;;-1:-1:-1;55615:430:0;;;;;:::i;:::-;;:::i;36144:206::-;;;;;;;;;;-1:-1:-1;36144:206:0;;;;;:::i;:::-;;:::i;14452:103::-;;;;;;;;;;;;;:::i;53789:36::-;;;;;;;;;;;;;;;;53754:28;;;;;;;;;;;;;;;;13801:87;;;;;;;;;;-1:-1:-1;13874:6:0;;-1:-1:-1;;;;;13874:6:0;13801:87;;57340:93;;;;;;;;;;-1:-1:-1;57340:93:0;;;;;:::i;:::-;;:::i;56053:599::-;;;;;;:::i;:::-;;:::i;39057:104::-;;;;;;;;;;;;;:::i;53993:23::-;;;;;;;;;;-1:-1:-1;53993:23:0;;;;-1:-1:-1;;;53993:23:0;;;;;;56660:96;;;;;;;;;;;;;:::i;56903:116::-;;;;;;;;;;;;;:::i;55260:347::-;;;;;;:::i;:::-;;:::i;40667:287::-;;;;;;;;;;-1:-1:-1;40667:287:0;;;;;:::i;:::-;;:::i;53870:85::-;;;;;;;;;;-1:-1:-1;53870:85:0;;;;-1:-1:-1;;;;;53870:85:0;;;57441:142;;;;;;;;;;-1:-1:-1;57441:142:0;;;;;:::i;:::-;;:::i;53964:22::-;;;;;;;;;;-1:-1:-1;53964:22:0;;;;-1:-1:-1;;;53964:22:0;;;;;;41753:369;;;;;;;;;;-1:-1:-1;41753:369:0;;;;;:::i;:::-;;:::i;54199:43::-;;;;;;;;;;-1:-1:-1;54199:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;56764:131;;;;;;;;;;;;;:::i;54249:42::-;;;;;;;;;;-1:-1:-1;54249:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58136:245;;;;;;;;;;-1:-1:-1;58136:245:0;;;;;:::i;:::-;;:::i;53719:28::-;;;;;;;;;;;;;;;;41025:164;;;;;;;;;;-1:-1:-1;41025:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41146:25:0;;;41122:4;41146:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41025:164;57225:103;;;;;;;;;;-1:-1:-1;57225:103:0;;;;;:::i;:::-;;:::i;14710:201::-;;;;;;;;;;-1:-1:-1;14710:201:0;;;;;:::i;:::-;;:::i;55010:242::-;;;;;;;;;;-1:-1:-1;55010:242:0;;;;;:::i;:::-;;:::i;35775:305::-;35877:4;-1:-1:-1;;;;;;35914:40:0;;-1:-1:-1;;;35914:40:0;;:105;;-1:-1:-1;;;;;;;35971:48:0;;-1:-1:-1;;;35971:48:0;35914:105;:158;;;-1:-1:-1;;;;;;;;;;26153:40:0;;;36036:36;35894:178;35775:305;-1:-1:-1;;35775:305:0:o;38888:100::-;38942:13;38975:5;38968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38888:100;:::o;40391:204::-;40459:7;40484:16;40492:7;40484;:16::i;:::-;40479:64;;40509:34;;-1:-1:-1;;;40509:34:0;;;;;;;;;;;40479:64;-1:-1:-1;40563:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40563:24:0;;40391:204::o;39954:371::-;40027:13;40043:24;40059:7;40043:15;:24::i;:::-;40027:40;;40088:5;-1:-1:-1;;;;;40082:11:0;:2;-1:-1:-1;;;;;40082:11:0;;40078:48;;;40102:24;;-1:-1:-1;;;40102:24:0;;;;;;;;;;;40078:48;12721:10;-1:-1:-1;;;;;40143:21:0;;;;;;:63;;-1:-1:-1;40169:37:0;40186:5;12721:10;41025:164;:::i;40169:37::-;40168:38;40143:63;40139:138;;;40230:35;;-1:-1:-1;;;40230:35:0;;;;;;;;;;;40139:138;40289:28;40298:2;40302:7;40311:5;40289:8;:28::i;:::-;40016:309;39954:371;;:::o;54699:303::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;;;;;;;;;54817:6:::1;::::0;54781:13:::1;::::0;:32:::1;::::0;54797:9;;54781:32:::1;:::i;:::-;:42;;54773:65;;;;-1:-1:-1::0;;;54773:65:0::1;;;;;;;:::i;:::-;54868:9;;:16;;54851:13;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;54900:9:0::1;::::0;-1:-1:-1;54895:100:0::1;54915:20:::0;;::::1;54895:100;;;54957:26;54967:9;;54977:1;54967:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54981:1;54957:9;:26::i;:::-;54937:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54895:100;;57132:85:::0;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57194:6:::1;:15:::0;57132:85::o;41256:170::-;41390:28;41400:4;41406:2;41410:7;41390:9;:28::i;57591:297::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57666:21:::1;57706:42;57698:88;57782:3;57759:20;57666:21:::0;57777:2:::1;57759:20;:::i;:::-;:26;;;;:::i;:::-;57698:88;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;57797:83:0::1;::::0;57805:42:::1;::::0;57858:21:::1;57797:83:::0;::::1;;;::::0;::::1;::::0;;;57858:21;57805:42;57797:83;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57630:258;57591:297::o:0;41497:185::-;41635:39;41652:4;41658:2;41662:7;41635:39;;;;;;;;;;;;:16;:39::i;58022:106::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;58097:23:::1;:13;58113:7:::0;;58097:23:::1;:::i;38696:125::-:0;38760:7;38787:21;38800:7;38787:12;:21::i;:::-;:26;;38696:125;-1:-1:-1;;38696:125:0:o;57027:97::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57096:7:::1;:20:::0;;-1:-1:-1;;;;;;57096:20:0::1;-1:-1:-1::0;;;;;57096:20:0;;;::::1;::::0;;;::::1;::::0;;57027:97::o;55615:430::-;55686:18;;-1:-1:-1;;;55686:18:0;;;;55678:42;;;;-1:-1:-1;;;55678:42:0;;;;;;;:::i;:::-;55740:19;;;;:10;:19;;;;;;;;55739:20;55731:43;;;;-1:-1:-1;;;55731:43:0;;15224:2:1;55731:43:0;;;15206:21:1;15263:2;15243:18;;;15236:30;-1:-1:-1;;;15282:18:1;;;15275:40;15332:18;;55731:43:0;15022:334:1;55731:43:0;55804:4;55793:7;:15;;55785:43;;;;-1:-1:-1;;;55785:43:0;;13836:2:1;55785:43:0;;;13818:21:1;13875:2;13855:18;;;13848:30;-1:-1:-1;;;13894:18:1;;;13887:45;13949:18;;55785:43:0;13634:339:1;55785:43:0;55847:12;55839:40;;;;-1:-1:-1;;;55839:40:0;;13836:2:1;55839:40:0;;;13818:21:1;13875:2;13855:18;;;13848:30;-1:-1:-1;;;13894:18:1;;;13887:45;13949:18;;55839:40:0;13634:339:1;55839:40:0;55898:16;;:33;;-1:-1:-1;;;55898:33:0;;;;;15507:25:1;;;55935:10:0;;-1:-1:-1;;;;;55898:16:0;;:24;;15480:18:1;;55898:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55898:47:0;;55890:73;;;;-1:-1:-1;;;55890:73:0;;12730:2:1;55890:73:0;;;12712:21:1;12769:2;12749:18;;;12742:30;-1:-1:-1;;;12788:18:1;;;12781:43;12841:18;;55890:73:0;12528:337:1;55890:73:0;55976:19;;;;:10;:19;;;;;:26;;-1:-1:-1;;55976:26:0;55998:4;55976:26;;;;;;56013:24;;56023:10;;56013:9;:24::i;:::-;55615:430;:::o;36144:206::-;36208:7;-1:-1:-1;;;;;36232:19:0;;36228:60;;36260:28;;-1:-1:-1;;;36260:28:0;;;;;;;;;;;36228:60;-1:-1:-1;;;;;;36314:19:0;;;;;:12;:19;;;;;:27;;;;36144:206::o;14452:103::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;14517:30:::1;14544:1;14517:18;:30::i;:::-;14452:103::o:0;57340:93::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57406:8:::1;:19:::0;57340:93::o;56053:599::-;56157:11;;-1:-1:-1;;;56157:11:0;;;;56149:35;;;;-1:-1:-1;;;56149:35:0;;;;;;;:::i;:::-;56203:28;56221:9;56203:17;:28::i;:::-;56195:63;;;;-1:-1:-1;;;56195:63:0;;10526:2:1;56195:63:0;;;10508:21:1;10565:2;10545:18;;;10538:30;-1:-1:-1;;;10584:18:1;;;10577:52;10646:18;;56195:63:0;10324:346:1;56195:63:0;56310:6;;56293:13;56277;;:29;;;;:::i;:::-;:39;;56269:62;;;;-1:-1:-1;;;56269:62:0;;;;;;;:::i;:::-;56390:12;;56359:10;56350:20;;;;:8;:20;;;;;;:36;;56373:13;;56350:36;:::i;:::-;:52;;56342:79;;;;-1:-1:-1;;;56342:79:0;;11237:2:1;56342:79:0;;;11219:21:1;11276:2;11256:18;;;11249:30;-1:-1:-1;;;11295:18:1;;;11288:44;11349:18;;56342:79:0;11035:338:1;56342:79:0;56468:9;56451:13;56440:8;;:24;;;;:::i;:::-;:37;;56432:66;;;;-1:-1:-1;;;56432:66:0;;14879:2:1;56432:66:0;;;14861:21:1;14918:2;14898:18;;;14891:30;-1:-1:-1;;;14937:18:1;;;14930:46;14993:18;;56432:66:0;14677:340:1;56432:66:0;56528:10;56519:20;;;;:8;:20;;;;;:37;;56543:13;;56519:20;:37;;56543:13;;56519:37;:::i;:::-;;;;;;;;56584:13;56567;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;56608:36:0;;-1:-1:-1;56618:10:0;56630:13;56608:9;:36::i;39057:104::-;39113:13;39146:7;39139:14;;;;;:::i;56660:96::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;56738:10:::1;::::0;;-1:-1:-1;;;;56724:24:0;::::1;-1:-1:-1::0;;;56738:10:0;;;::::1;;;56737:11;56724:24:::0;;::::1;;::::0;;56660:96::o;56903:116::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;56993:18:::1;::::0;;-1:-1:-1;;;;56971:40:0;::::1;-1:-1:-1::0;;;56993:18:0;;;::::1;;;56992:19;56971:40:::0;;::::1;;::::0;;56903:116::o;55260:347::-;55333:10;;-1:-1:-1;;;55333:10:0;;;;55325:34;;;;-1:-1:-1;;;55325:34:0;;;;;;;:::i;:::-;55411:6;;55394:13;55378;;:29;;;;:::i;:::-;:39;;55370:62;;;;-1:-1:-1;;;55370:62:0;;;;;;;:::i;:::-;55479:9;55462:13;55451:8;;:24;;;;:::i;:::-;:37;;55443:66;;;;-1:-1:-1;;;55443:66:0;;14879:2:1;55443:66:0;;;14861:21:1;14918:2;14898:18;;;14891:30;-1:-1:-1;;;14937:18:1;;;14930:46;14993:18;;55443:66:0;14677:340:1;55443:66:0;55539:13;55522;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;55563:36:0;;-1:-1:-1;55573:10:0;55585:13;55563:9;:36::i;40667:287::-;-1:-1:-1;;;;;40766:24:0;;12721:10;40766:24;40762:54;;;40799:17;;-1:-1:-1;;;40799:17:0;;;;;;;;;;;40762:54;12721:10;40829:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40829:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40829:53:0;;;;;;;;;;40898:48;;9068:41:1;;;40829:42:0;;12721:10;40898:48;;9041:18:1;40898:48:0;;;;;;;40667:287;;:::o;57441:142::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57532:16:::1;:43:::0;;-1:-1:-1;;;;;;57532:43:0::1;-1:-1:-1::0;;;;;57532:43:0;;;::::1;::::0;;;::::1;::::0;;57441:142::o;41753:369::-;41920:28;41930:4;41936:2;41940:7;41920:9;:28::i;:::-;-1:-1:-1;;;;;41963:13:0;;16670:19;:23;;41963:76;;;;;41983:56;42014:4;42020:2;42024:7;42033:5;41983:30;:56::i;:::-;41982:57;41963:76;41959:156;;;42063:40;;-1:-1:-1;;;42063:40:0;;;;;;;;;;;41959:156;41753:369;;;;:::o;56764:131::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;56840:11:::1;::::0;;-1:-1:-1;;;;56840:11:0::1;-1:-1:-1::0;;;56840:11:0;;::::1;::::0;;;::::1;56839:12;56825:26;56862:25:::0;-1:-1:-1;;;;56862:25:0;;;;-1:-1:-1;;;56862:25:0::1;::::0;;56764:131::o;58136:245::-;58210:13;58244:16;58252:7;58244;:16::i;:::-;58236:60;;;;-1:-1:-1;;;58236:60:0;;14180:2:1;58236:60:0;;;14162:21:1;14219:2;14199:18;;;14192:30;14258:33;14238:18;;;14231:61;14309:18;;58236:60:0;13978:355:1;58236:60:0;58338:13;58353:18;:7;:16;:18::i;:::-;58321:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58307:66;;58136:245;;;:::o;57225:103::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;57297:12:::1;:23:::0;57225:103::o;14710:201::-;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14799:22:0;::::1;14791:73;;;::::0;-1:-1:-1;;;14791:73:0;;11580:2:1;14791:73:0::1;::::0;::::1;11562:21:1::0;11619:2;11599:18;;;11592:30;11658:34;11638:18;;;11631:62;-1:-1:-1;;;11709:18:1;;;11702:36;11755:19;;14791:73:0::1;11378:402:1::0;14791:73:0::1;14875:28;14894:8;14875:18;:28::i;55010:242::-:0;13874:6;;-1:-1:-1;;;;;13874:6:0;12721:10;14021:23;14013:68;;;;-1:-1:-1;;;14013:68:0;;;;;;;:::i;:::-;55125:6:::1;;55108:13;55092;;:29;;;;:::i;:::-;:39;;55084:62;;;;-1:-1:-1::0;;;55084:62:0::1;;;;;;;:::i;42377:174::-:0;42434:4;42477:7;58481:1;42458:26;;:53;;;;;42498:13;;42488:7;:23;42458:53;:85;;;;-1:-1:-1;;42516:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;42516:27:0;;;;42515:28;;42377:174::o;50534:196::-;50649:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;50649:29:0;-1:-1:-1;;;;;50649:29:0;;;;;;;;;50694:28;;50649:24;;50694:28;;;;;;;50534:196;;;:::o;42559:104::-;42628:27;42638:2;42642:8;42628:27;;;;;;;;;;;;:9;:27::i;45477:2130::-;45592:35;45630:21;45643:7;45630:12;:21::i;:::-;45592:59;;45690:4;-1:-1:-1;;;;;45668:26:0;:13;:18;;;-1:-1:-1;;;;;45668:26:0;;45664:67;;45703:28;;-1:-1:-1;;;45703:28:0;;;;;;;;;;;45664:67;45744:22;12721:10;-1:-1:-1;;;;;45770:20:0;;;;:73;;-1:-1:-1;45807:36:0;45824:4;12721:10;41025:164;:::i;45807:36::-;45770:126;;;-1:-1:-1;12721:10:0;45860:20;45872:7;45860:11;:20::i;:::-;-1:-1:-1;;;;;45860:36:0;;45770:126;45744:153;;45915:17;45910:66;;45941:35;;-1:-1:-1;;;45941:35:0;;;;;;;;;;;45910:66;-1:-1:-1;;;;;45991:16:0;;45987:52;;46016:23;;-1:-1:-1;;;46016:23:0;;;;;;;;;;;45987:52;46160:35;46177:1;46181:7;46190:4;46160:8;:35::i;:::-;-1:-1:-1;;;;;46491:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;46491:31:0;;;;;;;-1:-1:-1;;46491:31:0;;;;;;;46537:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46537:29:0;;;;;;;;;;;46617:20;;;:11;:20;;;;;;46652:18;;-1:-1:-1;;;;;;46685:49:0;;;;-1:-1:-1;;;46718:15:0;46685:49;;;;;;;;;;47008:11;;47068:24;;;;;47111:13;;46617:20;;47068:24;;47111:13;47107:384;;47321:13;;47306:11;:28;47302:174;;47359:20;;47428:28;;;;47402:54;;-1:-1:-1;;;47402:54:0;-1:-1:-1;;;;;;47402:54:0;;;-1:-1:-1;;;;;47359:20:0;;47402:54;;;;47302:174;46466:1036;;;47538:7;47534:2;-1:-1:-1;;;;;47519:27:0;47528:4;-1:-1:-1;;;;;47519:27:0;;;;;;;;;;;47557:42;45581:2026;;45477:2130;;;:::o;37525:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;37636:7:0;;58481:1;37685:23;;:47;;;;;37719:13;;37712:4;:20;37685:47;37681:886;;;37753:31;37787:17;;;:11;:17;;;;;;;;;37753:51;;;;;;;;;-1:-1:-1;;;;;37753:51:0;;;;-1:-1:-1;;;37753:51:0;;;;;;;;;;;-1:-1:-1;;;37753:51:0;;;;;;;;;;;;;;37823:729;;37873:14;;-1:-1:-1;;;;;37873:28:0;;37869:101;;37937:9;37525:1109;-1:-1:-1;;;37525:1109:0:o;37869:101::-;-1:-1:-1;;;38312:6:0;38357:17;;;;:11;:17;;;;;;;;;38345:29;;;;;;;;;-1:-1:-1;;;;;38345:29:0;;;;;-1:-1:-1;;;38345:29:0;;;;;;;;;;;-1:-1:-1;;;38345:29:0;;;;;;;;;;;;;38405:28;38401:109;;38473:9;37525:1109;-1:-1:-1;;;37525:1109:0:o;38401:109::-;38272:261;;;37734:833;37681:886;38595:31;;-1:-1:-1;;;38595:31:0;;;;;;;;;;;15071:191;15164:6;;;-1:-1:-1;;;;;15181:17:0;;;-1:-1:-1;;;;;;15181:17:0;;;;;;;15214:40;;15164:6;;;15181:17;15164:6;;15214:40;;15145:16;;15214:40;15134:128;15071:191;:::o;54412:279::-;54485:4;54502:12;54607:10;54619:8;;;;;;;;;;;;;-1:-1:-1;;;54619:8:0;;;54590:38;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54590:38:0;;;;;;;;;;54580:49;;54590:38;54580:49;;;;8084:66:1;54527:103:0;;;8072:79:1;;;;8167:12;;;8160:28;8204:12;;54527:103:0;;;-1:-1:-1;;54527:103:0;;;;;;;;;54517:114;;54527:103;54517:114;;;;;-1:-1:-1;54660:23:0;54517:114;54673:9;54660:12;:23::i;:::-;54649:7;;-1:-1:-1;;;;;54649:7:0;;;:34;;;;54412:279;-1:-1:-1;;;54412:279:0:o;51222:667::-;51406:72;;-1:-1:-1;;;51406:72:0;;51385:4;;-1:-1:-1;;;;;51406:36:0;;;;;:72;;12721:10;;51457:4;;51463:7;;51472:5;;51406:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51406:72:0;;;;;;;;-1:-1:-1;;51406:72:0;;;;;;;;;;;;:::i;:::-;;;51402:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51640:13:0;;51636:235;;51686:40;;-1:-1:-1;;;51686:40:0;;;;;;;;;;;51636:235;51829:6;51823:13;51814:6;51810:2;51806:15;51799:38;51402:480;-1:-1:-1;;;;;;51525:55:0;-1:-1:-1;;;51525:55:0;;-1:-1:-1;51402:480:0;51222:667;;;;;;:::o;932:723::-;988:13;1209:10;1205:53;;-1:-1:-1;;1236:10:0;;;;;;;;;;;;-1:-1:-1;;;1236:10:0;;;;;932:723::o;1205:53::-;1283:5;1268:12;1324:78;1331:9;;1324:78;;1357:8;;;;:::i;:::-;;-1:-1:-1;1380:10:0;;-1:-1:-1;1388:2:0;1380:10;;:::i;:::-;;;1324:78;;;1412:19;1444:6;1434:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1434:17:0;;1412:39;;1462:154;1469:10;;1462:154;;1496:11;1506:1;1496:11;;:::i;:::-;;-1:-1:-1;1565:10:0;1573:2;1565:5;:10;:::i;:::-;1552:24;;:2;:24;:::i;:::-;1539:39;;1522:6;1529;1522:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1522:56:0;;;;;;;;-1:-1:-1;1593:11:0;1602:2;1593:11;;:::i;:::-;;;1462:154;;43026:163;43149:32;43155:2;43159:8;43169:5;43176:4;43149:5;:32::i;6957:231::-;7035:7;7056:17;7075:18;7097:27;7108:4;7114:9;7097:10;:27::i;:::-;7055:69;;;;7135:18;7147:5;7135:11;:18::i;:::-;-1:-1:-1;7171:9:0;6957:231;-1:-1:-1;;;6957:231:0:o;43448:1775::-;43587:20;43610:13;-1:-1:-1;;;;;43638:16:0;;43634:48;;43663:19;;-1:-1:-1;;;43663:19:0;;;;;;;;;;;43634:48;43697:13;43693:44;;43719:18;;-1:-1:-1;;;43719:18:0;;;;;;;;;;;43693:44;-1:-1:-1;;;;;44088:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44147:49:0;;44088:44;;;;;;;;44147:49;;;;-1:-1:-1;;44088:44:0;;;;;;44147:49;;;;;;;;;;;;;;;;44213:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;44263:66:0;;;;-1:-1:-1;;;44313:15:0;44263:66;;;;;;;;;;44213:25;44410:23;;;44454:4;:23;;;;-1:-1:-1;;;;;;44462:13:0;;16670:19;:23;;44462:15;44450:641;;;44498:314;44529:38;;44554:12;;-1:-1:-1;;;;;44529:38:0;;;44546:1;;44529:38;;44546:1;;44529:38;44595:69;44634:1;44638:2;44642:14;;;;;;44658:5;44595:30;:69::i;:::-;44590:174;;44700:40;;-1:-1:-1;;;44700:40:0;;;;;;;;;;;44590:174;44807:3;44791:12;:19;;44498:314;;44893:12;44876:13;;:29;44872:43;;44907:8;;;44872:43;44450:641;;;44956:120;44987:40;;45012:14;;;;;-1:-1:-1;;;;;44987:40:0;;;45004:1;;44987:40;;45004:1;;44987:40;45071:3;45055:12;:19;;44956:120;;44450:641;-1:-1:-1;45105:13:0;:28;45155:60;41753:369;4847:1308;4928:7;4937:12;5162:9;:16;5182:2;5162:22;5158:990;;;5458:4;5443:20;;5437:27;5508:4;5493:20;;5487:27;5566:4;5551:20;;5545:27;5201:9;5537:36;5609:25;5620:4;5537:36;5437:27;5487;5609:10;:25::i;:::-;5602:32;;;;;;;;;5158:990;5656:9;:16;5676:2;5656:22;5652:496;;;5931:4;5916:20;;5910:27;5982:4;5967:20;;5961:27;6024:23;6035:4;5910:27;5961;6024:10;:23::i;:::-;6017:30;;;;;;;;5652:496;-1:-1:-1;6096:1:0;;-1:-1:-1;6100:35:0;5652:496;4847:1308;;;;;:::o;3118:643::-;3196:20;3187:5;:29;;;;;;;;:::i;:::-;;3183:571;;;3118:643;:::o;3183:571::-;3294:29;3285:5;:38;;;;;;;;:::i;:::-;;3281:473;;;3340:34;;-1:-1:-1;;;3340:34:0;;10173:2:1;3340:34:0;;;10155:21:1;10212:2;10192:18;;;10185:30;10251:26;10231:18;;;10224:54;10295:18;;3340:34:0;9971:348:1;3281:473:0;3405:35;3396:5;:44;;;;;;;;:::i;:::-;;3392:362;;;3457:41;;-1:-1:-1;;;3457:41:0;;10877:2:1;3457:41:0;;;10859:21:1;10916:2;10896:18;;;10889:30;10955:33;10935:18;;;10928:61;11006:18;;3457:41:0;10675:355:1;3392:362:0;3529:30;3520:5;:39;;;;;;;;:::i;:::-;;3516:238;;;3576:44;;-1:-1:-1;;;3576:44:0;;12327:2:1;3576:44:0;;;12309:21:1;12366:2;12346:18;;;12339:30;12405:34;12385:18;;;12378:62;-1:-1:-1;;;12456:18:1;;;12449:32;12498:19;;3576:44:0;12125:398:1;3516:238:0;3651:30;3642:5;:39;;;;;;;;:::i;:::-;;3638:116;;;3698:44;;-1:-1:-1;;;3698:44:0;;13072:2:1;3698:44:0;;;13054:21:1;13111:2;13091:18;;;13084:30;13150:34;13130:18;;;13123:62;-1:-1:-1;;;13201:18:1;;;13194:32;13243:19;;3698:44:0;12870:398:1;8409:1632:0;8540:7;;9474:66;9461:79;;9457:163;;;-1:-1:-1;9573:1:0;;-1:-1:-1;9577:30:0;9557:51;;9457:163;9634:1;:7;;9639:2;9634:7;;:18;;;;;9645:1;:7;;9650:2;9645:7;;9634:18;9630:102;;;-1:-1:-1;9685:1:0;;-1:-1:-1;9689:30:0;9669:51;;9630:102;9846:24;;;9829:14;9846:24;;;;;;;;;9347:25:1;;;9420:4;9408:17;;9388:18;;;9381:45;;;;9442:18;;;9435:34;;;9485:18;;;9478:34;;;9846:24:0;;9319:19:1;;9846:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9846:24:0;;-1:-1:-1;;9846:24:0;;;-1:-1:-1;;;;;;;9885:20:0;;9881:103;;9938:1;9942:29;9922:50;;;;;;;9881:103;10004:6;-1:-1:-1;10012:20:0;;-1:-1:-1;8409:1632:0;;;;;;;;:::o;7451:344::-;7565:7;;-1:-1:-1;;;;;7611:80:0;;7565:7;7718:25;7734:3;7719:18;;;7741:2;7718:25;:::i;:::-;7702:42;;7762:25;7773:4;7779:1;7782;7785;7762:10;:25::i;:::-;7755:32;;;;;;7451:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:718:1;56:5;109:3;102:4;94:6;90:17;86:27;76:55;;127:1;124;117:12;76:55;163:6;150:20;189:18;226:2;222;219:10;216:36;;;232:18;;:::i;:::-;307:2;301:9;275:2;361:13;;-1:-1:-1;;357:22:1;;;381:2;353:31;349:40;337:53;;;405:18;;;425:22;;;402:46;399:72;;;451:18;;:::i;:::-;491:10;487:2;480:22;526:2;518:6;511:18;572:3;565:4;560:2;552:6;548:15;544:26;541:35;538:55;;;589:1;586;579:12;538:55;653:2;646:4;638:6;634:17;627:4;619:6;615:17;602:54;700:1;693:4;688:2;680:6;676:15;672:26;665:37;720:6;711:15;;;;;;14:718;;;;:::o;737:247::-;796:6;849:2;837:9;828:7;824:23;820:32;817:52;;;865:1;862;855:12;817:52;904:9;891:23;923:31;948:5;923:31;:::i;:::-;973:5;737:247;-1:-1:-1;;;737:247:1:o;989:251::-;1059:6;1112:2;1100:9;1091:7;1087:23;1083:32;1080:52;;;1128:1;1125;1118:12;1080:52;1160:9;1154:16;1179:31;1204:5;1179:31;:::i;1245:388::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1429:9;1416:23;1448:31;1473:5;1448:31;:::i;:::-;1498:5;-1:-1:-1;1555:2:1;1540:18;;1527:32;1568:33;1527:32;1568:33;:::i;:::-;1620:7;1610:17;;;1245:388;;;;;:::o;1638:456::-;1715:6;1723;1731;1784:2;1772:9;1763:7;1759:23;1755:32;1752:52;;;1800:1;1797;1790:12;1752:52;1839:9;1826:23;1858:31;1883:5;1858:31;:::i;:::-;1908:5;-1:-1:-1;1965:2:1;1950:18;;1937:32;1978:33;1937:32;1978:33;:::i;:::-;1638:456;;2030:7;;-1:-1:-1;;;2084:2:1;2069:18;;;;2056:32;;1638:456::o;2099:665::-;2194:6;2202;2210;2218;2271:3;2259:9;2250:7;2246:23;2242:33;2239:53;;;2288:1;2285;2278:12;2239:53;2327:9;2314:23;2346:31;2371:5;2346:31;:::i;:::-;2396:5;-1:-1:-1;2453:2:1;2438:18;;2425:32;2466:33;2425:32;2466:33;:::i;:::-;2518:7;-1:-1:-1;2572:2:1;2557:18;;2544:32;;-1:-1:-1;2627:2:1;2612:18;;2599:32;2654:18;2643:30;;2640:50;;;2686:1;2683;2676:12;2640:50;2709:49;2750:7;2741:6;2730:9;2726:22;2709:49;:::i;:::-;2699:59;;;2099:665;;;;;;;:::o;2769:416::-;2834:6;2842;2895:2;2883:9;2874:7;2870:23;2866:32;2863:52;;;2911:1;2908;2901:12;2863:52;2950:9;2937:23;2969:31;2994:5;2969:31;:::i;:::-;3019:5;-1:-1:-1;3076:2:1;3061:18;;3048:32;3118:15;;3111:23;3099:36;;3089:64;;3149:1;3146;3139:12;3190:315;3258:6;3266;3319:2;3307:9;3298:7;3294:23;3290:32;3287:52;;;3335:1;3332;3325:12;3287:52;3374:9;3361:23;3393:31;3418:5;3393:31;:::i;:::-;3443:5;3495:2;3480:18;;;;3467:32;;-1:-1:-1;;;3190:315:1:o;3510:615::-;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3713:9;3700:23;3742:18;3783:2;3775:6;3772:14;3769:34;;;3799:1;3796;3789:12;3769:34;3837:6;3826:9;3822:22;3812:32;;3882:7;3875:4;3871:2;3867:13;3863:27;3853:55;;3904:1;3901;3894:12;3853:55;3944:2;3931:16;3970:2;3962:6;3959:14;3956:34;;;3986:1;3983;3976:12;3956:34;4039:7;4034:2;4024:6;4021:1;4017:14;4013:2;4009:23;4005:32;4002:45;3999:65;;;4060:1;4057;4050:12;3999:65;4091:2;4083:11;;;;;4113:6;;-1:-1:-1;3510:615:1;;-1:-1:-1;;;;3510:615:1:o;4130:245::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;4296:9;4283:23;4315:30;4339:5;4315:30;:::i;4380:249::-;4449:6;4502:2;4490:9;4481:7;4477:23;4473:32;4470:52;;;4518:1;4515;4508:12;4470:52;4550:9;4544:16;4569:30;4593:5;4569:30;:::i;4634:592::-;4705:6;4713;4766:2;4754:9;4745:7;4741:23;4737:32;4734:52;;;4782:1;4779;4772:12;4734:52;4822:9;4809:23;4851:18;4892:2;4884:6;4881:14;4878:34;;;4908:1;4905;4898:12;4878:34;4946:6;4935:9;4931:22;4921:32;;4991:7;4984:4;4980:2;4976:13;4972:27;4962:55;;5013:1;5010;5003:12;4962:55;5053:2;5040:16;5079:2;5071:6;5068:14;5065:34;;;5095:1;5092;5085:12;5065:34;5140:7;5135:2;5126:6;5122:2;5118:15;5114:24;5111:37;5108:57;;;5161:1;5158;5151:12;5231:180;5290:6;5343:2;5331:9;5322:7;5318:23;5314:32;5311:52;;;5359:1;5356;5349:12;5311:52;-1:-1:-1;5382:23:1;;5231:180;-1:-1:-1;5231:180:1:o;5416:388::-;5493:6;5501;5554:2;5542:9;5533:7;5529:23;5525:32;5522:52;;;5570:1;5567;5560:12;5522:52;5606:9;5593:23;5583:33;;5667:2;5656:9;5652:18;5639:32;5694:18;5686:6;5683:30;5680:50;;;5726:1;5723;5716:12;5680:50;5749:49;5790:7;5781:6;5770:9;5766:22;5749:49;:::i;:::-;5739:59;;;5416:388;;;;;:::o;5809:257::-;5850:3;5888:5;5882:12;5915:6;5910:3;5903:19;5931:63;5987:6;5980:4;5975:3;5971:14;5964:4;5957:5;5953:16;5931:63;:::i;:::-;6048:2;6027:15;-1:-1:-1;;6023:29:1;6014:39;;;;6055:4;6010:50;;5809:257;-1:-1:-1;;5809:257:1:o;6071:185::-;6113:3;6151:5;6145:12;6166:52;6211:6;6206:3;6199:4;6192:5;6188:16;6166:52;:::i;:::-;6234:16;;;;;6071:185;-1:-1:-1;;6071:185:1:o;6261:397::-;6475:26;6471:31;6462:6;6458:2;6454:15;6450:53;6445:3;6438:66;6420:3;6533:6;6527:13;6549:62;6604:6;6599:2;6594:3;6590:12;6583:4;6575:6;6571:17;6549:62;:::i;:::-;6631:16;;;;6649:2;6627:25;;6261:397;-1:-1:-1;;;6261:397:1:o;6663:1174::-;6839:3;6868:1;6901:6;6895:13;6931:3;6953:1;6981:9;6977:2;6973:18;6963:28;;7041:2;7030:9;7026:18;7063;7053:61;;7107:4;7099:6;7095:17;7085:27;;7053:61;7133:2;7181;7173:6;7170:14;7150:18;7147:38;7144:165;;;-1:-1:-1;;;7208:33:1;;7264:4;7261:1;7254:15;7294:4;7215:3;7282:17;7144:165;7325:18;7352:104;;;;7470:1;7465:320;;;;7318:467;;7352:104;-1:-1:-1;;7385:24:1;;7373:37;;7430:16;;;;-1:-1:-1;7352:104:1;;7465:320;15616:1;15609:14;;;15653:4;15640:18;;7560:1;7574:165;7588:6;7585:1;7582:13;7574:165;;;7666:14;;7653:11;;;7646:35;7709:16;;;;7603:10;;7574:165;;;7578:3;;7768:6;7763:3;7759:16;7752:23;;7318:467;;;;;;;7801:30;7827:3;7819:6;7801:30;:::i;:::-;7794:37;6663:1174;-1:-1:-1;;;;;6663:1174:1:o;8435:488::-;-1:-1:-1;;;;;8704:15:1;;;8686:34;;8756:15;;8751:2;8736:18;;8729:43;8803:2;8788:18;;8781:34;;;8851:3;8846:2;8831:18;;8824:31;;;8629:4;;8872:45;;8897:19;;8889:6;8872:45;:::i;:::-;8864:53;8435:488;-1:-1:-1;;;;;;8435:488:1:o;9747:219::-;9896:2;9885:9;9878:21;9859:4;9916:44;9956:2;9945:9;9941:18;9933:6;9916:44;:::i;11785:335::-;11987:2;11969:21;;;12026:2;12006:18;;;11999:30;-1:-1:-1;;;12060:2:1;12045:18;;12038:41;12111:2;12096:18;;11785:335::o;13273:356::-;13475:2;13457:21;;;13494:18;;;13487:30;13553:34;13548:2;13533:18;;13526:62;13620:2;13605:18;;13273:356::o;14338:334::-;14540:2;14522:21;;;14579:2;14559:18;;;14552:30;-1:-1:-1;;;14613:2:1;14598:18;;14591:40;14663:2;14648:18;;14338:334::o;15669:128::-;15709:3;15740:1;15736:6;15733:1;15730:13;15727:39;;;15746:18;;:::i;:::-;-1:-1:-1;15782:9:1;;15669:128::o;15802:120::-;15842:1;15868;15858:35;;15873:18;;:::i;:::-;-1:-1:-1;15907:9:1;;15802:120::o;15927:168::-;15967:7;16033:1;16029;16025:6;16021:14;16018:1;16015:21;16010:1;16003:9;15996:17;15992:45;15989:71;;;16040:18;;:::i;:::-;-1:-1:-1;16080:9:1;;15927:168::o;16100:125::-;16140:4;16168:1;16165;16162:8;16159:34;;;16173:18;;:::i;:::-;-1:-1:-1;16210:9:1;;16100:125::o;16230:258::-;16302:1;16312:113;16326:6;16323:1;16320:13;16312:113;;;16402:11;;;16396:18;16383:11;;;16376:39;16348:2;16341:10;16312:113;;;16443:6;16440:1;16437:13;16434:48;;;-1:-1:-1;;16478:1:1;16460:16;;16453:27;16230:258::o;16493:380::-;16572:1;16568:12;;;;16615;;;16636:61;;16690:4;16682:6;16678:17;16668:27;;16636:61;16743:2;16735:6;16732:14;16712:18;16709:38;16706:161;;;16789:10;16784:3;16780:20;16777:1;16770:31;16824:4;16821:1;16814:15;16852:4;16849:1;16842:15;16706:161;;16493:380;;;:::o;16878:135::-;16917:3;-1:-1:-1;;16938:17:1;;16935:43;;;16958:18;;:::i;:::-;-1:-1:-1;17005:1:1;16994:13;;16878:135::o;17018:112::-;17050:1;17076;17066:35;;17081:18;;:::i;:::-;-1:-1:-1;17115:9:1;;17018:112::o;17135:127::-;17196:10;17191:3;17187:20;17184:1;17177:31;17227:4;17224:1;17217:15;17251:4;17248:1;17241:15;17267:127;17328:10;17323:3;17319:20;17316:1;17309:31;17359:4;17356:1;17349:15;17383:4;17380:1;17373:15;17399:127;17460:10;17455:3;17451:20;17448:1;17441:31;17491:4;17488:1;17481:15;17515:4;17512:1;17505:15;17531:127;17592:10;17587:3;17583:20;17580:1;17573:31;17623:4;17620:1;17613:15;17647:4;17644:1;17637:15;17663:127;17724:10;17719:3;17715:20;17712:1;17705:31;17755:4;17752:1;17745:15;17779:4;17776:1;17769:15;17795:131;-1:-1:-1;;;;;17870:31:1;;17860:42;;17850:70;;17916:1;17913;17906:12;17931:131;-1:-1:-1;;;;;;18005:32:1;;17995:43;;17985:71;;18052:1;18049;18042:12

Swarm Source

ipfs://76d1ca60e5ef5b7c5b63bb0e5cbf49705d340542c19ca89fe26e203ef6a8847b
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.