ETH Price: $3,308.70 (-3.24%)
Gas: 11 Gwei

Token

Code Green - Heal Pass (CGHP)
 

Overview

Max Total Supply

5,001 CGHP

Holders

4,456

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xabd4d2b15ed7c40a2a37a5c4eb4d204ba6f208dd
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:
CodeGreenHealPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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/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/ERC1155/IERC1155Receiver.sol


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

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: contracts/Code Green.sol


pragma solidity ^0.8.7;





contract CodeGreenHealPass is ERC1155Supply, Ownable, Pausable {
    using ECDSA for bytes32;

    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    uint256 public constant TOKEN_ID_1 = 1;
    uint256 public constant TOKEN_ID_2 = 2;
    uint256 public constant TOKEN_ID_3 = 3;
    uint256 public constant MAX_SUPPLY = 5000;

    bool public preSaleIsActive = false;
    bool public publicSaleIsActive = false;

    // Used to validate authorized mint addresses
    address private signerAddress = 0xabcB40408a94E94f563d64ded69A75a3098cBf59;

    // Used to ensure each new token id can only be minted once by the owner
    mapping (uint256 => bool) public collectionMinted;
    mapping (uint256 => string) public tokenURI;
    mapping (address => bool) public hasAddressMinted;

    constructor(
        string memory uriBase,
        string memory uri1,
        string memory uri2,
        string memory uri3,
        string memory _name,
        string memory _symbol
    ) ERC1155(uriBase) {
        name = _name;
        symbol = _symbol;
        tokenURI[TOKEN_ID_1] = uri1;
        tokenURI[TOKEN_ID_2] = uri2;
        tokenURI[TOKEN_ID_3] = uri3;
    }

    /**
     * @notice Prevent contract-to-contract calls
     */
    modifier originalUser() {
        require(
            msg.sender == tx.origin,
            "Must invoke directly from your wallet"
        );
        _;
    }

    /**
     * Returns the custom URI for each token id. Overrides the default ERC-1155 single URI.
     */
    function uri(uint256 tokenId) public view override returns (string memory) {
        // If no URI exists for the specific id requested, fallback to the default ERC-1155 URI.
        if (bytes(tokenURI[tokenId]).length == 0) {
            return super.uri(tokenId);
        }
        return tokenURI[tokenId];
    }

    /**
     * Sets a URI for a specific token id.
     */
    function setURI(string memory newTokenURI, uint256 tokenId) public onlyOwner {
        tokenURI[tokenId] = newTokenURI;
    }

    /**
     * Set the global default ERC-1155 base URI to be used for any tokens without unique URIs
     */
    function setGlobalURI(string memory newTokenURI) public onlyOwner {
        _setURI(newTokenURI);
    }

    function setPreSaleState(bool newState) public onlyOwner {
        require(preSaleIsActive != newState, "NEW_STATE_IDENTICAL_TO_OLD_STATE");
        preSaleIsActive = newState;
    }

    function setPublicSaleState(bool newState) public onlyOwner {
        require(publicSaleIsActive != newState, "NEW_STATE_IDENTICAL_TO_OLD_STATE");
        publicSaleIsActive = newState;
    }

    function setSignerAddress(address _signerAddress) external onlyOwner {
        require(_signerAddress != address(0));
        signerAddress = _signerAddress;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function verifyAddressSigner(bytes32 messageHash, bytes memory signature) private view returns (bool) {
        return signerAddress == messageHash.toEthSignedMessageHash().recover(signature);
    }

    function hashMessage(address sender) private pure returns (bytes32) {
        return keccak256(abi.encode(sender));
    }

    function determineMintId(uint256 nonce) private view returns (uint256) {
        bytes32 randomHash = keccak256(abi.encodePacked(block.timestamp, block.difficulty, blockhash(block.number - 1), nonce));
        if (randomHash[0] >= 0xF9) {
            return TOKEN_ID_2;
        } else {
            return TOKEN_ID_1;
        }
    }

    /**
     * @notice Allow minting of tokens by addresses authorized to mint in the presale only
     */
    function preSaleMint(bytes32 messageHash, bytes calldata signature) external originalUser {
        require(preSaleIsActive, "SALE_NOT_ACTIVE");
        require(hasAddressMinted[msg.sender] == false, "ADDRESS_HAS_ALREADY_MINTED");
        uint256 tokensMinted = totalSupply(TOKEN_ID_1) + totalSupply(TOKEN_ID_2) + totalSupply(TOKEN_ID_3);
        require(tokensMinted < MAX_SUPPLY, "MAX_TOKENS_MINTED");
        require(hashMessage(msg.sender) == messageHash, "MESSAGE_INVALID");
        require(verifyAddressSigner(messageHash, signature), "SIGNATURE_VALIDATION_FAILED");

        hasAddressMinted[msg.sender] = true;
        _mint(msg.sender, determineMintId(1), 1, "");
    }

    function mint() external originalUser {
        require(publicSaleIsActive, "SALE_NOT_ACTIVE");
        require(hasAddressMinted[msg.sender] == false, "ADDRESS_HAS_ALREADY_MINTED");
        uint256 tokensMinted = totalSupply(TOKEN_ID_1) + totalSupply(TOKEN_ID_2) + totalSupply(TOKEN_ID_3);
        require(tokensMinted < MAX_SUPPLY, "MAX_TOKENS_MINTED");

        hasAddressMinted[msg.sender] = true;
        _mint(msg.sender, determineMintId(1), 1, "");

        if (tokensMinted + 1 >= MAX_SUPPLY) {
            publicSaleIsActive = false;
        }
    }

    /**
     * @notice Allow minting of any future tokens as desired as part of the same collection,
     * which can then be transferred to another contract for distribution purposes
     */
    function adminMint(address account, uint256 id, uint256 amount) public onlyOwner
    {
        require(!collectionMinted[id], "CANNOT_MINT_EXISTING_TOKEN_ID");
        require(id != TOKEN_ID_1 && id != TOKEN_ID_2 && id != TOKEN_ID_3, "CANNOT_MINT_EXISTING_TOKEN_ID");
        collectionMinted[id] = true;
        _mint(account, id, amount, "");
    }

    /**
     * @notice Allow owner to send `mintNumber` tokens without cost to multiple addresses
     */
    function giftDeterministic(address[] calldata receivers, uint256 numberOfTokens, uint256 tokenId) external onlyOwner {
        require(tokenId == TOKEN_ID_1 || tokenId == TOKEN_ID_2 || tokenId == TOKEN_ID_3, "INVALID_TOKEN_ID");
        require(totalSupply(TOKEN_ID_1) + totalSupply(TOKEN_ID_2) + totalSupply(TOKEN_ID_3) + (receivers.length * numberOfTokens) <= MAX_SUPPLY, "MINT_TOO_LARGE");
        for (uint256 i = 0; i < receivers.length; i++) {
            _mint(receivers[i], tokenId, numberOfTokens, "");
        }
    }

    /**
     * @notice Allow owner to send `mintNumber` tokens without cost to multiple addresses
     */
    function giftRandom(address[] calldata receivers) external onlyOwner {
        require(totalSupply(TOKEN_ID_1) + totalSupply(TOKEN_ID_2) + totalSupply(TOKEN_ID_3) + receivers.length <= MAX_SUPPLY, "MINT_TOO_LARGE");
        for (uint256 i = 0; i < receivers.length; i++) {
            _mint(receivers[i], determineMintId(i), 1, "");
        }
    }

    /**
     * @notice Override ERC1155 such that zero amount token transfers are disallowed to prevent arbitrary creation of new tokens in the collection.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public override {
        require(amount > 0, "AMOUNT_CANNOT_BE_ZERO");
        return super.safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @notice When the contract is paused, all token transfers are prevented in case of emergency.
     */
    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uriBase","type":"string"},{"internalType":"string","name":"uri1","type":"string"},{"internalType":"string","name":"uri2","type":"string"},{"internalType":"string","name":"uri3","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ID_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ID_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ID_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"giftDeterministic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"giftRandom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasAddressMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newTokenURI","type":"string"}],"name":"setGlobalURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newTokenURI","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setURI","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":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

6080604052600780546001600160b01b03191675abcb40408a94e94f563d64ded69a75a3098cbf5900001790553480156200003957600080fd5b50604051620035d4380380620035d48339810160408190526200005c9162000341565b85620000688162000179565b50620000743362000192565b6004805460ff60a01b19169055815162000096906005906020850190620001e4565b508051620000ac906006906020840190620001e4565b506001600052600960209081528551620000ec917f92e85d02570a8092d09a6e3a57665bc3815a2699a4074001bf1ccabf660f5a369190880190620001e4565b5060026000526009602090815284516200012c917f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c39190870190620001e4565b5060036000526009602090815283516200016c917fc575c31fea594a6eb97c8e9d3f9caee4c16218c6ef37e923234c0fe9014a61e79190860190620001e4565b505050505050506200049b565b80516200018e906002906020840190620001e4565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f29062000448565b90600052602060002090601f01602090048101928262000216576000855562000261565b82601f106200023157805160ff191683800117855562000261565b8280016001018555821562000261579182015b828111156200026157825182559160200191906001019062000244565b506200026f92915062000273565b5090565b5b808211156200026f576000815560010162000274565b600082601f8301126200029c57600080fd5b81516001600160401b0380821115620002b957620002b962000485565b604051601f8301601f19908116603f01168101908282118183101715620002e457620002e462000485565b816040528381526020925086838588010111156200030157600080fd5b600091505b8382101562000325578582018301518183018401529082019062000306565b83821115620003375760008385830101525b9695505050505050565b60008060008060008060c087890312156200035b57600080fd5b86516001600160401b03808211156200037357600080fd5b620003818a838b016200028a565b975060208901519150808211156200039857600080fd5b620003a68a838b016200028a565b96506040890151915080821115620003bd57600080fd5b620003cb8a838b016200028a565b95506060890151915080821115620003e257600080fd5b620003f08a838b016200028a565b945060808901519150808211156200040757600080fd5b620004158a838b016200028a565b935060a08901519150808211156200042c57600080fd5b506200043b89828a016200028a565b9150509295509295509295565b600181811c908216806200045d57607f821691505b602082108114156200047f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61312980620004ab6000396000f3fe608060405234801561001057600080fd5b50600436106102255760003560e01c806367db3b8f11610130578063a22cb465116100b8578063d74230311161007c578063d742303114610488578063e985e9c5146104ab578063f242432a146104e7578063f2fde38b146104fa578063f86f3b391461050d57600080fd5b8063a22cb4651461040c578063bd85b0391461041f578063c15d0e211461043f578063c87b56dd14610452578063c94ccfc71461046557600080fd5b80638456cb59116100ff5780638456cb59146103bb57806387e2ba65146103c35780638da5cb5b146103d65780639293a5c7146103f157806395d89b411461040457600080fd5b806367db3b8f1461039057806367dde6d5146103a35780636ad9e4b5146103ab578063715018a6146103b357600080fd5b80631f0234d8116101b35780633f4ba83a116101825780633f4ba83a146103215780634e1273f4146103295780634f558e791461034957806352862de81461036b5780635c975abb1461037e57600080fd5b80631f0234d8146102e55780632eb2c2d6146102f257806332cb6b0c146103055780633ca6fb8c1461030e57600080fd5b806306fdde03116101fa57806306fdde031461029b5780630e89341c146102b05780630f73bcce146102c35780630fcf2e75146102cb5780631249c58b146102dd57600080fd5b80624a84cb1461022a578062fdd58e1461023f57806301ffc9a714610265578063046dc16614610288575b600080fd5b61023d6102383660046128c6565b610520565b005b61025261024d36600461289c565b610657565b6040519081526020015b60405180910390f35b610278610273366004612af0565b6106e9565b604051901515815260200161025c565b61023d610296366004612710565b61073b565b6102a36107a2565b60405161025c9190612d2f565b6102a36102be366004612baa565b610830565b610252600381565b60075461027890610100900460ff1681565b61023d6108fc565b6007546102789060ff1681565b61023d610300366004612765565b610ac1565b61025261138881565b61023d61031c366004612a5a565b610b58565b61023d610bee565b61033c61033736600461298a565b610c22565b60405161025c9190612cee565b610278610357366004612baa565b600090815260036020526040902054151590565b61023d61037936600461293a565b610d4b565b600454600160a01b900460ff16610278565b61023d61039e366004612b66565b610ed0565b610252600281565b610252600181565b61023d610f19565b61023d610f4d565b61023d6103d13660046128f9565b610f7f565b6004546040516001600160a01b03909116815260200161025c565b61023d6103ff366004612a5a565b611098565b6102a361113b565b61023d61041a366004612872565b611148565b61025261042d366004612baa565b60009081526003602052604090205490565b61023d61044d366004612b2a565b611157565b6102a3610460366004612baa565b61118a565b610278610473366004612710565b600a6020526000908152604090205460ff1681565b610278610496366004612baa565b60086020526000908152604090205460ff1681565b6102786104b9366004612732565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61023d6104f536600461280e565b6111a3565b61023d610508366004612710565b6111f8565b61023d61051b366004612a75565b611290565b6004546001600160a01b031633146105535760405162461bcd60e51b815260040161054a90612e5e565b60405180910390fd5b60008281526008602052604090205460ff16156105b25760405162461bcd60e51b815260206004820152601d60248201527f43414e4e4f545f4d494e545f4558495354494e475f544f4b454e5f4944000000604482015260640161054a565b600182141580156105c4575060028214155b80156105d1575060038214155b61061d5760405162461bcd60e51b815260206004820152601d60248201527f43414e4e4f545f4d494e545f4558495354494e475f544f4b454e5f4944000000604482015260640161054a565b6000828152600860209081526040808320805460ff1916600117905580519182019052908152610652908490849084906114f2565b505050565b60006001600160a01b0383166106c35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161054a565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071a57506001600160e01b031982166303a24d0760e21b145b8061073557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146107655760405162461bcd60e51b815260040161054a90612e5e565b6001600160a01b03811661077857600080fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600580546107af90612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90612f04565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b505050505081565b600081815260096020526040902080546060919061084d90612f04565b1515905061085e5761073582611615565b6000828152600960205260409020805461087790612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390612f04565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b50505050509050919050565b33321461091b5760405162461bcd60e51b815260040161054a90612d8a565b600754610100900460ff166109645760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161054a565b336000908152600a602052604090205460ff16156109c45760405162461bcd60e51b815260206004820152601a60248201527f414444524553535f4841535f414c52454144595f4d494e544544000000000000604482015260640161054a565b60036020526000805160206130d48339815191525460008051602061309483398151915254600160009081526000805160206130b483398151915254909291610a0c91612eb6565b610a169190612eb6565b90506113888110610a5d5760405162461bcd60e51b815260206004820152601160248201527013505617d513d2d15394d7d35253951151607a1b604482015260640161054a565b336000818152600a60205260409020805460ff19166001908117909155610a9f9190610a8890611624565b6001604051806020016040528060008152506114f2565b611388610aad826001612eb6565b10610abe576007805461ff00191690555b50565b6001600160a01b038516331480610add5750610add85336104b9565b610b445760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161054a565b610b5185858585856116a3565b5050505050565b6004546001600160a01b03163314610b825760405162461bcd60e51b815260040161054a90612e5e565b60075460ff1615158115151415610bdb5760405162461bcd60e51b815260206004820181905260248201527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604482015260640161054a565b6007805460ff1916911515919091179055565b6004546001600160a01b03163314610c185760405162461bcd60e51b815260040161054a90612e5e565b610c2061188e565b565b60608151835114610c875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161054a565b600083516001600160401b03811115610ca257610ca2612fc2565b604051908082528060200260200182016040528015610ccb578160200160208202803683370190505b50905060005b8451811015610d4357610d16858281518110610cef57610cef612fac565b6020026020010151858381518110610d0957610d09612fac565b6020026020010151610657565b828281518110610d2857610d28612fac565b6020908102919091010152610d3c81612f65565b9050610cd1565b509392505050565b6004546001600160a01b03163314610d755760405162461bcd60e51b815260040161054a90612e5e565b6001811480610d845750600281145b80610d8f5750600381145b610dce5760405162461bcd60e51b815260206004820152601060248201526f1253959053125117d513d2d15397d25160821b604482015260640161054a565b611388610ddb8385612ece565b60036020526000805160206130d4833981519152546000805160206130948339815191525460016000526000805160206130b483398151915254610e1f9190612eb6565b610e299190612eb6565b610e339190612eb6565b1115610e725760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b604482015260640161054a565b60005b83811015610b5157610ebe858583818110610e9257610e92612fac565b9050602002016020810190610ea79190612710565b8385604051806020016040528060008152506114f2565b80610ec881612f65565b915050610e75565b6004546001600160a01b03163314610efa5760405162461bcd60e51b815260040161054a90612e5e565b600081815260096020908152604090912083516106529285019061251d565b6004546001600160a01b03163314610f435760405162461bcd60e51b815260040161054a90612e5e565b610c20600061192b565b6004546001600160a01b03163314610f775760405162461bcd60e51b815260040161054a90612e5e565b610c2061197d565b6004546001600160a01b03163314610fa95760405162461bcd60e51b815260040161054a90612e5e565b60036020526000805160206130d4833981519152546000805160206130948339815191525460016000526000805160206130b4833981519152546113889284929091610ff59190612eb6565b610fff9190612eb6565b6110099190612eb6565b11156110485760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b604482015260640161054a565b60005b818110156106525761108683838381811061106857611068612fac565b905060200201602081019061107d9190612710565b610a8883611624565b8061109081612f65565b91505061104b565b6004546001600160a01b031633146110c25760405162461bcd60e51b815260040161054a90612e5e565b60075460ff61010090910416151581151514156111215760405162461bcd60e51b815260206004820181905260248201527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604482015260640161054a565b600780549115156101000261ff0019909216919091179055565b600680546107af90612f04565b611153338383611a05565b5050565b6004546001600160a01b031633146111815760405162461bcd60e51b815260040161054a90612e5e565b610abe81611ae6565b600960205260009081526040902080546107af90612f04565b600082116111eb5760405162461bcd60e51b8152602060048201526015602482015274414d4f554e545f43414e4e4f545f42455f5a45524f60581b604482015260640161054a565b610b518585858585611af9565b6004546001600160a01b031633146112225760405162461bcd60e51b815260040161054a90612e5e565b6001600160a01b0381166112875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054a565b610abe8161192b565b3332146112af5760405162461bcd60e51b815260040161054a90612d8a565b60075460ff166112f35760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161054a565b336000908152600a602052604090205460ff16156113535760405162461bcd60e51b815260206004820152601a60248201527f414444524553535f4841535f414c52454144595f4d494e544544000000000000604482015260640161054a565b60036020526000805160206130d48339815191525460008051602061309483398151915254600160009081526000805160206130b48339815191525490929161139b91612eb6565b6113a59190612eb6565b905061138881106113ec5760405162461bcd60e51b815260206004820152601160248201527013505617d513d2d15394d7d35253951151607a1b604482015260640161054a565b836113f633611b80565b146114355760405162461bcd60e51b815260206004820152600f60248201526e135154d4d051d157d2539590531251608a1b604482015260640161054a565b6114758484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611bb592505050565b6114c15760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604482015260640161054a565b336000818152600a60205260409020805460ff191660019081179091556114ec9190610a8890611624565b50505050565b6001600160a01b0384166115525760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161054a565b33600061155e85611be9565b9050600061156b85611be9565b905061157c83600089858589611c34565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906115ac908490612eb6565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461160c83600089898989611c8f565b50505050505050565b60606002805461087790612f04565b6000804244611634600143612eed565b6040805160208101949094528301919091524060608201526080810184905260a00160408051601f198184030181529190528051602090910120905060f960f81b8160001a60f81b6001600160f81b031916106116945750600292915050565b50600192915050565b50919050565b81518351146117055760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161054a565b6001600160a01b03841661172b5760405162461bcd60e51b815260040161054a90612dcf565b3361173a818787878787611c34565b60005b845181101561182057600085828151811061175a5761175a612fac565b60200260200101519050600085838151811061177857611778612fac565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117c85760405162461bcd60e51b815260040161054a90612e14565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611805908490612eb6565b925050819055505050508061181990612f65565b905061173d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611870929190612d01565b60405180910390a4611886818787878787611dfa565b505050505050565b600454600160a01b900460ff166118de5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161054a565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff16156119ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161054a565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861190e3390565b816001600160a01b0316836001600160a01b03161415611a795760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161054a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b805161115390600290602084019061251d565b6001600160a01b038516331480611b155750611b1585336104b9565b611b735760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161054a565b610b518585858585611ec4565b604080516001600160a01b0383166020820152600091015b604051602081830303815290604052805190602001209050919050565b6000611bca82611bc485611ffc565b90612037565b6007546201000090046001600160a01b03908116911614905092915050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c2357611c23612fac565b602090810291909101015292915050565b600454600160a01b900460ff1615611c815760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161054a565b611886868686868686612053565b6001600160a01b0384163b156118865760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611cd39089908990889088908890600401612ca9565b602060405180830381600087803b158015611ced57600080fd5b505af1925050508015611d1d575060408051601f3d908101601f19168201909252611d1a91810190612b0d565b60015b611dca57611d29612fd8565b806308c379a01415611d635750611d3e612ff4565b80611d495750611d65565b8060405162461bcd60e51b815260040161054a9190612d2f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161054a565b6001600160e01b0319811663f23a6e6160e01b1461160c5760405162461bcd60e51b815260040161054a90612d42565b6001600160a01b0384163b156118865760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e3e9089908990889088908890600401612c4b565b602060405180830381600087803b158015611e5857600080fd5b505af1925050508015611e88575060408051601f3d908101601f19168201909252611e8591810190612b0d565b60015b611e9457611d29612fd8565b6001600160e01b0319811663bc197c8160e01b1461160c5760405162461bcd60e51b815260040161054a90612d42565b6001600160a01b038416611eea5760405162461bcd60e51b815260040161054a90612dcf565b336000611ef685611be9565b90506000611f0385611be9565b9050611f13838989858589611c34565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611f545760405162461bcd60e51b815260040161054a90612e14565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611f91908490612eb6565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611ff1848a8a8a8a8a611c8f565b505050505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01611b98565b600080600061204685856121cc565b91509150610d438161223c565b6001600160a01b0385166120da5760005b83518110156120d85782818151811061207f5761207f612fac565b60200260200101516003600086848151811061209d5761209d612fac565b6020026020010151815260200190815260200160002060008282546120c29190612eb6565b909155506120d1905081612f65565b9050612064565b505b6001600160a01b0384166118865760005b835181101561160c57600084828151811061210857612108612fac565b60200260200101519050600084838151811061212657612126612fac565b60200260200101519050600060036000848152602001908152602001600020549050818110156121a95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b606482015260840161054a565b600092835260036020526040909220910390556121c581612f65565b90506120eb565b6000808251604114156122035760208301516040840151606085015160001a6121f7878285856123f7565b94509450505050612235565b82516040141561222d57602083015160408401516122228683836124e4565b935093505050612235565b506000905060025b9250929050565b600081600481111561225057612250612f96565b14156122595750565b600181600481111561226d5761226d612f96565b14156122bb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161054a565b60028160048111156122cf576122cf612f96565b141561231d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161054a565b600381600481111561233157612331612f96565b141561238a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161054a565b600481600481111561239e5761239e612f96565b1415610abe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161054a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561242e57506000905060036124db565b8460ff16601b1415801561244657508460ff16601c14155b1561245757506000905060046124db565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156124ab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124d4576000600192509250506124db565b9150600090505b94509492505050565b6000806001600160ff1b0383168161250160ff86901c601b612eb6565b905061250f878288856123f7565b935093505050935093915050565b82805461252990612f04565b90600052602060002090601f01602090048101928261254b5760008555612591565b82601f1061256457805160ff1916838001178555612591565b82800160010185558215612591579182015b82811115612591578251825591602001919060010190612576565b5061259d9291506125a1565b5090565b5b8082111561259d57600081556001016125a2565b80356001600160a01b03811681146125cd57600080fd5b919050565b60008083601f8401126125e457600080fd5b5081356001600160401b038111156125fb57600080fd5b6020830191508360208260051b850101111561223557600080fd5b600082601f83011261262757600080fd5b8135602061263482612e93565b6040516126418282612f39565b8381528281019150858301600585901b8701840188101561266157600080fd5b60005b8581101561268057813584529284019290840190600101612664565b5090979650505050505050565b803580151581146125cd57600080fd5b600082601f8301126126ae57600080fd5b81356001600160401b038111156126c7576126c7612fc2565b6040516126de601f8301601f191660200182612f39565b8181528460208386010111156126f357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561272257600080fd5b61272b826125b6565b9392505050565b6000806040838503121561274557600080fd5b61274e836125b6565b915061275c602084016125b6565b90509250929050565b600080600080600060a0868803121561277d57600080fd5b612786866125b6565b9450612794602087016125b6565b935060408601356001600160401b03808211156127b057600080fd5b6127bc89838a01612616565b945060608801359150808211156127d257600080fd5b6127de89838a01612616565b935060808801359150808211156127f457600080fd5b506128018882890161269d565b9150509295509295909350565b600080600080600060a0868803121561282657600080fd5b61282f866125b6565b945061283d602087016125b6565b9350604086013592506060860135915060808601356001600160401b0381111561286657600080fd5b6128018882890161269d565b6000806040838503121561288557600080fd5b61288e836125b6565b915061275c6020840161268d565b600080604083850312156128af57600080fd5b6128b8836125b6565b946020939093013593505050565b6000806000606084860312156128db57600080fd5b6128e4846125b6565b95602085013595506040909401359392505050565b6000806020838503121561290c57600080fd5b82356001600160401b0381111561292257600080fd5b61292e858286016125d2565b90969095509350505050565b6000806000806060858703121561295057600080fd5b84356001600160401b0381111561296657600080fd5b612972878288016125d2565b90989097506020870135966040013595509350505050565b6000806040838503121561299d57600080fd5b82356001600160401b03808211156129b457600080fd5b818501915085601f8301126129c857600080fd5b813560206129d582612e93565b6040516129e28282612f39565b8381528281019150858301600585901b870184018b1015612a0257600080fd5b600096505b84871015612a2c57612a18816125b6565b835260019690960195918301918301612a07565b5096505086013592505080821115612a4357600080fd5b50612a5085828601612616565b9150509250929050565b600060208284031215612a6c57600080fd5b61272b8261268d565b600080600060408486031215612a8a57600080fd5b8335925060208401356001600160401b0380821115612aa857600080fd5b818601915086601f830112612abc57600080fd5b813581811115612acb57600080fd5b876020828501011115612add57600080fd5b6020830194508093505050509250925092565b600060208284031215612b0257600080fd5b813561272b8161307d565b600060208284031215612b1f57600080fd5b815161272b8161307d565b600060208284031215612b3c57600080fd5b81356001600160401b03811115612b5257600080fd5b612b5e8482850161269d565b949350505050565b60008060408385031215612b7957600080fd5b82356001600160401b03811115612b8f57600080fd5b612b9b8582860161269d565b95602094909401359450505050565b600060208284031215612bbc57600080fd5b5035919050565b600081518084526020808501945080840160005b83811015612bf357815187529582019590820190600101612bd7565b509495945050505050565b6000815180845260005b81811015612c2457602081850181015186830182015201612c08565b81811115612c36576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090612c7790830186612bc3565b8281036060840152612c898186612bc3565b90508281036080840152612c9d8185612bfe565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ce390830184612bfe565b979650505050505050565b60208152600061272b6020830184612bc3565b604081526000612d146040830185612bc3565b8281036020840152612d268185612bc3565b95945050505050565b60208152600061272b6020830184612bfe565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f4d75737420696e766f6b65206469726563746c792066726f6d20796f75722077604082015264185b1b195d60da1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001600160401b03821115612eac57612eac612fc2565b5060051b60200190565b60008219821115612ec957612ec9612f80565b500190565b6000816000190483118215151615612ee857612ee8612f80565b500290565b600082821015612eff57612eff612f80565b500390565b600181811c90821680612f1857607f821691505b6020821081141561169d57634e487b7160e01b600052602260045260246000fd5b601f8201601f191681016001600160401b0381118282101715612f5e57612f5e612fc2565b6040525050565b6000600019821415612f7957612f79612f80565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612ff15760046000803e5060005160e01c5b90565b600060443d10156130025790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561303157505050505090565b82850191508151818111156130495750505050505090565b843d87010160208285010111156130635750505050505090565b61307260208286010187612f39565b509095945050505050565b6001600160e01b031981168114610abe57600080fdfec3a24b0501bd2c13a7e57f2db4369ec4c223447539fc0724a9d55ac4a06ebd4da15bc60c955c405d20d9149c709e2460f1c2d9a497496a7f46004d1772c3054ccbc4e5fb02c3d1de23a9f1e014b4d2ee5aeaea9505df5e855c9210bf472495afa2646970667358221220a35fbf0c6fb8ae07ff872d2b69ffda536257517d4e80a0ec3013c126a16d468564736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000004c697066733a2f2f62616679626569667563776e62727a3779766873643779616d636779616c6c68717a36776d616370696971707477636a7870353635346a736c64712f7b69647d2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569653378796f75786b72356862667a35683632347a7063737963346862776f7479766a777a737275633777656171623674797a71610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b7265696170636a706e6c77706d766733696b6e6d79776636337a366b616c3276327a62363566636b676a77736a3273737971797534616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569686933796c6261377078373374786b656c7169756834747175736d3467687772647135686e6b677a7037677465796169676b70690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016436f646520477265656e202d204865616c20506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000044347485000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102255760003560e01c806367db3b8f11610130578063a22cb465116100b8578063d74230311161007c578063d742303114610488578063e985e9c5146104ab578063f242432a146104e7578063f2fde38b146104fa578063f86f3b391461050d57600080fd5b8063a22cb4651461040c578063bd85b0391461041f578063c15d0e211461043f578063c87b56dd14610452578063c94ccfc71461046557600080fd5b80638456cb59116100ff5780638456cb59146103bb57806387e2ba65146103c35780638da5cb5b146103d65780639293a5c7146103f157806395d89b411461040457600080fd5b806367db3b8f1461039057806367dde6d5146103a35780636ad9e4b5146103ab578063715018a6146103b357600080fd5b80631f0234d8116101b35780633f4ba83a116101825780633f4ba83a146103215780634e1273f4146103295780634f558e791461034957806352862de81461036b5780635c975abb1461037e57600080fd5b80631f0234d8146102e55780632eb2c2d6146102f257806332cb6b0c146103055780633ca6fb8c1461030e57600080fd5b806306fdde03116101fa57806306fdde031461029b5780630e89341c146102b05780630f73bcce146102c35780630fcf2e75146102cb5780631249c58b146102dd57600080fd5b80624a84cb1461022a578062fdd58e1461023f57806301ffc9a714610265578063046dc16614610288575b600080fd5b61023d6102383660046128c6565b610520565b005b61025261024d36600461289c565b610657565b6040519081526020015b60405180910390f35b610278610273366004612af0565b6106e9565b604051901515815260200161025c565b61023d610296366004612710565b61073b565b6102a36107a2565b60405161025c9190612d2f565b6102a36102be366004612baa565b610830565b610252600381565b60075461027890610100900460ff1681565b61023d6108fc565b6007546102789060ff1681565b61023d610300366004612765565b610ac1565b61025261138881565b61023d61031c366004612a5a565b610b58565b61023d610bee565b61033c61033736600461298a565b610c22565b60405161025c9190612cee565b610278610357366004612baa565b600090815260036020526040902054151590565b61023d61037936600461293a565b610d4b565b600454600160a01b900460ff16610278565b61023d61039e366004612b66565b610ed0565b610252600281565b610252600181565b61023d610f19565b61023d610f4d565b61023d6103d13660046128f9565b610f7f565b6004546040516001600160a01b03909116815260200161025c565b61023d6103ff366004612a5a565b611098565b6102a361113b565b61023d61041a366004612872565b611148565b61025261042d366004612baa565b60009081526003602052604090205490565b61023d61044d366004612b2a565b611157565b6102a3610460366004612baa565b61118a565b610278610473366004612710565b600a6020526000908152604090205460ff1681565b610278610496366004612baa565b60086020526000908152604090205460ff1681565b6102786104b9366004612732565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61023d6104f536600461280e565b6111a3565b61023d610508366004612710565b6111f8565b61023d61051b366004612a75565b611290565b6004546001600160a01b031633146105535760405162461bcd60e51b815260040161054a90612e5e565b60405180910390fd5b60008281526008602052604090205460ff16156105b25760405162461bcd60e51b815260206004820152601d60248201527f43414e4e4f545f4d494e545f4558495354494e475f544f4b454e5f4944000000604482015260640161054a565b600182141580156105c4575060028214155b80156105d1575060038214155b61061d5760405162461bcd60e51b815260206004820152601d60248201527f43414e4e4f545f4d494e545f4558495354494e475f544f4b454e5f4944000000604482015260640161054a565b6000828152600860209081526040808320805460ff1916600117905580519182019052908152610652908490849084906114f2565b505050565b60006001600160a01b0383166106c35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161054a565b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061071a57506001600160e01b031982166303a24d0760e21b145b8061073557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146107655760405162461bcd60e51b815260040161054a90612e5e565b6001600160a01b03811661077857600080fd5b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600580546107af90612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90612f04565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b505050505081565b600081815260096020526040902080546060919061084d90612f04565b1515905061085e5761073582611615565b6000828152600960205260409020805461087790612f04565b80601f01602080910402602001604051908101604052809291908181526020018280546108a390612f04565b80156108f05780601f106108c5576101008083540402835291602001916108f0565b820191906000526020600020905b8154815290600101906020018083116108d357829003601f168201915b50505050509050919050565b33321461091b5760405162461bcd60e51b815260040161054a90612d8a565b600754610100900460ff166109645760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161054a565b336000908152600a602052604090205460ff16156109c45760405162461bcd60e51b815260206004820152601a60248201527f414444524553535f4841535f414c52454144595f4d494e544544000000000000604482015260640161054a565b60036020526000805160206130d48339815191525460008051602061309483398151915254600160009081526000805160206130b483398151915254909291610a0c91612eb6565b610a169190612eb6565b90506113888110610a5d5760405162461bcd60e51b815260206004820152601160248201527013505617d513d2d15394d7d35253951151607a1b604482015260640161054a565b336000818152600a60205260409020805460ff19166001908117909155610a9f9190610a8890611624565b6001604051806020016040528060008152506114f2565b611388610aad826001612eb6565b10610abe576007805461ff00191690555b50565b6001600160a01b038516331480610add5750610add85336104b9565b610b445760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161054a565b610b5185858585856116a3565b5050505050565b6004546001600160a01b03163314610b825760405162461bcd60e51b815260040161054a90612e5e565b60075460ff1615158115151415610bdb5760405162461bcd60e51b815260206004820181905260248201527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604482015260640161054a565b6007805460ff1916911515919091179055565b6004546001600160a01b03163314610c185760405162461bcd60e51b815260040161054a90612e5e565b610c2061188e565b565b60608151835114610c875760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161054a565b600083516001600160401b03811115610ca257610ca2612fc2565b604051908082528060200260200182016040528015610ccb578160200160208202803683370190505b50905060005b8451811015610d4357610d16858281518110610cef57610cef612fac565b6020026020010151858381518110610d0957610d09612fac565b6020026020010151610657565b828281518110610d2857610d28612fac565b6020908102919091010152610d3c81612f65565b9050610cd1565b509392505050565b6004546001600160a01b03163314610d755760405162461bcd60e51b815260040161054a90612e5e565b6001811480610d845750600281145b80610d8f5750600381145b610dce5760405162461bcd60e51b815260206004820152601060248201526f1253959053125117d513d2d15397d25160821b604482015260640161054a565b611388610ddb8385612ece565b60036020526000805160206130d4833981519152546000805160206130948339815191525460016000526000805160206130b483398151915254610e1f9190612eb6565b610e299190612eb6565b610e339190612eb6565b1115610e725760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b604482015260640161054a565b60005b83811015610b5157610ebe858583818110610e9257610e92612fac565b9050602002016020810190610ea79190612710565b8385604051806020016040528060008152506114f2565b80610ec881612f65565b915050610e75565b6004546001600160a01b03163314610efa5760405162461bcd60e51b815260040161054a90612e5e565b600081815260096020908152604090912083516106529285019061251d565b6004546001600160a01b03163314610f435760405162461bcd60e51b815260040161054a90612e5e565b610c20600061192b565b6004546001600160a01b03163314610f775760405162461bcd60e51b815260040161054a90612e5e565b610c2061197d565b6004546001600160a01b03163314610fa95760405162461bcd60e51b815260040161054a90612e5e565b60036020526000805160206130d4833981519152546000805160206130948339815191525460016000526000805160206130b4833981519152546113889284929091610ff59190612eb6565b610fff9190612eb6565b6110099190612eb6565b11156110485760405162461bcd60e51b815260206004820152600e60248201526d4d494e545f544f4f5f4c4152474560901b604482015260640161054a565b60005b818110156106525761108683838381811061106857611068612fac565b905060200201602081019061107d9190612710565b610a8883611624565b8061109081612f65565b91505061104b565b6004546001600160a01b031633146110c25760405162461bcd60e51b815260040161054a90612e5e565b60075460ff61010090910416151581151514156111215760405162461bcd60e51b815260206004820181905260248201527f4e45575f53544154455f4944454e544943414c5f544f5f4f4c445f5354415445604482015260640161054a565b600780549115156101000261ff0019909216919091179055565b600680546107af90612f04565b611153338383611a05565b5050565b6004546001600160a01b031633146111815760405162461bcd60e51b815260040161054a90612e5e565b610abe81611ae6565b600960205260009081526040902080546107af90612f04565b600082116111eb5760405162461bcd60e51b8152602060048201526015602482015274414d4f554e545f43414e4e4f545f42455f5a45524f60581b604482015260640161054a565b610b518585858585611af9565b6004546001600160a01b031633146112225760405162461bcd60e51b815260040161054a90612e5e565b6001600160a01b0381166112875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054a565b610abe8161192b565b3332146112af5760405162461bcd60e51b815260040161054a90612d8a565b60075460ff166112f35760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161054a565b336000908152600a602052604090205460ff16156113535760405162461bcd60e51b815260206004820152601a60248201527f414444524553535f4841535f414c52454144595f4d494e544544000000000000604482015260640161054a565b60036020526000805160206130d48339815191525460008051602061309483398151915254600160009081526000805160206130b48339815191525490929161139b91612eb6565b6113a59190612eb6565b905061138881106113ec5760405162461bcd60e51b815260206004820152601160248201527013505617d513d2d15394d7d35253951151607a1b604482015260640161054a565b836113f633611b80565b146114355760405162461bcd60e51b815260206004820152600f60248201526e135154d4d051d157d2539590531251608a1b604482015260640161054a565b6114758484848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611bb592505050565b6114c15760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c45440000000000604482015260640161054a565b336000818152600a60205260409020805460ff191660019081179091556114ec9190610a8890611624565b50505050565b6001600160a01b0384166115525760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161054a565b33600061155e85611be9565b9050600061156b85611be9565b905061157c83600089858589611c34565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906115ac908490612eb6565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461160c83600089898989611c8f565b50505050505050565b60606002805461087790612f04565b6000804244611634600143612eed565b6040805160208101949094528301919091524060608201526080810184905260a00160408051601f198184030181529190528051602090910120905060f960f81b8160001a60f81b6001600160f81b031916106116945750600292915050565b50600192915050565b50919050565b81518351146117055760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161054a565b6001600160a01b03841661172b5760405162461bcd60e51b815260040161054a90612dcf565b3361173a818787878787611c34565b60005b845181101561182057600085828151811061175a5761175a612fac565b60200260200101519050600085838151811061177857611778612fac565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156117c85760405162461bcd60e51b815260040161054a90612e14565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611805908490612eb6565b925050819055505050508061181990612f65565b905061173d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611870929190612d01565b60405180910390a4611886818787878787611dfa565b505050505050565b600454600160a01b900460ff166118de5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161054a565b6004805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600454600160a01b900460ff16156119ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161054a565b6004805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861190e3390565b816001600160a01b0316836001600160a01b03161415611a795760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161054a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b805161115390600290602084019061251d565b6001600160a01b038516331480611b155750611b1585336104b9565b611b735760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b606482015260840161054a565b610b518585858585611ec4565b604080516001600160a01b0383166020820152600091015b604051602081830303815290604052805190602001209050919050565b6000611bca82611bc485611ffc565b90612037565b6007546201000090046001600160a01b03908116911614905092915050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c2357611c23612fac565b602090810291909101015292915050565b600454600160a01b900460ff1615611c815760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161054a565b611886868686868686612053565b6001600160a01b0384163b156118865760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611cd39089908990889088908890600401612ca9565b602060405180830381600087803b158015611ced57600080fd5b505af1925050508015611d1d575060408051601f3d908101601f19168201909252611d1a91810190612b0d565b60015b611dca57611d29612fd8565b806308c379a01415611d635750611d3e612ff4565b80611d495750611d65565b8060405162461bcd60e51b815260040161054a9190612d2f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161054a565b6001600160e01b0319811663f23a6e6160e01b1461160c5760405162461bcd60e51b815260040161054a90612d42565b6001600160a01b0384163b156118865760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611e3e9089908990889088908890600401612c4b565b602060405180830381600087803b158015611e5857600080fd5b505af1925050508015611e88575060408051601f3d908101601f19168201909252611e8591810190612b0d565b60015b611e9457611d29612fd8565b6001600160e01b0319811663bc197c8160e01b1461160c5760405162461bcd60e51b815260040161054a90612d42565b6001600160a01b038416611eea5760405162461bcd60e51b815260040161054a90612dcf565b336000611ef685611be9565b90506000611f0385611be9565b9050611f13838989858589611c34565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015611f545760405162461bcd60e51b815260040161054a90612e14565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611f91908490612eb6565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611ff1848a8a8a8a8a611c8f565b505050505050505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01611b98565b600080600061204685856121cc565b91509150610d438161223c565b6001600160a01b0385166120da5760005b83518110156120d85782818151811061207f5761207f612fac565b60200260200101516003600086848151811061209d5761209d612fac565b6020026020010151815260200190815260200160002060008282546120c29190612eb6565b909155506120d1905081612f65565b9050612064565b505b6001600160a01b0384166118865760005b835181101561160c57600084828151811061210857612108612fac565b60200260200101519050600084838151811061212657612126612fac565b60200260200101519050600060036000848152602001908152602001600020549050818110156121a95760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b606482015260840161054a565b600092835260036020526040909220910390556121c581612f65565b90506120eb565b6000808251604114156122035760208301516040840151606085015160001a6121f7878285856123f7565b94509450505050612235565b82516040141561222d57602083015160408401516122228683836124e4565b935093505050612235565b506000905060025b9250929050565b600081600481111561225057612250612f96565b14156122595750565b600181600481111561226d5761226d612f96565b14156122bb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161054a565b60028160048111156122cf576122cf612f96565b141561231d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161054a565b600381600481111561233157612331612f96565b141561238a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161054a565b600481600481111561239e5761239e612f96565b1415610abe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161054a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561242e57506000905060036124db565b8460ff16601b1415801561244657508460ff16601c14155b1561245757506000905060046124db565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156124ab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166124d4576000600192509250506124db565b9150600090505b94509492505050565b6000806001600160ff1b0383168161250160ff86901c601b612eb6565b905061250f878288856123f7565b935093505050935093915050565b82805461252990612f04565b90600052602060002090601f01602090048101928261254b5760008555612591565b82601f1061256457805160ff1916838001178555612591565b82800160010185558215612591579182015b82811115612591578251825591602001919060010190612576565b5061259d9291506125a1565b5090565b5b8082111561259d57600081556001016125a2565b80356001600160a01b03811681146125cd57600080fd5b919050565b60008083601f8401126125e457600080fd5b5081356001600160401b038111156125fb57600080fd5b6020830191508360208260051b850101111561223557600080fd5b600082601f83011261262757600080fd5b8135602061263482612e93565b6040516126418282612f39565b8381528281019150858301600585901b8701840188101561266157600080fd5b60005b8581101561268057813584529284019290840190600101612664565b5090979650505050505050565b803580151581146125cd57600080fd5b600082601f8301126126ae57600080fd5b81356001600160401b038111156126c7576126c7612fc2565b6040516126de601f8301601f191660200182612f39565b8181528460208386010111156126f357600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561272257600080fd5b61272b826125b6565b9392505050565b6000806040838503121561274557600080fd5b61274e836125b6565b915061275c602084016125b6565b90509250929050565b600080600080600060a0868803121561277d57600080fd5b612786866125b6565b9450612794602087016125b6565b935060408601356001600160401b03808211156127b057600080fd5b6127bc89838a01612616565b945060608801359150808211156127d257600080fd5b6127de89838a01612616565b935060808801359150808211156127f457600080fd5b506128018882890161269d565b9150509295509295909350565b600080600080600060a0868803121561282657600080fd5b61282f866125b6565b945061283d602087016125b6565b9350604086013592506060860135915060808601356001600160401b0381111561286657600080fd5b6128018882890161269d565b6000806040838503121561288557600080fd5b61288e836125b6565b915061275c6020840161268d565b600080604083850312156128af57600080fd5b6128b8836125b6565b946020939093013593505050565b6000806000606084860312156128db57600080fd5b6128e4846125b6565b95602085013595506040909401359392505050565b6000806020838503121561290c57600080fd5b82356001600160401b0381111561292257600080fd5b61292e858286016125d2565b90969095509350505050565b6000806000806060858703121561295057600080fd5b84356001600160401b0381111561296657600080fd5b612972878288016125d2565b90989097506020870135966040013595509350505050565b6000806040838503121561299d57600080fd5b82356001600160401b03808211156129b457600080fd5b818501915085601f8301126129c857600080fd5b813560206129d582612e93565b6040516129e28282612f39565b8381528281019150858301600585901b870184018b1015612a0257600080fd5b600096505b84871015612a2c57612a18816125b6565b835260019690960195918301918301612a07565b5096505086013592505080821115612a4357600080fd5b50612a5085828601612616565b9150509250929050565b600060208284031215612a6c57600080fd5b61272b8261268d565b600080600060408486031215612a8a57600080fd5b8335925060208401356001600160401b0380821115612aa857600080fd5b818601915086601f830112612abc57600080fd5b813581811115612acb57600080fd5b876020828501011115612add57600080fd5b6020830194508093505050509250925092565b600060208284031215612b0257600080fd5b813561272b8161307d565b600060208284031215612b1f57600080fd5b815161272b8161307d565b600060208284031215612b3c57600080fd5b81356001600160401b03811115612b5257600080fd5b612b5e8482850161269d565b949350505050565b60008060408385031215612b7957600080fd5b82356001600160401b03811115612b8f57600080fd5b612b9b8582860161269d565b95602094909401359450505050565b600060208284031215612bbc57600080fd5b5035919050565b600081518084526020808501945080840160005b83811015612bf357815187529582019590820190600101612bd7565b509495945050505050565b6000815180845260005b81811015612c2457602081850181015186830182015201612c08565b81811115612c36576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090612c7790830186612bc3565b8281036060840152612c898186612bc3565b90508281036080840152612c9d8185612bfe565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612ce390830184612bfe565b979650505050505050565b60208152600061272b6020830184612bc3565b604081526000612d146040830185612bc3565b8281036020840152612d268185612bc3565b95945050505050565b60208152600061272b6020830184612bfe565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f4d75737420696e766f6b65206469726563746c792066726f6d20796f75722077604082015264185b1b195d60da1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006001600160401b03821115612eac57612eac612fc2565b5060051b60200190565b60008219821115612ec957612ec9612f80565b500190565b6000816000190483118215151615612ee857612ee8612f80565b500290565b600082821015612eff57612eff612f80565b500390565b600181811c90821680612f1857607f821691505b6020821081141561169d57634e487b7160e01b600052602260045260246000fd5b601f8201601f191681016001600160401b0381118282101715612f5e57612f5e612fc2565b6040525050565b6000600019821415612f7957612f79612f80565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612ff15760046000803e5060005160e01c5b90565b600060443d10156130025790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561303157505050505090565b82850191508151818111156130495750505050505090565b843d87010160208285010111156130635750505050505090565b61307260208286010187612f39565b509095945050505050565b6001600160e01b031981168114610abe57600080fdfec3a24b0501bd2c13a7e57f2db4369ec4c223447539fc0724a9d55ac4a06ebd4da15bc60c955c405d20d9149c709e2460f1c2d9a497496a7f46004d1772c3054ccbc4e5fb02c3d1de23a9f1e014b4d2ee5aeaea9505df5e855c9210bf472495afa2646970667358221220a35fbf0c6fb8ae07ff872d2b69ffda536257517d4e80a0ec3013c126a16d468564736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000002c00000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000004c697066733a2f2f62616679626569667563776e62727a3779766873643779616d636779616c6c68717a36776d616370696971707477636a7870353635346a736c64712f7b69647d2e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569653378796f75786b72356862667a35683632347a7063737963346862776f7479766a777a737275633777656171623674797a71610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b7265696170636a706e6c77706d766733696b6e6d79776636337a366b616c3276327a62363566636b676a77736a3273737971797534616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569686933796c6261377078373374786b656c7169756834747175736d3467687772647135686e6b677a7037677465796169676b70690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016436f646520477265656e202d204865616c20506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000044347485000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uriBase (string): ipfs://bafybeifucwnbrz7yvhsd7yamcgyallhqz6wmacpiiqptwcjxp5654jsldq/{id}.json
Arg [1] : uri1 (string): ipfs://bafkreie3xyouxkr5hbfz5h624zpcsyc4hbwotyvjwzsruc7weaqb6tyzqa
Arg [2] : uri2 (string): ipfs://bafkreiapcjpnlwpmvg3iknmywf63z6kal2v2zb65fckgjwsj2ssyqyu4am
Arg [3] : uri3 (string): ipfs://bafkreihi3ylba7px73txkelqiuh4tqusm4ghwrdq5hnkgzp7gteyaigkpi
Arg [4] : _name (string): Code Green - Heal Pass
Arg [5] : _symbol (string): CGHP

-----Encoded View---------------
26 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [4] : 00000000000000000000000000000000000000000000000000000000000002c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [7] : 697066733a2f2f62616679626569667563776e62727a3779766873643779616d
Arg [8] : 636779616c6c68717a36776d616370696971707477636a7870353635346a736c
Arg [9] : 64712f7b69647d2e6a736f6e0000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [11] : 697066733a2f2f6261666b726569653378796f75786b72356862667a35683632
Arg [12] : 347a7063737963346862776f7479766a777a737275633777656171623674797a
Arg [13] : 7161000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [15] : 697066733a2f2f6261666b7265696170636a706e6c77706d766733696b6e6d79
Arg [16] : 776636337a366b616c3276327a62363566636b676a77736a3273737971797534
Arg [17] : 616d000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [19] : 697066733a2f2f6261666b726569686933796c6261377078373374786b656c71
Arg [20] : 69756834747175736d3467687772647135686e6b677a7037677465796169676b
Arg [21] : 7069000000000000000000000000000000000000000000000000000000000000
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [23] : 436f646520477265656e202d204865616c205061737300000000000000000000
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [25] : 4347485000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54908:7699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60238:356;;;;;;:::i;:::-;;:::i;:::-;;37368:231;;;;;;:::i;:::-;;:::i;:::-;;;26197:25:1;;;26185:2;26170:18;37368:231:0;;;;;;;;36391:310;;;;;;:::i;:::-;;:::i;:::-;;;13580:14:1;;13573:22;13555:41;;13543:2;13528:18;36391:310:0;13415:187:1;57656:166:0;;;;;;:::i;:::-;;:::i;55032:18::-;;;:::i;:::-;;;;;;;:::i;56510:320::-;;;;;;:::i;:::-;;:::i;55200:38::-;;55237:1;55200:38;;55337;;;;;;;;;;;;59465:569;;;:::i;55295:35::-;;;;;;;;;39307:442;;;;;;:::i;:::-;;:::i;55245:41::-;;55282:4;55245:41;;57261:185;;;;;;:::i;:::-;;:::i;57899:65::-;;;:::i;37765:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53699:122::-;;;;;;:::i;:::-;53756:4;53577:16;;;:12;:16;;;;;;-1:-1:-1;;;53699:122:0;60711:533;;;;;;:::i;:::-;;:::i;13683:86::-;13754:7;;-1:-1:-1;;;13754:7:0;;;;13683:86;;56900:127;;;;;;:::i;:::-;;:::i;55155:38::-;;55192:1;55155:38;;55110;;55147:1;55110:38;;16582:103;;;:::i;57830:61::-;;;:::i;61361:353::-;;;;;;:::i;:::-;;:::i;15931:87::-;16004:6;;15931:87;;-1:-1:-1;;;;;16004:6:0;;;11221:51:1;;11209:2;11194:18;15931:87:0;11075:203:1;57454:194:0;;;;;;:::i;:::-;;:::i;55081:20::-;;;:::i;38362:155::-;;;;;;:::i;:::-;;:::i;53488:113::-;;;;;;:::i;:::-;53550:7;53577:16;;;:12;:16;;;;;;;53488:113;57148:105;;;;;;:::i;:::-;;:::i;55652:43::-;;;;;;:::i;:::-;;:::i;55702:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;55596;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38589:168;;;;;;:::i;:::-;-1:-1:-1;;;;;38712:27:0;;;38688:4;38712:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;38589:168;61889:298;;;;;;:::i;:::-;;:::i;16840:201::-;;;;;;:::i;:::-;;:::i;58769:688::-;;;;;;:::i;:::-;;:::i;60238:356::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;;;;;;;;;60344:20:::1;::::0;;;:16:::1;:20;::::0;;;;;::::1;;60343:21;60335:63;;;::::0;-1:-1:-1;;;60335:63:0;;23222:2:1;60335:63:0::1;::::0;::::1;23204:21:1::0;23261:2;23241:18;;;23234:30;23300:31;23280:18;;;23273:59;23349:18;;60335:63:0::1;23020:353:1::0;60335:63:0::1;55147:1;60417:2;:16;;:36;;;;;55192:1;60437:2;:16;;60417:36;:56;;;;;55237:1;60457:2;:16;;60417:56;60409:98;;;::::0;-1:-1:-1;;;60409:98:0;;23222:2:1;60409:98:0::1;::::0;::::1;23204:21:1::0;23261:2;23241:18;;;23234:30;23300:31;23280:18;;;23273:59;23349:18;;60409:98:0::1;23020:353:1::0;60409:98:0::1;60518:20;::::0;;;:16:::1;:20;::::0;;;;;;;:27;;-1:-1:-1;;60518:27:0::1;60541:4;60518:27;::::0;;60556:30;;;;::::1;::::0;;;;;::::1;::::0;60562:7;;60535:2;;60575:6;;60556:5:::1;:30::i;:::-;60238:356:::0;;;:::o;37368:231::-;37454:7;-1:-1:-1;;;;;37482:21:0;;37474:77;;;;-1:-1:-1;;;37474:77:0;;17080:2:1;37474:77:0;;;17062:21:1;17119:2;17099:18;;;17092:30;17158:34;17138:18;;;17131:62;-1:-1:-1;;;17209:18:1;;;17202:41;17260:19;;37474:77:0;16878:407:1;37474:77:0;-1:-1:-1;37569:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;37569:22:0;;;;;;;;;;;;37368:231::o;36391:310::-;36493:4;-1:-1:-1;;;;;;36530:41:0;;-1:-1:-1;;;36530:41:0;;:110;;-1:-1:-1;;;;;;;36588:52:0;;-1:-1:-1;;;36588:52:0;36530:110;:163;;;-1:-1:-1;;;;;;;;;;27793:40:0;;;36657:36;36510:183;36391:310;-1:-1:-1;;36391:310:0:o;57656:166::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57744:28:0;::::1;57736:37;;;::::0;::::1;;57784:13;:30:::0;;-1:-1:-1;;;;;57784:30:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;57784:30:0;;::::1;::::0;;;::::1;::::0;;57656:166::o;55032:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56510:320::-;56704:17;;;;:8;:17;;;;;56698:31;;56570:13;;56704:17;56698:31;;;:::i;:::-;:36;56694:94;;-1:-1:-1;56694:94:0;;56758:18;56768:7;56758:9;:18::i;56694:94::-;56805:17;;;;:8;:17;;;;;56798:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56510:320;;;:::o;59465:569::-;56283:10;56297:9;56283:23;56261:110;;;;-1:-1:-1;;;56261:110:0;;;;;;;:::i;:::-;59522:18:::1;::::0;::::1;::::0;::::1;;;59514:46;;;::::0;-1:-1:-1;;;59514:46:0;;23580:2:1;59514:46:0::1;::::0;::::1;23562:21:1::0;23619:2;23599:18;;;23592:30;-1:-1:-1;;;23638:18:1;;;23631:45;23693:18;;59514:46:0::1;23378:339:1::0;59514:46:0::1;59596:10;59579:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;:37;59571:76;;;::::0;-1:-1:-1;;;59571:76:0;;24267:2:1;59571:76:0::1;::::0;::::1;24249:21:1::0;24306:2;24286:18;;;24279:30;24345:28;24325:18;;;24318:56;24391:18;;59571:76:0::1;24065:350:1::0;59571:76:0::1;55237:1;53577:16:::0;;-1:-1:-1;;;;;;;;;;;53577:16:0;-1:-1:-1;;;;;;;;;;;53577:16:0;55147:1:::1;59658:20;53577:16:::0;;;-1:-1:-1;;;;;;;;;;;53577:16:0;59658:20;;53577:16;59681:49:::1;::::0;::::1;:::i;:::-;:75;;;;:::i;:::-;59658:98;;55282:4;59775:12;:25;59767:55;;;::::0;-1:-1:-1;;;59767:55:0;;16328:2:1;59767:55:0::1;::::0;::::1;16310:21:1::0;16367:2;16347:18;;;16340:30;-1:-1:-1;;;16386:18:1;;;16379:47;16443:18;;59767:55:0::1;16126:341:1::0;59767:55:0::1;59852:10;59835:28;::::0;;;:16:::1;:28;::::0;;;;:35;;-1:-1:-1;;59835:35:0::1;59866:4;59835:35:::0;;::::1;::::0;;;59881:44:::1;::::0;59852:10;59899:18:::1;::::0;:15:::1;:18::i;:::-;59919:1;59881:44;;;;;;;;;;;::::0;:5:::1;:44::i;:::-;55282:4;59942:16;:12:::0;59957:1:::1;59942:16;:::i;:::-;:30;59938:89;;59989:18;:26:::0;;-1:-1:-1;;59989:26:0::1;::::0;;59938:89:::1;59503:531;59465:569::o:0;39307:442::-;-1:-1:-1;;;;;39540:20:0;;12417:10;39540:20;;:60;;-1:-1:-1;39564:36:0;39581:4;12417:10;38589:168;:::i;39564:36::-;39518:160;;;;-1:-1:-1;;;39518:160:0;;20513:2:1;39518:160:0;;;20495:21:1;20552:2;20532:18;;;20525:30;20591:34;20571:18;;;20564:62;-1:-1:-1;;;20642:18:1;;;20635:48;20700:19;;39518:160:0;20311:414:1;39518:160:0;39689:52;39712:4;39718:2;39722:3;39727:7;39736:4;39689:22;:52::i;:::-;39307:442;;;;;:::o;57261:185::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;57337:15:::1;::::0;::::1;;:27;;::::0;::::1;;;;57329:72;;;::::0;-1:-1:-1;;;57329:72:0;;20932:2:1;57329:72:0::1;::::0;::::1;20914:21:1::0;;;20951:18;;;20944:30;21010:34;20990:18;;;20983:62;21062:18;;57329:72:0::1;20730:356:1::0;57329:72:0::1;57412:15;:26:::0;;-1:-1:-1;;57412:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;57261:185::o;57899:65::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;57946:10:::1;:8;:10::i;:::-;57899:65::o:0;37765:524::-;37921:16;37982:3;:10;37963:8;:15;:29;37955:83;;;;-1:-1:-1;;;37955:83:0;;25032:2:1;37955:83:0;;;25014:21:1;25071:2;25051:18;;;25044:30;25110:34;25090:18;;;25083:62;-1:-1:-1;;;25161:18:1;;;25154:39;25210:19;;37955:83:0;24830:405:1;37955:83:0;38051:30;38098:8;:15;-1:-1:-1;;;;;38084:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38084:30:0;;38051:63;;38132:9;38127:122;38151:8;:15;38147:1;:19;38127:122;;;38207:30;38217:8;38226:1;38217:11;;;;;;;;:::i;:::-;;;;;;;38230:3;38234:1;38230:6;;;;;;;;:::i;:::-;;;;;;;38207:9;:30::i;:::-;38188:13;38202:1;38188:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;38168:3;;;:::i;:::-;;;38127:122;;;-1:-1:-1;38268:13:0;37765:524;-1:-1:-1;;;37765:524:0:o;60711:533::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;55147:1:::1;60847:7;:21;:46;;;;55192:1;60872:7;:21;60847:46;:71;;;;55237:1;60897:7;:21;60847:71;60839:100;;;::::0;-1:-1:-1;;;60839:100:0;;21293:2:1;60839:100:0::1;::::0;::::1;21275:21:1::0;21332:2;21312:18;;;21305:30;-1:-1:-1;;;21351:18:1;;;21344:46;21407:18;;60839:100:0::1;21091:340:1::0;60839:100:0::1;55282:4;61037:33;61056:14:::0;61037:9;:33:::1;:::i;:::-;55237:1;53577:16:::0;;-1:-1:-1;;;;;;;;;;;53577:16:0;-1:-1:-1;;;;;;;;;;;53577:16:0;55147:1:::1;53550:7:::0;53577:16;-1:-1:-1;;;;;;;;;;;53577:16:0;60958:49:::1;::::0;53577:16;60958:49:::1;:::i;:::-;:75;;;;:::i;:::-;:113;;;;:::i;:::-;:127;;60950:154;;;::::0;-1:-1:-1;;;60950:154:0;;23924:2:1;60950:154:0::1;::::0;::::1;23906:21:1::0;23963:2;23943:18;;;23936:30;-1:-1:-1;;;23982:18:1;;;23975:44;24036:18;;60950:154:0::1;23722:338:1::0;60950:154:0::1;61120:9;61115:122;61135:20:::0;;::::1;61115:122;;;61177:48;61183:9;;61193:1;61183:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;61197:7;61206:14;61177:48;;;;;;;;;;;::::0;:5:::1;:48::i;:::-;61157:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61115:122;;56900:127:::0;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;56988:17:::1;::::0;;;:8:::1;:17;::::0;;;;;;;:31;;::::1;::::0;;::::1;::::0;::::1;:::i;16582:103::-:0;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;16647:30:::1;16674:1;16647:18;:30::i;57830:61::-:0;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;57875:8:::1;:6;:8::i;61361:353::-:0;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;55237:1:::1;53577:16:::0;;-1:-1:-1;;;;;;;;;;;53577:16:0;-1:-1:-1;;;;;;;;;;;53577:16:0;55147:1:::1;53550:7:::0;53577:16;-1:-1:-1;;;;;;;;;;;53577:16:0;55282:4:::1;::::0;61527:9;;53577:16;;61449:49:::1;::::0;53577:16;61449:49:::1;:::i;:::-;:75;;;;:::i;:::-;:94;;;;:::i;:::-;:108;;61441:135;;;::::0;-1:-1:-1;;;61441:135:0;;23924:2:1;61441:135:0::1;::::0;::::1;23906:21:1::0;23963:2;23943:18;;;23936:30;-1:-1:-1;;;23982:18:1;;;23975:44;24036:18;;61441:135:0::1;23722:338:1::0;61441:135:0::1;61592:9;61587:120;61607:20:::0;;::::1;61587:120;;;61649:46;61655:9;;61665:1;61655:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;61669:18;61685:1;61669:15;:18::i;61649:46::-;61629:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61587:120;;57454:194:::0;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;57533:18:::1;::::0;::::1;;::::0;;::::1;;:30;;::::0;::::1;;;;57525:75;;;::::0;-1:-1:-1;;;57525:75:0;;20932:2:1;57525:75:0::1;::::0;::::1;20914:21:1::0;;;20951:18;;;20944:30;21010:34;20990:18;;;20983:62;21062:18;;57525:75:0::1;20730:356:1::0;57525:75:0::1;57611:18;:29:::0;;;::::1;;;;-1:-1:-1::0;;57611:29:0;;::::1;::::0;;;::::1;::::0;;57454:194::o;55081:20::-;;;;;;;:::i;38362:155::-;38457:52;12417:10;38490:8;38500;38457:18;:52::i;:::-;38362:155;;:::o;57148:105::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;57225:20:::1;57233:11;57225:7;:20::i;55652:43::-:0;;;;;;;;;;;;;;;;:::i;61889:298::-;62084:1;62075:6;:10;62067:44;;;;-1:-1:-1;;;62067:44:0;;19412:2:1;62067:44:0;;;19394:21:1;19451:2;19431:18;;;19424:30;-1:-1:-1;;;19470:18:1;;;19463:51;19531:18;;62067:44:0;19210:345:1;62067:44:0;62129:50;62152:4;62158:2;62162;62166:6;62174:4;62129:22;:50::i;16840:201::-;16004:6;;-1:-1:-1;;;;;16004:6:0;12417:10;16151:23;16143:68;;;;-1:-1:-1;;;16143:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16929:22:0;::::1;16921:73;;;::::0;-1:-1:-1;;;16921:73:0;;17492:2:1;16921:73:0::1;::::0;::::1;17474:21:1::0;17531:2;17511:18;;;17504:30;17570:34;17550:18;;;17543:62;-1:-1:-1;;;17621:18:1;;;17614:36;17667:19;;16921:73:0::1;17290:402:1::0;16921:73:0::1;17005:28;17024:8;17005:18;:28::i;58769:688::-:0;56283:10;56297:9;56283:23;56261:110;;;;-1:-1:-1;;;56261:110:0;;;;;;;:::i;:::-;58878:15:::1;::::0;::::1;;58870:43;;;::::0;-1:-1:-1;;;58870:43:0;;23580:2:1;58870:43:0::1;::::0;::::1;23562:21:1::0;23619:2;23599:18;;;23592:30;-1:-1:-1;;;23638:18:1;;;23631:45;23693:18;;58870:43:0::1;23378:339:1::0;58870:43:0::1;58949:10;58932:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;:37;58924:76;;;::::0;-1:-1:-1;;;58924:76:0;;24267:2:1;58924:76:0::1;::::0;::::1;24249:21:1::0;24306:2;24286:18;;;24279:30;24345:28;24325:18;;;24318:56;24391:18;;58924:76:0::1;24065:350:1::0;58924:76:0::1;55237:1;53577:16:::0;;-1:-1:-1;;;;;;;;;;;53577:16:0;-1:-1:-1;;;;;;;;;;;53577:16:0;55147:1:::1;59011:20;53577:16:::0;;;-1:-1:-1;;;;;;;;;;;53577:16:0;59011:20;;53577:16;59034:49:::1;::::0;::::1;:::i;:::-;:75;;;;:::i;:::-;59011:98;;55282:4;59128:12;:25;59120:55;;;::::0;-1:-1:-1;;;59120:55:0;;16328:2:1;59120:55:0::1;::::0;::::1;16310:21:1::0;16367:2;16347:18;;;16340:30;-1:-1:-1;;;16386:18:1;;;16379:47;16443:18;;59120:55:0::1;16126:341:1::0;59120:55:0::1;59221:11;59194:23;59206:10;59194:11;:23::i;:::-;:38;59186:66;;;::::0;-1:-1:-1;;;59186:66:0;;17899:2:1;59186:66:0::1;::::0;::::1;17881:21:1::0;17938:2;17918:18;;;17911:30;-1:-1:-1;;;17957:18:1;;;17950:45;18012:18;;59186:66:0::1;17697:339:1::0;59186:66:0::1;59271:43;59291:11;59304:9;;59271:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;59271:19:0::1;::::0;-1:-1:-1;;;59271:43:0:i:1;:::-;59263:83;;;::::0;-1:-1:-1;;;59263:83:0;;19056:2:1;59263:83:0::1;::::0;::::1;19038:21:1::0;19095:2;19075:18;;;19068:30;19134:29;19114:18;;;19107:57;19181:18;;59263:83:0::1;18854:351:1::0;59263:83:0::1;59376:10;59359:28;::::0;;;:16:::1;:28;::::0;;;;:35;;-1:-1:-1;;59359:35:0::1;59390:4;59359:35:::0;;::::1;::::0;;;59405:44:::1;::::0;59376:10;59423:18:::1;::::0;:15:::1;:18::i;59405:44::-;58859:598;58769:688:::0;;;:::o;44009:729::-;-1:-1:-1;;;;;44162:16:0;;44154:62;;;;-1:-1:-1;;;44154:62:0;;25851:2:1;44154:62:0;;;25833:21:1;25890:2;25870:18;;;25863:30;25929:34;25909:18;;;25902:62;-1:-1:-1;;;25980:18:1;;;25973:31;26021:19;;44154:62:0;25649:397:1;44154:62:0;12417:10;44229:16;44294:21;44312:2;44294:17;:21::i;:::-;44271:44;;44326:24;44353:25;44371:6;44353:17;:25::i;:::-;44326:52;;44391:66;44412:8;44430:1;44434:2;44438:3;44443:7;44452:4;44391:20;:66::i;:::-;44470:9;:13;;;;;;;;;;;-1:-1:-1;;;;;44470:17:0;;;;;;;;;:27;;44491:6;;44470:9;:27;;44491:6;;44470:27;:::i;:::-;;;;-1:-1:-1;;44513:52:0;;;26407:25:1;;;26463:2;26448:18;;26441:34;;;-1:-1:-1;;;;;44513:52:0;;;;44546:1;;44513:52;;;;;;26380:18:1;44513:52:0;;;;;;;44656:74;44687:8;44705:1;44709:2;44713;44717:6;44725:4;44656:30;:74::i;:::-;44143:595;;;44009:729;;;;:::o;37112:105::-;37172:13;37205:4;37198:11;;;;;:::i;58311:340::-;58373:7;;58441:15;58458:16;58486;58501:1;58486:12;:16;:::i;:::-;58424:87;;;;;;10905:19:1;;;;10940:12;;10933:28;;;;58476:27:0;10977:12:1;;;10970:28;11014:12;;;11007:28;;;11051:13;;58424:87:0;;;-1:-1:-1;;58424:87:0;;;;;;;;;58414:98;;58424:87;58414:98;;;;;-1:-1:-1;;;;58414:98:0;58538:1;58527:13;;;-1:-1:-1;;;;;58527:21:0;;;58523:121;;-1:-1:-1;55192:1:0;;58311:340;-1:-1:-1;;58311:340:0:o;58523:121::-;-1:-1:-1;55147:1:0;;58311:340;-1:-1:-1;;58311:340:0:o;58523:121::-;58382:269;58311:340;;;:::o;41545:1146::-;41772:7;:14;41758:3;:10;:28;41750:81;;;;-1:-1:-1;;;41750:81:0;;25442:2:1;41750:81:0;;;25424:21:1;25481:2;25461:18;;;25454:30;25520:34;25500:18;;;25493:62;-1:-1:-1;;;25571:18:1;;;25564:38;25619:19;;41750:81:0;25240:404:1;41750:81:0;-1:-1:-1;;;;;41850:16:0;;41842:66;;;;-1:-1:-1;;;41842:66:0;;;;;;;:::i;:::-;12417:10;41965:60;12417:10;41996:4;42002:2;42006:3;42011:7;42020:4;41965:20;:60::i;:::-;42043:9;42038:421;42062:3;:10;42058:1;:14;42038:421;;;42094:10;42107:3;42111:1;42107:6;;;;;;;;:::i;:::-;;;;;;;42094:19;;42128:14;42145:7;42153:1;42145:10;;;;;;;;:::i;:::-;;;;;;;;;;;;42172:19;42194:13;;;;;;;;;;-1:-1:-1;;;;;42194:19:0;;;;;;;;;;;;42145:10;;-1:-1:-1;42236:21:0;;;;42228:76;;;;-1:-1:-1;;;42228:76:0;;;;;;;:::i;:::-;42348:9;:13;;;;;;;;;;;-1:-1:-1;;;;;42348:19:0;;;;;;;;;;42370:20;;;42348:42;;42420:17;;;;;;;:27;;42370:20;;42348:9;42420:27;;42370:20;;42420:27;:::i;:::-;;;;;;;;42079:380;;;42074:3;;;;:::i;:::-;;;42038:421;;;;42506:2;-1:-1:-1;;;;;42476:47:0;42500:4;-1:-1:-1;;;;;42476:47:0;42490:8;-1:-1:-1;;;;;42476:47:0;;42510:3;42515:7;42476:47;;;;;;;:::i;:::-;;;;;;;;42608:75;42644:8;42654:4;42660:2;42664:3;42669:7;42678:4;42608:35;:75::i;:::-;41739:952;41545:1146;;;;;:::o;14742:120::-;13754:7;;-1:-1:-1;;;13754:7:0;;;;14278:41;;;;-1:-1:-1;;;14278:41:0;;15619:2:1;14278:41:0;;;15601:21:1;15658:2;15638:18;;;15631:30;-1:-1:-1;;;15677:18:1;;;15670:50;15737:18;;14278:41:0;15417:344:1;14278:41:0;14801:7:::1;:15:::0;;-1:-1:-1;;;;14801:15:0::1;::::0;;14832:22:::1;12417:10:::0;14841:12:::1;14832:22;::::0;-1:-1:-1;;;;;11239:32:1;;;11221:51;;11209:2;11194:18;14832:22:0::1;;;;;;;14742:120::o:0;17201:191::-;17294:6;;;-1:-1:-1;;;;;17311:17:0;;;-1:-1:-1;;;;;;17311:17:0;;;;;;;17344:40;;17294:6;;;17311:17;17294:6;;17344:40;;17275:16;;17344:40;17264:128;17201:191;:::o;14483:118::-;13754:7;;-1:-1:-1;;;13754:7:0;;;;14008:9;14000:38;;;;-1:-1:-1;;;14000:38:0;;19762:2:1;14000:38:0;;;19744:21:1;19801:2;19781:18;;;19774:30;-1:-1:-1;;;19820:18:1;;;19813:46;19876:18;;14000:38:0;19560:340:1;14000:38:0;14543:7:::1;:14:::0;;-1:-1:-1;;;;14543:14:0::1;-1:-1:-1::0;;;14543:14:0::1;::::0;;14573:20:::1;14580:12;12417:10:::0;;12337:98;48279:331;48434:8;-1:-1:-1;;;;;48425:17:0;:5;-1:-1:-1;;;;;48425:17:0;;;48417:71;;;;-1:-1:-1;;;48417:71:0;;24622:2:1;48417:71:0;;;24604:21:1;24661:2;24641:18;;;24634:30;24700:34;24680:18;;;24673:62;-1:-1:-1;;;24751:18:1;;;24744:39;24800:19;;48417:71:0;24420:405:1;48417:71:0;-1:-1:-1;;;;;48499:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48499:46:0;;;;;;;;;;48561:41;;13555::1;;;48561::0;;13528:18:1;48561:41:0;;;;;;;48279:331;;;:::o;43535:88::-;43602:13;;;;:4;;:13;;;;;:::i;38829:401::-;-1:-1:-1;;;;;39037:20:0;;12417:10;39037:20;;:60;;-1:-1:-1;39061:36:0;39078:4;12417:10;38589:168;:::i;39061:36::-;39015:151;;;;-1:-1:-1;;;39015:151:0;;18243:2:1;39015:151:0;;;18225:21:1;18282:2;18262:18;;;18255:30;18321:34;18301:18;;;18294:62;-1:-1:-1;;;18372:18:1;;;18365:39;18421:19;;39015:151:0;18041:405:1;39015:151:0;39177:45;39195:4;39201:2;39205;39209:6;39217:4;39177:17;:45::i;58180:123::-;58276:18;;;-1:-1:-1;;;;;11239:32:1;;58276:18:0;;;11221:51:1;58239:7:0;;11194:18:1;58276::0;;;;;;;;;;;;;58266:29;;;;;;58259:36;;58180:123;;;:::o;57972:200::-;58068:4;58109:55;58154:9;58109:36;:11;:34;:36::i;:::-;:44;;:55::i;:::-;58092:13;;;;;-1:-1:-1;;;;;58092:13:0;;;:72;;;;-1:-1:-1;57972:200:0;;;;:::o;52543:198::-;52663:16;;;52677:1;52663:16;;;;;;;;;52609;;52638:22;;52663:16;;;;;;;;;;;;-1:-1:-1;52663:16:0;52638:41;;52701:7;52690:5;52696:1;52690:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;52728:5;52543:198;-1:-1:-1;;52543:198:0:o;62314:290::-;13754:7;;-1:-1:-1;;;13754:7:0;;;;14008:9;14000:38;;;;-1:-1:-1;;;14000:38:0;;19762:2:1;14000:38:0;;;19744:21:1;19801:2;19781:18;;;19774:30;-1:-1:-1;;;19820:18:1;;;19813:46;19876:18;;14000:38:0;19560:340:1;14000:38:0;62530:66:::1;62557:8;62567:4;62573:2;62577:3;62582:7;62591:4;62530:26;:66::i;50970:744::-:0;-1:-1:-1;;;;;51185:13:0;;18927:19;:23;51181:526;;51221:72;;-1:-1:-1;;;51221:72:0;;-1:-1:-1;;;;;51221:38:0;;;;;:72;;51260:8;;51270:4;;51276:2;;51280:6;;51288:4;;51221:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51221:72:0;;;;;;;;-1:-1:-1;;51221:72:0;;;;;;;;;;;;:::i;:::-;;;51217:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;51569:6;51562:14;;-1:-1:-1;;;51562:14:0;;;;;;;;:::i;51217:479::-;;;51618:62;;-1:-1:-1;;;51618:62:0;;14789:2:1;51618:62:0;;;14771:21:1;14828:2;14808:18;;;14801:30;14867:34;14847:18;;;14840:62;-1:-1:-1;;;14918:18:1;;;14911:50;14978:19;;51618:62:0;14587:416:1;51217:479:0;-1:-1:-1;;;;;;51343:55:0;;-1:-1:-1;;;51343:55:0;51339:154;;51423:50;;-1:-1:-1;;;51423:50:0;;;;;;;:::i;51722:813::-;-1:-1:-1;;;;;51962:13:0;;18927:19;:23;51958:570;;51998:79;;-1:-1:-1;;;51998:79:0;;-1:-1:-1;;;;;51998:43:0;;;;;:79;;52042:8;;52052:4;;52058:3;;52063:7;;52072:4;;51998:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51998:79:0;;;;;;;;-1:-1:-1;;51998:79:0;;;;;;;;;;;;:::i;:::-;;;51994:523;;;;:::i;:::-;-1:-1:-1;;;;;;52159:60:0;;-1:-1:-1;;;52159:60:0;52155:159;;52244:50;;-1:-1:-1;;;52244:50:0;;;;;;;:::i;40213:974::-;-1:-1:-1;;;;;40401:16:0;;40393:66;;;;-1:-1:-1;;;40393:66:0;;;;;;;:::i;:::-;12417:10;40472:16;40537:21;40555:2;40537:17;:21::i;:::-;40514:44;;40569:24;40596:25;40614:6;40596:17;:25::i;:::-;40569:52;;40634:60;40655:8;40665:4;40671:2;40675:3;40680:7;40689:4;40634:20;:60::i;:::-;40707:19;40729:13;;;;;;;;;;;-1:-1:-1;;;;;40729:19:0;;;;;;;;;;40767:21;;;;40759:76;;;;-1:-1:-1;;;40759:76:0;;;;;;;:::i;:::-;40871:9;:13;;;;;;;;;;;-1:-1:-1;;;;;40871:19:0;;;;;;;;;;40893:20;;;40871:42;;40935:17;;;;;;;:27;;40893:20;;40871:9;40935:27;;40893:20;;40935:27;:::i;:::-;;;;-1:-1:-1;;40980:46:0;;;26407:25:1;;;26463:2;26448:18;;26441:34;;;-1:-1:-1;;;;;40980:46:0;;;;;;;;;;;;;;26380:18:1;40980:46:0;;;;;;;41111:68;41142:8;41152:4;41158:2;41162;41166:6;41174:4;41111:30;:68::i;:::-;40382:805;;;;40213:974;;;;;:::o;10343:269::-;10545:58;;10549:66:1;10545:58:0;;;10537:79:1;10632:12;;;10625:28;;;10412:7:0;;10669:12:1;;10545:58:0;10307:380:1;6541:231:0;6619:7;6640:17;6659:18;6681:27;6692:4;6698:9;6681:10;:27::i;:::-;6639:69;;;;6719:18;6731:5;6719:11;:18::i;53896:931::-;-1:-1:-1;;;;;54218:18:0;;54214:160;;54258:9;54253:110;54277:3;:10;54273:1;:14;54253:110;;;54337:7;54345:1;54337:10;;;;;;;;:::i;:::-;;;;;;;54313:12;:20;54326:3;54330:1;54326:6;;;;;;;;:::i;:::-;;;;;;;54313:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;54289:3:0;;-1:-1:-1;54289:3:0;;:::i;:::-;;;54253:110;;;;54214:160;-1:-1:-1;;;;;54390:16:0;;54386:434;;54428:9;54423:386;54447:3;:10;54443:1;:14;54423:386;;;54483:10;54496:3;54500:1;54496:6;;;;;;;;:::i;:::-;;;;;;;54483:19;;54521:14;54538:7;54546:1;54538:10;;;;;;;;:::i;:::-;;;;;;;54521:27;;54567:14;54584:12;:16;54597:2;54584:16;;;;;;;;;;;;54567:33;;54637:6;54627;:16;;54619:69;;;;-1:-1:-1;;;54619:69:0;;22813:2:1;54619:69:0;;;22795:21:1;22852:2;22832:18;;;22825:30;22891:34;22871:18;;;22864:62;-1:-1:-1;;;22942:18:1;;;22935:38;22990:19;;54619:69:0;22611:404:1;54619:69:0;54740:16;;;;:12;:16;;;;;;54759:15;;54740:34;;54459:3;;;:::i;:::-;;;54423:386;;4431:1308;4512:7;4521:12;4746:9;:16;4766:2;4746:22;4742:990;;;5042:4;5027:20;;5021:27;5092:4;5077:20;;5071:27;5150:4;5135:20;;5129:27;4785:9;5121:36;5193:25;5204:4;5121:36;5021:27;5071;5193:10;:25::i;:::-;5186:32;;;;;;;;;4742:990;5240:9;:16;5260:2;5240:22;5236:496;;;5515:4;5500:20;;5494:27;5566:4;5551:20;;5545:27;5608:23;5619:4;5494:27;5545;5608:10;:23::i;:::-;5601:30;;;;;;;;5236:496;-1:-1:-1;5680:1:0;;-1:-1:-1;5684:35:0;5236:496;4431:1308;;;;;:::o;2702:643::-;2780:20;2771:5;:29;;;;;;;;:::i;:::-;;2767:571;;;2702:643;:::o;2767:571::-;2878:29;2869:5;:38;;;;;;;;:::i;:::-;;2865:473;;;2924:34;;-1:-1:-1;;;2924:34:0;;14436:2:1;2924:34:0;;;14418:21:1;14475:2;14455:18;;;14448:30;14514:26;14494:18;;;14487:54;14558:18;;2924:34:0;14234:348:1;2865:473:0;2989:35;2980:5;:44;;;;;;;;:::i;:::-;;2976:362;;;3041:41;;-1:-1:-1;;;3041:41:0;;15968:2:1;3041:41:0;;;15950:21:1;16007:2;15987:18;;;15980:30;16046:33;16026:18;;;16019:61;16097:18;;3041:41:0;15766:355:1;2976:362:0;3113:30;3104:5;:39;;;;;;;;:::i;:::-;;3100:238;;;3160:44;;-1:-1:-1;;;3160:44:0;;18653:2:1;3160:44:0;;;18635:21:1;18692:2;18672:18;;;18665:30;18731:34;18711:18;;;18704:62;-1:-1:-1;;;18782:18:1;;;18775:32;18824:19;;3160:44:0;18451:398:1;3100:238:0;3235:30;3226:5;:39;;;;;;;;:::i;:::-;;3222:116;;;3282:44;;-1:-1:-1;;;3282:44:0;;21638:2:1;3282:44:0;;;21620:21:1;21677:2;21657:18;;;21650:30;21716:34;21696:18;;;21689:62;-1:-1:-1;;;21767:18:1;;;21760:32;21809:19;;3282:44:0;21436:398:1;7993:1632:0;8124:7;;9058:66;9045:79;;9041:163;;;-1:-1:-1;9157:1:0;;-1:-1:-1;9161:30:0;9141:51;;9041:163;9218:1;:7;;9223:2;9218:7;;:18;;;;;9229:1;:7;;9234:2;9229:7;;9218:18;9214:102;;;-1:-1:-1;9269:1:0;;-1:-1:-1;9273:30:0;9253:51;;9214:102;9430:24;;;9413:14;9430:24;;;;;;;;;13834:25:1;;;13907:4;13895:17;;13875:18;;;13868:45;;;;13929:18;;;13922:34;;;13972:18;;;13965:34;;;9430:24:0;;13806:19:1;;9430:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9430:24:0;;-1:-1:-1;;9430:24:0;;;-1:-1:-1;;;;;;;9469:20:0;;9465:103;;9522:1;9526:29;9506:50;;;;;;;9465:103;9588:6;-1:-1:-1;9596:20:0;;-1:-1:-1;7993:1632:0;;;;;;;;:::o;7035:344::-;7149:7;;-1:-1:-1;;;;;7195:80:0;;7149:7;7302:25;7318:3;7303:18;;;7325:2;7302:25;:::i;:::-;7286:42;;7346:25;7357:4;7363:1;7366;7369;7346:10;:25::i;:::-;7339:32;;;;;;7035:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;-1:-1:-1;;;;;392:30:1;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;564:735;618:5;671:3;664:4;656:6;652:17;648:27;638:55;;689:1;686;679:12;638:55;725:6;712:20;751:4;774:43;814:2;774:43;:::i;:::-;846:2;840:9;858:31;886:2;878:6;858:31;:::i;:::-;924:18;;;958:15;;;;-1:-1:-1;993:15:1;;;1043:1;1039:10;;;1027:23;;1023:32;;1020:41;-1:-1:-1;1017:61:1;;;1074:1;1071;1064:12;1017:61;1096:1;1106:163;1120:2;1117:1;1114:9;1106:163;;;1177:17;;1165:30;;1215:12;;;;1247;;;;1138:1;1131:9;1106:163;;;-1:-1:-1;1287:6:1;;564:735;-1:-1:-1;;;;;;;564:735:1:o;1304:160::-;1369:20;;1425:13;;1418:21;1408:32;;1398:60;;1454:1;1451;1444:12;1469:555;1511:5;1564:3;1557:4;1549:6;1545:17;1541:27;1531:55;;1582:1;1579;1572:12;1531:55;1618:6;1605:20;-1:-1:-1;;;;;1640:2:1;1637:26;1634:52;;;1666:18;;:::i;:::-;1715:2;1709:9;1727:67;1782:2;1763:13;;-1:-1:-1;;1759:27:1;1788:4;1755:38;1709:9;1727:67;:::i;:::-;1818:2;1810:6;1803:18;1864:3;1857:4;1852:2;1844:6;1840:15;1836:26;1833:35;1830:55;;;1881:1;1878;1871:12;1830:55;1945:2;1938:4;1930:6;1926:17;1919:4;1911:6;1907:17;1894:54;1992:1;1968:15;;;1985:4;1964:26;1957:37;;;;1972:6;1469:555;-1:-1:-1;;;1469:555:1:o;2029:186::-;2088:6;2141:2;2129:9;2120:7;2116:23;2112:32;2109:52;;;2157:1;2154;2147:12;2109:52;2180:29;2199:9;2180:29;:::i;:::-;2170:39;2029:186;-1:-1:-1;;;2029:186:1:o;2220:260::-;2288:6;2296;2349:2;2337:9;2328:7;2324:23;2320:32;2317:52;;;2365:1;2362;2355:12;2317:52;2388:29;2407:9;2388:29;:::i;:::-;2378:39;;2436:38;2470:2;2459:9;2455:18;2436:38;:::i;:::-;2426:48;;2220:260;;;;;:::o;2485:943::-;2639:6;2647;2655;2663;2671;2724:3;2712:9;2703:7;2699:23;2695:33;2692:53;;;2741:1;2738;2731:12;2692:53;2764:29;2783:9;2764:29;:::i;:::-;2754:39;;2812:38;2846:2;2835:9;2831:18;2812:38;:::i;:::-;2802:48;;2901:2;2890:9;2886:18;2873:32;-1:-1:-1;;;;;2965:2:1;2957:6;2954:14;2951:34;;;2981:1;2978;2971:12;2951:34;3004:61;3057:7;3048:6;3037:9;3033:22;3004:61;:::i;:::-;2994:71;;3118:2;3107:9;3103:18;3090:32;3074:48;;3147:2;3137:8;3134:16;3131:36;;;3163:1;3160;3153:12;3131:36;3186:63;3241:7;3230:8;3219:9;3215:24;3186:63;:::i;:::-;3176:73;;3302:3;3291:9;3287:19;3274:33;3258:49;;3332:2;3322:8;3319:16;3316:36;;;3348:1;3345;3338:12;3316:36;;3371:51;3414:7;3403:8;3392:9;3388:24;3371:51;:::i;:::-;3361:61;;;2485:943;;;;;;;;:::o;3433:606::-;3537:6;3545;3553;3561;3569;3622:3;3610:9;3601:7;3597:23;3593:33;3590:53;;;3639:1;3636;3629:12;3590:53;3662:29;3681:9;3662:29;:::i;:::-;3652:39;;3710:38;3744:2;3733:9;3729:18;3710:38;:::i;:::-;3700:48;;3795:2;3784:9;3780:18;3767:32;3757:42;;3846:2;3835:9;3831:18;3818:32;3808:42;;3901:3;3890:9;3886:19;3873:33;-1:-1:-1;;;;;3921:6:1;3918:30;3915:50;;;3961:1;3958;3951:12;3915:50;3984:49;4025:7;4016:6;4005:9;4001:22;3984:49;:::i;4044:254::-;4109:6;4117;4170:2;4158:9;4149:7;4145:23;4141:32;4138:52;;;4186:1;4183;4176:12;4138:52;4209:29;4228:9;4209:29;:::i;:::-;4199:39;;4257:35;4288:2;4277:9;4273:18;4257:35;:::i;4303:254::-;4371:6;4379;4432:2;4420:9;4411:7;4407:23;4403:32;4400:52;;;4448:1;4445;4438:12;4400:52;4471:29;4490:9;4471:29;:::i;:::-;4461:39;4547:2;4532:18;;;;4519:32;;-1:-1:-1;;;4303:254:1:o;4562:322::-;4639:6;4647;4655;4708:2;4696:9;4687:7;4683:23;4679:32;4676:52;;;4724:1;4721;4714:12;4676:52;4747:29;4766:9;4747:29;:::i;:::-;4737:39;4823:2;4808:18;;4795:32;;-1:-1:-1;4874:2:1;4859:18;;;4846:32;;4562:322;-1:-1:-1;;;4562:322:1:o;4889:437::-;4975:6;4983;5036:2;5024:9;5015:7;5011:23;5007:32;5004:52;;;5052:1;5049;5042:12;5004:52;5092:9;5079:23;-1:-1:-1;;;;;5117:6:1;5114:30;5111:50;;;5157:1;5154;5147:12;5111:50;5196:70;5258:7;5249:6;5238:9;5234:22;5196:70;:::i;:::-;5285:8;;5170:96;;-1:-1:-1;4889:437:1;-1:-1:-1;;;;4889:437:1:o;5331:573::-;5435:6;5443;5451;5459;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5568:9;5555:23;-1:-1:-1;;;;;5593:6:1;5590:30;5587:50;;;5633:1;5630;5623:12;5587:50;5672:70;5734:7;5725:6;5714:9;5710:22;5672:70;:::i;:::-;5761:8;;5646:96;;-1:-1:-1;5843:2:1;5828:18;;5815:32;;5894:2;5879:18;5866:32;;-1:-1:-1;5331:573:1;-1:-1:-1;;;;5331:573:1:o;5909:1219::-;6027:6;6035;6088:2;6076:9;6067:7;6063:23;6059:32;6056:52;;;6104:1;6101;6094:12;6056:52;6144:9;6131:23;-1:-1:-1;;;;;6214:2:1;6206:6;6203:14;6200:34;;;6230:1;6227;6220:12;6200:34;6268:6;6257:9;6253:22;6243:32;;6313:7;6306:4;6302:2;6298:13;6294:27;6284:55;;6335:1;6332;6325:12;6284:55;6371:2;6358:16;6393:4;6416:43;6456:2;6416:43;:::i;:::-;6488:2;6482:9;6500:31;6528:2;6520:6;6500:31;:::i;:::-;6566:18;;;6600:15;;;;-1:-1:-1;6635:11:1;;;6677:1;6673:10;;;6665:19;;6661:28;;6658:41;-1:-1:-1;6655:61:1;;;6712:1;6709;6702:12;6655:61;6734:1;6725:10;;6744:169;6758:2;6755:1;6752:9;6744:169;;;6815:23;6834:3;6815:23;:::i;:::-;6803:36;;6776:1;6769:9;;;;;6859:12;;;;6891;;6744:169;;;-1:-1:-1;6932:6:1;-1:-1:-1;;6976:18:1;;6963:32;;-1:-1:-1;;7007:16:1;;;7004:36;;;7036:1;7033;7026:12;7004:36;;7059:63;7114:7;7103:8;7092:9;7088:24;7059:63;:::i;:::-;7049:73;;;5909:1219;;;;;:::o;7133:180::-;7189:6;7242:2;7230:9;7221:7;7217:23;7213:32;7210:52;;;7258:1;7255;7248:12;7210:52;7281:26;7297:9;7281:26;:::i;7318:659::-;7397:6;7405;7413;7466:2;7454:9;7445:7;7441:23;7437:32;7434:52;;;7482:1;7479;7472:12;7434:52;7518:9;7505:23;7495:33;;7579:2;7568:9;7564:18;7551:32;-1:-1:-1;;;;;7643:2:1;7635:6;7632:14;7629:34;;;7659:1;7656;7649:12;7629:34;7697:6;7686:9;7682:22;7672:32;;7742:7;7735:4;7731:2;7727:13;7723:27;7713:55;;7764:1;7761;7754:12;7713:55;7804:2;7791:16;7830:2;7822:6;7819:14;7816:34;;;7846:1;7843;7836:12;7816:34;7891:7;7886:2;7877:6;7873:2;7869:15;7865:24;7862:37;7859:57;;;7912:1;7909;7902:12;7859:57;7943:2;7939;7935:11;7925:21;;7965:6;7955:16;;;;;7318:659;;;;;:::o;7982:245::-;8040:6;8093:2;8081:9;8072:7;8068:23;8064:32;8061:52;;;8109:1;8106;8099:12;8061:52;8148:9;8135:23;8167:30;8191:5;8167:30;:::i;8232:249::-;8301:6;8354:2;8342:9;8333:7;8329:23;8325:32;8322:52;;;8370:1;8367;8360:12;8322:52;8402:9;8396:16;8421:30;8445:5;8421:30;:::i;8486:321::-;8555:6;8608:2;8596:9;8587:7;8583:23;8579:32;8576:52;;;8624:1;8621;8614:12;8576:52;8664:9;8651:23;-1:-1:-1;;;;;8689:6:1;8686:30;8683:50;;;8729:1;8726;8719:12;8683:50;8752:49;8793:7;8784:6;8773:9;8769:22;8752:49;:::i;:::-;8742:59;8486:321;-1:-1:-1;;;;8486:321:1:o;8812:389::-;8890:6;8898;8951:2;8939:9;8930:7;8926:23;8922:32;8919:52;;;8967:1;8964;8957:12;8919:52;9007:9;8994:23;-1:-1:-1;;;;;9032:6:1;9029:30;9026:50;;;9072:1;9069;9062:12;9026:50;9095:49;9136:7;9127:6;9116:9;9112:22;9095:49;:::i;:::-;9085:59;9191:2;9176:18;;;;9163:32;;-1:-1:-1;;;;8812:389:1:o;9206:180::-;9265:6;9318:2;9306:9;9297:7;9293:23;9289:32;9286:52;;;9334:1;9331;9324:12;9286:52;-1:-1:-1;9357:23:1;;9206:180;-1:-1:-1;9206:180:1:o;9391:435::-;9444:3;9482:5;9476:12;9509:6;9504:3;9497:19;9535:4;9564:2;9559:3;9555:12;9548:19;;9601:2;9594:5;9590:14;9622:1;9632:169;9646:6;9643:1;9640:13;9632:169;;;9707:13;;9695:26;;9741:12;;;;9776:15;;;;9668:1;9661:9;9632:169;;;-1:-1:-1;9817:3:1;;9391:435;-1:-1:-1;;;;;9391:435:1:o;9831:471::-;9872:3;9910:5;9904:12;9937:6;9932:3;9925:19;9962:1;9972:162;9986:6;9983:1;9980:13;9972:162;;;10048:4;10104:13;;;10100:22;;10094:29;10076:11;;;10072:20;;10065:59;10001:12;9972:162;;;10152:6;10149:1;10146:13;10143:87;;;10218:1;10211:4;10202:6;10197:3;10193:16;10189:27;10182:38;10143:87;-1:-1:-1;10284:2:1;10263:15;-1:-1:-1;;10259:29:1;10250:39;;;;10291:4;10246:50;;9831:471;-1:-1:-1;;9831:471:1:o;11283:826::-;-1:-1:-1;;;;;11680:15:1;;;11662:34;;11732:15;;11727:2;11712:18;;11705:43;11642:3;11779:2;11764:18;;11757:31;;;11605:4;;11811:57;;11848:19;;11840:6;11811:57;:::i;:::-;11916:9;11908:6;11904:22;11899:2;11888:9;11884:18;11877:50;11950:44;11987:6;11979;11950:44;:::i;:::-;11936:58;;12043:9;12035:6;12031:22;12025:3;12014:9;12010:19;12003:51;12071:32;12096:6;12088;12071:32;:::i;:::-;12063:40;11283:826;-1:-1:-1;;;;;;;;11283:826:1:o;12114:560::-;-1:-1:-1;;;;;12411:15:1;;;12393:34;;12463:15;;12458:2;12443:18;;12436:43;12510:2;12495:18;;12488:34;;;12553:2;12538:18;;12531:34;;;12373:3;12596;12581:19;;12574:32;;;12336:4;;12623:45;;12648:19;;12640:6;12623:45;:::i;:::-;12615:53;12114:560;-1:-1:-1;;;;;;;12114:560:1:o;12679:261::-;12858:2;12847:9;12840:21;12821:4;12878:56;12930:2;12919:9;12915:18;12907:6;12878:56;:::i;12945:465::-;13202:2;13191:9;13184:21;13165:4;13228:56;13280:2;13269:9;13265:18;13257:6;13228:56;:::i;:::-;13332:9;13324:6;13320:22;13315:2;13304:9;13300:18;13293:50;13360:44;13397:6;13389;13360:44;:::i;:::-;13352:52;12945:465;-1:-1:-1;;;;;12945:465:1:o;14010:219::-;14159:2;14148:9;14141:21;14122:4;14179:44;14219:2;14208:9;14204:18;14196:6;14179:44;:::i;15008:404::-;15210:2;15192:21;;;15249:2;15229:18;;;15222:30;15288:34;15283:2;15268:18;;15261:62;-1:-1:-1;;;15354:2:1;15339:18;;15332:38;15402:3;15387:19;;15008:404::o;16472:401::-;16674:2;16656:21;;;16713:2;16693:18;;;16686:30;16752:34;16747:2;16732:18;;16725:62;-1:-1:-1;;;16818:2:1;16803:18;;16796:35;16863:3;16848:19;;16472:401::o;19905:::-;20107:2;20089:21;;;20146:2;20126:18;;;20119:30;20185:34;20180:2;20165:18;;20158:62;-1:-1:-1;;;20251:2:1;20236:18;;20229:35;20296:3;20281:19;;19905:401::o;21839:406::-;22041:2;22023:21;;;22080:2;22060:18;;;22053:30;22119:34;22114:2;22099:18;;22092:62;-1:-1:-1;;;22185:2:1;22170:18;;22163:40;22235:3;22220:19;;21839:406::o;22250:356::-;22452:2;22434:21;;;22471:18;;;22464:30;22530:34;22525:2;22510:18;;22503:62;22597:2;22582:18;;22250:356::o;26486:183::-;26546:4;-1:-1:-1;;;;;26571:6:1;26568:30;26565:56;;;26601:18;;:::i;:::-;-1:-1:-1;26646:1:1;26642:14;26658:4;26638:25;;26486:183::o;26674:128::-;26714:3;26745:1;26741:6;26738:1;26735:13;26732:39;;;26751:18;;:::i;:::-;-1:-1:-1;26787:9:1;;26674:128::o;26807:168::-;26847:7;26913:1;26909;26905:6;26901:14;26898:1;26895:21;26890:1;26883:9;26876:17;26872:45;26869:71;;;26920:18;;:::i;:::-;-1:-1:-1;26960:9:1;;26807:168::o;26980:125::-;27020:4;27048:1;27045;27042:8;27039:34;;;27053:18;;:::i;:::-;-1:-1:-1;27090:9:1;;26980:125::o;27110:380::-;27189:1;27185:12;;;;27232;;;27253:61;;27307:4;27299:6;27295:17;27285:27;;27253:61;27360:2;27352:6;27349:14;27329:18;27326:38;27323:161;;;27406:10;27401:3;27397:20;27394:1;27387:31;27441:4;27438:1;27431:15;27469:4;27466:1;27459:15;27495:249;27605:2;27586:13;;-1:-1:-1;;27582:27:1;27570:40;;-1:-1:-1;;;;;27625:34:1;;27661:22;;;27622:62;27619:88;;;27687:18;;:::i;:::-;27723:2;27716:22;-1:-1:-1;;27495:249:1:o;27749:135::-;27788:3;-1:-1:-1;;27809:17:1;;27806:43;;;27829:18;;:::i;:::-;-1:-1:-1;27876:1:1;27865:13;;27749:135::o;27889:127::-;27950:10;27945:3;27941:20;27938:1;27931:31;27981:4;27978:1;27971:15;28005:4;28002:1;27995:15;28021:127;28082:10;28077:3;28073:20;28070:1;28063:31;28113:4;28110:1;28103:15;28137:4;28134:1;28127:15;28153:127;28214:10;28209:3;28205:20;28202:1;28195:31;28245:4;28242:1;28235:15;28269:4;28266:1;28259:15;28285:127;28346:10;28341:3;28337:20;28334:1;28327:31;28377:4;28374:1;28367:15;28401:4;28398:1;28391:15;28417:179;28452:3;28494:1;28476:16;28473:23;28470:120;;;28540:1;28537;28534;28519:23;-1:-1:-1;28577:1:1;28571:8;28566:3;28562:18;28470:120;28417:179;:::o;28601:671::-;28640:3;28682:4;28664:16;28661:26;28658:39;;;28601:671;:::o;28658:39::-;28724:2;28718:9;-1:-1:-1;;28789:16:1;28785:25;;28782:1;28718:9;28761:50;28840:4;28834:11;28864:16;-1:-1:-1;;;;;28970:2:1;28963:4;28955:6;28951:17;28948:25;28943:2;28935:6;28932:14;28929:45;28926:58;;;28977:5;;;;;28601:671;:::o;28926:58::-;29014:6;29008:4;29004:17;28993:28;;29050:3;29044:10;29077:2;29069:6;29066:14;29063:27;;;29083:5;;;;;;28601:671;:::o;29063:27::-;29167:2;29148:16;29142:4;29138:27;29134:36;29127:4;29118:6;29113:3;29109:16;29105:27;29102:69;29099:82;;;29174:5;;;;;;28601:671;:::o;29099:82::-;29190:57;29241:4;29232:6;29224;29220:19;29216:30;29210:4;29190:57;:::i;:::-;-1:-1:-1;29263:3:1;;28601:671;-1:-1:-1;;;;;28601:671:1:o;29277:131::-;-1:-1:-1;;;;;;29351:32:1;;29341:43;;29331:71;;29398:1;29395;29388:12

Swarm Source

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