ETH Price: $3,456.56 (-0.77%)
Gas: 3 Gwei

Token

cheaptricksclub (CTCNFT)
 

Overview

Max Total Supply

10,000 CTCNFT

Holders

5,277

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 CTCNFT
0x22d11f427ff1ae9c32d11588cca20a34fe6dda48
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:
ctcNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//.......................................
//......CCC......TTTTTTTTT......CCC......
//....CCCCCCCC..TTTTTTTTTTT...CCCCCCCC...
//...CCCCCCCCCC.TTTTTTTTTTT..CCCCCCCCCC..
//..CCCCCCCCCCC.TTTTTTTTTTT.CCCCCCCCCCC..
//..CCCC...CCCCC....TTTT....CCCC...CCCC..
//.CCCCC....CCCC....TTTT...CCCCC....CCC..
//.CCCC.............TTTT...CCCC..........
//.CCCC.............TTTT...CCCC..........
//.CCCC.............TTTT...CCCC..........
//.CCCCC....CCCC....TTTT...CCCCC....CCC..
//..CCCC...CCCCC....TTTT....CCCC...CCCC..
//..CCCCCCCCCCC.....TTTT....CCCCCCCCCCC..
//...CCCCCCCCCC.....TTTT.....CCCCCCCCCC..
//....CCCCCCCC......TTTT......CCCCCCCC...
//.....CCCCC...................CCCCC.....
//.......................................

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: Address.sol



pragma solidity ^0.8.0;

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
// File: Payment.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;



/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }


    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }


    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }


    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}
// File: IERC721Receiver.sol



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;


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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.2;

