ETH Price: $3,360.02 (-1.66%)
Gas: 7 Gwei

Token

JRNY Club Rewards Collection (JRNYREWARDS)
 

Overview

Max Total Supply

19,263 JRNYREWARDS

Holders

8,429

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dangov.eth
0xad7fd9DE447D1BB9BAB46B2cbE890f3C0c4adDC8
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:
JRNYRewardsNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-12
*/

/**
 *Submitted for verification at Etherscan.io on 2022-04-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

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


/**
 * @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;
    }
}

/**
 * @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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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 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));
    }
}

/**
 * @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;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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


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

/**
 * @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;
}


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


/**
 * @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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), 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);

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

        _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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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);

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

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

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

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

        emit TransferSingle(operator, account, address(0), id, amount);
    }

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

        address operator = _msgSender();

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

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

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

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @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 {}

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


contract JRNYRewardsNFT is ERC1155 {
    address public admin;
    string public name;
    string public symbol;
    string public metadata;
    
    mapping(uint256 => bool) minted;
	mapping(uint256 => bool) nonTransferrable;
    
    using ECDSA for bytes32;
    address signer;
		address maintainer;

    modifier onlyAdmin {
        require(admin == msg.sender, "Not allowed");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _metadata
    ) ERC1155("") {
        name = _name;
        symbol = _symbol;
        metadata = _metadata;
        admin = msg.sender;
    }

    function authorizedMint(uint _nftId, bool _unique, uint _nonce, bytes memory _signature) public {
        bytes32 hash = hashTransaction(msg.sender, _nftId, _unique, _nonce);
        require(!minted[uint(hash)], "Token already minted");
        require(matchSignerAdmin(signTransaction(hash), _signature), "Signature mismatch");
        minted[uint(hash)] = true;
        _mint(msg.sender, _nftId, 1, "");
    }

    function adminBatchMint(
        address[] memory _to,
        uint256[] memory _ids,
        uint256[] memory _values,
        bytes memory _data
    ) public onlyAdmin {
        for (uint256 i = 0; i < _to.length; i++) {
            _mint(_to[i], _ids[i], _values[i], _data);
        }
    }

    function updateMetadata(string memory _metadata) external {
		require (msg.sender == admin || msg.sender == maintainer, "Not allowed");
        metadata = _metadata;
    }

    function uri(uint256 _id) public view override returns (string memory) {
        return string(abi.encodePacked(metadata, uint2str(_id), ".json"));
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
    
    function hasBeenMinted(address _sender, uint _nftId, bool _unique, uint _nonce) public view returns (bool) {
        return minted[uint(keccak256(abi.encode(_sender, _nftId, _unique, _nonce)))];
    }
    
    function hashTransaction(address _sender, uint _nftId, bool _unique, uint _nonce) public pure returns (bytes32) {
        bytes32 _hash = keccak256(abi.encode(_sender, _nftId, _unique, _nonce));
    	return _hash;
	}
	
	
	function signTransaction(bytes32 _hash) public pure returns (bytes32) {
	    return _hash.toEthSignedMessageHash();
	}

	function matchSignerAdmin(bytes32 _payload, bytes memory _signature) public view returns (bool) {
		return signer == _payload.recover(_signature);
	}

    function changeMaintainer(address newAddress) external onlyAdmin {
        maintainer = newAddress;
    }
	
	function changeAdmin(address newAdmin) external onlyAdmin {
	    admin = newAdmin;
	}
	
	function changeApprovedSigner(address newSigner) external onlyAdmin {
	    signer = newSigner;
	}

	function setTransferrableState(uint256 id, bool transferrable) external onlyAdmin {
		nonTransferrable[id] = !transferrable;
	}

	function isNonTransferrable(uint256 id) external view returns(bool) {
		return nonTransferrable[id];
	}

	function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public override {
		require(!nonTransferrable[id], "Asset non transferrable");
		super.safeTransferFrom(from, to, id, amount, data);
	}

	function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public override {
		for (uint i; i < ids.length ; ) {
			require(!nonTransferrable[ids[i]], "Asset non transferrable");
			unchecked { ++i; }
		}
		super.safeBatchTransferFrom(from, to, ids, amounts, data);
	}

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_metadata","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":"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"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"adminBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"authorizedMint","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":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"changeApprovedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"changeMaintainer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"hasBeenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"bool","name":"_unique","type":"bool"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"hashTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isNonTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_payload","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"matchSignerAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"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":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"transferrable","type":"bool"}],"name":"setTransferrableState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"signTransaction","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","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":"string","name":"_metadata","type":"string"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200316638038062003166833981016040819052620000349162000223565b6040805160208101909152600081526200004e81620000ad565b50825162000064906004906020860190620000c6565b5081516200007a906005906020850190620000c6565b50805162000090906006906020840190620000c6565b5050600380546001600160a01b0319163317905550620003079050565b8051620000c2906002906020840190620000c6565b5050565b828054620000d490620002b4565b90600052602060002090601f016020900481019282620000f8576000855562000143565b82601f106200011357805160ff191683800117855562000143565b8280016001018555821562000143579182015b828111156200014357825182559160200191906001019062000126565b506200015192915062000155565b5090565b5b8082111562000151576000815560010162000156565b600082601f8301126200017e57600080fd5b81516001600160401b03808211156200019b576200019b620002f1565b604051601f8301601f19908116603f01168101908282118183101715620001c657620001c6620002f1565b81604052838152602092508683858801011115620001e357600080fd5b600091505b83821015620002075785820183015181830184015290820190620001e8565b83821115620002195760008385830101525b9695505050505050565b6000806000606084860312156200023957600080fd5b83516001600160401b03808211156200025157600080fd5b6200025f878388016200016c565b945060208601519150808211156200027657600080fd5b62000284878388016200016c565b935060408601519150808211156200029b57600080fd5b50620002aa868287016200016c565b9150509250925092565b600181811c90821680620002c957607f821691505b60208210811415620002eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e4f80620003176000396000f3fe608060405234801561001057600080fd5b50600436106101965760003560e01c8063918b5be1116100e3578063d87b90d21161008c578063ed1261ba11610066578063ed1261ba14610445578063f242432a14610458578063f851a4401461046b57600080fd5b8063d87b90d214610371578063e0f4ea90146103e9578063e985e9c5146103fc57600080fd5b8063a12ee7ba116100bd578063a12ee7ba146102e6578063a22cb465146102f9578063a5848ee11461030c57600080fd5b8063918b5be1146102b8578063955c20b2146102cb57806395d89b41146102de57600080fd5b80632eb2c2d6116101455780636613d13a1161011f5780636613d13a1461027f57806385a318e1146102925780638f283970146102a557600080fd5b80632eb2c2d614610244578063392f37e9146102575780634e1273f41461025f57600080fd5b806306fdde031161017657806306fdde03146102075780630e89341c1461021c5780631c2c48161461022f57600080fd5b806283fc9d1461019b578062fdd58e146101d357806301ffc9a7146101f4575b600080fd5b6101be6101a93660046126a5565b60009081526008602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101e66101e1366004612526565b6104b0565b6040519081526020016101ca565b6101be6102023660046126fb565b610573565b61020f610584565b6040516101ca9190612a7e565b61020f61022a3660046126a5565b610612565b61024261023d366004612786565b610646565b005b6102426102523660046123ed565b6106ea565b61020f610794565b61027261026d366004612594565b6107a1565b6040516101ca9190612a46565b61024261028d36600461239f565b6108df565b6102426102a03660046127a9565b61098d565b6102426102b336600461239f565b610add565b6102426102c6366004612735565b610b8b565b6101e66102d93660046126a5565b610c2b565b61020f610c84565b6102426102f436600461239f565b610c91565b6102426103073660046124fc565b610d3f565b6101e661031a366004612550565b6040805173ffffffffffffffffffffffffffffffffffffffff959095166020808701919091528582019490945291151560608501526080808501919091528151808503909101815260a09093019052815191012090565b6101be61037f366004612550565b6040805173ffffffffffffffffffffffffffffffffffffffff959095166020808701919091528582019490945291151560608501526080808501919091528151808503909101815260a0909301815282519282019290922060009081526007909152205460ff1690565b6101be6103f73660046126be565b610e62565b6101be61040a3660046123ba565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102426104533660046125f8565b610e93565b610242610466366004612497565b610f6f565b60035461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101ca565b600073ffffffffffffffffffffffffffffffffffffffff83166105405760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b600061057e82610fdb565b92915050565b6004805461059190612bb1565b80601f01602080910402602001604051908101604052809291908181526020018280546105bd90612bb1565b801561060a5780601f106105df5761010080835404028352916020019161060a565b820191906000526020600020905b8154815290600101906020018083116105ed57829003601f168201915b505050505081565b6060600661061f836110be565b604051602001610630929190612881565b6040516020818303038152906040529050919050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146106ad5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b60009182526008602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115919091179055565b60005b835181101561077f576008600085838151811061070c5761070c612cc9565b60209081029190910181015182528101919091526040016000205460ff16156107775760405162461bcd60e51b815260206004820152601760248201527f4173736574206e6f6e207472616e736665727261626c650000000000000000006044820152606401610537565b6001016106ed565b5061078d858585858561121b565b5050505050565b6006805461059190612bb1565b6060815183511461081a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610537565b6000835167ffffffffffffffff81111561083657610836612cf8565b60405190808252806020026020018201604052801561085f578160200160208202803683370190505b50905060005b84518110156108d7576108aa85828151811061088357610883612cc9565b602002602001015185838151811061089d5761089d612cc9565b60200260200101516104b0565b8282815181106108bc576108bc612cc9565b60209081029190910101526108d081612c32565b9050610865565b509392505050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146109465760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040805133602080830191909152818301879052851515606083015260808083018690528351808403909101815260a09092018352815191810191909120600081815260079092529190205460ff1615610a295760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479206d696e7465640000000000000000000000006044820152606401610537565b610a3b610a3582610c2b565b83610e62565b610a875760405162461bcd60e51b815260206004820152601260248201527f5369676e6174757265206d69736d6174636800000000000000000000000000006044820152606401610537565b600081815260076020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155815192830190915291815261078d9133918891906112c3565b60035473ffffffffffffffffffffffffffffffffffffffff163314610b445760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff16331480610bc85750600a5473ffffffffffffffffffffffffffffffffffffffff1633145b610c145760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b8051610c27906006906020840190612160565b5050565b600061057e826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6005805461059190612bb1565b60035473ffffffffffffffffffffffffffffffffffffffff163314610cf85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3373ffffffffffffffffffffffffffffffffffffffff83161415610dcb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610537565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e6e8383611410565b60095473ffffffffffffffffffffffffffffffffffffffff9182169116149392505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610efa5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b60005b845181101561078d57610f5d858281518110610f1b57610f1b612cc9565b6020026020010151858381518110610f3557610f35612cc9565b6020026020010151858481518110610f4f57610f4f612cc9565b6020026020010151856112c3565b80610f6781612c32565b915050610efd565b60008381526008602052604090205460ff1615610fce5760405162461bcd60e51b815260206004820152601760248201527f4173736574206e6f6e207472616e736665727261626c650000000000000000006044820152606401610537565b61078d858585858561142c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061106e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061057e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461057e565b6060816110fe57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611128578061111281612c32565b91506111219050600a83612af2565b9150611102565b60008167ffffffffffffffff81111561114357611143612cf8565b6040519080825280601f01601f19166020018201604052801561116d576020820181803683370190505b509050815b851561121257611183600182612b6a565b90506000611192600a88612af2565b61119d90600a612b2d565b6111a79088612b6a565b6111b2906030612acd565b905060008160f81b9050808484815181106111cf576111cf612cc9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611209600a89612af2565b97505050611172565b50949350505050565b73ffffffffffffffffffffffffffffffffffffffff85163314806112445750611244853361040a565b6112b65760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610537565b61078d85858585856114d4565b73ffffffffffffffffffffffffffffffffffffffff841661134c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610537565b336113668160008761135d886117c0565b61078d886117c0565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff89168452909152812080548592906113a3908490612ab5565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461078d8160008787878761180b565b600080600061141f8585611a42565b915091506108d781611ab2565b73ffffffffffffffffffffffffffffffffffffffff85163314806114555750611455853361040a565b6114c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610537565b61078d8585858585611ca6565b815183511461154b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610537565b73ffffffffffffffffffffffffffffffffffffffff84166115d45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610537565b3360005b845181101561172b5760008582815181106115f5576115f5612cc9565b60200260200101519050600085838151811061161357611613612cc9565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e1683529093529190912054909150818110156116c65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610537565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290611710908490612ab5565b925050819055505050508061172490612c32565b90506115d8565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117a2929190612a59565b60405180910390a46117b8818787878787611e9a565b505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106117fa576117fa612cc9565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b156117b8576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e619061188290899089908890889088906004016129f6565b602060405180830381600087803b15801561189c57600080fd5b505af19250505080156118cc575060408051601f3d908101601f191682019092526118c991810190612718565b60015b611982576118d8612d27565b806308c379a0141561191257506118ed612d43565b806118f85750611914565b8060405162461bcd60e51b81526004016105379190612a7e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610537565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611a395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610537565b50505050505050565b600080825160411415611a795760208301516040840151606085015160001a611a6d8782858561201e565b94509450505050611aab565b825160401415611aa35760208301516040840151611a98868383612118565b935093505050611aab565b506000905060025b9250929050565b6000816004811115611ac657611ac6612c9a565b1415611acf5750565b6001816004811115611ae357611ae3612c9a565b1415611b315760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610537565b6002816004811115611b4557611b45612c9a565b1415611b935760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610537565b6003816004811115611ba757611ba7612c9a565b1415611c1b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610537565b6004816004811115611c2f57611c2f612c9a565b1415611ca35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610537565b50565b73ffffffffffffffffffffffffffffffffffffffff8416611d2f5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610537565b33611d3f81878761135d886117c0565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a16845290915290205483811015611de35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610537565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b8116855292528083208785039055908816825281208054869290611e2d908490612ab5565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a3982888888888861180b565b73ffffffffffffffffffffffffffffffffffffffff84163b156117b8576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c8190611f11908990899088908890889060040161298b565b602060405180830381600087803b158015611f2b57600080fd5b505af1925050508015611f5b575060408051601f3d908101601f19168201909252611f5891810190612718565b60015b611f67576118d8612d27565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611a395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610537565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612055575060009050600361210f565b8460ff16601b1415801561206d57508460ff16601c14155b1561207e575060009050600461210f565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120d2573d6000803e3d6000fd5b5050604051601f19015191505073ffffffffffffffffffffffffffffffffffffffff81166121085760006001925092505061210f565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016121528782888561201e565b935093505050935093915050565b82805461216c90612bb1565b90600052602060002090601f01602090048101928261218e57600085556121d4565b82601f106121a757805160ff19168380011785556121d4565b828001600101855582156121d4579182015b828111156121d45782518255916020019190600101906121b9565b506121e09291506121e4565b5090565b5b808211156121e057600081556001016121e5565b600067ffffffffffffffff83111561221357612213612cf8565b60405161222a6020601f19601f8701160182612c05565b80915083815284848401111561223f57600080fd5b83836020830137600060208583010152509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461227b57600080fd5b919050565b600082601f83011261229157600080fd5b8135602061229e82612a91565b6040516122ab8282612c05565b8381528281019150858301600585901b870184018810156122cb57600080fd5b60005b858110156122f1576122df82612257565b845292840192908401906001016122ce565b5090979650505050505050565b600082601f83011261230f57600080fd5b8135602061231c82612a91565b6040516123298282612c05565b8381528281019150858301600585901b8701840188101561234957600080fd5b60005b858110156122f15781358452928401929084019060010161234c565b8035801515811461227b57600080fd5b600082601f83011261238957600080fd5b612398838335602085016121f9565b9392505050565b6000602082840312156123b157600080fd5b61239882612257565b600080604083850312156123cd57600080fd5b6123d683612257565b91506123e460208401612257565b90509250929050565b600080600080600060a0868803121561240557600080fd5b61240e86612257565b945061241c60208701612257565b9350604086013567ffffffffffffffff8082111561243957600080fd5b61244589838a016122fe565b9450606088013591508082111561245b57600080fd5b61246789838a016122fe565b9350608088013591508082111561247d57600080fd5b5061248a88828901612378565b9150509295509295909350565b600080600080600060a086880312156124af57600080fd5b6124b886612257565b94506124c660208701612257565b93506040860135925060608601359150608086013567ffffffffffffffff8111156124f057600080fd5b61248a88828901612378565b6000806040838503121561250f57600080fd5b61251883612257565b91506123e460208401612368565b6000806040838503121561253957600080fd5b61254283612257565b946020939093013593505050565b6000806000806080858703121561256657600080fd5b61256f85612257565b93506020850135925061258460408601612368565b9396929550929360600135925050565b600080604083850312156125a757600080fd5b823567ffffffffffffffff808211156125bf57600080fd5b6125cb86838701612280565b935060208501359150808211156125e157600080fd5b506125ee858286016122fe565b9150509250929050565b6000806000806080858703121561260e57600080fd5b843567ffffffffffffffff8082111561262657600080fd5b61263288838901612280565b9550602087013591508082111561264857600080fd5b612654888389016122fe565b9450604087013591508082111561266a57600080fd5b612676888389016122fe565b9350606087013591508082111561268c57600080fd5b5061269987828801612378565b91505092959194509250565b6000602082840312156126b757600080fd5b5035919050565b600080604083850312156126d157600080fd5b82359150602083013567ffffffffffffffff8111156126ef57600080fd5b6125ee85828601612378565b60006020828403121561270d57600080fd5b813561239881612deb565b60006020828403121561272a57600080fd5b815161239881612deb565b60006020828403121561274757600080fd5b813567ffffffffffffffff81111561275e57600080fd5b8201601f8101841361276f57600080fd5b61277e848235602084016121f9565b949350505050565b6000806040838503121561279957600080fd5b823591506123e460208401612368565b600080600080608085870312156127bf57600080fd5b843593506127cf60208601612368565b925060408501359150606085013567ffffffffffffffff8111156127f257600080fd5b61269987828801612378565b600081518084526020808501945080840160005b8381101561282e57815187529582019590820190600101612812565b509495945050505050565b60008151808452612851816020860160208601612b81565b601f01601f19169290920160200192915050565b60008151612877818560208601612b81565b9290920192915050565b600080845481600182811c91508083168061289d57607f831692505b60208084108214156128d6577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156128ea576001811461291957612946565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612946565b60008b81526020902060005b8681101561293e5781548b820152908501908301612925565b505084890196505b5050505050506129826129598286612865565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526129c460a08301866127fe565b82810360608401526129d681866127fe565b905082810360808401526129ea8185612839565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152612a3b60a0830184612839565b979650505050505050565b60208152600061239860208301846127fe565b604081526000612a6c60408301856127fe565b828103602084015261298281856127fe565b6020815260006123986020830184612839565b600067ffffffffffffffff821115612aab57612aab612cf8565b5060051b60200190565b60008219821115612ac857612ac8612c6b565b500190565b600060ff821660ff84168060ff03821115612aea57612aea612c6b565b019392505050565b600082612b28577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6557612b65612c6b565b500290565b600082821015612b7c57612b7c612c6b565b500390565b60005b83811015612b9c578181015183820152602001612b84565b83811115612bab576000848401525b50505050565b600181811c90821680612bc557607f821691505b60208210811415612bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff82111715612c2b57612c2b612cf8565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6457612c64612c6b565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612d405760046000803e5060005160e01c5b90565b600060443d1015612d515790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715612d9f57505050505090565b8285019150815181811115612db75750505050505090565b843d8701016020828501011115612dd15750505050505090565b612de060208286010187612c05565b509095945050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ca357600080fdfea2646970667358221220704ac36c6ba691d648adc27b09ae9cb754d3c6b73f5e49a337046bb80e9e291f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c4a524e5920436c7562205265776172647320436f6c6c656374696f6e00000000000000000000000000000000000000000000000000000000000000000000000b4a524e59524557415244530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d535441787a34476d4451365333526a6a7a4270717a3563556a5a6934464c556b475567376d6b7779704e76502f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101965760003560e01c8063918b5be1116100e3578063d87b90d21161008c578063ed1261ba11610066578063ed1261ba14610445578063f242432a14610458578063f851a4401461046b57600080fd5b8063d87b90d214610371578063e0f4ea90146103e9578063e985e9c5146103fc57600080fd5b8063a12ee7ba116100bd578063a12ee7ba146102e6578063a22cb465146102f9578063a5848ee11461030c57600080fd5b8063918b5be1146102b8578063955c20b2146102cb57806395d89b41146102de57600080fd5b80632eb2c2d6116101455780636613d13a1161011f5780636613d13a1461027f57806385a318e1146102925780638f283970146102a557600080fd5b80632eb2c2d614610244578063392f37e9146102575780634e1273f41461025f57600080fd5b806306fdde031161017657806306fdde03146102075780630e89341c1461021c5780631c2c48161461022f57600080fd5b806283fc9d1461019b578062fdd58e146101d357806301ffc9a7146101f4575b600080fd5b6101be6101a93660046126a5565b60009081526008602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101e66101e1366004612526565b6104b0565b6040519081526020016101ca565b6101be6102023660046126fb565b610573565b61020f610584565b6040516101ca9190612a7e565b61020f61022a3660046126a5565b610612565b61024261023d366004612786565b610646565b005b6102426102523660046123ed565b6106ea565b61020f610794565b61027261026d366004612594565b6107a1565b6040516101ca9190612a46565b61024261028d36600461239f565b6108df565b6102426102a03660046127a9565b61098d565b6102426102b336600461239f565b610add565b6102426102c6366004612735565b610b8b565b6101e66102d93660046126a5565b610c2b565b61020f610c84565b6102426102f436600461239f565b610c91565b6102426103073660046124fc565b610d3f565b6101e661031a366004612550565b6040805173ffffffffffffffffffffffffffffffffffffffff959095166020808701919091528582019490945291151560608501526080808501919091528151808503909101815260a09093019052815191012090565b6101be61037f366004612550565b6040805173ffffffffffffffffffffffffffffffffffffffff959095166020808701919091528582019490945291151560608501526080808501919091528151808503909101815260a0909301815282519282019290922060009081526007909152205460ff1690565b6101be6103f73660046126be565b610e62565b6101be61040a3660046123ba565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b6102426104533660046125f8565b610e93565b610242610466366004612497565b610f6f565b60035461048b9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101ca565b600073ffffffffffffffffffffffffffffffffffffffff83166105405760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b600061057e82610fdb565b92915050565b6004805461059190612bb1565b80601f01602080910402602001604051908101604052809291908181526020018280546105bd90612bb1565b801561060a5780601f106105df5761010080835404028352916020019161060a565b820191906000526020600020905b8154815290600101906020018083116105ed57829003601f168201915b505050505081565b6060600661061f836110be565b604051602001610630929190612881565b6040516020818303038152906040529050919050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146106ad5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b60009182526008602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115919091179055565b60005b835181101561077f576008600085838151811061070c5761070c612cc9565b60209081029190910181015182528101919091526040016000205460ff16156107775760405162461bcd60e51b815260206004820152601760248201527f4173736574206e6f6e207472616e736665727261626c650000000000000000006044820152606401610537565b6001016106ed565b5061078d858585858561121b565b5050505050565b6006805461059190612bb1565b6060815183511461081a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610537565b6000835167ffffffffffffffff81111561083657610836612cf8565b60405190808252806020026020018201604052801561085f578160200160208202803683370190505b50905060005b84518110156108d7576108aa85828151811061088357610883612cc9565b602002602001015185838151811061089d5761089d612cc9565b60200260200101516104b0565b8282815181106108bc576108bc612cc9565b60209081029190910101526108d081612c32565b9050610865565b509392505050565b60035473ffffffffffffffffffffffffffffffffffffffff1633146109465760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040805133602080830191909152818301879052851515606083015260808083018690528351808403909101815260a09092018352815191810191909120600081815260079092529190205460ff1615610a295760405162461bcd60e51b815260206004820152601460248201527f546f6b656e20616c7265616479206d696e7465640000000000000000000000006044820152606401610537565b610a3b610a3582610c2b565b83610e62565b610a875760405162461bcd60e51b815260206004820152601260248201527f5369676e6174757265206d69736d6174636800000000000000000000000000006044820152606401610537565b600081815260076020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001908117909155815192830190915291815261078d9133918891906112c3565b60035473ffffffffffffffffffffffffffffffffffffffff163314610b445760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60035473ffffffffffffffffffffffffffffffffffffffff16331480610bc85750600a5473ffffffffffffffffffffffffffffffffffffffff1633145b610c145760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b8051610c27906006906020840190612160565b5050565b600061057e826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6005805461059190612bb1565b60035473ffffffffffffffffffffffffffffffffffffffff163314610cf85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3373ffffffffffffffffffffffffffffffffffffffff83161415610dcb5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610537565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e6e8383611410565b60095473ffffffffffffffffffffffffffffffffffffffff9182169116149392505050565b60035473ffffffffffffffffffffffffffffffffffffffff163314610efa5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f7765640000000000000000000000000000000000000000006044820152606401610537565b60005b845181101561078d57610f5d858281518110610f1b57610f1b612cc9565b6020026020010151858381518110610f3557610f35612cc9565b6020026020010151858481518110610f4f57610f4f612cc9565b6020026020010151856112c3565b80610f6781612c32565b915050610efd565b60008381526008602052604090205460ff1615610fce5760405162461bcd60e51b815260206004820152601760248201527f4173736574206e6f6e207472616e736665727261626c650000000000000000006044820152606401610537565b61078d858585858561142c565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061106e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061057e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461057e565b6060816110fe57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611128578061111281612c32565b91506111219050600a83612af2565b9150611102565b60008167ffffffffffffffff81111561114357611143612cf8565b6040519080825280601f01601f19166020018201604052801561116d576020820181803683370190505b509050815b851561121257611183600182612b6a565b90506000611192600a88612af2565b61119d90600a612b2d565b6111a79088612b6a565b6111b2906030612acd565b905060008160f81b9050808484815181106111cf576111cf612cc9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611209600a89612af2565b97505050611172565b50949350505050565b73ffffffffffffffffffffffffffffffffffffffff85163314806112445750611244853361040a565b6112b65760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610537565b61078d85858585856114d4565b73ffffffffffffffffffffffffffffffffffffffff841661134c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610537565b336113668160008761135d886117c0565b61078d886117c0565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff89168452909152812080548592906113a3908490612ab5565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461078d8160008787878761180b565b600080600061141f8585611a42565b915091506108d781611ab2565b73ffffffffffffffffffffffffffffffffffffffff85163314806114555750611455853361040a565b6114c75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610537565b61078d8585858585611ca6565b815183511461154b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610537565b73ffffffffffffffffffffffffffffffffffffffff84166115d45760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610537565b3360005b845181101561172b5760008582815181106115f5576115f5612cc9565b60200260200101519050600085838151811061161357611613612cc9565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e1683529093529190912054909150818110156116c65760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610537565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290611710908490612ab5565b925050819055505050508061172490612c32565b90506115d8565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117a2929190612a59565b60405180910390a46117b8818787878787611e9a565b505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106117fa576117fa612cc9565b602090810291909101015292915050565b73ffffffffffffffffffffffffffffffffffffffff84163b156117b8576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e619061188290899089908890889088906004016129f6565b602060405180830381600087803b15801561189c57600080fd5b505af19250505080156118cc575060408051601f3d908101601f191682019092526118c991810190612718565b60015b611982576118d8612d27565b806308c379a0141561191257506118ed612d43565b806118f85750611914565b8060405162461bcd60e51b81526004016105379190612a7e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610537565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014611a395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610537565b50505050505050565b600080825160411415611a795760208301516040840151606085015160001a611a6d8782858561201e565b94509450505050611aab565b825160401415611aa35760208301516040840151611a98868383612118565b935093505050611aab565b506000905060025b9250929050565b6000816004811115611ac657611ac6612c9a565b1415611acf5750565b6001816004811115611ae357611ae3612c9a565b1415611b315760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610537565b6002816004811115611b4557611b45612c9a565b1415611b935760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610537565b6003816004811115611ba757611ba7612c9a565b1415611c1b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610537565b6004816004811115611c2f57611c2f612c9a565b1415611ca35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610537565b50565b73ffffffffffffffffffffffffffffffffffffffff8416611d2f5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610537565b33611d3f81878761135d886117c0565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a16845290915290205483811015611de35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610537565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b8116855292528083208785039055908816825281208054869290611e2d908490612ab5565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611a3982888888888861180b565b73ffffffffffffffffffffffffffffffffffffffff84163b156117b8576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c8190611f11908990899088908890889060040161298b565b602060405180830381600087803b158015611f2b57600080fd5b505af1925050508015611f5b575060408051601f3d908101601f19168201909252611f5891810190612718565b60015b611f67576118d8612d27565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014611a395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610537565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612055575060009050600361210f565b8460ff16601b1415801561206d57508460ff16601c14155b1561207e575060009050600461210f565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120d2573d6000803e3d6000fd5b5050604051601f19015191505073ffffffffffffffffffffffffffffffffffffffff81166121085760006001925092505061210f565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016121528782888561201e565b935093505050935093915050565b82805461216c90612bb1565b90600052602060002090601f01602090048101928261218e57600085556121d4565b82601f106121a757805160ff19168380011785556121d4565b828001600101855582156121d4579182015b828111156121d45782518255916020019190600101906121b9565b506121e09291506121e4565b5090565b5b808211156121e057600081556001016121e5565b600067ffffffffffffffff83111561221357612213612cf8565b60405161222a6020601f19601f8701160182612c05565b80915083815284848401111561223f57600080fd5b83836020830137600060208583010152509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461227b57600080fd5b919050565b600082601f83011261229157600080fd5b8135602061229e82612a91565b6040516122ab8282612c05565b8381528281019150858301600585901b870184018810156122cb57600080fd5b60005b858110156122f1576122df82612257565b845292840192908401906001016122ce565b5090979650505050505050565b600082601f83011261230f57600080fd5b8135602061231c82612a91565b6040516123298282612c05565b8381528281019150858301600585901b8701840188101561234957600080fd5b60005b858110156122f15781358452928401929084019060010161234c565b8035801515811461227b57600080fd5b600082601f83011261238957600080fd5b612398838335602085016121f9565b9392505050565b6000602082840312156123b157600080fd5b61239882612257565b600080604083850312156123cd57600080fd5b6123d683612257565b91506123e460208401612257565b90509250929050565b600080600080600060a0868803121561240557600080fd5b61240e86612257565b945061241c60208701612257565b9350604086013567ffffffffffffffff8082111561243957600080fd5b61244589838a016122fe565b9450606088013591508082111561245b57600080fd5b61246789838a016122fe565b9350608088013591508082111561247d57600080fd5b5061248a88828901612378565b9150509295509295909350565b600080600080600060a086880312156124af57600080fd5b6124b886612257565b94506124c660208701612257565b93506040860135925060608601359150608086013567ffffffffffffffff8111156124f057600080fd5b61248a88828901612378565b6000806040838503121561250f57600080fd5b61251883612257565b91506123e460208401612368565b6000806040838503121561253957600080fd5b61254283612257565b946020939093013593505050565b6000806000806080858703121561256657600080fd5b61256f85612257565b93506020850135925061258460408601612368565b9396929550929360600135925050565b600080604083850312156125a757600080fd5b823567ffffffffffffffff808211156125bf57600080fd5b6125cb86838701612280565b935060208501359150808211156125e157600080fd5b506125ee858286016122fe565b9150509250929050565b6000806000806080858703121561260e57600080fd5b843567ffffffffffffffff8082111561262657600080fd5b61263288838901612280565b9550602087013591508082111561264857600080fd5b612654888389016122fe565b9450604087013591508082111561266a57600080fd5b612676888389016122fe565b9350606087013591508082111561268c57600080fd5b5061269987828801612378565b91505092959194509250565b6000602082840312156126b757600080fd5b5035919050565b600080604083850312156126d157600080fd5b82359150602083013567ffffffffffffffff8111156126ef57600080fd5b6125ee85828601612378565b60006020828403121561270d57600080fd5b813561239881612deb565b60006020828403121561272a57600080fd5b815161239881612deb565b60006020828403121561274757600080fd5b813567ffffffffffffffff81111561275e57600080fd5b8201601f8101841361276f57600080fd5b61277e848235602084016121f9565b949350505050565b6000806040838503121561279957600080fd5b823591506123e460208401612368565b600080600080608085870312156127bf57600080fd5b843593506127cf60208601612368565b925060408501359150606085013567ffffffffffffffff8111156127f257600080fd5b61269987828801612378565b600081518084526020808501945080840160005b8381101561282e57815187529582019590820190600101612812565b509495945050505050565b60008151808452612851816020860160208601612b81565b601f01601f19169290920160200192915050565b60008151612877818560208601612b81565b9290920192915050565b600080845481600182811c91508083168061289d57607f831692505b60208084108214156128d6577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b8180156128ea576001811461291957612946565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612946565b60008b81526020902060005b8681101561293e5781548b820152908501908301612925565b505084890196505b5050505050506129826129598286612865565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526129c460a08301866127fe565b82810360608401526129d681866127fe565b905082810360808401526129ea8185612839565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a06080830152612a3b60a0830184612839565b979650505050505050565b60208152600061239860208301846127fe565b604081526000612a6c60408301856127fe565b828103602084015261298281856127fe565b6020815260006123986020830184612839565b600067ffffffffffffffff821115612aab57612aab612cf8565b5060051b60200190565b60008219821115612ac857612ac8612c6b565b500190565b600060ff821660ff84168060ff03821115612aea57612aea612c6b565b019392505050565b600082612b28577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b6557612b65612c6b565b500290565b600082821015612b7c57612b7c612c6b565b500390565b60005b83811015612b9c578181015183820152602001612b84565b83811115612bab576000848401525b50505050565b600181811c90821680612bc557607f821691505b60208210811415612bff577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f19601f830116810181811067ffffffffffffffff82111715612c2b57612c2b612cf8565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6457612c64612c6b565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612d405760046000803e5060005160e01c5b90565b600060443d1015612d515790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715612d9f57505050505090565b8285019150815181811115612db75750505050505090565b843d8701016020828501011115612dd15750505050505090565b612de060208286010187612c05565b509095945050505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ca357600080fdfea2646970667358221220704ac36c6ba691d648adc27b09ae9cb754d3c6b73f5e49a337046bb80e9e291f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c4a524e5920436c7562205265776172647320436f6c6c656374696f6e00000000000000000000000000000000000000000000000000000000000000000000000b4a524e59524557415244530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d535441787a34476d4451365333526a6a7a4270717a3563556a5a6934464c556b475567376d6b7779704e76502f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): JRNY Club Rewards Collection
Arg [1] : _symbol (string): JRNYREWARDS
Arg [2] : _metadata (string): ipfs://QmSTAxz4GmDQ6S3RjjzBpqz5cUjZi4FLUkGUg7mkwypNvP/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [4] : 4a524e5920436c7562205265776172647320436f6c6c656374696f6e00000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4a524e5952455741524453000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d535441787a34476d4451365333526a6a7a4270717a3563
Arg [9] : 556a5a6934464c556b475567376d6b7779704e76502f00000000000000000000


Deployed Bytecode Sourcemap

56711:4528:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59860:105;;;;;;:::i;:::-;59922:4;59940:20;;;:16;:20;;;;;;;;;59860:105;;;;15586:14:1;;15579:22;15561:41;;15549:2;15534:18;59860:105:0;;;;;;;;43415:231;;;;;;:::i;:::-;;:::i;:::-;;;15759:25:1;;;15747:2;15732:18;43415:231:0;15613:177:1;58466:212:0;;;;;;:::i;:::-;;:::i;56780:18::-;;;:::i;:::-;;;;;;;:::i;58303:155::-;;;;;;:::i;:::-;;:::i;59726:129::-;;;;;;:::i;:::-;;:::i;:::-;;60264:391;;;;;;:::i;:::-;;:::i;56832:22::-;;;:::i;43812:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59622:99::-;;;;;;:::i;:::-;;:::i;57386:417::-;;;;;;:::i;:::-;;:::i;59529:87::-;;;;;;:::i;:::-;;:::i;58121:174::-;;;;;;:::i;:::-;;:::i;59132:120::-;;;;;;:::i;:::-;;:::i;56805:20::-;;;:::i;59416:107::-;;;;;;:::i;:::-;;:::i;44409:311::-;;;;;;:::i;:::-;;:::i;58904:219::-;;;;;;:::i;:::-;59053:44;;;14485:42:1;14473:55;;;;59053:44:0;;;;14455:74:1;;;;14545:18;;;14538:34;;;;14615:14;;14608:22;14588:18;;;14581:50;14647:18;;;;14640:34;;;;59053:44:0;;;;;;;;;;14427:19:1;;;;59053:44:0;;59043:55;;;;;;58904:219;58690:202;;;;;;:::i;:::-;58837:44;;;14485:42:1;14473:55;;;;58837:44:0;;;;14455:74:1;;;;14545:18;;;14538:34;;;;14615:14;;14608:22;14588:18;;;14581:50;14647:18;;;;14640:34;;;;58837:44:0;;;;;;;;;;14427:19:1;;;;58837:44:0;;58827:55;;;;;;;;;-1:-1:-1;58815:69:0;;;:6;:69;;;;;;;;58690:202;59257:151;;;;;;:::i;:::-;;:::i;44792:168::-;;;;;;:::i;:::-;44915:27;;;;44891:4;44915:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;44792:168;57811:302;;;;;;:::i;:::-;;:::i;59970:289::-;;;;;;:::i;:::-;;:::i;56753:20::-;;;;;;;;;;;;12733:42:1;12721:55;;;12703:74;;12691:2;12676:18;56753:20:0;12557:226:1;43415:231:0;43501:7;43529:21;;;43521:77;;;;-1:-1:-1;;;43521:77:0;;18516:2:1;43521:77:0;;;18498:21:1;18555:2;18535:18;;;18528:30;18594:34;18574:18;;;18567:62;18665:13;18645:18;;;18638:41;18696:19;;43521:77:0;;;;;;;;;-1:-1:-1;43616:9:0;:13;;;;;;;;;;;:22;;;;;;;;;;;;;43415:231::o;58466:212::-;58605:4;58634:36;58658:11;58634:23;:36::i;:::-;58627:43;58466:212;-1:-1:-1;;58466:212:0:o;56780:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58303:155::-;58359:13;58416:8;58426:13;58435:3;58426:8;:13::i;:::-;58399:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58385:65;;58303:155;;;:::o;59726:129::-;57070:5;;:19;:5;57079:10;57070:19;57062:43;;;;-1:-1:-1;;;57062:43:0;;22079:2:1;57062:43:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;57062:43:0;21877:335:1;57062:43:0;59813:20:::1;::::0;;;:16:::1;:20;::::0;;;;;:37;;;::::1;59836:14:::0;::::1;59813:37:::0;;;::::1;::::0;;59726:129::o;60264:391::-;60466:6;60461:128;60478:3;:10;60474:1;:14;60461:128;;;60508:16;:24;60525:3;60529:1;60525:6;;;;;;;;:::i;:::-;;;;;;;;;;;;60508:24;;;;;;;;;;-1:-1:-1;60508:24:0;;;;60507:25;60499:61;;;;-1:-1:-1;;;60499:61:0;;18928:2:1;60499:61:0;;;18910:21:1;18967:2;18947:18;;;18940:30;19006:25;18986:18;;;18979:53;19049:18;;60499:61:0;18726:347:1;60499:61:0;60578:3;;60461:128;;;;60593:57;60621:4;60627:2;60631:3;60636:7;60645:4;60593:27;:57::i;:::-;60264:391;;;;;:::o;56832:22::-;;;;;;;:::i;43812:524::-;43968:16;44029:3;:10;44010:8;:15;:29;44002:83;;;;-1:-1:-1;;;44002:83:0;;22829:2:1;44002:83:0;;;22811:21:1;22868:2;22848:18;;;22841:30;22907:34;22887:18;;;22880:62;22978:11;22958:18;;;22951:39;23007:19;;44002:83:0;22627:405:1;44002:83:0;44098:30;44145:8;:15;44131:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44131:30:0;;44098:63;;44179:9;44174:122;44198:8;:15;44194:1;:19;44174:122;;;44254:30;44264:8;44273:1;44264:11;;;;;;;;:::i;:::-;;;;;;;44277:3;44281:1;44277:6;;;;;;;;:::i;:::-;;;;;;;44254:9;:30::i;:::-;44235:13;44249:1;44235:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;44215:3;;;:::i;:::-;;;44174:122;;;-1:-1:-1;44315:13:0;43812:524;-1:-1:-1;;;43812:524:0:o;59622:99::-;57070:5;;:19;:5;57079:10;57070:19;57062:43;;;;-1:-1:-1;;;57062:43:0;;22079:2:1;57062:43:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;57062:43:0;21877:335:1;57062:43:0;59698:6:::1;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59622:99::o;57386:417::-;59053:44;;;57524:10;59053:44;;;;14455:74:1;;;;14545:18;;;14538:34;;;14615:14;;14608:22;14588:18;;;14581:50;14647:18;;;;14640:34;;;59053:44:0;;;;;;;;;;14427:19:1;;;;59053:44:0;;59043:55;;;;;;;;;-1:-1:-1;57580:18:0;;;:6;:18;;;;;;;;;57579:19;57571:52;;;;-1:-1:-1;;;57571:52:0;;18167:2:1;57571:52:0;;;18149:21:1;18206:2;18186:18;;;18179:30;18245:22;18225:18;;;18218:50;18285:18;;57571:52:0;17965:344:1;57571:52:0;57642:51;57659:21;57675:4;57659:15;:21::i;:::-;57682:10;57642:16;:51::i;:::-;57634:82;;;;-1:-1:-1;;;57634:82:0;;21732:2:1;57634:82:0;;;21714:21:1;21771:2;21751:18;;;21744:30;21810:20;21790:18;;;21783:48;21848:18;;57634:82:0;21530:342:1;57634:82:0;57727:18;;;;:6;:18;;;;;;;;:25;;;;57748:4;57727:25;;;;;;57763:32;;;;;;;;;;;;;57769:10;;57781:6;;57748:4;57763:5;:32::i;59529:87::-;57070:5;;:19;:5;57079:10;57070:19;57062:43;;;;-1:-1:-1;;;57062:43:0;;22079:2:1;57062:43:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;57062:43:0;21877:335:1;57062:43:0;59595:5:::1;:16:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59529:87::o;58121:174::-;58207:5;;;;58193:10;:19;;:47;;-1:-1:-1;58230:10:0;;;;58216;:24;58193:47;58184:72;;;;-1:-1:-1;;;58184:72:0;;22079:2:1;58184:72:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;58184:72:0;21877:335:1;58184:72:0;58267:20;;;;:8;;:20;;;;;:::i;:::-;;58121:174;:::o;59132:120::-;59193:7;59217:30;:5;10035:58;;12414:66:1;10035:58:0;;;12402:79:1;12497:12;;;12490:28;;;9902:7:0;;12534:12:1;;10035:58:0;;;;;;;;;;;;10025:69;;;;;;10018:76;;9833:269;;;;56805:20;;;;;;;:::i;59416:107::-;57070:5;;:19;:5;57079:10;57070:19;57062:43;;;;-1:-1:-1;;;57062:43:0;;22079:2:1;57062:43:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;57062:43:0;21877:335:1;57062:43:0;59492:10:::1;:23:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59416:107::o;44409:311::-;11275:10;44512:24;;;;;44504:78;;;;-1:-1:-1;;;44504:78:0;;22419:2:1;44504:78:0;;;22401:21:1;22458:2;22438:18;;;22431:30;22497:34;22477:18;;;22470:62;22568:11;22548:18;;;22541:39;22597:19;;44504:78:0;22217:405:1;44504:78:0;11275:10;44595:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;44664:48;;15561:41:1;;;44595:42:0;;11275:10;44664:48;;15534:18:1;44664:48:0;;;;;;;44409:311;;:::o;59257:151::-;59347:4;59375:28;:8;59392:10;59375:16;:28::i;:::-;59365:6;;:38;;;;:6;;:38;;59257:151;-1:-1:-1;;;59257:151:0:o;57811:302::-;57070:5;;:19;:5;57079:10;57070:19;57062:43;;;;-1:-1:-1;;;57062:43:0;;22079:2:1;57062:43:0;;;22061:21:1;22118:2;22098:18;;;22091:30;22157:13;22137:18;;;22130:41;22188:18;;57062:43:0;21877:335:1;57062:43:0;58002:9:::1;57997:109;58021:3;:10;58017:1;:14;57997:109;;;58053:41;58059:3;58063:1;58059:6;;;;;;;;:::i;:::-;;;;;;;58067:4;58072:1;58067:7;;;;;;;;:::i;:::-;;;;;;;58076;58084:1;58076:10;;;;;;;;:::i;:::-;;;;;;;58088:5;58053;:41::i;:::-;58033:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57997:109;;59970:289:::0;60151:20;;;;:16;:20;;;;;;;;60150:21;60142:57;;;;-1:-1:-1;;;60142:57:0;;18928:2:1;60142:57:0;;;18910:21:1;18967:2;18947:18;;;18940:30;19006:25;18986:18;;;18979:53;19049:18;;60142:57:0;18726:347:1;60142:57:0;60204:50;60227:4;60233:2;60237;60241:6;60249:4;60204:22;:50::i;42438:310::-;42540:4;42577:41;;;42592:26;42577:41;;:110;;-1:-1:-1;42635:52:0;;;42650:37;42635:52;42577:110;:163;;;-1:-1:-1;1705:25:0;1690:40;;;;42704:36;1581:157;60663:573;60713:27;60757:7;60753:50;;-1:-1:-1;;60781:10:0;;;;;;;;;;;;;;;;;;60663:573::o;60753:50::-;60822:2;60813:6;60854:69;60861:6;;60854:69;;60884:5;;;;:::i;:::-;;-1:-1:-1;60904:7:0;;-1:-1:-1;60909:2:0;60904:7;;:::i;:::-;;;60854:69;;;60933:17;60963:3;60953:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60953:14:0;-1:-1:-1;60933:34:0;-1:-1:-1;60987:3:0;61001:198;61008:7;;61001:198;;61036:3;61038:1;61036;:3;:::i;:::-;61032:7;-1:-1:-1;61054:10:0;61084:7;61089:2;61084;:7;:::i;:::-;:12;;61094:2;61084:12;:::i;:::-;61079:17;;:2;:17;:::i;:::-;61068:29;;:2;:29;:::i;:::-;61054:44;;61113:9;61132:4;61125:12;;61113:24;;61162:2;61152:4;61157:1;61152:7;;;;;;;;:::i;:::-;;;;:12;;;;;;;;;;-1:-1:-1;61179:8:0;61185:2;61179:8;;:::i;:::-;;;61017:182;;61001:198;;;-1:-1:-1;61223:4:0;60663:573;-1:-1:-1;;;;60663:573:0:o;45510:442::-;45743:20;;;11275:10;45743:20;;:60;;-1:-1:-1;45767:36:0;45784:4;11275:10;44792:168;:::i;45767:36::-;45721:160;;;;-1:-1:-1;;;45721:160:0;;20499:2:1;45721:160:0;;;20481:21:1;20538:2;20518:18;;;20511:30;20577:34;20557:18;;;20550:62;20648:20;20628:18;;;20621:48;20686:19;;45721:160:0;20297:414:1;45721:160:0;45892:52;45915:4;45921:2;45925:3;45930:7;45939:4;45892:22;:52::i;50001:599::-;50159:21;;;50151:67;;;;-1:-1:-1;;;50151:67:0;;23648:2:1;50151:67:0;;;23630:21:1;23687:2;23667:18;;;23660:30;23726:34;23706:18;;;23699:62;23797:3;23777:18;;;23770:31;23818:19;;50151:67:0;23446:397:1;50151:67:0;11275:10;50275:107;11275:10;50231:16;50318:7;50327:21;50345:2;50327:17;:21::i;:::-;50350:25;50368:6;50350:17;:25::i;50275:107::-;50395:9;:13;;;;;;;;;;;:22;;;;;;;;;;:32;;50421:6;;50395:9;:32;;50421:6;;50395:32;:::i;:::-;;;;-1:-1:-1;;50443:57:0;;;24204:25:1;;;24260:2;24245:18;;24238:34;;;50443:57:0;;;;;50476:1;;50443:57;;;;;;24177:18:1;50443:57:0;;;;;;;50513:79;50544:8;50562:1;50566:7;50575:2;50579:6;50587:4;50513:30;:79::i;5984:231::-;6062:7;6083:17;6102:18;6124:27;6135:4;6141:9;6124:10;:27::i;:::-;6082:69;;;;6162:18;6174:5;6162:11;:18::i;45032:401::-;45240:20;;;11275:10;45240:20;;:60;;-1:-1:-1;45264:36:0;45281:4;11275:10;44792:168;:::i;45264:36::-;45218:151;;;;-1:-1:-1;;;45218:151:0;;19280:2:1;45218:151:0;;;19262:21:1;19319:2;19299:18;;;19292:30;19358:34;19338:18;;;19331:62;19429:11;19409:18;;;19402:39;19458:19;;45218:151:0;19078:405:1;45218:151:0;45380:45;45398:4;45404:2;45408;45412:6;45420:4;45380:17;:45::i;47594:1074::-;47821:7;:14;47807:3;:10;:28;47799:81;;;;-1:-1:-1;;;47799:81:0;;23239:2:1;47799:81:0;;;23221:21:1;23278:2;23258:18;;;23251:30;23317:34;23297:18;;;23290:62;23388:10;23368:18;;;23361:38;23416:19;;47799:81:0;23037:404:1;47799:81:0;47899:16;;;47891:66;;;;-1:-1:-1;;;47891:66:0;;20093:2:1;47891:66:0;;;20075:21:1;20132:2;20112:18;;;20105:30;20171:34;20151:18;;;20144:62;20242:7;20222:18;;;20215:35;20267:19;;47891:66:0;19891:401:1;47891:66:0;11275:10;47970:16;48087:421;48111:3;:10;48107:1;:14;48087:421;;;48143:10;48156:3;48160:1;48156:6;;;;;;;;:::i;:::-;;;;;;;48143:19;;48177:14;48194:7;48202:1;48194:10;;;;;;;;:::i;:::-;;;;;;;;;;;;48221:19;48243:13;;;;;;;;;;:19;;;;;;;;;;;;;48194:10;;-1:-1:-1;48285:21:0;;;;48277:76;;;;-1:-1:-1;;;48277:76:0;;21321:2:1;48277:76:0;;;21303:21:1;21360:2;21340:18;;;21333:30;21399:34;21379:18;;;21372:62;21470:12;21450:18;;;21443:40;21500:19;;48277:76:0;21119:406:1;48277:76:0;48397:9;:13;;;;;;;;;;;:19;;;;;;;;;;;48419:20;;;48397:42;;48469:17;;;;;;;:27;;48419:20;;48397:9;48469:27;;48419:20;;48469:27;:::i;:::-;;;;;;;;48128:380;;;48123:3;;;;:::i;:::-;;;48087:421;;;;48555:2;48525:47;;48549:4;48525:47;;48539:8;48525:47;;;48559:3;48564:7;48525:47;;;;;;;:::i;:::-;;;;;;;;48585:75;48621:8;48631:4;48637:2;48641:3;48646:7;48655:4;48585:35;:75::i;:::-;47788:880;47594:1074;;;;;:::o;56504:198::-;56624:16;;;56638:1;56624:16;;;;;;;;;56570;;56599:22;;56624:16;;;;;;;;;;;;-1:-1:-1;56624:16:0;56599:41;;56662:7;56651:5;56657:1;56651:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;56689:5;56504:198;-1:-1:-1;;56504:198:0:o;54931:744::-;55146:13;;;12413:20;12461:8;55142:526;;55182:72;;;;;:38;;;;;;:72;;55221:8;;55231:4;;55237:2;;55241:6;;55249:4;;55182:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55182:72:0;;;;;;;;-1:-1:-1;;55182:72:0;;;;;;;;;;;;:::i;:::-;;;55178:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;55530:6;55523:14;;-1:-1:-1;;;55523:14:0;;;;;;;;:::i;55178:479::-;;;55579:62;;-1:-1:-1;;;55579:62:0;;16977:2:1;55579:62:0;;;16959:21:1;17016:2;16996:18;;;16989:30;17055:34;17035:18;;;17028:62;17126:22;17106:18;;;17099:50;17166:19;;55579:62:0;16775:416:1;55178:479:0;55304:55;;;55316:43;55304:55;55300:154;;55384:50;;-1:-1:-1;;;55384:50:0;;17398:2:1;55384:50:0;;;17380:21:1;17437:2;17417:18;;;17410:30;17476:34;17456:18;;;17449:62;17547:10;17527:18;;;17520:38;17575:19;;55384:50:0;17196:404:1;55300:154:0;55255:214;54931:744;;;;;;:::o;3874:1308::-;3955:7;3964:12;4189:9;:16;4209:2;4189:22;4185:990;;;4485:4;4470:20;;4464:27;4535:4;4520:20;;4514:27;4593:4;4578:20;;4572:27;4228:9;4564:36;4636:25;4647:4;4564:36;4464:27;4514;4636:10;:25::i;:::-;4629:32;;;;;;;;;4185:990;4683:9;:16;4703:2;4683:22;4679:496;;;4958:4;4943:20;;4937:27;5009:4;4994:20;;4988:27;5051:23;5062:4;4937:27;4988;5051:10;:23::i;:::-;5044:30;;;;;;;;4679:496;-1:-1:-1;5123:1:0;;-1:-1:-1;5127:35:0;4679:496;3874:1308;;;;;:::o;2145:643::-;2223:20;2214:5;:29;;;;;;;;:::i;:::-;;2210:571;;;2145:643;:::o;2210:571::-;2321:29;2312:5;:38;;;;;;;;:::i;:::-;;2308:473;;;2367:34;;-1:-1:-1;;;2367:34:0;;16624:2:1;2367:34:0;;;16606:21:1;16663:2;16643:18;;;16636:30;16702:26;16682:18;;;16675:54;16746:18;;2367:34:0;16422:348:1;2308:473:0;2432:35;2423:5;:44;;;;;;;;:::i;:::-;;2419:362;;;2484:41;;-1:-1:-1;;;2484:41:0;;17807:2:1;2484:41:0;;;17789:21:1;17846:2;17826:18;;;17819:30;17885:33;17865:18;;;17858:61;17936:18;;2484:41:0;17605:355:1;2419:362:0;2556:30;2547:5;:39;;;;;;;;:::i;:::-;;2543:238;;;2603:44;;-1:-1:-1;;;2603:44:0;;19690:2:1;2603:44:0;;;19672:21:1;19729:2;19709:18;;;19702:30;19768:34;19748:18;;;19741:62;19839:4;19819:18;;;19812:32;19861:19;;2603:44:0;19488:398:1;2543:238:0;2678:30;2669:5;:39;;;;;;;;:::i;:::-;;2665:116;;;2725:44;;-1:-1:-1;;;2725:44:0;;20918:2:1;2725:44:0;;;20900:21:1;20957:2;20937:18;;;20930:30;20996:34;20976:18;;;20969:62;21067:4;21047:18;;;21040:32;21089:19;;2725:44:0;20716:398:1;2665:116:0;2145:643;:::o;46416:820::-;46604:16;;;46596:66;;;;-1:-1:-1;;;46596:66:0;;20093:2:1;46596:66:0;;;20075:21:1;20132:2;20112:18;;;20105:30;20171:34;20151:18;;;20144:62;20242:7;20222:18;;;20215:35;20267:19;;46596:66:0;19891:401:1;46596:66:0;11275:10;46719:96;11275:10;46750:4;46756:2;46760:21;46778:2;46760:17;:21::i;46719:96::-;46828:19;46850:13;;;;;;;;;;;:19;;;;;;;;;;;46888:21;;;;46880:76;;;;-1:-1:-1;;;46880:76:0;;21321:2:1;46880:76:0;;;21303:21:1;21360:2;21340:18;;;21333:30;21399:34;21379:18;;;21372:62;21470:12;21450:18;;;21443:40;21500:19;;46880:76:0;21119:406:1;46880:76:0;46992:9;:13;;;;;;;;;;;:19;;;;;;;;;;;47014:20;;;46992:42;;47056:17;;;;;;;:27;;47014:20;;46992:9;47056:27;;47014:20;;47056:27;:::i;:::-;;;;-1:-1:-1;;47101:46:0;;;24204:25:1;;;24260:2;24245:18;;24238:34;;;47101:46:0;;;;;;;;;;;;;;;24177:18:1;47101:46:0;;;;;;;47160:68;47191:8;47201:4;47207:2;47211;47215:6;47223:4;47160:30;:68::i;55683:813::-;55923:13;;;12413:20;12461:8;55919:570;;55959:79;;;;;:43;;;;;;:79;;56003:8;;56013:4;;56019:3;;56024:7;;56033:4;;55959:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55959:79:0;;;;;;;;-1:-1:-1;;55959:79:0;;;;;;;;;;;;:::i;:::-;;;55955:523;;;;:::i;:::-;56120:60;;;56132:48;56120:60;56116:159;;56205:50;;-1:-1:-1;;;56205:50:0;;17398:2:1;56205:50:0;;;17380:21:1;17437:2;17417:18;;;17410:30;17476:34;17456:18;;;17449:62;17547:10;17527:18;;;17520:38;17575:19;;56205:50:0;17196:404:1;7483:1632:0;7614:7;;8548:66;8535:79;;8531:163;;;-1:-1:-1;8647:1:0;;-1:-1:-1;8651:30:0;8631:51;;8531:163;8708:1;:7;;8713:2;8708:7;;:18;;;;;8719:1;:7;;8724:2;8719:7;;8708:18;8704:102;;;-1:-1:-1;8759:1:0;;-1:-1:-1;8763:30:0;8743:51;;8704:102;8920:24;;;8903:14;8920:24;;;;;;;;;16022:25:1;;;16095:4;16083:17;;16063:18;;;16056:45;;;;16117:18;;;16110:34;;;16160:18;;;16153:34;;;8920:24:0;;15994:19:1;;8920:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8920:24:0;;-1:-1:-1;;8920:24:0;;;-1:-1:-1;;8959:20:0;;;8955:103;;9012:1;9016:29;8996:50;;;;;;;8955:103;9078:6;-1:-1:-1;9086:20:0;;-1:-1:-1;7483:1632:0;;;;;;;;:::o;6478:391::-;6592:7;;6701:66;6693:75;;6795:3;6791:12;;;6805:2;6787:21;6836:25;6847:4;6787:21;6856:1;6693:75;6836:10;:25::i;:::-;6829:32;;;;;;6478:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:527:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:128;317:4;-1:-1:-1;;243:2:1;235:6;231:15;227:88;223:99;215:6;195:128;:::i;:::-;341:6;332:15;;371:6;363;356:22;411:3;402:6;397:3;393:16;390:25;387:45;;;428:1;425;418:12;387:45;478:6;473:3;466:4;458:6;454:17;441:44;533:1;526:4;517:6;509;505:19;501:30;494:41;;14:527;;;;;:::o;546:196::-;614:20;;674:42;663:54;;653:65;;643:93;;732:1;729;722:12;643:93;546:196;;;:::o;747:741::-;801:5;854:3;847:4;839:6;835:17;831:27;821:55;;872:1;869;862:12;821:55;908:6;895:20;934:4;957:43;997:2;957:43;:::i;:::-;1029:2;1023:9;1041:31;1069:2;1061:6;1041:31;:::i;:::-;1107:18;;;1141:15;;;;-1:-1:-1;1176:15:1;;;1226:1;1222:10;;;1210:23;;1206:32;;1203:41;-1:-1:-1;1200:61:1;;;1257:1;1254;1247:12;1200:61;1279:1;1289:169;1303:2;1300:1;1297:9;1289:169;;;1360:23;1379:3;1360:23;:::i;:::-;1348:36;;1404:12;;;;1436;;;;1321:1;1314:9;1289:169;;;-1:-1:-1;1476:6:1;;747:741;-1:-1:-1;;;;;;;747:741:1:o;1493:735::-;1547:5;1600:3;1593:4;1585:6;1581:17;1577:27;1567:55;;1618:1;1615;1608:12;1567:55;1654:6;1641:20;1680:4;1703:43;1743:2;1703:43;:::i;:::-;1775:2;1769:9;1787:31;1815:2;1807:6;1787:31;:::i;:::-;1853:18;;;1887:15;;;;-1:-1:-1;1922:15:1;;;1972:1;1968:10;;;1956:23;;1952:32;;1949:41;-1:-1:-1;1946:61:1;;;2003:1;2000;1993:12;1946:61;2025:1;2035:163;2049:2;2046:1;2043:9;2035:163;;;2106:17;;2094:30;;2144:12;;;;2176;;;;2067:1;2060:9;2035:163;;2233:160;2298:20;;2354:13;;2347:21;2337:32;;2327:60;;2383:1;2380;2373:12;2398:220;2440:5;2493:3;2486:4;2478:6;2474:17;2470:27;2460:55;;2511:1;2508;2501:12;2460:55;2533:79;2608:3;2599:6;2586:20;2579:4;2571:6;2567:17;2533:79;:::i;:::-;2524:88;2398:220;-1:-1:-1;;;2398:220:1:o;2623:186::-;2682:6;2735:2;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;2774:29;2793:9;2774:29;:::i;2814:260::-;2882:6;2890;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2982:29;3001:9;2982:29;:::i;:::-;2972:39;;3030:38;3064:2;3053:9;3049:18;3030:38;:::i;:::-;3020:48;;2814:260;;;;;:::o;3079:943::-;3233:6;3241;3249;3257;3265;3318:3;3306:9;3297:7;3293:23;3289:33;3286:53;;;3335:1;3332;3325:12;3286:53;3358:29;3377:9;3358:29;:::i;:::-;3348:39;;3406:38;3440:2;3429:9;3425:18;3406:38;:::i;:::-;3396:48;;3495:2;3484:9;3480:18;3467:32;3518:18;3559:2;3551:6;3548:14;3545:34;;;3575:1;3572;3565:12;3545:34;3598:61;3651:7;3642:6;3631:9;3627:22;3598:61;:::i;:::-;3588:71;;3712:2;3701:9;3697:18;3684:32;3668:48;;3741:2;3731:8;3728:16;3725:36;;;3757:1;3754;3747:12;3725:36;3780:63;3835:7;3824:8;3813:9;3809:24;3780:63;:::i;:::-;3770:73;;3896:3;3885:9;3881:19;3868:33;3852:49;;3926:2;3916:8;3913:16;3910:36;;;3942:1;3939;3932:12;3910:36;;3965:51;4008:7;3997:8;3986:9;3982:24;3965:51;:::i;:::-;3955:61;;;3079:943;;;;;;;;:::o;4027:606::-;4131:6;4139;4147;4155;4163;4216:3;4204:9;4195:7;4191:23;4187:33;4184:53;;;4233:1;4230;4223:12;4184:53;4256:29;4275:9;4256:29;:::i;:::-;4246:39;;4304:38;4338:2;4327:9;4323:18;4304:38;:::i;:::-;4294:48;;4389:2;4378:9;4374:18;4361:32;4351:42;;4440:2;4429:9;4425:18;4412:32;4402:42;;4495:3;4484:9;4480:19;4467:33;4523:18;4515:6;4512:30;4509:50;;;4555:1;4552;4545:12;4509:50;4578:49;4619:7;4610:6;4599:9;4595:22;4578:49;:::i;4638:254::-;4703:6;4711;4764:2;4752:9;4743:7;4739:23;4735:32;4732:52;;;4780:1;4777;4770:12;4732:52;4803:29;4822:9;4803:29;:::i;:::-;4793:39;;4851:35;4882:2;4871:9;4867:18;4851:35;:::i;4897:254::-;4965:6;4973;5026:2;5014:9;5005:7;5001:23;4997:32;4994:52;;;5042:1;5039;5032:12;4994:52;5065:29;5084:9;5065:29;:::i;:::-;5055:39;5141:2;5126:18;;;;5113:32;;-1:-1:-1;;;4897:254:1:o;5156:391::-;5239:6;5247;5255;5263;5316:3;5304:9;5295:7;5291:23;5287:33;5284:53;;;5333:1;5330;5323:12;5284:53;5356:29;5375:9;5356:29;:::i;:::-;5346:39;;5432:2;5421:9;5417:18;5404:32;5394:42;;5455:35;5486:2;5475:9;5471:18;5455:35;:::i;:::-;5156:391;;;;-1:-1:-1;5445:45:1;;5537:2;5522:18;5509:32;;-1:-1:-1;;5156:391:1:o;5552:595::-;5670:6;5678;5731:2;5719:9;5710:7;5706:23;5702:32;5699:52;;;5747:1;5744;5737:12;5699:52;5787:9;5774:23;5816:18;5857:2;5849:6;5846:14;5843:34;;;5873:1;5870;5863:12;5843:34;5896:61;5949:7;5940:6;5929:9;5925:22;5896:61;:::i;:::-;5886:71;;6010:2;5999:9;5995:18;5982:32;5966:48;;6039:2;6029:8;6026:16;6023:36;;;6055:1;6052;6045:12;6023:36;;6078:63;6133:7;6122:8;6111:9;6107:24;6078:63;:::i;:::-;6068:73;;;5552:595;;;;;:::o;6152:1020::-;6322:6;6330;6338;6346;6399:3;6387:9;6378:7;6374:23;6370:33;6367:53;;;6416:1;6413;6406:12;6367:53;6456:9;6443:23;6485:18;6526:2;6518:6;6515:14;6512:34;;;6542:1;6539;6532:12;6512:34;6565:61;6618:7;6609:6;6598:9;6594:22;6565:61;:::i;:::-;6555:71;;6679:2;6668:9;6664:18;6651:32;6635:48;;6708:2;6698:8;6695:16;6692:36;;;6724:1;6721;6714:12;6692:36;6747:63;6802:7;6791:8;6780:9;6776:24;6747:63;:::i;:::-;6737:73;;6863:2;6852:9;6848:18;6835:32;6819:48;;6892:2;6882:8;6879:16;6876:36;;;6908:1;6905;6898:12;6876:36;6931:63;6986:7;6975:8;6964:9;6960:24;6931:63;:::i;:::-;6921:73;;7047:2;7036:9;7032:18;7019:32;7003:48;;7076:2;7066:8;7063:16;7060:36;;;7092:1;7089;7082:12;7060:36;;7115:51;7158:7;7147:8;7136:9;7132:24;7115:51;:::i;:::-;7105:61;;;6152:1020;;;;;;;:::o;7177:180::-;7236:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:52;;;7305:1;7302;7295:12;7257:52;-1:-1:-1;7328:23:1;;7177:180;-1:-1:-1;7177:180:1:o;7362:388::-;7439:6;7447;7500:2;7488:9;7479:7;7475:23;7471:32;7468:52;;;7516:1;7513;7506:12;7468:52;7552:9;7539:23;7529:33;;7613:2;7602:9;7598:18;7585:32;7640:18;7632:6;7629:30;7626:50;;;7672:1;7669;7662:12;7626:50;7695:49;7736:7;7727:6;7716:9;7712:22;7695:49;:::i;7755:245::-;7813:6;7866:2;7854:9;7845:7;7841:23;7837:32;7834:52;;;7882:1;7879;7872:12;7834:52;7921:9;7908:23;7940:30;7964:5;7940:30;:::i;8005:249::-;8074:6;8127:2;8115:9;8106:7;8102:23;8098:32;8095:52;;;8143:1;8140;8133:12;8095:52;8175:9;8169:16;8194:30;8218:5;8194:30;:::i;8259:450::-;8328:6;8381:2;8369:9;8360:7;8356:23;8352:32;8349:52;;;8397:1;8394;8387:12;8349:52;8437:9;8424:23;8470:18;8462:6;8459:30;8456:50;;;8502:1;8499;8492:12;8456:50;8525:22;;8578:4;8570:13;;8566:27;-1:-1:-1;8556:55:1;;8607:1;8604;8597:12;8556:55;8630:73;8695:7;8690:2;8677:16;8672:2;8668;8664:11;8630:73;:::i;:::-;8620:83;8259:450;-1:-1:-1;;;;8259:450:1:o;8899:248::-;8964:6;8972;9025:2;9013:9;9004:7;9000:23;8996:32;8993:52;;;9041:1;9038;9031:12;8993:52;9077:9;9064:23;9054:33;;9106:35;9137:2;9126:9;9122:18;9106:35;:::i;9152:525::-;9244:6;9252;9260;9268;9321:3;9309:9;9300:7;9296:23;9292:33;9289:53;;;9338:1;9335;9328:12;9289:53;9374:9;9361:23;9351:33;;9403:35;9434:2;9423:9;9419:18;9403:35;:::i;:::-;9393:45;;9485:2;9474:9;9470:18;9457:32;9447:42;;9540:2;9529:9;9525:18;9512:32;9567:18;9559:6;9556:30;9553:50;;;9599:1;9596;9589:12;9553:50;9622:49;9663:7;9654:6;9643:9;9639:22;9622:49;:::i;9682:435::-;9735:3;9773:5;9767:12;9800:6;9795:3;9788:19;9826:4;9855:2;9850:3;9846:12;9839:19;;9892:2;9885:5;9881:14;9913:1;9923:169;9937:6;9934:1;9931:13;9923:169;;;9998:13;;9986:26;;10032:12;;;;10067:15;;;;9959:1;9952:9;9923:169;;;-1:-1:-1;10108:3:1;;9682:435;-1:-1:-1;;;;;9682:435:1:o;10122:316::-;10163:3;10201:5;10195:12;10228:6;10223:3;10216:19;10244:63;10300:6;10293:4;10288:3;10284:14;10277:4;10270:5;10266:16;10244:63;:::i;:::-;10352:2;10340:15;-1:-1:-1;;10336:88:1;10327:98;;;;10427:4;10323:109;;10122:316;-1:-1:-1;;10122:316:1:o;10443:185::-;10485:3;10523:5;10517:12;10538:52;10583:6;10578:3;10571:4;10564:5;10560:16;10538:52;:::i;:::-;10606:16;;;;;10443:185;-1:-1:-1;;10443:185:1:o;10751:1416::-;11028:3;11057:1;11090:6;11084:13;11120:3;11142:1;11170:9;11166:2;11162:18;11152:28;;11230:2;11219:9;11215:18;11252;11242:61;;11296:4;11288:6;11284:17;11274:27;;11242:61;11322:2;11370;11362:6;11359:14;11339:18;11336:38;11333:222;;;11409:77;11404:3;11397:90;11510:4;11507:1;11500:15;11540:4;11535:3;11528:17;11333:222;11571:18;11598:162;;;;11774:1;11769:320;;;;11564:525;;11598:162;11646:66;11635:9;11631:82;11626:3;11619:95;11743:6;11738:3;11734:16;11727:23;;11598:162;;11769:320;24544:1;24537:14;;;24581:4;24568:18;;11864:1;11878:165;11892:6;11889:1;11886:13;11878:165;;;11970:14;;11957:11;;;11950:35;12013:16;;;;11907:10;;11878:165;;;11882:3;;12072:6;12067:3;12063:16;12056:23;;11564:525;;;;;;;12105:56;12130:30;12156:3;12148:6;12130:30;:::i;:::-;10705:7;10693:20;;10738:1;10729:11;;10633:113;12105:56;12098:63;10751:1416;-1:-1:-1;;;;;10751:1416:1:o;12788:849::-;13110:4;13139:42;13220:2;13212:6;13208:15;13197:9;13190:34;13272:2;13264:6;13260:15;13255:2;13244:9;13240:18;13233:43;;13312:3;13307:2;13296:9;13292:18;13285:31;13339:57;13391:3;13380:9;13376:19;13368:6;13339:57;:::i;:::-;13444:9;13436:6;13432:22;13427:2;13416:9;13412:18;13405:50;13478:44;13515:6;13507;13478:44;:::i;:::-;13464:58;;13571:9;13563:6;13559:22;13553:3;13542:9;13538:19;13531:51;13599:32;13624:6;13616;13599:32;:::i;:::-;13591:40;12788:849;-1:-1:-1;;;;;;;;12788:849:1:o;13642:583::-;13864:4;13893:42;13974:2;13966:6;13962:15;13951:9;13944:34;14026:2;14018:6;14014:15;14009:2;13998:9;13994:18;13987:43;;14066:6;14061:2;14050:9;14046:18;14039:34;14109:6;14104:2;14093:9;14089:18;14082:34;14153:3;14147;14136:9;14132:19;14125:32;14174:45;14214:3;14203:9;14199:19;14191:6;14174:45;:::i;:::-;14166:53;13642:583;-1:-1:-1;;;;;;;13642:583:1:o;14685:261::-;14864:2;14853:9;14846:21;14827:4;14884:56;14936:2;14925:9;14921:18;14913:6;14884:56;:::i;14951:465::-;15208:2;15197:9;15190:21;15171:4;15234:56;15286:2;15275:9;15271:18;15263:6;15234:56;:::i;:::-;15338:9;15330:6;15326:22;15321:2;15310:9;15306:18;15299:50;15366:44;15403:6;15395;15366:44;:::i;16198:219::-;16347:2;16336:9;16329:21;16310:4;16367:44;16407:2;16396:9;16392:18;16384:6;16367:44;:::i;24283:183::-;24343:4;24376:18;24368:6;24365:30;24362:56;;;24398:18;;:::i;:::-;-1:-1:-1;24443:1:1;24439:14;24455:4;24435:25;;24283:183::o;24597:128::-;24637:3;24668:1;24664:6;24661:1;24658:13;24655:39;;;24674:18;;:::i;:::-;-1:-1:-1;24710:9:1;;24597:128::o;24730:204::-;24768:3;24804:4;24801:1;24797:12;24836:4;24833:1;24829:12;24871:3;24865:4;24861:14;24856:3;24853:23;24850:49;;;24879:18;;:::i;:::-;24915:13;;24730:204;-1:-1:-1;;;24730:204:1:o;24939:274::-;24979:1;25005;24995:189;;25040:77;25037:1;25030:88;25141:4;25138:1;25131:15;25169:4;25166:1;25159:15;24995:189;-1:-1:-1;25198:9:1;;24939:274::o;25218:228::-;25258:7;25384:1;25316:66;25312:74;25309:1;25306:81;25301:1;25294:9;25287:17;25283:105;25280:131;;;25391:18;;:::i;:::-;-1:-1:-1;25431:9:1;;25218:228::o;25451:125::-;25491:4;25519:1;25516;25513:8;25510:34;;;25524:18;;:::i;:::-;-1:-1:-1;25561:9:1;;25451:125::o;25581:258::-;25653:1;25663:113;25677:6;25674:1;25671:13;25663:113;;;25753:11;;;25747:18;25734:11;;;25727:39;25699:2;25692:10;25663:113;;;25794:6;25791:1;25788:13;25785:48;;;25829:1;25820:6;25815:3;25811:16;25804:27;25785:48;;25581:258;;;:::o;25844:437::-;25923:1;25919:12;;;;25966;;;25987:61;;26041:4;26033:6;26029:17;26019:27;;25987:61;26094:2;26086:6;26083:14;26063:18;26060:38;26057:218;;;26131:77;26128:1;26121:88;26232:4;26229:1;26222:15;26260:4;26257:1;26250:15;26057:218;;25844:437;;;:::o;26286:308::-;-1:-1:-1;;26387:2:1;26381:4;26377:13;26373:86;26365:6;26361:99;26526:6;26514:10;26511:22;26490:18;26478:10;26475:34;26472:62;26469:88;;;26537:18;;:::i;:::-;26573:2;26566:22;-1:-1:-1;;26286:308:1:o;26599:195::-;26638:3;26669:66;26662:5;26659:77;26656:103;;;26739:18;;:::i;:::-;-1:-1:-1;26786:1:1;26775:13;;26599:195::o;26799:184::-;26851:77;26848:1;26841:88;26948:4;26945:1;26938:15;26972:4;26969:1;26962:15;26988:184;27040:77;27037:1;27030:88;27137:4;27134:1;27127:15;27161:4;27158:1;27151:15;27177:184;27229:77;27226:1;27219:88;27326:4;27323:1;27316:15;27350:4;27347:1;27340:15;27366:184;27418:77;27415:1;27408:88;27515:4;27512:1;27505:15;27539:4;27536:1;27529:15;27555:179;27590:3;27632:1;27614:16;27611:23;27608:120;;;27678:1;27675;27672;27657:23;-1:-1:-1;27715:1:1;27709:8;27704:3;27700:18;27608:120;27555:179;:::o;27739:731::-;27778:3;27820:4;27802:16;27799:26;27796:39;;;27739:731;:::o;27796:39::-;27862:2;27856:9;27884:66;28005:2;27987:16;27983:25;27980:1;27974:4;27959:50;28038:4;28032:11;28062:16;28097:18;28168:2;28161:4;28153:6;28149:17;28146:25;28141:2;28133:6;28130:14;28127:45;28124:58;;;28175:5;;;;;27739:731;:::o;28124:58::-;28212:6;28206:4;28202:17;28191:28;;28248:3;28242:10;28275:2;28267:6;28264:14;28261:27;;;28281:5;;;;;;27739:731;:::o;28261:27::-;28365:2;28346:16;28340:4;28336:27;28332:36;28325:4;28316:6;28311:3;28307:16;28303:27;28300:69;28297:82;;;28372:5;;;;;;27739:731;:::o;28297:82::-;28388:57;28439:4;28430:6;28422;28418:19;28414:30;28408:4;28388:57;:::i;:::-;-1:-1:-1;28461:3:1;;27739:731;-1:-1:-1;;;;;27739:731:1:o;28475:177::-;28560:66;28553:5;28549:78;28542:5;28539:89;28529:117;;28642:1;28639;28632:12

Swarm Source

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