ETH Price: $3,449.52 (-0.90%)
Gas: 15 Gwei

Token

WastelandOutcasts (WLO)
 

Overview

Max Total Supply

0 WLO

Holders

86

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WLO
0xb898ae2c6951d0cb3c2c3e7ab96a8f72b6863733
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:
WastelandOutcasts

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

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));
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/4_Outcasts.sol


pragma solidity ^0.8.4;





interface IOutCast {
  function ownerOf(uint256 tokenId) external returns (address);
}

contract WastelandOutcasts is ERC721, Ownable {
  using ECDSA for bytes32;

  // Addresses
  address public _ccAddress;
  address public _systemAddress = address(0);

  uint256 public _startingCrewCardId = 1;

  // Token mint values
  uint256 public constant MAX_CREW_CARD_ID = 202;
 
  uint256 public _price = 0.0 ether;

 bool public _claimsPaused = true;
 string public _baseTokenURI;

  // Tracks if address has minted
  mapping(address => bool) public _minted;

  constructor() ERC721("WastelandOutcasts", "WLO") {

  }

  function mintOutcasts(uint256[] memory tokenIds) external {
    require(msg.sender == tx.origin, "We like real users");
    require(!_claimsPaused, "Claiming paused");

    IOutCast outCasts = IOutCast(_ccAddress);

    bool success;
    for (uint256 i; i < tokenIds.length; i++) {
      uint256 cardId = tokenIds[i];

      // Only crew card owner can mint outcasts that dont already exist for their corresponding id
      if (outCasts.ownerOf(cardId) == msg.sender && !_exists(cardId)) {
        _mint(msg.sender, cardId);
        success = true;
      }
    }
  }

  /// @notice Minting pause
  /// @param val True or false
  function pauseClaim(bool val) external onlyOwner {
    _claimsPaused = val;
  }

  /// @notice Set baseURI
  /// @param baseURI URI of the pet image server
  function setBaseURI(string memory baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  /// @notice Get uri of tokens
  /// @return string Uri
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  /// @notice Set the system address
  /// @param systemAddress Address to set as systemAddress
  function setSystemAddress(address systemAddress) external onlyOwner {
    _systemAddress = systemAddress;
  }

  /// @notice Se the Outcast contract address
  /// @param ccAddress Address of the crew card contract
  function setCrewCardContractAddress(address ccAddress) external onlyOwner {
    _ccAddress = ccAddress;
  }

  /// @notice Verify hashed data
  /// param hash Hashed data bundle
  /// @param signature Signature to check hash against
  /// @return bool Is verified or not
  function _isValidSignature(bytes32 hash, bytes memory signature) internal view returns (bool) {
    require(_systemAddress != address(0), "Invalid system address");
    bytes32 signedHash = hash.toEthSignedMessageHash();
    return signedHash.recover(signature) == _systemAddress;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CREW_CARD_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ccAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_claimsPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_startingCrewCardId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_systemAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintOutcasts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pauseClaim","outputs":[],"stateMutability":"nonpayable","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":"ccAddress","type":"address"}],"name":"setCrewCardContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"systemAddress","type":"address"}],"name":"setSystemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016009556000600a556001600b60006101000a81548160ff0219169083151502179055503480156200007857600080fd5b506040518060400160405280601181526020017f57617374656c616e644f757463617374730000000000000000000000000000008152506040518060400160405280600381526020017f574c4f00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd9291906200020d565b508060019080519060200190620001169291906200020d565b505050620001396200012d6200013f60201b60201c565b6200014760201b60201c565b62000322565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021b90620002bd565b90600052602060002090601f0160209004810192826200023f57600085556200028b565b82601f106200025a57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028a5782518255916020019190600101906200026d565b5b5090506200029a91906200029e565b5090565b5b80821115620002b95760008160009055506001016200029f565b5090565b60006002820490506001821680620002d657607f821691505b60208210811415620002ed57620002ec620002f3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6136f080620003326000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637543801c11610104578063b5225c65116100a2578063e29a0cfb11610071578063e29a0cfb14610506578063e5554d5814610524578063e985e9c514610542578063f2fde38b14610572576101cf565b8063b5225c651461047e578063b88d4fde1461049c578063c87b56dd146104b8578063cfc86f7b146104e8576101cf565b806395d89b41116100de57806395d89b411461040c5780639888cc831461042a578063a13da01d14610446578063a22cb46514610462576101cf565b80637543801c146103a05780637de77ecc146103be5780638da5cb5b146103ee576101cf565b806342842e0e116101715780636881c3e91161014b5780636881c3e91461032c5780636ff926cc1461034a57806370a0823114610366578063715018a614610396576101cf565b806342842e0e146102c457806355f804b3146102e05780636352211e146102fc576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e578063235b6ea11461028a57806323b872dd146102a8576101cf565b806301ffc9a7146101d4578063062101971461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e9919061267e565b61058e565b6040516101fb9190612b0b565b60405180910390f35b61021e60048036038101906102199190612444565b610670565b005b610228610730565b6040516102359190612b26565b60405180910390f35b61025860048036038101906102539190612711565b6107c2565b6040516102659190612aa4565b60405180910390f35b610288600480360381019061028391906125d8565b610847565b005b61029261095f565b60405161029f9190612d88565b60405180910390f35b6102c260048036038101906102bd91906124d2565b610965565b005b6102de60048036038101906102d991906124d2565b6109c5565b005b6102fa60048036038101906102f591906126d0565b6109e5565b005b61031660048036038101906103119190612711565b610a7b565b6040516103239190612aa4565b60405180910390f35b610334610b2d565b6040516103419190612aa4565b60405180910390f35b610364600480360381019061035f9190612444565b610b53565b005b610380600480360381019061037b9190612444565b610c13565b60405161038d9190612d88565b60405180910390f35b61039e610ccb565b005b6103a8610d53565b6040516103b59190612d88565b60405180910390f35b6103d860048036038101906103d39190612444565b610d58565b6040516103e59190612b0b565b60405180910390f35b6103f6610d78565b6040516104039190612aa4565b60405180910390f35b610414610da2565b6040516104219190612b26565b60405180910390f35b610444600480360381019061043f9190612655565b610e34565b005b610460600480360381019061045b9190612614565b610ecd565b005b61047c6004803603810190610477919061259c565b6110fd565b005b610486611113565b6040516104939190612b0b565b60405180910390f35b6104b660048036038101906104b19190612521565b611126565b005b6104d260048036038101906104cd9190612711565b611188565b6040516104df9190612b26565b60405180910390f35b6104f061122f565b6040516104fd9190612b26565b60405180910390f35b61050e6112bd565b60405161051b9190612d88565b60405180910390f35b61052c6112c3565b6040516105399190612aa4565b60405180910390f35b61055c60048036038101906105579190612496565b6112e9565b6040516105699190612b0b565b60405180910390f35b61058c60048036038101906105879190612444565b61137d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611475565b5b9050919050565b6106786114df565b73ffffffffffffffffffffffffffffffffffffffff16610696610d78565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390612d08565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461073f9061300a565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061300a565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd826114e7565b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612ce8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610a7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612d48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e26114df565b73ffffffffffffffffffffffffffffffffffffffff16148061091157506109108161090b6114df565b6112e9565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790612c68565b60405180910390fd5b61095a8383611553565b505050565b600a5481565b6109766109706114df565b8261160c565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612d68565b60405180910390fd5b6109c08383836116ea565b505050565b6109e083838360405180602001604052806000815250611126565b505050565b6109ed6114df565b73ffffffffffffffffffffffffffffffffffffffff16610a0b610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612d08565b60405180910390fd5b80600c9080519060200190610a779291906121bd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90612ca8565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b5b6114df565b73ffffffffffffffffffffffffffffffffffffffff16610b79610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690612d08565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90612c88565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd36114df565b73ffffffffffffffffffffffffffffffffffffffff16610cf1610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612d08565b60405180910390fd5b610d516000611951565b565b60ca81565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db19061300a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd9061300a565b8015610e2a5780601f10610dff57610100808354040283529160200191610e2a565b820191906000526020600020905b815481529060010190602001808311610e0d57829003601f168201915b5050505050905090565b610e3c6114df565b73ffffffffffffffffffffffffffffffffffffffff16610e5a610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612d08565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612b48565b60405180910390fd5b600b60009054906101000a900460ff1615610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612be8565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b83518110156110f7576000848281518110610ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016110549190612d88565b602060405180830381600087803b15801561106e57600080fd5b505af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a6919061246d565b73ffffffffffffffffffffffffffffffffffffffff161480156110cf57506110cd816114e7565b155b156110e3576110de3382611a17565b600192505b5080806110ef9061306d565b915050610fb6565b50505050565b61110f6111086114df565b8383611bf1565b5050565b600b60009054906101000a900460ff1681565b6111376111316114df565b8361160c565b611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90612d68565b60405180910390fd5b61118284848484611d5e565b50505050565b6060611193826114e7565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612d28565b60405180910390fd5b60006111dc611dba565b905060008151116111fc5760405180602001604052806000815250611227565b8061120684611e4c565b604051602001611217929190612a80565b6040516020818303038152906040525b915050919050565b600c805461123c9061300a565b80601f01602080910402602001604051908101604052809291908181526020018280546112689061300a565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113856114df565b73ffffffffffffffffffffffffffffffffffffffff166113a3610d78565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612b88565b60405180910390fd5b61147281611951565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c683610a7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611617826114e7565b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612c48565b60405180910390fd5b600061166183610a7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d057508373ffffffffffffffffffffffffffffffffffffffff166116b8846107c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e157506116e081856112e9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170a82610a7b565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790612ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790612c08565b60405180910390fd5b6117db838383611ff9565b6117e6600082611553565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118369190612f20565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188d9190612e99565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194c838383611ffe565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90612cc8565b60405180910390fd5b611a90816114e7565b15611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612bc8565b60405180910390fd5b611adc60008383611ff9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2c9190612e99565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bed60008383611ffe565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790612c28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d519190612b0b565b60405180910390a3505050565b611d698484846116ea565b611d7584848484612003565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90612b68565b60405180910390fd5b50505050565b6060600c8054611dc99061300a565b80601f0160208091040260200160405190810160405280929190818152602001828054611df59061300a565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b5050505050905090565b60606000821415611e94576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff4565b600082905060005b60008214611ec6578080611eaf9061306d565b915050600a82611ebf9190612eef565b9150611e9c565b60008167ffffffffffffffff811115611f08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3a5781602001600182028036833780820191505090505b5090505b60008514611fed57600182611f539190612f20565b9150600a85611f6291906130b6565b6030611f6e9190612e99565b60f81b818381518110611faa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe69190612eef565b9450611f3e565b8093505050505b919050565b505050565b505050565b60006120248473ffffffffffffffffffffffffffffffffffffffff1661219a565b1561218d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204d6114df565b8786866040518563ffffffff1660e01b815260040161206f9493929190612abf565b602060405180830381600087803b15801561208957600080fd5b505af19250505080156120ba57506040513d601f19601f820116820180604052508101906120b791906126a7565b60015b61213d573d80600081146120ea576040519150601f19603f3d011682016040523d82523d6000602084013e6120ef565b606091505b50600081511415612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90612b68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612192565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121c99061300a565b90600052602060002090601f0160209004810192826121eb5760008555612232565b82601f1061220457805160ff1916838001178555612232565b82800160010185558215612232579182015b82811115612231578251825591602001919060010190612216565b5b50905061223f9190612243565b5090565b5b8082111561225c576000816000905550600101612244565b5090565b600061227361226e84612dc8565b612da3565b9050808382526020820190508285602086028201111561229257600080fd5b60005b858110156122c257816122a8888261242f565b845260208401935060208301925050600181019050612295565b5050509392505050565b60006122df6122da84612df4565b612da3565b9050828152602081018484840111156122f757600080fd5b612302848285612fc8565b509392505050565b600061231d61231884612e25565b612da3565b90508281526020810184848401111561233557600080fd5b612340848285612fc8565b509392505050565b6000813590506123578161365e565b92915050565b60008151905061236c8161365e565b92915050565b600082601f83011261238357600080fd5b8135612393848260208601612260565b91505092915050565b6000813590506123ab81613675565b92915050565b6000813590506123c08161368c565b92915050565b6000815190506123d58161368c565b92915050565b600082601f8301126123ec57600080fd5b81356123fc8482602086016122cc565b91505092915050565b600082601f83011261241657600080fd5b813561242684826020860161230a565b91505092915050565b60008135905061243e816136a3565b92915050565b60006020828403121561245657600080fd5b600061246484828501612348565b91505092915050565b60006020828403121561247f57600080fd5b600061248d8482850161235d565b91505092915050565b600080604083850312156124a957600080fd5b60006124b785828601612348565b92505060206124c885828601612348565b9150509250929050565b6000806000606084860312156124e757600080fd5b60006124f586828701612348565b935050602061250686828701612348565b92505060406125178682870161242f565b9150509250925092565b6000806000806080858703121561253757600080fd5b600061254587828801612348565b945050602061255687828801612348565b93505060406125678782880161242f565b925050606085013567ffffffffffffffff81111561258457600080fd5b612590878288016123db565b91505092959194509250565b600080604083850312156125af57600080fd5b60006125bd85828601612348565b92505060206125ce8582860161239c565b9150509250929050565b600080604083850312156125eb57600080fd5b60006125f985828601612348565b925050602061260a8582860161242f565b9150509250929050565b60006020828403121561262657600080fd5b600082013567ffffffffffffffff81111561264057600080fd5b61264c84828501612372565b91505092915050565b60006020828403121561266757600080fd5b60006126758482850161239c565b91505092915050565b60006020828403121561269057600080fd5b600061269e848285016123b1565b91505092915050565b6000602082840312156126b957600080fd5b60006126c7848285016123c6565b91505092915050565b6000602082840312156126e257600080fd5b600082013567ffffffffffffffff8111156126fc57600080fd5b61270884828501612405565b91505092915050565b60006020828403121561272357600080fd5b60006127318482850161242f565b91505092915050565b61274381612f54565b82525050565b61275281612f66565b82525050565b600061276382612e56565b61276d8185612e6c565b935061277d818560208601612fd7565b612786816131a3565b840191505092915050565b600061279c82612e61565b6127a68185612e7d565b93506127b6818560208601612fd7565b6127bf816131a3565b840191505092915050565b60006127d582612e61565b6127df8185612e8e565b93506127ef818560208601612fd7565b80840191505092915050565b6000612808601283612e7d565b9150612813826131b4565b602082019050919050565b600061282b603283612e7d565b9150612836826131dd565b604082019050919050565b600061284e602683612e7d565b91506128598261322c565b604082019050919050565b6000612871602583612e7d565b915061287c8261327b565b604082019050919050565b6000612894601c83612e7d565b915061289f826132ca565b602082019050919050565b60006128b7600f83612e7d565b91506128c2826132f3565b602082019050919050565b60006128da602483612e7d565b91506128e58261331c565b604082019050919050565b60006128fd601983612e7d565b91506129088261336b565b602082019050919050565b6000612920602c83612e7d565b915061292b82613394565b604082019050919050565b6000612943603883612e7d565b915061294e826133e3565b604082019050919050565b6000612966602a83612e7d565b915061297182613432565b604082019050919050565b6000612989602983612e7d565b915061299482613481565b604082019050919050565b60006129ac602083612e7d565b91506129b7826134d0565b602082019050919050565b60006129cf602c83612e7d565b91506129da826134f9565b604082019050919050565b60006129f2602083612e7d565b91506129fd82613548565b602082019050919050565b6000612a15602f83612e7d565b9150612a2082613571565b604082019050919050565b6000612a38602183612e7d565b9150612a43826135c0565b604082019050919050565b6000612a5b603183612e7d565b9150612a668261360f565b604082019050919050565b612a7a81612fbe565b82525050565b6000612a8c82856127ca565b9150612a9882846127ca565b91508190509392505050565b6000602082019050612ab9600083018461273a565b92915050565b6000608082019050612ad4600083018761273a565b612ae1602083018661273a565b612aee6040830185612a71565b8181036060830152612b008184612758565b905095945050505050565b6000602082019050612b206000830184612749565b92915050565b60006020820190508181036000830152612b408184612791565b905092915050565b60006020820190508181036000830152612b61816127fb565b9050919050565b60006020820190508181036000830152612b818161281e565b9050919050565b60006020820190508181036000830152612ba181612841565b9050919050565b60006020820190508181036000830152612bc181612864565b9050919050565b60006020820190508181036000830152612be181612887565b9050919050565b60006020820190508181036000830152612c01816128aa565b9050919050565b60006020820190508181036000830152612c21816128cd565b9050919050565b60006020820190508181036000830152612c41816128f0565b9050919050565b60006020820190508181036000830152612c6181612913565b9050919050565b60006020820190508181036000830152612c8181612936565b9050919050565b60006020820190508181036000830152612ca181612959565b9050919050565b60006020820190508181036000830152612cc18161297c565b9050919050565b60006020820190508181036000830152612ce18161299f565b9050919050565b60006020820190508181036000830152612d01816129c2565b9050919050565b60006020820190508181036000830152612d21816129e5565b9050919050565b60006020820190508181036000830152612d4181612a08565b9050919050565b60006020820190508181036000830152612d6181612a2b565b9050919050565b60006020820190508181036000830152612d8181612a4e565b9050919050565b6000602082019050612d9d6000830184612a71565b92915050565b6000612dad612dbe565b9050612db9828261303c565b919050565b6000604051905090565b600067ffffffffffffffff821115612de357612de2613174565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e0f57612e0e613174565b5b612e18826131a3565b9050602081019050919050565b600067ffffffffffffffff821115612e4057612e3f613174565b5b612e49826131a3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea482612fbe565b9150612eaf83612fbe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee457612ee36130e7565b5b828201905092915050565b6000612efa82612fbe565b9150612f0583612fbe565b925082612f1557612f14613116565b5b828204905092915050565b6000612f2b82612fbe565b9150612f3683612fbe565b925082821015612f4957612f486130e7565b5b828203905092915050565b6000612f5f82612f9e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff5578082015181840152602081019050612fda565b83811115613004576000848401525b50505050565b6000600282049050600182168061302257607f821691505b6020821081141561303657613035613145565b5b50919050565b613045826131a3565b810181811067ffffffffffffffff8211171561306457613063613174565b5b80604052505050565b600061307882612fbe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ab576130aa6130e7565b5b600182019050919050565b60006130c182612fbe565b91506130cc83612fbe565b9250826130dc576130db613116565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5765206c696b65207265616c2075736572730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436c61696d696e67207061757365640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61366781612f54565b811461367257600080fd5b50565b61367e81612f66565b811461368957600080fd5b50565b61369581612f72565b81146136a057600080fd5b50565b6136ac81612fbe565b81146136b757600080fd5b5056fea2646970667358221220fb30afd12af6693be1e559803513d17e684c32e8ab35855b4b68b0a07463031b64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80637543801c11610104578063b5225c65116100a2578063e29a0cfb11610071578063e29a0cfb14610506578063e5554d5814610524578063e985e9c514610542578063f2fde38b14610572576101cf565b8063b5225c651461047e578063b88d4fde1461049c578063c87b56dd146104b8578063cfc86f7b146104e8576101cf565b806395d89b41116100de57806395d89b411461040c5780639888cc831461042a578063a13da01d14610446578063a22cb46514610462576101cf565b80637543801c146103a05780637de77ecc146103be5780638da5cb5b146103ee576101cf565b806342842e0e116101715780636881c3e91161014b5780636881c3e91461032c5780636ff926cc1461034a57806370a0823114610366578063715018a614610396576101cf565b806342842e0e146102c457806355f804b3146102e05780636352211e146102fc576101cf565b8063081812fc116101ad578063081812fc1461023e578063095ea7b31461026e578063235b6ea11461028a57806323b872dd146102a8576101cf565b806301ffc9a7146101d4578063062101971461020457806306fdde0314610220575b600080fd5b6101ee60048036038101906101e9919061267e565b61058e565b6040516101fb9190612b0b565b60405180910390f35b61021e60048036038101906102199190612444565b610670565b005b610228610730565b6040516102359190612b26565b60405180910390f35b61025860048036038101906102539190612711565b6107c2565b6040516102659190612aa4565b60405180910390f35b610288600480360381019061028391906125d8565b610847565b005b61029261095f565b60405161029f9190612d88565b60405180910390f35b6102c260048036038101906102bd91906124d2565b610965565b005b6102de60048036038101906102d991906124d2565b6109c5565b005b6102fa60048036038101906102f591906126d0565b6109e5565b005b61031660048036038101906103119190612711565b610a7b565b6040516103239190612aa4565b60405180910390f35b610334610b2d565b6040516103419190612aa4565b60405180910390f35b610364600480360381019061035f9190612444565b610b53565b005b610380600480360381019061037b9190612444565b610c13565b60405161038d9190612d88565b60405180910390f35b61039e610ccb565b005b6103a8610d53565b6040516103b59190612d88565b60405180910390f35b6103d860048036038101906103d39190612444565b610d58565b6040516103e59190612b0b565b60405180910390f35b6103f6610d78565b6040516104039190612aa4565b60405180910390f35b610414610da2565b6040516104219190612b26565b60405180910390f35b610444600480360381019061043f9190612655565b610e34565b005b610460600480360381019061045b9190612614565b610ecd565b005b61047c6004803603810190610477919061259c565b6110fd565b005b610486611113565b6040516104939190612b0b565b60405180910390f35b6104b660048036038101906104b19190612521565b611126565b005b6104d260048036038101906104cd9190612711565b611188565b6040516104df9190612b26565b60405180910390f35b6104f061122f565b6040516104fd9190612b26565b60405180910390f35b61050e6112bd565b60405161051b9190612d88565b60405180910390f35b61052c6112c3565b6040516105399190612aa4565b60405180910390f35b61055c60048036038101906105579190612496565b6112e9565b6040516105699190612b0b565b60405180910390f35b61058c60048036038101906105879190612444565b61137d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610669575061066882611475565b5b9050919050565b6106786114df565b73ffffffffffffffffffffffffffffffffffffffff16610696610d78565b73ffffffffffffffffffffffffffffffffffffffff16146106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390612d08565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461073f9061300a565b80601f016020809104026020016040519081016040528092919081815260200182805461076b9061300a565b80156107b85780601f1061078d576101008083540402835291602001916107b8565b820191906000526020600020905b81548152906001019060200180831161079b57829003601f168201915b5050505050905090565b60006107cd826114e7565b61080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612ce8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282610a7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612d48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e26114df565b73ffffffffffffffffffffffffffffffffffffffff16148061091157506109108161090b6114df565b6112e9565b5b610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790612c68565b60405180910390fd5b61095a8383611553565b505050565b600a5481565b6109766109706114df565b8261160c565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90612d68565b60405180910390fd5b6109c08383836116ea565b505050565b6109e083838360405180602001604052806000815250611126565b505050565b6109ed6114df565b73ffffffffffffffffffffffffffffffffffffffff16610a0b610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5890612d08565b60405180910390fd5b80600c9080519060200190610a779291906121bd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1b90612ca8565b60405180910390fd5b80915050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b5b6114df565b73ffffffffffffffffffffffffffffffffffffffff16610b79610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690612d08565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90612c88565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd36114df565b73ffffffffffffffffffffffffffffffffffffffff16610cf1610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90612d08565b60405180910390fd5b610d516000611951565b565b60ca81565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db19061300a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddd9061300a565b8015610e2a5780601f10610dff57610100808354040283529160200191610e2a565b820191906000526020600020905b815481529060010190602001808311610e0d57829003601f168201915b5050505050905090565b610e3c6114df565b73ffffffffffffffffffffffffffffffffffffffff16610e5a610d78565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790612d08565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290612b48565b60405180910390fd5b600b60009054906101000a900460ff1615610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612be8565b60405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000805b83518110156110f7576000848281518110610ffa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016110549190612d88565b602060405180830381600087803b15801561106e57600080fd5b505af1158015611082573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a6919061246d565b73ffffffffffffffffffffffffffffffffffffffff161480156110cf57506110cd816114e7565b155b156110e3576110de3382611a17565b600192505b5080806110ef9061306d565b915050610fb6565b50505050565b61110f6111086114df565b8383611bf1565b5050565b600b60009054906101000a900460ff1681565b6111376111316114df565b8361160c565b611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90612d68565b60405180910390fd5b61118284848484611d5e565b50505050565b6060611193826114e7565b6111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990612d28565b60405180910390fd5b60006111dc611dba565b905060008151116111fc5760405180602001604052806000815250611227565b8061120684611e4c565b604051602001611217929190612a80565b6040516020818303038152906040525b915050919050565b600c805461123c9061300a565b80601f01602080910402602001604051908101604052809291908181526020018280546112689061300a565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b505050505081565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113856114df565b73ffffffffffffffffffffffffffffffffffffffff166113a3610d78565b73ffffffffffffffffffffffffffffffffffffffff16146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612b88565b60405180910390fd5b61147281611951565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166115c683610a7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611617826114e7565b611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612c48565b60405180910390fd5b600061166183610a7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116d057508373ffffffffffffffffffffffffffffffffffffffff166116b8846107c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806116e157506116e081856112e9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661170a82610a7b565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790612ba8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790612c08565b60405180910390fd5b6117db838383611ff9565b6117e6600082611553565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118369190612f20565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461188d9190612e99565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461194c838383611ffe565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e90612cc8565b60405180910390fd5b611a90816114e7565b15611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612bc8565b60405180910390fd5b611adc60008383611ff9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2c9190612e99565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bed60008383611ffe565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790612c28565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d519190612b0b565b60405180910390a3505050565b611d698484846116ea565b611d7584848484612003565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90612b68565b60405180910390fd5b50505050565b6060600c8054611dc99061300a565b80601f0160208091040260200160405190810160405280929190818152602001828054611df59061300a565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b5050505050905090565b60606000821415611e94576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff4565b600082905060005b60008214611ec6578080611eaf9061306d565b915050600a82611ebf9190612eef565b9150611e9c565b60008167ffffffffffffffff811115611f08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3a5781602001600182028036833780820191505090505b5090505b60008514611fed57600182611f539190612f20565b9150600a85611f6291906130b6565b6030611f6e9190612e99565b60f81b818381518110611faa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe69190612eef565b9450611f3e565b8093505050505b919050565b505050565b505050565b60006120248473ffffffffffffffffffffffffffffffffffffffff1661219a565b1561218d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261204d6114df565b8786866040518563ffffffff1660e01b815260040161206f9493929190612abf565b602060405180830381600087803b15801561208957600080fd5b505af19250505080156120ba57506040513d601f19601f820116820180604052508101906120b791906126a7565b60015b61213d573d80600081146120ea576040519150601f19603f3d011682016040523d82523d6000602084013e6120ef565b606091505b50600081511415612135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212c90612b68565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612192565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546121c99061300a565b90600052602060002090601f0160209004810192826121eb5760008555612232565b82601f1061220457805160ff1916838001178555612232565b82800160010185558215612232579182015b82811115612231578251825591602001919060010190612216565b5b50905061223f9190612243565b5090565b5b8082111561225c576000816000905550600101612244565b5090565b600061227361226e84612dc8565b612da3565b9050808382526020820190508285602086028201111561229257600080fd5b60005b858110156122c257816122a8888261242f565b845260208401935060208301925050600181019050612295565b5050509392505050565b60006122df6122da84612df4565b612da3565b9050828152602081018484840111156122f757600080fd5b612302848285612fc8565b509392505050565b600061231d61231884612e25565b612da3565b90508281526020810184848401111561233557600080fd5b612340848285612fc8565b509392505050565b6000813590506123578161365e565b92915050565b60008151905061236c8161365e565b92915050565b600082601f83011261238357600080fd5b8135612393848260208601612260565b91505092915050565b6000813590506123ab81613675565b92915050565b6000813590506123c08161368c565b92915050565b6000815190506123d58161368c565b92915050565b600082601f8301126123ec57600080fd5b81356123fc8482602086016122cc565b91505092915050565b600082601f83011261241657600080fd5b813561242684826020860161230a565b91505092915050565b60008135905061243e816136a3565b92915050565b60006020828403121561245657600080fd5b600061246484828501612348565b91505092915050565b60006020828403121561247f57600080fd5b600061248d8482850161235d565b91505092915050565b600080604083850312156124a957600080fd5b60006124b785828601612348565b92505060206124c885828601612348565b9150509250929050565b6000806000606084860312156124e757600080fd5b60006124f586828701612348565b935050602061250686828701612348565b92505060406125178682870161242f565b9150509250925092565b6000806000806080858703121561253757600080fd5b600061254587828801612348565b945050602061255687828801612348565b93505060406125678782880161242f565b925050606085013567ffffffffffffffff81111561258457600080fd5b612590878288016123db565b91505092959194509250565b600080604083850312156125af57600080fd5b60006125bd85828601612348565b92505060206125ce8582860161239c565b9150509250929050565b600080604083850312156125eb57600080fd5b60006125f985828601612348565b925050602061260a8582860161242f565b9150509250929050565b60006020828403121561262657600080fd5b600082013567ffffffffffffffff81111561264057600080fd5b61264c84828501612372565b91505092915050565b60006020828403121561266757600080fd5b60006126758482850161239c565b91505092915050565b60006020828403121561269057600080fd5b600061269e848285016123b1565b91505092915050565b6000602082840312156126b957600080fd5b60006126c7848285016123c6565b91505092915050565b6000602082840312156126e257600080fd5b600082013567ffffffffffffffff8111156126fc57600080fd5b61270884828501612405565b91505092915050565b60006020828403121561272357600080fd5b60006127318482850161242f565b91505092915050565b61274381612f54565b82525050565b61275281612f66565b82525050565b600061276382612e56565b61276d8185612e6c565b935061277d818560208601612fd7565b612786816131a3565b840191505092915050565b600061279c82612e61565b6127a68185612e7d565b93506127b6818560208601612fd7565b6127bf816131a3565b840191505092915050565b60006127d582612e61565b6127df8185612e8e565b93506127ef818560208601612fd7565b80840191505092915050565b6000612808601283612e7d565b9150612813826131b4565b602082019050919050565b600061282b603283612e7d565b9150612836826131dd565b604082019050919050565b600061284e602683612e7d565b91506128598261322c565b604082019050919050565b6000612871602583612e7d565b915061287c8261327b565b604082019050919050565b6000612894601c83612e7d565b915061289f826132ca565b602082019050919050565b60006128b7600f83612e7d565b91506128c2826132f3565b602082019050919050565b60006128da602483612e7d565b91506128e58261331c565b604082019050919050565b60006128fd601983612e7d565b91506129088261336b565b602082019050919050565b6000612920602c83612e7d565b915061292b82613394565b604082019050919050565b6000612943603883612e7d565b915061294e826133e3565b604082019050919050565b6000612966602a83612e7d565b915061297182613432565b604082019050919050565b6000612989602983612e7d565b915061299482613481565b604082019050919050565b60006129ac602083612e7d565b91506129b7826134d0565b602082019050919050565b60006129cf602c83612e7d565b91506129da826134f9565b604082019050919050565b60006129f2602083612e7d565b91506129fd82613548565b602082019050919050565b6000612a15602f83612e7d565b9150612a2082613571565b604082019050919050565b6000612a38602183612e7d565b9150612a43826135c0565b604082019050919050565b6000612a5b603183612e7d565b9150612a668261360f565b604082019050919050565b612a7a81612fbe565b82525050565b6000612a8c82856127ca565b9150612a9882846127ca565b91508190509392505050565b6000602082019050612ab9600083018461273a565b92915050565b6000608082019050612ad4600083018761273a565b612ae1602083018661273a565b612aee6040830185612a71565b8181036060830152612b008184612758565b905095945050505050565b6000602082019050612b206000830184612749565b92915050565b60006020820190508181036000830152612b408184612791565b905092915050565b60006020820190508181036000830152612b61816127fb565b9050919050565b60006020820190508181036000830152612b818161281e565b9050919050565b60006020820190508181036000830152612ba181612841565b9050919050565b60006020820190508181036000830152612bc181612864565b9050919050565b60006020820190508181036000830152612be181612887565b9050919050565b60006020820190508181036000830152612c01816128aa565b9050919050565b60006020820190508181036000830152612c21816128cd565b9050919050565b60006020820190508181036000830152612c41816128f0565b9050919050565b60006020820190508181036000830152612c6181612913565b9050919050565b60006020820190508181036000830152612c8181612936565b9050919050565b60006020820190508181036000830152612ca181612959565b9050919050565b60006020820190508181036000830152612cc18161297c565b9050919050565b60006020820190508181036000830152612ce18161299f565b9050919050565b60006020820190508181036000830152612d01816129c2565b9050919050565b60006020820190508181036000830152612d21816129e5565b9050919050565b60006020820190508181036000830152612d4181612a08565b9050919050565b60006020820190508181036000830152612d6181612a2b565b9050919050565b60006020820190508181036000830152612d8181612a4e565b9050919050565b6000602082019050612d9d6000830184612a71565b92915050565b6000612dad612dbe565b9050612db9828261303c565b919050565b6000604051905090565b600067ffffffffffffffff821115612de357612de2613174565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e0f57612e0e613174565b5b612e18826131a3565b9050602081019050919050565b600067ffffffffffffffff821115612e4057612e3f613174565b5b612e49826131a3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ea482612fbe565b9150612eaf83612fbe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ee457612ee36130e7565b5b828201905092915050565b6000612efa82612fbe565b9150612f0583612fbe565b925082612f1557612f14613116565b5b828204905092915050565b6000612f2b82612fbe565b9150612f3683612fbe565b925082821015612f4957612f486130e7565b5b828203905092915050565b6000612f5f82612f9e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ff5578082015181840152602081019050612fda565b83811115613004576000848401525b50505050565b6000600282049050600182168061302257607f821691505b6020821081141561303657613035613145565b5b50919050565b613045826131a3565b810181811067ffffffffffffffff8211171561306457613063613174565b5b80604052505050565b600061307882612fbe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ab576130aa6130e7565b5b600182019050919050565b60006130c182612fbe565b91506130cc83612fbe565b9250826130dc576130db613116565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5765206c696b65207265616c2075736572730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f436c61696d696e67207061757365640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61366781612f54565b811461367257600080fd5b50565b61367e81612f66565b811461368957600080fd5b50565b61369581612f72565b81146136a057600080fd5b50565b6136ac81612fbe565b81146136b757600080fd5b5056fea2646970667358221220fb30afd12af6693be1e559803513d17e684c32e8ab35855b4b68b0a07463031b64736f6c63430008040033

Deployed Bytecode Sourcemap

48003:2534:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34723:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49743:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35668:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37227:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36750:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48302:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37977:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38387:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49368:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35362:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48100:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49965:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35092:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14264:103;;;:::i;:::-;;48248:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48446:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13613:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35837:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49204:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48555:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37520:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48341:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38643:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36012:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48377:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48179:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48130:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37746:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14522:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34723:305;34825:4;34877:25;34862:40;;;:11;:40;;;;:105;;;;34934:33;34919:48;;;:11;:48;;;;34862:105;:158;;;;34984:36;35008:11;34984:23;:36::i;:::-;34862:158;34842:178;;34723:305;;;:::o;49743:111::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49835:13:::1;49818:14;;:30;;;;;;;;;;;;;;;;;;49743:111:::0;:::o;35668:100::-;35722:13;35755:5;35748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35668:100;:::o;37227:221::-;37303:7;37331:16;37339:7;37331;:16::i;:::-;37323:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37416:15;:24;37432:7;37416:24;;;;;;;;;;;;;;;;;;;;;37409:31;;37227:221;;;:::o;36750:411::-;36831:13;36847:23;36862:7;36847:14;:23::i;:::-;36831:39;;36895:5;36889:11;;:2;:11;;;;36881:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;36989:5;36973:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;36998:37;37015:5;37022:12;:10;:12::i;:::-;36998:16;:37::i;:::-;36973:62;36951:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;37132:21;37141:2;37145:7;37132:8;:21::i;:::-;36750:411;;;:::o;48302:33::-;;;;:::o;37977:339::-;38172:41;38191:12;:10;:12::i;:::-;38205:7;38172:18;:41::i;:::-;38164:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38280:28;38290:4;38296:2;38300:7;38280:9;:28::i;:::-;37977:339;;;:::o;38387:185::-;38525:39;38542:4;38548:2;38552:7;38525:39;;;;;;;;;;;;:16;:39::i;:::-;38387:185;;;:::o;49368:98::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49453:7:::1;49437:13;:23;;;;;;;;;;;;:::i;:::-;;49368:98:::0;:::o;35362:239::-;35434:7;35454:13;35470:7;:16;35478:7;35470:16;;;;;;;;;;;;;;;;;;;;;35454:32;;35522:1;35505:19;;:5;:19;;;;35497:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35588:5;35581:12;;;35362:239;;;:::o;48100:25::-;;;;;;;;;;;;;:::o;49965:109::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50059:9:::1;50046:10;;:22;;;;;;;;;;;;;;;;;;49965:109:::0;:::o;35092:208::-;35164:7;35209:1;35192:19;;:5;:19;;;;35184:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35276:9;:16;35286:5;35276:16;;;;;;;;;;;;;;;;35269:23;;35092:208;;;:::o;14264:103::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14329:30:::1;14356:1;14329:18;:30::i;:::-;14264:103::o:0;48248:46::-;48291:3;48248:46;:::o;48446:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;13613:87::-;13659:7;13686:6;;;;;;;;;;;13679:13;;13613:87;:::o;35837:104::-;35893:13;35926:7;35919:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35837:104;:::o;49204:81::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49276:3:::1;49260:13;;:19;;;;;;;;;;;;;;;;;;49204:81:::0;:::o;48555:582::-;48642:9;48628:23;;:10;:23;;;48620:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48690:13;;;;;;;;;;;48689:14;48681:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;48732:17;48761:10;;;;;;;;;;;48732:40;;48781:12;48805:9;48800:332;48820:8;:15;48816:1;:19;48800:332;;;48851:14;48868:8;48877:1;48868:11;;;;;;;;;;;;;;;;;;;;;;48851:28;;49022:10;48994:38;;:8;:16;;;49011:6;48994:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;:58;;;;;49037:15;49045:6;49037:7;:15::i;:::-;49036:16;48994:58;48990:135;;;49065:25;49071:10;49083:6;49065:5;:25::i;:::-;49111:4;49101:14;;48990:135;48800:332;48837:3;;;;;:::i;:::-;;;;48800:332;;;;48555:582;;;:::o;37520:155::-;37615:52;37634:12;:10;:12::i;:::-;37648:8;37658;37615:18;:52::i;:::-;37520:155;;:::o;48341:32::-;;;;;;;;;;;;;:::o;38643:328::-;38818:41;38837:12;:10;:12::i;:::-;38851:7;38818:18;:41::i;:::-;38810:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38924:39;38938:4;38944:2;38948:7;38957:5;38924:13;:39::i;:::-;38643:328;;;;:::o;36012:334::-;36085:13;36119:16;36127:7;36119;:16::i;:::-;36111:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36200:21;36224:10;:8;:10::i;:::-;36200:34;;36276:1;36258:7;36252:21;:25;:86;;;;;;;;;;;;;;;;;36304:7;36313:18;:7;:16;:18::i;:::-;36287:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36252:86;36245:93;;;36012:334;;;:::o;48377:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48179:38::-;;;;:::o;48130:42::-;;;;;;;;;;;;;:::o;37746:164::-;37843:4;37867:18;:25;37886:5;37867:25;;;;;;;;;;;;;;;:35;37893:8;37867:35;;;;;;;;;;;;;;;;;;;;;;;;;37860:42;;37746:164;;;;:::o;14522:201::-;13844:12;:10;:12::i;:::-;13833:23;;:7;:5;:7::i;:::-;:23;;;13825:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14631:1:::1;14611:22;;:8;:22;;;;14603:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14687:28;14706:8;14687:18;:28::i;:::-;14522:201:::0;:::o;26397:157::-;26482:4;26521:25;26506:40;;;:11;:40;;;;26499:47;;26397:157;;;:::o;12337:98::-;12390:7;12417:10;12410:17;;12337:98;:::o;40481:127::-;40546:4;40598:1;40570:30;;:7;:16;40578:7;40570:16;;;;;;;;;;;;;;;;;;;;;:30;;;;40563:37;;40481:127;;;:::o;44627:174::-;44729:2;44702:15;:24;44718:7;44702:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44785:7;44781:2;44747:46;;44756:23;44771:7;44756:14;:23::i;:::-;44747:46;;;;;;;;;;;;44627:174;;:::o;40775:348::-;40868:4;40893:16;40901:7;40893;:16::i;:::-;40885:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40969:13;40985:23;41000:7;40985:14;:23::i;:::-;40969:39;;41038:5;41027:16;;:7;:16;;;:51;;;;41071:7;41047:31;;:20;41059:7;41047:11;:20::i;:::-;:31;;;41027:51;:87;;;;41082:32;41099:5;41106:7;41082:16;:32::i;:::-;41027:87;41019:96;;;40775:348;;;;:::o;43884:625::-;44043:4;44016:31;;:23;44031:7;44016:14;:23::i;:::-;:31;;;44008:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;44122:1;44108:16;;:2;:16;;;;44100:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44178:39;44199:4;44205:2;44209:7;44178:20;:39::i;:::-;44282:29;44299:1;44303:7;44282:8;:29::i;:::-;44343:1;44324:9;:15;44334:4;44324:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;44372:1;44355:9;:13;44365:2;44355:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44403:2;44384:7;:16;44392:7;44384:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44442:7;44438:2;44423:27;;44432:4;44423:27;;;;;;;;;;;;44463:38;44483:4;44489:2;44493:7;44463:19;:38::i;:::-;43884:625;;;:::o;14883:191::-;14957:16;14976:6;;;;;;;;;;;14957:25;;15002:8;14993:6;;:17;;;;;;;;;;;;;;;;;;15057:8;15026:40;;15047:8;15026:40;;;;;;;;;;;;14883:191;;:::o;42459:439::-;42553:1;42539:16;;:2;:16;;;;42531:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42612:16;42620:7;42612;:16::i;:::-;42611:17;42603:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42674:45;42703:1;42707:2;42711:7;42674:20;:45::i;:::-;42749:1;42732:9;:13;42742:2;42732:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42780:2;42761:7;:16;42769:7;42761:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42825:7;42821:2;42800:33;;42817:1;42800:33;;;;;;;;;;;;42846:44;42874:1;42878:2;42882:7;42846:19;:44::i;:::-;42459:439;;:::o;44943:315::-;45098:8;45089:17;;:5;:17;;;;45081:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45185:8;45147:18;:25;45166:5;45147:25;;;;;;;;;;;;;;;:35;45173:8;45147:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45231:8;45209:41;;45224:5;45209:41;;;45241:8;45209:41;;;;;;:::i;:::-;;;;;;;;44943:315;;;:::o;39853:::-;40010:28;40020:4;40026:2;40030:7;40010:9;:28::i;:::-;40057:48;40080:4;40086:2;40090:7;40099:5;40057:22;:48::i;:::-;40049:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;39853:315;;;;:::o;49531:108::-;49591:13;49620;49613:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49531:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;47194:126::-;;;;:::o;47705:125::-;;;;:::o;45823:799::-;45978:4;45999:15;:2;:13;;;:15::i;:::-;45995:620;;;46051:2;46035:36;;;46072:12;:10;:12::i;:::-;46086:4;46092:7;46101:5;46035:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46031:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46294:1;46277:6;:13;:18;46273:272;;;46320:60;;;;;;;;;;:::i;:::-;;;;;;;;46273:272;46495:6;46489:13;46480:6;46476:2;46472:15;46465:38;46031:529;46168:41;;;46158:51;;;:6;:51;;;;46151:58;;;;;45995:620;46599:4;46592:11;;45823:799;;;;;;;:::o;16314:326::-;16374:4;16631:1;16609:7;:19;;;:23;16602:30;;16314:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1530:143::-;1587:5;1618:6;1612:13;1603:22;;1634:33;1661:5;1634:33;:::i;:::-;1593:80;;;;:::o;1696:303::-;1767:5;1816:3;1809:4;1801:6;1797:17;1793:27;1783:2;;1834:1;1831;1824:12;1783:2;1874:6;1861:20;1899:94;1989:3;1981:6;1974:4;1966:6;1962:17;1899:94;:::i;:::-;1890:103;;1773:226;;;;;:::o;2005:133::-;2048:5;2086:6;2073:20;2064:29;;2102:30;2126:5;2102:30;:::i;:::-;2054:84;;;;:::o;2144:137::-;2189:5;2227:6;2214:20;2205:29;;2243:32;2269:5;2243:32;:::i;:::-;2195:86;;;;:::o;2287:141::-;2343:5;2374:6;2368:13;2359:22;;2390:32;2416:5;2390:32;:::i;:::-;2349:79;;;;:::o;2447:271::-;2502:5;2551:3;2544:4;2536:6;2532:17;2528:27;2518:2;;2569:1;2566;2559:12;2518:2;2609:6;2596:20;2634:78;2708:3;2700:6;2693:4;2685:6;2681:17;2634:78;:::i;:::-;2625:87;;2508:210;;;;;:::o;2738:273::-;2794:5;2843:3;2836:4;2828:6;2824:17;2820:27;2810:2;;2861:1;2858;2851:12;2810:2;2901:6;2888:20;2926:79;3001:3;2993:6;2986:4;2978:6;2974:17;2926:79;:::i;:::-;2917:88;;2800:211;;;;;:::o;3017:139::-;3063:5;3101:6;3088:20;3079:29;;3117:33;3144:5;3117:33;:::i;:::-;3069:87;;;;:::o;3162:262::-;3221:6;3270:2;3258:9;3249:7;3245:23;3241:32;3238:2;;;3286:1;3283;3276:12;3238:2;3329:1;3354:53;3399:7;3390:6;3379:9;3375:22;3354:53;:::i;:::-;3344:63;;3300:117;3228:196;;;;:::o;3430:284::-;3500:6;3549:2;3537:9;3528:7;3524:23;3520:32;3517:2;;;3565:1;3562;3555:12;3517:2;3608:1;3633:64;3689:7;3680:6;3669:9;3665:22;3633:64;:::i;:::-;3623:74;;3579:128;3507:207;;;;:::o;3720:407::-;3788:6;3796;3845:2;3833:9;3824:7;3820:23;3816:32;3813:2;;;3861:1;3858;3851:12;3813:2;3904:1;3929:53;3974:7;3965:6;3954:9;3950:22;3929:53;:::i;:::-;3919:63;;3875:117;4031:2;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4002:118;3803:324;;;;;:::o;4133:552::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:2;;;4291:1;4288;4281:12;4243:2;4334:1;4359:53;4404:7;4395:6;4384:9;4380:22;4359:53;:::i;:::-;4349:63;;4305:117;4461:2;4487:53;4532:7;4523:6;4512:9;4508:22;4487:53;:::i;:::-;4477:63;;4432:118;4589:2;4615:53;4660:7;4651:6;4640:9;4636:22;4615:53;:::i;:::-;4605:63;;4560:118;4233:452;;;;;:::o;4691:809::-;4786:6;4794;4802;4810;4859:3;4847:9;4838:7;4834:23;4830:33;4827:2;;;4876:1;4873;4866:12;4827:2;4919:1;4944:53;4989:7;4980:6;4969:9;4965:22;4944:53;:::i;:::-;4934:63;;4890:117;5046:2;5072:53;5117:7;5108:6;5097:9;5093:22;5072:53;:::i;:::-;5062:63;;5017:118;5174:2;5200:53;5245:7;5236:6;5225:9;5221:22;5200:53;:::i;:::-;5190:63;;5145:118;5330:2;5319:9;5315:18;5302:32;5361:18;5353:6;5350:30;5347:2;;;5393:1;5390;5383:12;5347:2;5421:62;5475:7;5466:6;5455:9;5451:22;5421:62;:::i;:::-;5411:72;;5273:220;4817:683;;;;;;;:::o;5506:401::-;5571:6;5579;5628:2;5616:9;5607:7;5603:23;5599:32;5596:2;;;5644:1;5641;5634:12;5596:2;5687:1;5712:53;5757:7;5748:6;5737:9;5733:22;5712:53;:::i;:::-;5702:63;;5658:117;5814:2;5840:50;5882:7;5873:6;5862:9;5858:22;5840:50;:::i;:::-;5830:60;;5785:115;5586:321;;;;;:::o;5913:407::-;5981:6;5989;6038:2;6026:9;6017:7;6013:23;6009:32;6006:2;;;6054:1;6051;6044:12;6006:2;6097:1;6122:53;6167:7;6158:6;6147:9;6143:22;6122:53;:::i;:::-;6112:63;;6068:117;6224:2;6250:53;6295:7;6286:6;6275:9;6271:22;6250:53;:::i;:::-;6240:63;;6195:118;5996:324;;;;;:::o;6326:405::-;6410:6;6459:2;6447:9;6438:7;6434:23;6430:32;6427:2;;;6475:1;6472;6465:12;6427:2;6546:1;6535:9;6531:17;6518:31;6576:18;6568:6;6565:30;6562:2;;;6608:1;6605;6598:12;6562:2;6636:78;6706:7;6697:6;6686:9;6682:22;6636:78;:::i;:::-;6626:88;;6489:235;6417:314;;;;:::o;6737:256::-;6793:6;6842:2;6830:9;6821:7;6817:23;6813:32;6810:2;;;6858:1;6855;6848:12;6810:2;6901:1;6926:50;6968:7;6959:6;6948:9;6944:22;6926:50;:::i;:::-;6916:60;;6872:114;6800:193;;;;:::o;6999:260::-;7057:6;7106:2;7094:9;7085:7;7081:23;7077:32;7074:2;;;7122:1;7119;7112:12;7074:2;7165:1;7190:52;7234:7;7225:6;7214:9;7210:22;7190:52;:::i;:::-;7180:62;;7136:116;7064:195;;;;:::o;7265:282::-;7334:6;7383:2;7371:9;7362:7;7358:23;7354:32;7351:2;;;7399:1;7396;7389:12;7351:2;7442:1;7467:63;7522:7;7513:6;7502:9;7498:22;7467:63;:::i;:::-;7457:73;;7413:127;7341:206;;;;:::o;7553:375::-;7622:6;7671:2;7659:9;7650:7;7646:23;7642:32;7639:2;;;7687:1;7684;7677:12;7639:2;7758:1;7747:9;7743:17;7730:31;7788:18;7780:6;7777:30;7774:2;;;7820:1;7817;7810:12;7774:2;7848:63;7903:7;7894:6;7883:9;7879:22;7848:63;:::i;:::-;7838:73;;7701:220;7629:299;;;;:::o;7934:262::-;7993:6;8042:2;8030:9;8021:7;8017:23;8013:32;8010:2;;;8058:1;8055;8048:12;8010:2;8101:1;8126:53;8171:7;8162:6;8151:9;8147:22;8126:53;:::i;:::-;8116:63;;8072:117;8000:196;;;;:::o;8202:118::-;8289:24;8307:5;8289:24;:::i;:::-;8284:3;8277:37;8267:53;;:::o;8326:109::-;8407:21;8422:5;8407:21;:::i;:::-;8402:3;8395:34;8385:50;;:::o;8441:360::-;8527:3;8555:38;8587:5;8555:38;:::i;:::-;8609:70;8672:6;8667:3;8609:70;:::i;:::-;8602:77;;8688:52;8733:6;8728:3;8721:4;8714:5;8710:16;8688:52;:::i;:::-;8765:29;8787:6;8765:29;:::i;:::-;8760:3;8756:39;8749:46;;8531:270;;;;;:::o;8807:364::-;8895:3;8923:39;8956:5;8923:39;:::i;:::-;8978:71;9042:6;9037:3;8978:71;:::i;:::-;8971:78;;9058:52;9103:6;9098:3;9091:4;9084:5;9080:16;9058:52;:::i;:::-;9135:29;9157:6;9135:29;:::i;:::-;9130:3;9126:39;9119:46;;8899:272;;;;;:::o;9177:377::-;9283:3;9311:39;9344:5;9311:39;:::i;:::-;9366:89;9448:6;9443:3;9366:89;:::i;:::-;9359:96;;9464:52;9509:6;9504:3;9497:4;9490:5;9486:16;9464:52;:::i;:::-;9541:6;9536:3;9532:16;9525:23;;9287:267;;;;;:::o;9560:366::-;9702:3;9723:67;9787:2;9782:3;9723:67;:::i;:::-;9716:74;;9799:93;9888:3;9799:93;:::i;:::-;9917:2;9912:3;9908:12;9901:19;;9706:220;;;:::o;9932:366::-;10074:3;10095:67;10159:2;10154:3;10095:67;:::i;:::-;10088:74;;10171:93;10260:3;10171:93;:::i;:::-;10289:2;10284:3;10280:12;10273:19;;10078:220;;;:::o;10304:366::-;10446:3;10467:67;10531:2;10526:3;10467:67;:::i;:::-;10460:74;;10543:93;10632:3;10543:93;:::i;:::-;10661:2;10656:3;10652:12;10645:19;;10450:220;;;:::o;10676:366::-;10818:3;10839:67;10903:2;10898:3;10839:67;:::i;:::-;10832:74;;10915:93;11004:3;10915:93;:::i;:::-;11033:2;11028:3;11024:12;11017:19;;10822:220;;;:::o;11048:366::-;11190:3;11211:67;11275:2;11270:3;11211:67;:::i;:::-;11204:74;;11287:93;11376:3;11287:93;:::i;:::-;11405:2;11400:3;11396:12;11389:19;;11194:220;;;:::o;11420:366::-;11562:3;11583:67;11647:2;11642:3;11583:67;:::i;:::-;11576:74;;11659:93;11748:3;11659:93;:::i;:::-;11777:2;11772:3;11768:12;11761:19;;11566:220;;;:::o;11792:366::-;11934:3;11955:67;12019:2;12014:3;11955:67;:::i;:::-;11948:74;;12031:93;12120:3;12031:93;:::i;:::-;12149:2;12144:3;12140:12;12133:19;;11938:220;;;:::o;12164:366::-;12306:3;12327:67;12391:2;12386:3;12327:67;:::i;:::-;12320:74;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12310:220;;;:::o;12536:366::-;12678:3;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12682:220;;;:::o;12908:366::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;13054:220;;;:::o;13280:366::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13426:220;;;:::o;13652:366::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13798:220;;;:::o;14024:366::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14170:220;;;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14542:220;;;:::o;14768:366::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14914:220;;;:::o;15140:366::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15286:220;;;:::o;15512:366::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15658:220;;;:::o;15884:366::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;16030:220;;;:::o;16256:118::-;16343:24;16361:5;16343:24;:::i;:::-;16338:3;16331:37;16321:53;;:::o;16380:435::-;16560:3;16582:95;16673:3;16664:6;16582:95;:::i;:::-;16575:102;;16694:95;16785:3;16776:6;16694:95;:::i;:::-;16687:102;;16806:3;16799:10;;16564:251;;;;;:::o;16821:222::-;16914:4;16952:2;16941:9;16937:18;16929:26;;16965:71;17033:1;17022:9;17018:17;17009:6;16965:71;:::i;:::-;16919:124;;;;:::o;17049:640::-;17244:4;17282:3;17271:9;17267:19;17259:27;;17296:71;17364:1;17353:9;17349:17;17340:6;17296:71;:::i;:::-;17377:72;17445:2;17434:9;17430:18;17421:6;17377:72;:::i;:::-;17459;17527:2;17516:9;17512:18;17503:6;17459:72;:::i;:::-;17578:9;17572:4;17568:20;17563:2;17552:9;17548:18;17541:48;17606:76;17677:4;17668:6;17606:76;:::i;:::-;17598:84;;17249:440;;;;;;;:::o;17695:210::-;17782:4;17820:2;17809:9;17805:18;17797:26;;17833:65;17895:1;17884:9;17880:17;17871:6;17833:65;:::i;:::-;17787:118;;;;:::o;17911:313::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:78;18212:4;18203:6;18139:78;:::i;:::-;18131:86;;18029:195;;;;:::o;18230:419::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18401:248;;;:::o;18655:419::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18826:248;;;:::o;19080:419::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19251:248;;;:::o;19505:419::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19676:248;;;:::o;19930:419::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;20101:248;;;:::o;20355:419::-;20521:4;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20526:248;;;:::o;20780:419::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20951:248;;;:::o;21205:419::-;21371:4;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21376:248;;;:::o;21630:419::-;21796:4;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21801:248;;;:::o;22055:419::-;22221:4;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22226:248;;;:::o;22480:419::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22651:248;;;:::o;22905:419::-;23071:4;23109:2;23098:9;23094:18;23086:26;;23158:9;23152:4;23148:20;23144:1;23133:9;23129:17;23122:47;23186:131;23312:4;23186:131;:::i;:::-;23178:139;;23076:248;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23501:248;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23926:248;;;:::o;24180:419::-;24346:4;24384:2;24373:9;24369:18;24361:26;;24433:9;24427:4;24423:20;24419:1;24408:9;24404:17;24397:47;24461:131;24587:4;24461:131;:::i;:::-;24453:139;;24351:248;;;:::o;24605:419::-;24771:4;24809:2;24798:9;24794:18;24786:26;;24858:9;24852:4;24848:20;24844:1;24833:9;24829:17;24822:47;24886:131;25012:4;24886:131;:::i;:::-;24878:139;;24776:248;;;:::o;25030:419::-;25196:4;25234:2;25223:9;25219:18;25211:26;;25283:9;25277:4;25273:20;25269:1;25258:9;25254:17;25247:47;25311:131;25437:4;25311:131;:::i;:::-;25303:139;;25201:248;;;:::o;25455:419::-;25621:4;25659:2;25648:9;25644:18;25636:26;;25708:9;25702:4;25698:20;25694:1;25683:9;25679:17;25672:47;25736:131;25862:4;25736:131;:::i;:::-;25728:139;;25626:248;;;:::o;25880:222::-;25973:4;26011:2;26000:9;25996:18;25988:26;;26024:71;26092:1;26081:9;26077:17;26068:6;26024:71;:::i;:::-;25978:124;;;;:::o;26108:129::-;26142:6;26169:20;;:::i;:::-;26159:30;;26198:33;26226:4;26218:6;26198:33;:::i;:::-;26149:88;;;:::o;26243:75::-;26276:6;26309:2;26303:9;26293:19;;26283:35;:::o;26324:311::-;26401:4;26491:18;26483:6;26480:30;26477:2;;;26513:18;;:::i;:::-;26477:2;26563:4;26555:6;26551:17;26543:25;;26623:4;26617;26613:15;26605:23;;26406:229;;;:::o;26641:307::-;26702:4;26792:18;26784:6;26781:30;26778:2;;;26814:18;;:::i;:::-;26778:2;26852:29;26874:6;26852:29;:::i;:::-;26844:37;;26936:4;26930;26926:15;26918:23;;26707:241;;;:::o;26954:308::-;27016:4;27106:18;27098:6;27095:30;27092:2;;;27128:18;;:::i;:::-;27092:2;27166:29;27188:6;27166:29;:::i;:::-;27158:37;;27250:4;27244;27240:15;27232:23;;27021:241;;;:::o;27268:98::-;27319:6;27353:5;27347:12;27337:22;;27326:40;;;:::o;27372:99::-;27424:6;27458:5;27452:12;27442:22;;27431:40;;;:::o;27477:168::-;27560:11;27594:6;27589:3;27582:19;27634:4;27629:3;27625:14;27610:29;;27572:73;;;;:::o;27651:169::-;27735:11;27769:6;27764:3;27757:19;27809:4;27804:3;27800:14;27785:29;;27747:73;;;;:::o;27826:148::-;27928:11;27965:3;27950:18;;27940:34;;;;:::o;27980:305::-;28020:3;28039:20;28057:1;28039:20;:::i;:::-;28034:25;;28073:20;28091:1;28073:20;:::i;:::-;28068:25;;28227:1;28159:66;28155:74;28152:1;28149:81;28146:2;;;28233:18;;:::i;:::-;28146:2;28277:1;28274;28270:9;28263:16;;28024:261;;;;:::o;28291:185::-;28331:1;28348:20;28366:1;28348:20;:::i;:::-;28343:25;;28382:20;28400:1;28382:20;:::i;:::-;28377:25;;28421:1;28411:2;;28426:18;;:::i;:::-;28411:2;28468:1;28465;28461:9;28456:14;;28333:143;;;;:::o;28482:191::-;28522:4;28542:20;28560:1;28542:20;:::i;:::-;28537:25;;28576:20;28594:1;28576:20;:::i;:::-;28571:25;;28615:1;28612;28609:8;28606:2;;;28620:18;;:::i;:::-;28606:2;28665:1;28662;28658:9;28650:17;;28527:146;;;;:::o;28679:96::-;28716:7;28745:24;28763:5;28745:24;:::i;:::-;28734:35;;28724:51;;;:::o;28781:90::-;28815:7;28858:5;28851:13;28844:21;28833:32;;28823:48;;;:::o;28877:149::-;28913:7;28953:66;28946:5;28942:78;28931:89;;28921:105;;;:::o;29032:126::-;29069:7;29109:42;29102:5;29098:54;29087:65;;29077:81;;;:::o;29164:77::-;29201:7;29230:5;29219:16;;29209:32;;;:::o;29247:154::-;29331:6;29326:3;29321;29308:30;29393:1;29384:6;29379:3;29375:16;29368:27;29298:103;;;:::o;29407:307::-;29475:1;29485:113;29499:6;29496:1;29493:13;29485:113;;;29584:1;29579:3;29575:11;29569:18;29565:1;29560:3;29556:11;29549:39;29521:2;29518:1;29514:10;29509:15;;29485:113;;;29616:6;29613:1;29610:13;29607:2;;;29696:1;29687:6;29682:3;29678:16;29671:27;29607:2;29456:258;;;;:::o;29720:320::-;29764:6;29801:1;29795:4;29791:12;29781:22;;29848:1;29842:4;29838:12;29869:18;29859:2;;29925:4;29917:6;29913:17;29903:27;;29859:2;29987;29979:6;29976:14;29956:18;29953:38;29950:2;;;30006:18;;:::i;:::-;29950:2;29771:269;;;;:::o;30046:281::-;30129:27;30151:4;30129:27;:::i;:::-;30121:6;30117:40;30259:6;30247:10;30244:22;30223:18;30211:10;30208:34;30205:62;30202:2;;;30270:18;;:::i;:::-;30202:2;30310:10;30306:2;30299:22;30089:238;;;:::o;30333:233::-;30372:3;30395:24;30413:5;30395:24;:::i;:::-;30386:33;;30441:66;30434:5;30431:77;30428:2;;;30511:18;;:::i;:::-;30428:2;30558:1;30551:5;30547:13;30540:20;;30376:190;;;:::o;30572:176::-;30604:1;30621:20;30639:1;30621:20;:::i;:::-;30616:25;;30655:20;30673:1;30655:20;:::i;:::-;30650:25;;30694:1;30684:2;;30699:18;;:::i;:::-;30684:2;30740:1;30737;30733:9;30728:14;;30606:142;;;;:::o;30754:180::-;30802:77;30799:1;30792:88;30899:4;30896:1;30889:15;30923:4;30920:1;30913:15;30940:180;30988:77;30985:1;30978:88;31085:4;31082:1;31075:15;31109:4;31106:1;31099:15;31126:180;31174:77;31171:1;31164:88;31271:4;31268:1;31261:15;31295:4;31292:1;31285:15;31312:180;31360:77;31357:1;31350:88;31457:4;31454:1;31447:15;31481:4;31478:1;31471:15;31498:102;31539:6;31590:2;31586:7;31581:2;31574:5;31570:14;31566:28;31556:38;;31546:54;;;:::o;31606:168::-;31746:20;31742:1;31734:6;31730:14;31723:44;31712:62;:::o;31780:237::-;31920:34;31916:1;31908:6;31904:14;31897:58;31989:20;31984:2;31976:6;31972:15;31965:45;31886:131;:::o;32023:225::-;32163:34;32159:1;32151:6;32147:14;32140:58;32232:8;32227:2;32219:6;32215:15;32208:33;32129:119;:::o;32254:224::-;32394:34;32390:1;32382:6;32378:14;32371:58;32463:7;32458:2;32450:6;32446:15;32439:32;32360:118;:::o;32484:178::-;32624:30;32620:1;32612:6;32608:14;32601:54;32590:72;:::o;32668:165::-;32808:17;32804:1;32796:6;32792:14;32785:41;32774:59;:::o;32839:223::-;32979:34;32975:1;32967:6;32963:14;32956:58;33048:6;33043:2;33035:6;33031:15;33024:31;32945:117;:::o;33068:175::-;33208:27;33204:1;33196:6;33192:14;33185:51;33174:69;:::o;33249:231::-;33389:34;33385:1;33377:6;33373:14;33366:58;33458:14;33453:2;33445:6;33441:15;33434:39;33355:125;:::o;33486:243::-;33626:34;33622:1;33614:6;33610:14;33603:58;33695:26;33690:2;33682:6;33678:15;33671:51;33592:137;:::o;33735:229::-;33875:34;33871:1;33863:6;33859:14;33852:58;33944:12;33939:2;33931:6;33927:15;33920:37;33841:123;:::o;33970:228::-;34110:34;34106:1;34098:6;34094:14;34087:58;34179:11;34174:2;34166:6;34162:15;34155:36;34076:122;:::o;34204:182::-;34344:34;34340:1;34332:6;34328:14;34321:58;34310:76;:::o;34392:231::-;34532:34;34528:1;34520:6;34516:14;34509:58;34601:14;34596:2;34588:6;34584:15;34577:39;34498:125;:::o;34629:182::-;34769:34;34765:1;34757:6;34753:14;34746:58;34735:76;:::o;34817:234::-;34957:34;34953:1;34945:6;34941:14;34934:58;35026:17;35021:2;35013:6;35009:15;35002:42;34923:128;:::o;35057:220::-;35197:34;35193:1;35185:6;35181:14;35174:58;35266:3;35261:2;35253:6;35249:15;35242:28;35163:114;:::o;35283:236::-;35423:34;35419:1;35411:6;35407:14;35400:58;35492:19;35487:2;35479:6;35475:15;35468:44;35389:130;:::o;35525:122::-;35598:24;35616:5;35598:24;:::i;:::-;35591:5;35588:35;35578:2;;35637:1;35634;35627:12;35578:2;35568:79;:::o;35653:116::-;35723:21;35738:5;35723:21;:::i;:::-;35716:5;35713:32;35703:2;;35759:1;35756;35749:12;35703:2;35693:76;:::o;35775:120::-;35847:23;35864:5;35847:23;:::i;:::-;35840:5;35837:34;35827:2;;35885:1;35882;35875:12;35827:2;35817:78;:::o;35901:122::-;35974:24;35992:5;35974:24;:::i;:::-;35967:5;35964:35;35954:2;;36013:1;36010;36003:12;35954:2;35944:79;:::o

Swarm Source

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