contract ctcNFT is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public _ctcLink;
    uint256 public ctcMaxSupply = 10000;
    uint256 public ctcMintAmount = 1;
    mapping(address => uint256) public ctcHolders;

	constructor() ERC721A("cheaptricksclub", "CTCNFT") {}

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

 	function mintCtc() external nonReentrant {
  	    uint256 ctcTotalSupply = totalSupply();
        require(ctcTotalSupply + ctcMintAmount <= ctcMaxSupply);
        require(msg.sender == tx.origin);
    	require(ctcHolders[msg.sender] < ctcMintAmount);
        _safeMint(msg.sender, ctcMintAmount);
        ctcHolders[msg.sender] += ctcMintAmount;
    }

    function mintCtcVault(address bossAddr, uint256 _ctcToMint) public onlyOwner {
        uint256 ctcTotalSupply = totalSupply();
        require(ctcTotalSupply + _ctcToMint <= ctcMaxSupply);
        _safeMint(bossAddr, _ctcToMint);
    }

    function setMintAmount(uint256 _ctcMintAmount) external onlyOwner {
        ctcMintAmount = _ctcMintAmount;
    }

    function setCtcLink(string memory ctcLink) external onlyOwner {
        _ctcLink = ctcLink;
    }

    function withdrawFunds() public payable onlyOwner {
	    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_ctcLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ctcHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ctcMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ctcMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCtc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bossAddr","type":"address"},{"internalType":"uint256","name":"_ctcToMint","type":"uint256"}],"name":"mintCtcVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ctcLink","type":"string"}],"name":"setCtcLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ctcMintAmount","type":"uint256"}],"name":"setMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052612710600a556001600b553480156200001c57600080fd5b506040518060400160405280600f81526020017f6368656170747269636b73636c756200000000000000000000000000000000008152506040518060400160405280600681526020017f4354434e465400000000000000000000000000000000000000000000000000008152508160019080519060200190620000a1929190620001b9565b508060029080519060200190620000ba929190620001b9565b505050620000dd620000d1620000eb60201b60201c565b620000f360201b60201c565b6001600881905550620002cd565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c79062000298565b90600052602060002090601f016020900481019282620001eb576000855562000237565b82601f106200020657805160ff191683800117855562000237565b8280016001018555821562000237579182015b828111156200023657825182559160200191906001019062000219565b5b5090506200024691906200024a565b5090565b5b80821115620002655760008160009055506001016200024b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002b157607f821691505b602082108103620002c757620002c662000269565b5b50919050565b613e4c80620002dd6000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063a2401ac31161008a578063c87b56dd11610064578063c87b56dd146105e9578063e985e9c514610626578063f2fde38b14610663578063f37cf14a1461068c576101b7565b8063a2401ac31461055a578063b88d4fde14610597578063c7cd997f146105c0576101b7565b8063849f2bf8116100c6578063849f2bf8146104b25780638da5cb5b146104db57806395d89b4114610506578063a22cb46514610531576101b7565b80636352211e1461042157806370a082311461045e578063715018a61461049b576101b7565b80632f55c9cb1161015957806342842e0e1161013357806342842e0e146103655780634f6ccce71461038e5780635125152a146103cb578063603f27fb146103f6576101b7565b80632f55c9cb146102e85780632f745c59146102ff5780632ff26e3b1461033c576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806324600fc3146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612935565b6106b7565b6040516101f0919061297d565b60405180910390f35b34801561020557600080fd5b5061020e610801565b60405161021b9190612a31565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a89565b610893565b6040516102589190612af7565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b3e565b610918565b005b34801561029657600080fd5b5061029f610a30565b6040516102ac9190612b8d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ba8565b610a39565b005b6102e6610a49565b005b3480156102f457600080fd5b506102fd610b3e565b005b34801561030b57600080fd5b5061032660048036038101906103219190612b3e565b610ca7565b6040516103339190612b8d565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190612d30565b610e97565b005b34801561037157600080fd5b5061038c60048036038101906103879190612ba8565b610f2d565b005b34801561039a57600080fd5b506103b560048036038101906103b09190612a89565b610f4d565b6040516103c29190612b8d565b60405180910390f35b3480156103d757600080fd5b506103e0610fa0565b6040516103ed9190612a31565b60405180910390f35b34801561040257600080fd5b5061040b61102e565b6040516104189190612b8d565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612a89565b611034565b6040516104559190612af7565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612d79565b61104a565b6040516104929190612b8d565b60405180910390f35b3480156104a757600080fd5b506104b0611132565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612b3e565b6111ba565b005b3480156104e757600080fd5b506104f061126b565b6040516104fd9190612af7565b60405180910390f35b34801561051257600080fd5b5061051b611295565b6040516105289190612a31565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612dd2565b611327565b005b34801561056657600080fd5b50610581600480360381019061057c9190612d79565b6114a7565b60405161058e9190612b8d565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612eb3565b6114bf565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612a89565b61151b565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612a89565b6115a1565b60405161061d9190612a31565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612f36565b611648565b60405161065a919061297d565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612d79565b6116dc565b005b34801561069857600080fd5b506106a16117d3565b6040516106ae9190612b8d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fa57506107f9826117d9565b5b9050919050565b60606001805461081090612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612fa5565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b600061089e82611843565b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613048565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382611034565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906130da565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611850565b73ffffffffffffffffffffffffffffffffffffffff1614806109e157506109e0816109db611850565b611648565b5b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a179061316c565b60405180910390fd5b610a2b838383611858565b505050565b60008054905090565b610a4483838361190a565b505050565b610a51611850565b73ffffffffffffffffffffffffffffffffffffffff16610a6f61126b565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906131d8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aeb90613229565b60006040518083038185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b5050905080610b3b57600080fd5b50565b600260085403610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061328a565b60405180910390fd5b60026008819055506000610b95610a30565b9050600a54600b5482610ba891906132d9565b1115610bb357600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610beb57600080fd5b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c3857600080fd5b610c4433600b54611e48565b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c9591906132d9565b92505081905550506001600881905550565b6000610cb28361104a565b8210610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea906133a1565b60405180910390fd5b6000610cfd610a30565b905060008060005b83811015610e55576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4757868403610e3e578195505050505050610e91565b83806001019450505b508080600101915050610d05565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613433565b60405180910390fd5b92915050565b610e9f611850565b73ffffffffffffffffffffffffffffffffffffffff16610ebd61126b565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906131d8565b60405180910390fd5b8060099080519060200190610f299291906127ec565b5050565b610f48838383604051806020016040528060008152506114bf565b505050565b6000610f57610a30565b8210610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906134c5565b60405180910390fd5b819050919050565b60098054610fad90612fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd990612fa5565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b505050505081565b600a5481565b600061103f82611e66565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613557565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61113a611850565b73ffffffffffffffffffffffffffffffffffffffff1661115861126b565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906131d8565b60405180910390fd5b6111b86000612000565b565b6111c2611850565b73ffffffffffffffffffffffffffffffffffffffff166111e061126b565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906131d8565b60405180910390fd5b6000611240610a30565b9050600a54828261125191906132d9565b111561125c57600080fd5b6112668383611e48565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a490612fa5565b80601f01602080910402602001604051908101604052809291908181526020018280546112d090612fa5565b801561131d5780601f106112f25761010080835404028352916020019161131d565b820191906000526020600020905b81548152906001019060200180831161130057829003601f168201915b5050505050905090565b61132f611850565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906135c3565b60405180910390fd5b80600660006113a9611850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611456611850565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149b919061297d565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b6114ca84848461190a565b6114d6848484846120c6565b611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613655565b60405180910390fd5b50505050565b611523611850565b73ffffffffffffffffffffffffffffffffffffffff1661154161126b565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906131d8565b60405180910390fd5b80600b8190555050565b60606115ac82611843565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906136e7565b60405180910390fd5b60006115f561224d565b905060008151036116155760405180602001604052806000815250611640565b8061161f846122df565b604051602001611630929190613743565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e4611850565b73ffffffffffffffffffffffffffffffffffffffff1661170261126b565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906131d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906137d9565b60405180910390fd5b6117d081612000565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061191582611e66565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661193c611850565b73ffffffffffffffffffffffffffffffffffffffff1614806119985750611961611850565b73ffffffffffffffffffffffffffffffffffffffff1661198084610893565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b457506119b382600001516119ae611850565b611648565b5b9050806119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061386b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906138fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061398f565b60405180910390fd5b611ae4858585600161243f565b611af46000848460000151611858565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611dd857611d3781611843565b15611dd75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e418585856001612445565b5050505050565b611e6282826040518060200160405280600081525061244b565b5050565b611e6e612872565b611e7782611843565b611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613a21565b60405180910390fd5b60008290505b60008110611fbf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb0578092505050611ffb565b50808060019003915050611ebc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613ab3565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e78473ffffffffffffffffffffffffffffffffffffffff1661245d565b15612240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612110611850565b8786866040518563ffffffff1660e01b81526004016121329493929190613b28565b6020604051808303816000875af192505050801561216e57506040513d601f19601f8201168201806040525081019061216b9190613b89565b60015b6121f0573d806000811461219e576040519150601f19603f3d011682016040523d82523d6000602084013e6121a3565b606091505b5060008151036121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613655565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612245565b600190505b949350505050565b60606009805461225c90612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461228890612fa5565b80156122d55780601f106122aa576101008083540402835291602001916122d5565b820191906000526020600020905b8154815290600101906020018083116122b857829003601f168201915b5050505050905090565b606060008203612326576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061243a565b600082905060005b6000821461235857808061234190613bb6565b915050600a826123519190613c2d565b915061232e565b60008167ffffffffffffffff81111561237457612373612c05565b5b6040519080825280601f01601f1916602001820160405280156123a65781602001600182028036833780820191505090505b5090505b60008514612433576001826123bf9190613c5e565b9150600a856123ce9190613c92565b60306123da91906132d9565b60f81b8183815181106123f0576123ef613cc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561242c9190613c2d565b94506123aa565b8093505050505b919050565b50505050565b50505050565b6124588383836001612470565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613d64565b60405180910390fd5b60008403612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90613df6565b60405180910390fd5b612535600086838761243f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156127cf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156127ba5761277a60008884886120c6565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613655565b60405180910390fd5b5b81806001019250508080600101915050612703565b5080600081905550506127e56000868387612445565b5050505050565b8280546127f890612fa5565b90600052602060002090601f01602090048101928261281a5760008555612861565b82601f1061283357805160ff1916838001178555612861565b82800160010185558215612861579182015b82811115612860578251825591602001919060010190612845565b5b50905061286e91906128ac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128c55760008160009055506001016128ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612912816128dd565b811461291d57600080fd5b50565b60008135905061292f81612909565b92915050565b60006020828403121561294b5761294a6128d3565b5b600061295984828501612920565b91505092915050565b60008115159050919050565b61297781612962565b82525050565b6000602082019050612992600083018461296e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129d25780820151818401526020810190506129b7565b838111156129e1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a0382612998565b612a0d81856129a3565b9350612a1d8185602086016129b4565b612a26816129e7565b840191505092915050565b60006020820190508181036000830152612a4b81846129f8565b905092915050565b6000819050919050565b612a6681612a53565b8114612a7157600080fd5b50565b600081359050612a8381612a5d565b92915050565b600060208284031215612a9f57612a9e6128d3565b5b6000612aad84828501612a74565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ae182612ab6565b9050919050565b612af181612ad6565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b612b1b81612ad6565b8114612b2657600080fd5b50565b600081359050612b3881612b12565b92915050565b60008060408385031215612b5557612b546128d3565b5b6000612b6385828601612b29565b9250506020612b7485828601612a74565b9150509250929050565b612b8781612a53565b82525050565b6000602082019050612ba26000830184612b7e565b92915050565b600080600060608486031215612bc157612bc06128d3565b5b6000612bcf86828701612b29565b9350506020612be086828701612b29565b9250506040612bf186828701612a74565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3d826129e7565b810181811067ffffffffffffffff82111715612c5c57612c5b612c05565b5b80604052505050565b6000612c6f6128c9565b9050612c7b8282612c34565b919050565b600067ffffffffffffffff821115612c9b57612c9a612c05565b5b612ca4826129e7565b9050602081019050919050565b82818337600083830152505050565b6000612cd3612cce84612c80565b612c65565b905082815260208101848484011115612cef57612cee612c00565b5b612cfa848285612cb1565b509392505050565b600082601f830112612d1757612d16612bfb565b5b8135612d27848260208601612cc0565b91505092915050565b600060208284031215612d4657612d456128d3565b5b600082013567ffffffffffffffff811115612d6457612d636128d8565b5b612d7084828501612d02565b91505092915050565b600060208284031215612d8f57612d8e6128d3565b5b6000612d9d84828501612b29565b91505092915050565b612daf81612962565b8114612dba57600080fd5b50565b600081359050612dcc81612da6565b92915050565b60008060408385031215612de957612de86128d3565b5b6000612df785828601612b29565b9250506020612e0885828601612dbd565b9150509250929050565b600067ffffffffffffffff821115612e2d57612e2c612c05565b5b612e36826129e7565b9050602081019050919050565b6000612e56612e5184612e12565b612c65565b905082815260208101848484011115612e7257612e71612c00565b5b612e7d848285612cb1565b509392505050565b600082601f830112612e9a57612e99612bfb565b5b8135612eaa848260208601612e43565b91505092915050565b60008060008060808587031215612ecd57612ecc6128d3565b5b6000612edb87828801612b29565b9450506020612eec87828801612b29565b9350506040612efd87828801612a74565b925050606085013567ffffffffffffffff811115612f1e57612f1d6128d8565b5b612f2a87828801612e85565b91505092959194509250565b60008060408385031215612f4d57612f4c6128d3565b5b6000612f5b85828601612b29565b9250506020612f6c85828601612b29565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fbd57607f821691505b602082108103612fd057612fcf612f76565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613032602d836129a3565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c46022836129a3565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131566039836129a3565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131c26020836129a3565b91506131cd8261318c565b602082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b600081905092915050565b50565b60006132136000836131f8565b915061321e82613203565b600082019050919050565b600061323482613206565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613274601f836129a3565b915061327f8261323e565b602082019050919050565b600060208201905081810360008301526132a381613267565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132e482612a53565b91506132ef83612a53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613324576133236132aa565b5b828201905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061338b6022836129a3565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061341d602e836129a3565b9150613428826133c1565b604082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006134af6023836129a3565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613541602b836129a3565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006135ad601a836129a3565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061363f6033836129a3565b915061364a826135e3565b604082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136d1602f836129a3565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b600081905092915050565b600061371d82612998565b6137278185613707565b93506137378185602086016129b4565b80840191505092915050565b600061374f8285613712565b915061375b8284613712565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c36026836129a3565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138556032836129a3565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006138e76026836129a3565b91506138f28261388b565b604082019050919050565b60006020820190508181036000830152613916816138da565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139796025836129a3565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613a0b602a836129a3565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613a9d602f836129a3565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613afa82613ad3565b613b048185613ade565b9350613b148185602086016129b4565b613b1d816129e7565b840191505092915050565b6000608082019050613b3d6000830187612ae8565b613b4a6020830186612ae8565b613b576040830185612b7e565b8181036060830152613b698184613aef565b905095945050505050565b600081519050613b8381612909565b92915050565b600060208284031215613b9f57613b9e6128d3565b5b6000613bad84828501613b74565b91505092915050565b6000613bc182612a53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bf357613bf26132aa565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c3882612a53565b9150613c4383612a53565b925082613c5357613c52613bfe565b5b828204905092915050565b6000613c6982612a53565b9150613c7483612a53565b925082821015613c8757613c866132aa565b5b828203905092915050565b6000613c9d82612a53565b9150613ca883612a53565b925082613cb857613cb7613bfe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e6021836129a3565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613de06028836129a3565b9150613deb82613d84565b604082019050919050565b60006020820190508181036000830152613e0f81613dd3565b905091905056fea26469706673582212206676d1d715e220a93c239c58b153c7de0728733054f84faa3f27a52d07c2e74c64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063a2401ac31161008a578063c87b56dd11610064578063c87b56dd146105e9578063e985e9c514610626578063f2fde38b14610663578063f37cf14a1461068c576101b7565b8063a2401ac31461055a578063b88d4fde14610597578063c7cd997f146105c0576101b7565b8063849f2bf8116100c6578063849f2bf8146104b25780638da5cb5b146104db57806395d89b4114610506578063a22cb46514610531576101b7565b80636352211e1461042157806370a082311461045e578063715018a61461049b576101b7565b80632f55c9cb1161015957806342842e0e1161013357806342842e0e146103655780634f6ccce71461038e5780635125152a146103cb578063603f27fb146103f6576101b7565b80632f55c9cb146102e85780632f745c59146102ff5780632ff26e3b1461033c576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b557806324600fc3146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612935565b6106b7565b6040516101f0919061297d565b60405180910390f35b34801561020557600080fd5b5061020e610801565b60405161021b9190612a31565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612a89565b610893565b6040516102589190612af7565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612b3e565b610918565b005b34801561029657600080fd5b5061029f610a30565b6040516102ac9190612b8d565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612ba8565b610a39565b005b6102e6610a49565b005b3480156102f457600080fd5b506102fd610b3e565b005b34801561030b57600080fd5b5061032660048036038101906103219190612b3e565b610ca7565b6040516103339190612b8d565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190612d30565b610e97565b005b34801561037157600080fd5b5061038c60048036038101906103879190612ba8565b610f2d565b005b34801561039a57600080fd5b506103b560048036038101906103b09190612a89565b610f4d565b6040516103c29190612b8d565b60405180910390f35b3480156103d757600080fd5b506103e0610fa0565b6040516103ed9190612a31565b60405180910390f35b34801561040257600080fd5b5061040b61102e565b6040516104189190612b8d565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612a89565b611034565b6040516104559190612af7565b60405180910390f35b34801561046a57600080fd5b5061048560048036038101906104809190612d79565b61104a565b6040516104929190612b8d565b60405180910390f35b3480156104a757600080fd5b506104b0611132565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612b3e565b6111ba565b005b3480156104e757600080fd5b506104f061126b565b6040516104fd9190612af7565b60405180910390f35b34801561051257600080fd5b5061051b611295565b6040516105289190612a31565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612dd2565b611327565b005b34801561056657600080fd5b50610581600480360381019061057c9190612d79565b6114a7565b60405161058e9190612b8d565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612eb3565b6114bf565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612a89565b61151b565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612a89565b6115a1565b60405161061d9190612a31565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612f36565b611648565b60405161065a919061297d565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612d79565b6116dc565b005b34801561069857600080fd5b506106a16117d3565b6040516106ae9190612b8d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fa57506107f9826117d9565b5b9050919050565b60606001805461081090612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461083c90612fa5565b80156108895780601f1061085e57610100808354040283529160200191610889565b820191906000526020600020905b81548152906001019060200180831161086c57829003601f168201915b5050505050905090565b600061089e82611843565b6108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613048565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092382611034565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906130da565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b2611850565b73ffffffffffffffffffffffffffffffffffffffff1614806109e157506109e0816109db611850565b611648565b5b610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a179061316c565b60405180910390fd5b610a2b838383611858565b505050565b60008054905090565b610a4483838361190a565b505050565b610a51611850565b73ffffffffffffffffffffffffffffffffffffffff16610a6f61126b565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc906131d8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aeb90613229565b60006040518083038185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b5050905080610b3b57600080fd5b50565b600260085403610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a9061328a565b60405180910390fd5b60026008819055506000610b95610a30565b9050600a54600b5482610ba891906132d9565b1115610bb357600080fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610beb57600080fd5b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610c3857600080fd5b610c4433600b54611e48565b600b54600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c9591906132d9565b92505081905550506001600881905550565b6000610cb28361104a565b8210610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea906133a1565b60405180910390fd5b6000610cfd610a30565b905060008060005b83811015610e55576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4757868403610e3e578195505050505050610e91565b83806001019450505b508080600101915050610d05565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8890613433565b60405180910390fd5b92915050565b610e9f611850565b73ffffffffffffffffffffffffffffffffffffffff16610ebd61126b565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906131d8565b60405180910390fd5b8060099080519060200190610f299291906127ec565b5050565b610f48838383604051806020016040528060008152506114bf565b505050565b6000610f57610a30565b8210610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906134c5565b60405180910390fd5b819050919050565b60098054610fad90612fa5565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd990612fa5565b80156110265780601f10610ffb57610100808354040283529160200191611026565b820191906000526020600020905b81548152906001019060200180831161100957829003601f168201915b505050505081565b600a5481565b600061103f82611e66565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613557565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61113a611850565b73ffffffffffffffffffffffffffffffffffffffff1661115861126b565b73ffffffffffffffffffffffffffffffffffffffff16146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906131d8565b60405180910390fd5b6111b86000612000565b565b6111c2611850565b73ffffffffffffffffffffffffffffffffffffffff166111e061126b565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906131d8565b60405180910390fd5b6000611240610a30565b9050600a54828261125191906132d9565b111561125c57600080fd5b6112668383611e48565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a490612fa5565b80601f01602080910402602001604051908101604052809291908181526020018280546112d090612fa5565b801561131d5780601f106112f25761010080835404028352916020019161131d565b820191906000526020600020905b81548152906001019060200180831161130057829003601f168201915b5050505050905090565b61132f611850565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906135c3565b60405180910390fd5b80600660006113a9611850565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611456611850565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161149b919061297d565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b6114ca84848461190a565b6114d6848484846120c6565b611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613655565b60405180910390fd5b50505050565b611523611850565b73ffffffffffffffffffffffffffffffffffffffff1661154161126b565b73ffffffffffffffffffffffffffffffffffffffff1614611597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158e906131d8565b60405180910390fd5b80600b8190555050565b60606115ac82611843565b6115eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e2906136e7565b60405180910390fd5b60006115f561224d565b905060008151036116155760405180602001604052806000815250611640565b8061161f846122df565b604051602001611630929190613743565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e4611850565b73ffffffffffffffffffffffffffffffffffffffff1661170261126b565b73ffffffffffffffffffffffffffffffffffffffff1614611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f906131d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906137d9565b60405180910390fd5b6117d081612000565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061191582611e66565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661193c611850565b73ffffffffffffffffffffffffffffffffffffffff1614806119985750611961611850565b73ffffffffffffffffffffffffffffffffffffffff1661198084610893565b73ffffffffffffffffffffffffffffffffffffffff16145b806119b457506119b382600001516119ae611850565b611648565b5b9050806119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061386b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f906138fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061398f565b60405180910390fd5b611ae4858585600161243f565b611af46000848460000151611858565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611dd857611d3781611843565b15611dd75782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e418585856001612445565b5050505050565b611e6282826040518060200160405280600081525061244b565b5050565b611e6e612872565b611e7782611843565b611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613a21565b60405180910390fd5b60008290505b60008110611fbf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb0578092505050611ffb565b50808060019003915050611ebc565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290613ab3565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120e78473ffffffffffffffffffffffffffffffffffffffff1661245d565b15612240578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612110611850565b8786866040518563ffffffff1660e01b81526004016121329493929190613b28565b6020604051808303816000875af192505050801561216e57506040513d601f19601f8201168201806040525081019061216b9190613b89565b60015b6121f0573d806000811461219e576040519150601f19603f3d011682016040523d82523d6000602084013e6121a3565b606091505b5060008151036121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90613655565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612245565b600190505b949350505050565b60606009805461225c90612fa5565b80601f016020809104026020016040519081016040528092919081815260200182805461228890612fa5565b80156122d55780601f106122aa576101008083540402835291602001916122d5565b820191906000526020600020905b8154815290600101906020018083116122b857829003601f168201915b5050505050905090565b606060008203612326576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061243a565b600082905060005b6000821461235857808061234190613bb6565b915050600a826123519190613c2d565b915061232e565b60008167ffffffffffffffff81111561237457612373612c05565b5b6040519080825280601f01601f1916602001820160405280156123a65781602001600182028036833780820191505090505b5090505b60008514612433576001826123bf9190613c5e565b9150600a856123ce9190613c92565b60306123da91906132d9565b60f81b8183815181106123f0576123ef613cc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561242c9190613c2d565b94506123aa565b8093505050505b919050565b50505050565b50505050565b6124588383836001612470565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613d64565b60405180910390fd5b60008403612528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251f90613df6565b60405180910390fd5b612535600086838761243f565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156127cf57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156127ba5761277a60008884886120c6565b6127b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b090613655565b60405180910390fd5b5b81806001019250508080600101915050612703565b5080600081905550506127e56000868387612445565b5050505050565b8280546127f890612fa5565b90600052602060002090601f01602090048101928261281a5760008555612861565b82601f1061283357805160ff1916838001178555612861565b82800160010185558215612861579182015b82811115612860578251825591602001919060010190612845565b5b50905061286e91906128ac565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128c55760008160009055506001016128ad565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612912816128dd565b811461291d57600080fd5b50565b60008135905061292f81612909565b92915050565b60006020828403121561294b5761294a6128d3565b5b600061295984828501612920565b91505092915050565b60008115159050919050565b61297781612962565b82525050565b6000602082019050612992600083018461296e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129d25780820151818401526020810190506129b7565b838111156129e1576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a0382612998565b612a0d81856129a3565b9350612a1d8185602086016129b4565b612a26816129e7565b840191505092915050565b60006020820190508181036000830152612a4b81846129f8565b905092915050565b6000819050919050565b612a6681612a53565b8114612a7157600080fd5b50565b600081359050612a8381612a5d565b92915050565b600060208284031215612a9f57612a9e6128d3565b5b6000612aad84828501612a74565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ae182612ab6565b9050919050565b612af181612ad6565b82525050565b6000602082019050612b0c6000830184612ae8565b92915050565b612b1b81612ad6565b8114612b2657600080fd5b50565b600081359050612b3881612b12565b92915050565b60008060408385031215612b5557612b546128d3565b5b6000612b6385828601612b29565b9250506020612b7485828601612a74565b9150509250929050565b612b8781612a53565b82525050565b6000602082019050612ba26000830184612b7e565b92915050565b600080600060608486031215612bc157612bc06128d3565b5b6000612bcf86828701612b29565b9350506020612be086828701612b29565b9250506040612bf186828701612a74565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c3d826129e7565b810181811067ffffffffffffffff82111715612c5c57612c5b612c05565b5b80604052505050565b6000612c6f6128c9565b9050612c7b8282612c34565b919050565b600067ffffffffffffffff821115612c9b57612c9a612c05565b5b612ca4826129e7565b9050602081019050919050565b82818337600083830152505050565b6000612cd3612cce84612c80565b612c65565b905082815260208101848484011115612cef57612cee612c00565b5b612cfa848285612cb1565b509392505050565b600082601f830112612d1757612d16612bfb565b5b8135612d27848260208601612cc0565b91505092915050565b600060208284031215612d4657612d456128d3565b5b600082013567ffffffffffffffff811115612d6457612d636128d8565b5b612d7084828501612d02565b91505092915050565b600060208284031215612d8f57612d8e6128d3565b5b6000612d9d84828501612b29565b91505092915050565b612daf81612962565b8114612dba57600080fd5b50565b600081359050612dcc81612da6565b92915050565b60008060408385031215612de957612de86128d3565b5b6000612df785828601612b29565b9250506020612e0885828601612dbd565b9150509250929050565b600067ffffffffffffffff821115612e2d57612e2c612c05565b5b612e36826129e7565b9050602081019050919050565b6000612e56612e5184612e12565b612c65565b905082815260208101848484011115612e7257612e71612c00565b5b612e7d848285612cb1565b509392505050565b600082601f830112612e9a57612e99612bfb565b5b8135612eaa848260208601612e43565b91505092915050565b60008060008060808587031215612ecd57612ecc6128d3565b5b6000612edb87828801612b29565b9450506020612eec87828801612b29565b9350506040612efd87828801612a74565b925050606085013567ffffffffffffffff811115612f1e57612f1d6128d8565b5b612f2a87828801612e85565b91505092959194509250565b60008060408385031215612f4d57612f4c6128d3565b5b6000612f5b85828601612b29565b9250506020612f6c85828601612b29565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fbd57607f821691505b602082108103612fd057612fcf612f76565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613032602d836129a3565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006130c46022836129a3565b91506130cf82613068565b604082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006131566039836129a3565b9150613161826130fa565b604082019050919050565b6000602082019050818103600083015261318581613149565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131c26020836129a3565b91506131cd8261318c565b602082019050919050565b600060208201905081810360008301526131f1816131b5565b9050919050565b600081905092915050565b50565b60006132136000836131f8565b915061321e82613203565b600082019050919050565b600061323482613206565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613274601f836129a3565b915061327f8261323e565b602082019050919050565b600060208201905081810360008301526132a381613267565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132e482612a53565b91506132ef83612a53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613324576133236132aa565b5b828201905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061338b6022836129a3565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061341d602e836129a3565b9150613428826133c1565b604082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006134af6023836129a3565b91506134ba82613453565b604082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613541602b836129a3565b915061354c826134e5565b604082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006135ad601a836129a3565b91506135b882613577565b602082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061363f6033836129a3565b915061364a826135e3565b604082019050919050565b6000602082019050818103600083015261366e81613632565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006136d1602f836129a3565b91506136dc82613675565b604082019050919050565b60006020820190508181036000830152613700816136c4565b9050919050565b600081905092915050565b600061371d82612998565b6137278185613707565b93506137378185602086016129b4565b80840191505092915050565b600061374f8285613712565b915061375b8284613712565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137c36026836129a3565b91506137ce82613767565b604082019050919050565b600060208201905081810360008301526137f2816137b6565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006138556032836129a3565b9150613860826137f9565b604082019050919050565b6000602082019050818103600083015261388481613848565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006138e76026836129a3565b91506138f28261388b565b604082019050919050565b60006020820190508181036000830152613916816138da565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139796025836129a3565b91506139848261391d565b604082019050919050565b600060208201905081810360008301526139a88161396c565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613a0b602a836129a3565b9150613a16826139af565b604082019050919050565b60006020820190508181036000830152613a3a816139fe565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613a9d602f836129a3565b9150613aa882613a41565b604082019050919050565b60006020820190508181036000830152613acc81613a90565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613afa82613ad3565b613b048185613ade565b9350613b148185602086016129b4565b613b1d816129e7565b840191505092915050565b6000608082019050613b3d6000830187612ae8565b613b4a6020830186612ae8565b613b576040830185612b7e565b8181036060830152613b698184613aef565b905095945050505050565b600081519050613b8381612909565b92915050565b600060208284031215613b9f57613b9e6128d3565b5b6000613bad84828501613b74565b91505092915050565b6000613bc182612a53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bf357613bf26132aa565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c3882612a53565b9150613c4383612a53565b925082613c5357613c52613bfe565b5b828204905092915050565b6000613c6982612a53565b9150613c7483612a53565b925082821015613c8757613c866132aa565b5b828203905092915050565b6000613c9d82612a53565b9150613ca883612a53565b925082613cb857613cb7613bfe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d4e6021836129a3565b9150613d5982613cf2565b604082019050919050565b60006020820190508181036000830152613d7d81613d41565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000613de06028836129a3565b9150613deb82613d84565b604082019050919050565b60006020820190508181036000830152613e0f81613dd3565b905091905056fea26469706673582212206676d1d715e220a93c239c58b153c7de0728733054f84faa3f27a52d07c2e74c64736f6c634300080d0033

Deployed Bytecode Sourcemap

56917:1436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41074:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42960:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44522:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44043:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39331:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45398:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58189:161;;;:::i;:::-;;57346:358;;;;;;;;;;;;;:::i;:::-;;39995:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58082:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45631:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39508:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57009:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57038:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42769:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41510:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14677:94;;;;;;;;;;;;;:::i;:::-;;57712:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14026:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43129:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44808:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57119:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45879:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57959:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43304:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45167:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14926:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57080:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41074:372;41176:4;41228:25;41213:40;;;:11;:40;;;;:105;;;;41285:33;41270:48;;;:11;:48;;;;41213:105;:172;;;;41350:35;41335:50;;;:11;:50;;;;41213:172;:225;;;;41402:36;41426:11;41402:23;:36::i;:::-;41213:225;41193:245;;41074:372;;;:::o;42960:100::-;43014:13;43047:5;43040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42960:100;:::o;44522:214::-;44590:7;44618:16;44626:7;44618;:16::i;:::-;44610:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;44704:15;:24;44720:7;44704:24;;;;;;;;;;;;;;;;;;;;;44697:31;;44522:214;;;:::o;44043:413::-;44116:13;44132:24;44148:7;44132:15;:24::i;:::-;44116:40;;44181:5;44175:11;;:2;:11;;;44167:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44276:5;44260:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44285:37;44302:5;44309:12;:10;:12::i;:::-;44285:16;:37::i;:::-;44260:62;44238:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44420:28;44429:2;44433:7;44442:5;44420:8;:28::i;:::-;44105:351;44043:413;;:::o;39331:100::-;39384:7;39411:12;;39404:19;;39331:100;:::o;45398:162::-;45524:28;45534:4;45540:2;45544:7;45524:9;:28::i;:::-;45398:162;;;:::o;58189:161::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58248:12:::1;58274:10;58266:24;;58298:21;58266:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58247:77;;;58337:7;58329:16;;;::::0;::::1;;58239:111;58189:161::o:0;57346:358::-;55943:1;56541:7;;:19;56533:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55943:1;56674:7;:18;;;;57397:22:::1;57422:13;:11;:13::i;:::-;57397:38;;57488:12;;57471:13;;57454:14;:30;;;;:::i;:::-;:46;;57446:55;;;::::0;::::1;;57534:9;57520:23;;:10;:23;;;57512:32;;;::::0;::::1;;57585:13;;57560:10;:22;57571:10;57560:22;;;;;;;;;;;;;;;;:38;57552:47;;;::::0;::::1;;57610:36;57620:10;57632:13;;57610:9;:36::i;:::-;57683:13;;57657:10;:22;57668:10;57657:22;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;57387:317;55899:1:::0;56853:7;:22;;;;57346:358::o;39995:1007::-;40084:7;40120:16;40130:5;40120:9;:16::i;:::-;40112:5;:24;40104:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40186:22;40211:13;:11;:13::i;:::-;40186:38;;40235:19;40265:25;40454:9;40449:466;40469:14;40465:1;:18;40449:466;;;40509:31;40543:11;:14;40555:1;40543:14;;;;;;;;;;;40509:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40606:1;40580:28;;:9;:14;;;:28;;;40576:111;;40653:9;:14;;;40633:34;;40576:111;40730:5;40709:26;;:17;:26;;;40705:195;;40779:5;40764:11;:20;40760:85;;40820:1;40813:8;;;;;;;;;40760:85;40867:13;;;;;;;40705:195;40490:425;40485:3;;;;;;;40449:466;;;;40938:56;;;;;;;;;;:::i;:::-;;;;;;;;39995:1007;;;;;:::o;58082:99::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58166:7:::1;58155:8;:18;;;;;;;;;;;;:::i;:::-;;58082:99:::0;:::o;45631:177::-;45761:39;45778:4;45784:2;45788:7;45761:39;;;;;;;;;;;;:16;:39::i;:::-;45631:177;;;:::o;39508:187::-;39575:7;39611:13;:11;:13::i;:::-;39603:5;:21;39595:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39682:5;39675:12;;39508:187;;;:::o;57009:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57038:35::-;;;;:::o;42769:124::-;42833:7;42860:20;42872:7;42860:11;:20::i;:::-;:25;;;42853:32;;42769:124;;;:::o;41510:221::-;41574:7;41619:1;41602:19;;:5;:19;;;41594:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41695:12;:19;41708:5;41695:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;41687:36;;41680:43;;41510:221;;;:::o;14677:94::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14742:21:::1;14760:1;14742:9;:21::i;:::-;14677:94::o:0;57712:239::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57800:22:::1;57825:13;:11;:13::i;:::-;57800:38;;57888:12;;57874:10;57857:14;:27;;;;:::i;:::-;:43;;57849:52;;;::::0;::::1;;57912:31;57922:8;57932:10;57912:9;:31::i;:::-;57789:162;57712:239:::0;;:::o;14026:87::-;14072:7;14099:6;;;;;;;;;;;14092:13;;14026:87;:::o;43129:104::-;43185:13;43218:7;43211:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43129:104;:::o;44808:288::-;44915:12;:10;:12::i;:::-;44903:24;;:8;:24;;;44895:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45016:8;44971:18;:32;44990:12;:10;:12::i;:::-;44971:32;;;;;;;;;;;;;;;:42;45004:8;44971:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45069:8;45040:48;;45055:12;:10;:12::i;:::-;45040:48;;;45079:8;45040:48;;;;;;:::i;:::-;;;;;;;;44808:288;;:::o;57119:45::-;;;;;;;;;;;;;;;;;:::o;45879:355::-;46038:28;46048:4;46054:2;46058:7;46038:9;:28::i;:::-;46099:48;46122:4;46128:2;46132:7;46141:5;46099:22;:48::i;:::-;46077:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;45879:355;;;;:::o;57959:115::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58052:14:::1;58036:13;:30;;;;57959:115:::0;:::o;43304:335::-;43377:13;43411:16;43419:7;43411;:16::i;:::-;43403:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43492:21;43516:10;:8;:10::i;:::-;43492:34;;43569:1;43550:7;43544:21;:26;:87;;;;;;;;;;;;;;;;;43597:7;43606:18;:7;:16;:18::i;:::-;43580:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43544:87;43537:94;;;43304:335;;;:::o;45167:164::-;45264:4;45288:18;:25;45307:5;45288:25;;;;;;;;;;;;;;;:35;45314:8;45288:35;;;;;;;;;;;;;;;;;;;;;;;;;45281:42;;45167:164;;;;:::o;14926:192::-;14257:12;:10;:12::i;:::-;14246:23;;:7;:5;:7::i;:::-;:23;;;14238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15035:1:::1;15015:22;;:8;:22;;::::0;15007:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15091:19;15101:8;15091:9;:19::i;:::-;14926:192:::0;:::o;57080:32::-;;;;:::o;31478:157::-;31563:4;31602:25;31587:40;;;:11;:40;;;;31580:47;;31478:157;;;:::o;46489:111::-;46546:4;46580:12;;46570:7;:22;46563:29;;46489:111;;;:::o;12847:98::-;12900:7;12927:10;12920:17;;12847:98;:::o;51409:196::-;51551:2;51524:15;:24;51540:7;51524:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51589:7;51585:2;51569:28;;51578:5;51569:28;;;;;;;;;;;;51409:196;;;:::o;49289:2002::-;49404:35;49442:20;49454:7;49442:11;:20::i;:::-;49404:58;;49475:22;49517:13;:18;;;49501:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;49576:12;:10;:12::i;:::-;49552:36;;:20;49564:7;49552:11;:20::i;:::-;:36;;;49501:87;:154;;;;49605:50;49622:13;:18;;;49642:12;:10;:12::i;:::-;49605:16;:50::i;:::-;49501:154;49475:181;;49677:17;49669:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49792:4;49770:26;;:13;:18;;;:26;;;49762:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49872:1;49858:16;;:2;:16;;;49850:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49929:43;49951:4;49957:2;49961:7;49970:1;49929:21;:43::i;:::-;50037:49;50054:1;50058:7;50067:13;:18;;;50037:8;:49::i;:::-;50412:1;50382:12;:18;50395:4;50382:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50456:1;50428:12;:16;50441:2;50428:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50502:2;50474:11;:20;50486:7;50474:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;50564:15;50519:11;:20;50531:7;50519:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;50832:19;50864:1;50854:7;:11;50832:33;;50925:1;50884:43;;:11;:24;50896:11;50884:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50880:295;;50952:20;50960:11;50952:7;:20::i;:::-;50948:212;;;51029:13;:18;;;50997:11;:24;51009:11;50997:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;51112:13;:28;;;51070:11;:24;51082:11;51070:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;50948:212;50880:295;50357:829;51222:7;51218:2;51203:27;;51212:4;51203:27;;;;;;;;;;;;51241:42;51262:4;51268:2;51272:7;51281:1;51241:20;:42::i;:::-;49393:1898;;49289:2002;;;:::o;46608:104::-;46677:27;46687:2;46691:8;46677:27;;;;;;;;;;;;:9;:27::i;:::-;46608:104;;:::o;42170:537::-;42231:21;;:::i;:::-;42273:16;42281:7;42273;:16::i;:::-;42265:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42379:12;42394:7;42379:22;;42374:245;42411:1;42403:4;:9;42374:245;;42441:31;42475:11;:17;42487:4;42475:17;;;;;;;;;;;42441:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42541:1;42515:28;;:9;:14;;;:28;;;42511:93;;42575:9;42568:16;;;;;;42511:93;42422:197;42414:6;;;;;;;;42374:245;;;;42642:57;;;;;;;;;;:::i;:::-;;;;;;;;42170:537;;;;:::o;15126:173::-;15182:16;15201:6;;;;;;;;;;;15182:25;;15227:8;15218:6;;:17;;;;;;;;;;;;;;;;;;15282:8;15251:40;;15272:8;15251:40;;;;;;;;;;;;15171:128;15126:173;:::o;52170:804::-;52325:4;52346:15;:2;:13;;;:15::i;:::-;52342:625;;;52398:2;52382:36;;;52419:12;:10;:12::i;:::-;52433:4;52439:7;52448:5;52382:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52378:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52645:1;52628:6;:13;:18;52624:273;;52671:61;;;;;;;;;;:::i;:::-;;;;;;;;52624:273;52847:6;52841:13;52832:6;52828:2;52824:15;52817:38;52378:534;52515:45;;;52505:55;;;:6;:55;;;;52498:62;;;;;52342:625;52951:4;52944:11;;52170:804;;;;;;;:::o;57231:109::-;57291:13;57324:8;57317:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57231:109;:::o;1021:723::-;1077:13;1307:1;1298:5;:10;1294:53;;1325:10;;;;;;;;;;;;;;;;;;;;;1294:53;1357:12;1372:5;1357:20;;1388:14;1413:78;1428:1;1420:4;:9;1413:78;;1446:8;;;;;:::i;:::-;;;;1477:2;1469:10;;;;;:::i;:::-;;;1413:78;;;1501:19;1533:6;1523:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1501:39;;1551:154;1567:1;1558:5;:10;1551:154;;1595:1;1585:11;;;;;:::i;:::-;;;1662:2;1654:5;:10;;;;:::i;:::-;1641:2;:24;;;;:::i;:::-;1628:39;;1611:6;1618;1611:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1691:2;1682:11;;;;;:::i;:::-;;;1551:154;;;1729:6;1715:21;;;;;1021:723;;;;:::o;53462:159::-;;;;;:::o;54033:158::-;;;;;:::o;47075:163::-;47198:32;47204:2;47208:8;47218:5;47225:4;47198:5;:32::i;:::-;47075:163;;;:::o;16040:387::-;16100:4;16308:12;16375:7;16363:20;16355:28;;16418:1;16411:4;:8;16404:15;;;16040:387;;;:::o;47497:1538::-;47636:20;47659:12;;47636:35;;47704:1;47690:16;;:2;:16;;;47682:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47775:1;47763:8;:13;47755:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47834:61;47864:1;47868:2;47872:12;47886:8;47834:21;:61::i;:::-;48209:8;48173:12;:16;48186:2;48173:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48274:8;48233:12;:16;48246:2;48233:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48333:2;48300:11;:25;48312:12;48300:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;48400:15;48350:11;:25;48362:12;48350:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;48433:20;48456:12;48433:35;;48490:9;48485:415;48505:8;48501:1;:12;48485:415;;;48569:12;48565:2;48544:38;;48561:1;48544:38;;;;;;;;;;;;48605:4;48601:249;;;48668:59;48699:1;48703:2;48707:12;48721:5;48668:22;:59::i;:::-;48634:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;48601:249;48870:14;;;;;;;48515:3;;;;;;;48485:415;;;;48931:12;48916;:27;;;;48148:807;48967:60;48996:1;49000:2;49004:12;49018:8;48967:20;:60::i;:::-;47625:1410;47497:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:232::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:15;12837:2;12829:6;12825:15;12818:40;12633:232;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:419::-;13409:4;13447:2;13436:9;13432:18;13424:26;;13496:9;13490:4;13486:20;13482:1;13471:9;13467:17;13460:47;13524:131;13650:4;13524:131;:::i;:::-;13516:139;;13243:419;;;:::o;13668:221::-;13808:34;13804:1;13796:6;13792:14;13785:58;13877:4;13872:2;13864:6;13860:15;13853:29;13668:221;:::o;13895:366::-;14037:3;14058:67;14122:2;14117:3;14058:67;:::i;:::-;14051:74;;14134:93;14223:3;14134:93;:::i;:::-;14252:2;14247:3;14243:12;14236:19;;13895:366;;;:::o;14267:419::-;14433:4;14471:2;14460:9;14456:18;14448:26;;14520:9;14514:4;14510:20;14506:1;14495:9;14491:17;14484:47;14548:131;14674:4;14548:131;:::i;:::-;14540:139;;14267:419;;;:::o;14692:244::-;14832:34;14828:1;14820:6;14816:14;14809:58;14901:27;14896:2;14888:6;14884:15;14877:52;14692:244;:::o;14942:366::-;15084:3;15105:67;15169:2;15164:3;15105:67;:::i;:::-;15098:74;;15181:93;15270:3;15181:93;:::i;:::-;15299:2;15294:3;15290:12;15283:19;;14942:366;;;:::o;15314:419::-;15480:4;15518:2;15507:9;15503:18;15495:26;;15567:9;15561:4;15557:20;15553:1;15542:9;15538:17;15531:47;15595:131;15721:4;15595:131;:::i;:::-;15587:139;;15314:419;;;:::o;15739:182::-;15879:34;15875:1;15867:6;15863:14;15856:58;15739:182;:::o;15927:366::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;15927:366;;;:::o;16299:419::-;16465:4;16503:2;16492:9;16488:18;16480:26;;16552:9;16546:4;16542:20;16538:1;16527:9;16523:17;16516:47;16580:131;16706:4;16580:131;:::i;:::-;16572:139;;16299:419;;;:::o;16724:147::-;16825:11;16862:3;16847:18;;16724:147;;;;:::o;16877:114::-;;:::o;16997:398::-;17156:3;17177:83;17258:1;17253:3;17177:83;:::i;:::-;17170:90;;17269:93;17358:3;17269:93;:::i;:::-;17387:1;17382:3;17378:11;17371:18;;16997:398;;;:::o;17401:379::-;17585:3;17607:147;17750:3;17607:147;:::i;:::-;17600:154;;17771:3;17764:10;;17401:379;;;:::o;17786:181::-;17926:33;17922:1;17914:6;17910:14;17903:57;17786:181;:::o;17973:366::-;18115:3;18136:67;18200:2;18195:3;18136:67;:::i;:::-;18129:74;;18212:93;18301:3;18212:93;:::i;:::-;18330:2;18325:3;18321:12;18314:19;;17973:366;;;:::o;18345:419::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:180::-;18818:77;18815:1;18808:88;18915:4;18912:1;18905:15;18939:4;18936:1;18929:15;18956:305;18996:3;19015:20;19033:1;19015:20;:::i;:::-;19010:25;;19049:20;19067:1;19049:20;:::i;:::-;19044:25;;19203:1;19135:66;19131:74;19128:1;19125:81;19122:107;;;19209:18;;:::i;:::-;19122:107;19253:1;19250;19246:9;19239:16;;18956:305;;;;:::o;19267:221::-;19407:34;19403:1;19395:6;19391:14;19384:58;19476:4;19471:2;19463:6;19459:15;19452:29;19267:221;:::o;19494:366::-;19636:3;19657:67;19721:2;19716:3;19657:67;:::i;:::-;19650:74;;19733:93;19822:3;19733:93;:::i;:::-;19851:2;19846:3;19842:12;19835:19;;19494:366;;;:::o;19866:419::-;20032:4;20070:2;20059:9;20055:18;20047:26;;20119:9;20113:4;20109:20;20105:1;20094:9;20090:17;20083:47;20147:131;20273:4;20147:131;:::i;:::-;20139:139;;19866:419;;;:::o;20291:233::-;20431:34;20427:1;20419:6;20415:14;20408:58;20500:16;20495:2;20487:6;20483:15;20476:41;20291:233;:::o;20530:366::-;20672:3;20693:67;20757:2;20752:3;20693:67;:::i;:::-;20686:74;;20769:93;20858:3;20769:93;:::i;:::-;20887:2;20882:3;20878:12;20871:19;;20530:366;;;:::o;20902:419::-;21068:4;21106:2;21095:9;21091:18;21083:26;;21155:9;21149:4;21145:20;21141:1;21130:9;21126:17;21119:47;21183:131;21309:4;21183:131;:::i;:::-;21175:139;;20902:419;;;:::o;21327:222::-;21467:34;21463:1;21455:6;21451:14;21444:58;21536:5;21531:2;21523:6;21519:15;21512:30;21327:222;:::o;21555:366::-;21697:3;21718:67;21782:2;21777:3;21718:67;:::i;:::-;21711:74;;21794:93;21883:3;21794:93;:::i;:::-;21912:2;21907:3;21903:12;21896:19;;21555:366;;;:::o;21927:419::-;22093:4;22131:2;22120:9;22116:18;22108:26;;22180:9;22174:4;22170:20;22166:1;22155:9;22151:17;22144:47;22208:131;22334:4;22208:131;:::i;:::-;22200:139;;21927:419;;;:::o;22352:230::-;22492:34;22488:1;22480:6;22476:14;22469:58;22561:13;22556:2;22548:6;22544:15;22537:38;22352:230;:::o;22588:366::-;22730:3;22751:67;22815:2;22810:3;22751:67;:::i;:::-;22744:74;;22827:93;22916:3;22827:93;:::i;:::-;22945:2;22940:3;22936:12;22929:19;;22588:366;;;:::o;22960:419::-;23126:4;23164:2;23153:9;23149:18;23141:26;;23213:9;23207:4;23203:20;23199:1;23188:9;23184:17;23177:47;23241:131;23367:4;23241:131;:::i;:::-;23233:139;;22960:419;;;:::o;23385:176::-;23525:28;23521:1;23513:6;23509:14;23502:52;23385:176;:::o;23567:366::-;23709:3;23730:67;23794:2;23789:3;23730:67;:::i;:::-;23723:74;;23806:93;23895:3;23806:93;:::i;:::-;23924:2;23919:3;23915:12;23908:19;;23567:366;;;:::o;23939:419::-;24105:4;24143:2;24132:9;24128:18;24120:26;;24192:9;24186:4;24182:20;24178:1;24167:9;24163:17;24156:47;24220:131;24346:4;24220:131;:::i;:::-;24212:139;;23939:419;;;:::o;24364:238::-;24504:34;24500:1;24492:6;24488:14;24481:58;24573:21;24568:2;24560:6;24556:15;24549:46;24364:238;:::o;24608:366::-;24750:3;24771:67;24835:2;24830:3;24771:67;:::i;:::-;24764:74;;24847:93;24936:3;24847:93;:::i;:::-;24965:2;24960:3;24956:12;24949:19;;24608:366;;;:::o;24980:419::-;25146:4;25184:2;25173:9;25169:18;25161:26;;25233:9;25227:4;25223:20;25219:1;25208:9;25204:17;25197:47;25261:131;25387:4;25261:131;:::i;:::-;25253:139;;24980:419;;;:::o;25405:234::-;25545:34;25541:1;25533:6;25529:14;25522:58;25614:17;25609:2;25601:6;25597:15;25590:42;25405:234;:::o;25645:366::-;25787:3;25808:67;25872:2;25867:3;25808:67;:::i;:::-;25801:74;;25884:93;25973:3;25884:93;:::i;:::-;26002:2;25997:3;25993:12;25986:19;;25645:366;;;:::o;26017:419::-;26183:4;26221:2;26210:9;26206:18;26198:26;;26270:9;26264:4;26260:20;26256:1;26245:9;26241:17;26234:47;26298:131;26424:4;26298:131;:::i;:::-;26290:139;;26017:419;;;:::o;26442:148::-;26544:11;26581:3;26566:18;;26442:148;;;;:::o;26596:377::-;26702:3;26730:39;26763:5;26730:39;:::i;:::-;26785:89;26867:6;26862:3;26785:89;:::i;:::-;26778:96;;26883:52;26928:6;26923:3;26916:4;26909:5;26905:16;26883:52;:::i;:::-;26960:6;26955:3;26951:16;26944:23;;26706:267;26596:377;;;;:::o;26979:435::-;27159:3;27181:95;27272:3;27263:6;27181:95;:::i;:::-;27174:102;;27293:95;27384:3;27375:6;27293:95;:::i;:::-;27286:102;;27405:3;27398:10;;26979:435;;;;;:::o;27420:225::-;27560:34;27556:1;27548:6;27544:14;27537:58;27629:8;27624:2;27616:6;27612:15;27605:33;27420:225;:::o;27651:366::-;27793:3;27814:67;27878:2;27873:3;27814:67;:::i;:::-;27807:74;;27890:93;27979:3;27890:93;:::i;:::-;28008:2;28003:3;27999:12;27992:19;;27651:366;;;:::o;28023:419::-;28189:4;28227:2;28216:9;28212:18;28204:26;;28276:9;28270:4;28266:20;28262:1;28251:9;28247:17;28240:47;28304:131;28430:4;28304:131;:::i;:::-;28296:139;;28023:419;;;:::o;28448:237::-;28588:34;28584:1;28576:6;28572:14;28565:58;28657:20;28652:2;28644:6;28640:15;28633:45;28448:237;:::o;28691:366::-;28833:3;28854:67;28918:2;28913:3;28854:67;:::i;:::-;28847:74;;28930:93;29019:3;28930:93;:::i;:::-;29048:2;29043:3;29039:12;29032:19;;28691:366;;;:::o;29063:419::-;29229:4;29267:2;29256:9;29252:18;29244:26;;29316:9;29310:4;29306:20;29302:1;29291:9;29287:17;29280:47;29344:131;29470:4;29344:131;:::i;:::-;29336:139;;29063:419;;;:::o;29488:225::-;29628:34;29624:1;29616:6;29612:14;29605:58;29697:8;29692:2;29684:6;29680:15;29673:33;29488:225;:::o;29719:366::-;29861:3;29882:67;29946:2;29941:3;29882:67;:::i;:::-;29875:74;;29958:93;30047:3;29958:93;:::i;:::-;30076:2;30071:3;30067:12;30060:19;;29719:366;;;:::o;30091:419::-;30257:4;30295:2;30284:9;30280:18;30272:26;;30344:9;30338:4;30334:20;30330:1;30319:9;30315:17;30308:47;30372:131;30498:4;30372:131;:::i;:::-;30364:139;;30091:419;;;:::o;30516:224::-;30656:34;30652:1;30644:6;30640:14;30633:58;30725:7;30720:2;30712:6;30708:15;30701:32;30516:224;:::o;30746:366::-;30888:3;30909:67;30973:2;30968:3;30909:67;:::i;:::-;30902:74;;30985:93;31074:3;30985:93;:::i;:::-;31103:2;31098:3;31094:12;31087:19;;30746:366;;;:::o;31118:419::-;31284:4;31322:2;31311:9;31307:18;31299:26;;31371:9;31365:4;31361:20;31357:1;31346:9;31342:17;31335:47;31399:131;31525:4;31399:131;:::i;:::-;31391:139;;31118:419;;;:::o;31543:229::-;31683:34;31679:1;31671:6;31667:14;31660:58;31752:12;31747:2;31739:6;31735:15;31728:37;31543:229;:::o;31778:366::-;31920:3;31941:67;32005:2;32000:3;31941:67;:::i;:::-;31934:74;;32017:93;32106:3;32017:93;:::i;:::-;32135:2;32130:3;32126:12;32119:19;;31778:366;;;:::o;32150:419::-;32316:4;32354:2;32343:9;32339:18;32331:26;;32403:9;32397:4;32393:20;32389:1;32378:9;32374:17;32367:47;32431:131;32557:4;32431:131;:::i;:::-;32423:139;;32150:419;;;:::o;32575:234::-;32715:34;32711:1;32703:6;32699:14;32692:58;32784:17;32779:2;32771:6;32767:15;32760:42;32575:234;:::o;32815:366::-;32957:3;32978:67;33042:2;33037:3;32978:67;:::i;:::-;32971:74;;33054:93;33143:3;33054:93;:::i;:::-;33172:2;33167:3;33163:12;33156:19;;32815:366;;;:::o;33187:419::-;33353:4;33391:2;33380:9;33376:18;33368:26;;33440:9;33434:4;33430:20;33426:1;33415:9;33411:17;33404:47;33468:131;33594:4;33468:131;:::i;:::-;33460:139;;33187:419;;;:::o;33612:98::-;33663:6;33697:5;33691:12;33681:22;;33612:98;;;:::o;33716:168::-;33799:11;33833:6;33828:3;33821:19;33873:4;33868:3;33864:14;33849:29;;33716:168;;;;:::o;33890:360::-;33976:3;34004:38;34036:5;34004:38;:::i;:::-;34058:70;34121:6;34116:3;34058:70;:::i;:::-;34051:77;;34137:52;34182:6;34177:3;34170:4;34163:5;34159:16;34137:52;:::i;:::-;34214:29;34236:6;34214:29;:::i;:::-;34209:3;34205:39;34198:46;;33980:270;33890:360;;;;:::o;34256:640::-;34451:4;34489:3;34478:9;34474:19;34466:27;;34503:71;34571:1;34560:9;34556:17;34547:6;34503:71;:::i;:::-;34584:72;34652:2;34641:9;34637:18;34628:6;34584:72;:::i;:::-;34666;34734:2;34723:9;34719:18;34710:6;34666:72;:::i;:::-;34785:9;34779:4;34775:20;34770:2;34759:9;34755:18;34748:48;34813:76;34884:4;34875:6;34813:76;:::i;:::-;34805:84;;34256:640;;;;;;;:::o;34902:141::-;34958:5;34989:6;34983:13;34974:22;;35005:32;35031:5;35005:32;:::i;:::-;34902:141;;;;:::o;35049:349::-;35118:6;35167:2;35155:9;35146:7;35142:23;35138:32;35135:119;;;35173:79;;:::i;:::-;35135:119;35293:1;35318:63;35373:7;35364:6;35353:9;35349:22;35318:63;:::i;:::-;35308:73;;35264:127;35049:349;;;;:::o;35404:233::-;35443:3;35466:24;35484:5;35466:24;:::i;:::-;35457:33;;35512:66;35505:5;35502:77;35499:103;;35582:18;;:::i;:::-;35499:103;35629:1;35622:5;35618:13;35611:20;;35404:233;;;:::o;35643:180::-;35691:77;35688:1;35681:88;35788:4;35785:1;35778:15;35812:4;35809:1;35802:15;35829:185;35869:1;35886:20;35904:1;35886:20;:::i;:::-;35881:25;;35920:20;35938:1;35920:20;:::i;:::-;35915:25;;35959:1;35949:35;;35964:18;;:::i;:::-;35949:35;36006:1;36003;35999:9;35994:14;;35829:185;;;;:::o;36020:191::-;36060:4;36080:20;36098:1;36080:20;:::i;:::-;36075:25;;36114:20;36132:1;36114:20;:::i;:::-;36109:25;;36153:1;36150;36147:8;36144:34;;;36158:18;;:::i;:::-;36144:34;36203:1;36200;36196:9;36188:17;;36020:191;;;;:::o;36217:176::-;36249:1;36266:20;36284:1;36266:20;:::i;:::-;36261:25;;36300:20;36318:1;36300:20;:::i;:::-;36295:25;;36339:1;36329:35;;36344:18;;:::i;:::-;36329:35;36385:1;36382;36378:9;36373:14;;36217:176;;;;:::o;36399:180::-;36447:77;36444:1;36437:88;36544:4;36541:1;36534:15;36568:4;36565:1;36558:15;36585:220;36725:34;36721:1;36713:6;36709:14;36702:58;36794:3;36789:2;36781:6;36777:15;36770:28;36585:220;:::o;36811:366::-;36953:3;36974:67;37038:2;37033:3;36974:67;:::i;:::-;36967:74;;37050:93;37139:3;37050:93;:::i;:::-;37168:2;37163:3;37159:12;37152:19;;36811:366;;;:::o;37183:419::-;37349:4;37387:2;37376:9;37372:18;37364:26;;37436:9;37430:4;37426:20;37422:1;37411:9;37407:17;37400:47;37464:131;37590:4;37464:131;:::i;:::-;37456:139;;37183:419;;;:::o;37608:227::-;37748:34;37744:1;37736:6;37732:14;37725:58;37817:10;37812:2;37804:6;37800:15;37793:35;37608:227;:::o;37841:366::-;37983:3;38004:67;38068:2;38063:3;38004:67;:::i;:::-;37997:74;;38080:93;38169:3;38080:93;:::i;:::-;38198:2;38193:3;38189:12;38182:19;;37841:366;;;:::o;38213:419::-;38379:4;38417:2;38406:9;38402:18;38394:26;;38466:9;38460:4;38456:20;38452:1;38441:9;38437:17;38430:47;38494:131;38620:4;38494:131;:::i;:::-;38486:139;;38213:419;;;:::o

Swarm Source

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