ETH Price: $2,468.17 (+1.31%)

Token

The NFTits Club (TIT)
 

Overview

Max Total Supply

624 TIT

Holders

125

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
NFTits

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:::@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@:::::-@@@@@@::::::@@:::::::::::::::::::::::::@::=-:@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@:***+:@@@@@@::**-+@@:*********+:************-=:**-:@@-::::@@@@@@@@@@@@@@@@@@
@@@@@:****-:@@@@@::**-*@@:***+++++++:+***********-=-**-=@@-:**-*@@@@@@@@@@@@@@@@@
@@@@@:*****::@@@@::**-*@@:**-------:::----**------*:--=*@@-:**-*@@@@@@@@@@@@@@@@@
@@@@@:**+**+-@@@@::**-*@@:**-+**********+-**-******@=+*@@@-:**-*@@@@@@@@@@@@@@@@@
@@@@@:**--**-:@@@::**-*@@:**-+@@@@@@@@@@-:**-*@@@@@::::@::::**--::@@@:::::@@@@@@@
@@@@@:**--***=:@@::**-*@@:**-=::::::@@@@-:**-*@@@@@:-=-*:-==**+=--@:::=+==-::@@@@
@@@@@:**--:**+:@@::**-*@@:**-:::::::@@@@-:**-*@@@@@:**-*:-******-=:: ******:-@@@@
@@@@@:**--:=**+::::**-*@@:********-:#@@@-:**-*@@@@@:**-*:-=+**+=-=:**+==-=-+*@@@@
@@@@@:**--@:+**=:::**-*@@:********-:%@@@-:**-*@@@@@:**-*@**-**-***:**+:--:+*@@@@@
@@@@@:**--@::***-::**-*@@:**-:::::::%@@@-:**-*@@@@@:**-*@@-:**-*@@:=**+=::+@@@@@@
@@@@@:**--@@:-***::**-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@@--*****+::@@@@@
@@@@@:**--@@@:=**=:**-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@@@::==***+::@@@@
@@@@@:**--@@@@:******-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@@@::+-:+**-:@@@@
@@@@@:**--@@@@:-*****-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@@::::::=**-=@@@@
@@@@@:**--@@@@@:=****-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@::-*+--+**-+@@@@
@@@@@:**--@@@@@-:=***-*@@:**-+@@@@@@@@@@-:**-*@@@@@:**-*@@-:**-*@::=******=+*@@@@
@@@@@::::-@@@@@@@::::-*@@::::+@@@@@@@@@@-::::*@@@@@::::*@@-::::*@@@:--++--+*@@@@@
@@@@@::::=@@@@@@@::::-*@@::::+@@@@@@@@@@:::::*@@@@@::::*@@-::::*@@@@+:=++**@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

The NFTits Club | Official Contract | Gals Of The Galaxy

*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(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 private currentIndex = 0;

    uint256 internal immutable maxBatchSize;

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @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 = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; 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);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            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);

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(prevOwnership.addr, 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);
    }

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > currentIndex - 1) {
            endIndex = currentIndex - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

// File: contracts/con2.sol



pragma solidity ^0.8.4;





contract NFTits is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    string baseURI = "ipfs://QmZbvgq4RHxLYTsNDB37s7jp1hNdx6jqxPU3q657H27MAs/"; 
    string baseExtension = ".json";
    uint256 public salePrice = 0.1 ether;
    uint256 public presalePrice = 0.07 ether;
    uint256 maxSupply = 7777; 
    bool public paused = true;
    bool public presalePaused = true;
    mapping (address => uint256) public whitelistMintedAmount;
    uint256 public presaleMaxMint = 10; 
    uint256 public saleMintAmount = 50;
    address public signerAddress = 0xBA3Daf4d95A0B5A31eD0278CfeceDCe54EB23C16;
    constructor() ERC721A(
      "The NFTits Club", 
      "TIT",
       saleMintAmount){    
       }

    function matchAddressSigner(address account, bytes calldata signature) internal view returns (bool){
      return ECDSA.recover(keccak256(abi.encodePacked(account)).toEthSignedMessageHash(), signature) == signerAddress;
      }

    function presaleMint(uint256 quantity,  bytes calldata signature) external payable nonReentrant{
      require(matchAddressSigner(msg.sender, signature), "not on whitelist");
      require(whitelistMintedAmount[msg.sender] + quantity <= presaleMaxMint);
      require(msg.value >= quantity * presalePrice);
      require(!presalePaused);
      whitelistMintedAmount[msg.sender] += quantity;
      _safeMint(msg.sender, quantity);
      } 

    function mint(address _to, uint quantity) external payable {
      uint256 supply = totalSupply();
      require (quantity <= saleMintAmount);
      require(supply + quantity <= maxSupply);      
      if (msg.sender != owner()){
        require (!paused);
        require(msg.value >= quantity * salePrice);
      }
      _safeMint(_to, quantity);
      }
 
    function _baseURI() internal view override returns (string memory){
      return baseURI; 
      }

    function changeWhitelistAddress(address _newWhitelistSigner)public onlyOwner{
      signerAddress = _newWhitelistSigner;
    }
 
    // only owner 
    function togglePaused() public onlyOwner{
      paused = !paused;
      }
    
    function togglePresalePaused() public onlyOwner{
      presalePaused = !presalePaused;
      }

    function setPrice(uint256 _newPrice) public onlyOwner(){
      salePrice = _newPrice;
    }

    function setPresalePrice(uint256 _newPrice) public onlyOwner(){
      presalePrice = _newPrice;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner(){
      saleMintAmount = _newMaxMintAmount;
    }
  
    function setMaxPresaleMint(uint256 _newMaxMintAmount) public onlyOwner(){
      presaleMaxMint = _newMaxMintAmount;
    }
    
    function updateMaxSupply (uint256 _newMax) public onlyOwner(){
      maxSupply = _newMax;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
      baseURI = _newBaseURI;
    }
 
    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
      baseExtension = _newBaseExtension;
    }

    function withdraw() public payable onlyOwner {
      require(payable(msg.sender).send(address(this).balance));
      }
  }

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":[{"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":"_newWhitelistSigner","type":"address"}],"name":"changeWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresalePaused","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a0604052600080556000600755604051806060016040528060368152602001620057d360369139600a90805190602001906200003e9291906200033b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200008c9291906200033b565b5067016345785d8a0000600c5566f8b0a10e470000600d55611e61600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550600a601155603260125573ba3daf4d95a0b5a31ed0278cfecedce54eb23c16601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200014c57600080fd5b506040518060400160405280600f81526020017f546865204e465469747320436c756200000000000000000000000000000000008152506040518060400160405280600381526020017f54495400000000000000000000000000000000000000000000000000000000008152506012546000811162000202576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f99062000412565b60405180910390fd5b82600190805190602001906200021a9291906200033b565b508160029080519060200190620002339291906200033b565b5080608081815250505050506200025f620002536200026d60201b60201c565b6200027560201b60201c565b6001600981905550620004f9565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003499062000445565b90600052602060002090601f0160209004810192826200036d5760008555620003b9565b82601f106200038857805160ff1916838001178555620003b9565b82800160010185558215620003b9579182015b82811115620003b85782518255916020019190600101906200039b565b5b509050620003c89190620003cc565b5090565b5b80821115620003e7576000816000905550600101620003cd565b5090565b6000620003fa60278362000434565b91506200040782620004aa565b604082019050919050565b600060208201905081810360008301526200042d81620003eb565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045e57607f821691505b602082108114156200047557620004746200047b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6080516152b06200052360003960008181612648015281816126710152612deb01526152b06000f3fe6080604052600436106102455760003560e01c80635b7633d011610139578063a79fdbb4116100b6578063e985e9c51161007a578063e985e9c514610837578063ee5aefa914610874578063f103b4331461089f578063f2fde38b146108c8578063f51f96dd146108f1578063fd24a8541461091c57610245565b8063a79fdbb414610752578063b88d4fde1461077d578063c87b56dd146107a6578063d7224ba0146107e3578063da3ef23f1461080e57610245565b80638da5cb5b116100fd5780638da5cb5b1461067f57806391b7f5ed146106aa578063946ef42a146106d357806395d89b41146106fe578063a22cb4651461072957610245565b80635b7633d0146105985780635c975abb146105c35780636352211e146105ee57806370a082311461062b578063715018a61461066857610245565b80632f745c59116101c75780633ccfd60b1161018b5780633ccfd60b146104e357806340c10f19146104ed57806342842e0e146105095780634f6ccce71461053257806355f804b31461056f57610245565b80632f745c59146104265780633425f90c146104635780633549345e1461048c57806336566f06146104b55780633aaeaabe146104cc57610245565b8063095ea7b31161020e578063095ea7b3146103435780631529e33b1461036c57806318160ddd146103955780631fac2a35146103c057806323b872dd146103fd57610245565b80620e7fa81461024a57806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063088a4ed01461031a575b600080fd5b34801561025657600080fd5b5061025f610938565b60405161026c9190614511565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190613a86565b61093e565b6040516102a9919061414f565b60405180910390f35b3480156102be57600080fd5b506102c7610a88565b6040516102d491906141af565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613b29565b610b1a565b60405161031191906140e8565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190613b29565b610b9f565b005b34801561034f57600080fd5b5061036a60048036038101906103659190613a46565b610c25565b005b34801561037857600080fd5b50610393600480360381019061038e91906138c3565b610d3e565b005b3480156103a157600080fd5b506103aa610dfe565b6040516103b79190614511565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906138c3565b610e07565b6040516103f49190614511565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613930565b610e1f565b005b34801561043257600080fd5b5061044d60048036038101906104489190613a46565b610e2f565b60405161045a9190614511565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613b29565b61102d565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613b29565b6110b3565b005b3480156104c157600080fd5b506104ca611139565b005b3480156104d857600080fd5b506104e16111e1565b005b6104eb611289565b005b61050760048036038101906105029190613a46565b611345565b005b34801561051557600080fd5b50610530600480360381019061052b9190613930565b6113f8565b005b34801561053e57600080fd5b5061055960048036038101906105549190613b29565b611418565b6040516105669190614511565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613ae0565b61146b565b005b3480156105a457600080fd5b506105ad611501565b6040516105ba91906140e8565b60405180910390f35b3480156105cf57600080fd5b506105d8611527565b6040516105e5919061414f565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613b29565b61153a565b60405161062291906140e8565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906138c3565b611550565b60405161065f9190614511565b60405180910390f35b34801561067457600080fd5b5061067d611639565b005b34801561068b57600080fd5b506106946116c1565b6040516106a191906140e8565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613b29565b6116eb565b005b3480156106df57600080fd5b506106e8611771565b6040516106f59190614511565b60405180910390f35b34801561070a57600080fd5b50610713611777565b60405161072091906141af565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613a06565b611809565b005b34801561075e57600080fd5b5061076761198a565b604051610774919061414f565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613983565b61199d565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190613b29565b6119f9565b6040516107da91906141af565b60405180910390f35b3480156107ef57600080fd5b506107f8611aa0565b6040516108059190614511565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613ae0565b611aa6565b005b34801561084357600080fd5b5061085e600480360381019061085991906138f0565b611b3c565b60405161086b919061414f565b60405180910390f35b34801561088057600080fd5b50610889611bd0565b6040516108969190614511565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613b29565b611bd6565b005b3480156108d457600080fd5b506108ef60048036038101906108ea91906138c3565b611c5c565b005b3480156108fd57600080fd5b50610906611d54565b6040516109139190614511565b60405180910390f35b61093660048036038101906109319190613b56565b611d5a565b005b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a815750610a8082611eec565b5b9050919050565b606060018054610a9790614898565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390614898565b8015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b5050505050905090565b6000610b2582611f56565b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906144d1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ba7611f63565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116c1565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290614371565b60405180910390fd5b8060128190555050565b6000610c308261153a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906143f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611f63565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611f63565b611b3c565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906142f1565b60405180910390fd5b610d39838383611f6b565b505050565b610d46611f63565b73ffffffffffffffffffffffffffffffffffffffff16610d646116c1565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190614371565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054905090565b60106020528060005260406000206000915090505481565b610e2a83838361201d565b505050565b6000610e3a83611550565b8210610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906141f1565b60405180910390fd5b6000610e85610dfe565b905060008060005b83811015610feb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd75786841415610fc8578195505050505050611027565b8380610fd3906148fb565b9450505b508080610fe3906148fb565b915050610e8d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614471565b60405180910390fd5b92915050565b611035611f63565b73ffffffffffffffffffffffffffffffffffffffff166110536116c1565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614371565b60405180910390fd5b8060118190555050565b6110bb611f63565b73ffffffffffffffffffffffffffffffffffffffff166110d96116c1565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614371565b60405180910390fd5b80600d8190555050565b611141611f63565b73ffffffffffffffffffffffffffffffffffffffff1661115f6116c1565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90614371565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6111e9611f63565b73ffffffffffffffffffffffffffffffffffffffff166112076116c1565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490614371565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611291611f63565b73ffffffffffffffffffffffffffffffffffffffff166112af6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90614371565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061134357600080fd5b565b600061134f610dfe565b905060125482111561136057600080fd5b600e54828261136f919061463c565b111561137a57600080fd5b6113826116c1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113e957600f60009054906101000a900460ff16156113ce57600080fd5b600c54826113dc91906146c3565b3410156113e857600080fd5b5b6113f383836125d6565b505050565b6114138383836040518060200160405280600081525061199d565b505050565b6000611422610dfe565b8210611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614271565b60405180910390fd5b819050919050565b611473611f63565b73ffffffffffffffffffffffffffffffffffffffff166114916116c1565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614371565b60405180910390fd5b80600a90805190602001906114fd929190613647565b5050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b6000611545826125f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890614311565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611641611f63565b73ffffffffffffffffffffffffffffffffffffffff1661165f6116c1565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614371565b60405180910390fd5b6116bf60006127f7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f3611f63565b73ffffffffffffffffffffffffffffffffffffffff166117116116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614371565b60405180910390fd5b80600c8190555050565b60115481565b60606002805461178690614898565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290614898565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b611811611f63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906143b1565b60405180910390fd5b806006600061188c611f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611939611f63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197e919061414f565b60405180910390a35050565b600f60019054906101000a900460ff1681565b6119a884848461201d565b6119b4848484846128bd565b6119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614411565b60405180910390fd5b50505050565b6060611a0482611f56565b611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90614391565b60405180910390fd5b6000611a4d612a54565b90506000815111611a6d5760405180602001604052806000815250611a98565b80611a7784612ae6565b604051602001611a8892919061409e565b6040516020818303038152906040525b915050919050565b60075481565b611aae611f63565b73ffffffffffffffffffffffffffffffffffffffff16611acc6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614371565b60405180910390fd5b80600b9080519060200190611b38929190613647565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b611bde611f63565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990614371565b60405180910390fd5b80600e8190555050565b611c64611f63565b73ffffffffffffffffffffffffffffffffffffffff16611c826116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90614371565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614231565b60405180910390fd5b611d51816127f7565b50565b600c5481565b60026009541415611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614491565b60405180910390fd5b6002600981905550611db3338383612c47565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de9906142d1565b60405180910390fd5b60115483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e40919061463c565b1115611e4b57600080fd5b600d5483611e5991906146c3565b341015611e6557600080fd5b600f60019054906101000a900460ff1615611e7f57600080fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ece919061463c565b92505081905550611edf33846125d6565b6001600981905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612028826125f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661204f611f63565b73ffffffffffffffffffffffffffffffffffffffff1614806120ab5750612074611f63565b73ffffffffffffffffffffffffffffffffffffffff1661209384610b1a565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c757506120c682600001516120c1611f63565b611b3c565b5b905080612109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612100906143d1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614351565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614291565b60405180910390fd5b6121f88585856001612d1e565b6122086000848460000151611f6b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612276919061471d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661231a91906145f6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612420919061463c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125665761249681611f56565b15612565576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ce8686866001612d24565b505050505050565b6125f0828260405180602001604052806000815250612d2a565b5050565b6125fc6136cd565b61260582611f56565b612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b90614251565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126a85760017f00000000000000000000000000000000000000000000000000000000000000008461269b9190614751565b6126a5919061463c565b90505b60008390505b8181106127b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a2578093505050506127f2565b5080806127ae9061486e565b9150506126ae565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906144b1565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128de8473ffffffffffffffffffffffffffffffffffffffff16613209565b15612a47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612907611f63565b8786866040518563ffffffff1660e01b81526004016129299493929190614103565b602060405180830381600087803b15801561294357600080fd5b505af192505050801561297457506040513d601f19601f820116820180604052508101906129719190613ab3565b60015b6129f7573d80600081146129a4576040519150601f19603f3d011682016040523d82523d6000602084013e6129a9565b606091505b506000815114156129ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e690614411565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a4c565b600190505b949350505050565b6060600a8054612a6390614898565b80601f0160208091040260200160405190810160405280929190818152602001828054612a8f90614898565b8015612adc5780601f10612ab157610100808354040283529160200191612adc565b820191906000526020600020905b815481529060010190602001808311612abf57829003601f168201915b5050505050905090565b60606000821415612b2e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c42565b600082905060005b60008214612b60578080612b49906148fb565b915050600a82612b599190614692565b9150612b36565b60008167ffffffffffffffff811115612b7c57612b7b614a8e565b5b6040519080825280601f01601f191660200182016040528015612bae5781602001600182028036833780820191505090505b5090505b60008514612c3b57600182612bc79190614751565b9150600a85612bd69190614972565b6030612be2919061463c565b60f81b818381518110612bf857612bf7614a5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c349190614692565b9450612bb2565b8093505050505b919050565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612cfe612cb486604051602001612c999190614083565b6040516020818303038152906040528051906020012061322c565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061325c565b73ffffffffffffffffffffffffffffffffffffffff161490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790614451565b60405180910390fd5b612da981611f56565b15612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090614431565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e43906144f1565b60405180910390fd5b612e596000858386612d1e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f5691906145f6565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f7d91906145f6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131ec57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461318c60008884886128bd565b6131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c290614411565b60405180910390fd5b81806131d6906148fb565b92505080806131e4906148fb565b91505061311b565b50806000819055506132016000878588612d24565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008160405160200161323f91906140c2565b604051602081830303815290604052805190602001209050919050565b600080600061326b8585613283565b9150915061327881613306565b819250505092915050565b6000806041835114156132c55760008060006020860151925060408601519150606086015160001a90506132b9878285856134db565b945094505050506132ff565b6040835114156132f65760008060208501519150604085015190506132eb8683836135e8565b9350935050506132ff565b60006002915091505b9250929050565b6000600481111561331a57613319614a01565b5b81600481111561332d5761332c614a01565b5b1415613338576134d8565b6001600481111561334c5761334b614a01565b5b81600481111561335f5761335e614a01565b5b14156133a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613397906141d1565b60405180910390fd5b600260048111156133b4576133b3614a01565b5b8160048111156133c7576133c6614a01565b5b1415613408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ff90614211565b60405180910390fd5b6003600481111561341c5761341b614a01565b5b81600481111561342f5761342e614a01565b5b1415613470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613467906142b1565b60405180910390fd5b60048081111561348357613482614a01565b5b81600481111561349657613495614a01565b5b14156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614331565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135165760006003915091506135df565b601b8560ff161415801561352e5750601c8560ff1614155b156135405760006004915091506135df565b600060018787878760405160008152602001604052604051613565949392919061416a565b6020604051602081039080840390855afa158015613587573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135d6576000600192509250506135df565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61362b919061463c565b9050613639878288856134db565b935093505050935093915050565b82805461365390614898565b90600052602060002090601f01602090048101928261367557600085556136bc565b82601f1061368e57805160ff19168380011785556136bc565b828001600101855582156136bc579182015b828111156136bb5782518255916020019190600101906136a0565b5b5090506136c99190613707565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613720576000816000905550600101613708565b5090565b600061373761373284614551565b61452c565b90508281526020810184848401111561375357613752614acc565b5b61375e84828561482c565b509392505050565b600061377961377484614582565b61452c565b90508281526020810184848401111561379557613794614acc565b5b6137a084828561482c565b509392505050565b6000813590506137b78161521e565b92915050565b6000813590506137cc81615235565b92915050565b6000813590506137e18161524c565b92915050565b6000815190506137f68161524c565b92915050565b60008083601f84011261381257613811614ac2565b5b8235905067ffffffffffffffff81111561382f5761382e614abd565b5b60208301915083600182028301111561384b5761384a614ac7565b5b9250929050565b600082601f83011261386757613866614ac2565b5b8135613877848260208601613724565b91505092915050565b600082601f83011261389557613894614ac2565b5b81356138a5848260208601613766565b91505092915050565b6000813590506138bd81615263565b92915050565b6000602082840312156138d9576138d8614ad6565b5b60006138e7848285016137a8565b91505092915050565b6000806040838503121561390757613906614ad6565b5b6000613915858286016137a8565b9250506020613926858286016137a8565b9150509250929050565b60008060006060848603121561394957613948614ad6565b5b6000613957868287016137a8565b9350506020613968868287016137a8565b9250506040613979868287016138ae565b9150509250925092565b6000806000806080858703121561399d5761399c614ad6565b5b60006139ab878288016137a8565b94505060206139bc878288016137a8565b93505060406139cd878288016138ae565b925050606085013567ffffffffffffffff8111156139ee576139ed614ad1565b5b6139fa87828801613852565b91505092959194509250565b60008060408385031215613a1d57613a1c614ad6565b5b6000613a2b858286016137a8565b9250506020613a3c858286016137bd565b9150509250929050565b60008060408385031215613a5d57613a5c614ad6565b5b6000613a6b858286016137a8565b9250506020613a7c858286016138ae565b9150509250929050565b600060208284031215613a9c57613a9b614ad6565b5b6000613aaa848285016137d2565b91505092915050565b600060208284031215613ac957613ac8614ad6565b5b6000613ad7848285016137e7565b91505092915050565b600060208284031215613af657613af5614ad6565b5b600082013567ffffffffffffffff811115613b1457613b13614ad1565b5b613b2084828501613880565b91505092915050565b600060208284031215613b3f57613b3e614ad6565b5b6000613b4d848285016138ae565b91505092915050565b600080600060408486031215613b6f57613b6e614ad6565b5b6000613b7d868287016138ae565b935050602084013567ffffffffffffffff811115613b9e57613b9d614ad1565b5b613baa868287016137fc565b92509250509250925092565b613bbf81614785565b82525050565b613bd6613bd182614785565b614944565b82525050565b613be581614797565b82525050565b613bf4816147a3565b82525050565b613c0b613c06826147a3565b614956565b82525050565b6000613c1c826145b3565b613c2681856145c9565b9350613c3681856020860161483b565b613c3f81614adb565b840191505092915050565b6000613c55826145be565b613c5f81856145da565b9350613c6f81856020860161483b565b613c7881614adb565b840191505092915050565b6000613c8e826145be565b613c9881856145eb565b9350613ca881856020860161483b565b80840191505092915050565b6000613cc16018836145da565b9150613ccc82614af9565b602082019050919050565b6000613ce46022836145da565b9150613cef82614b22565b604082019050919050565b6000613d07601f836145da565b9150613d1282614b71565b602082019050919050565b6000613d2a601c836145eb565b9150613d3582614b9a565b601c82019050919050565b6000613d4d6026836145da565b9150613d5882614bc3565b604082019050919050565b6000613d70602a836145da565b9150613d7b82614c12565b604082019050919050565b6000613d936023836145da565b9150613d9e82614c61565b604082019050919050565b6000613db66025836145da565b9150613dc182614cb0565b604082019050919050565b6000613dd96022836145da565b9150613de482614cff565b604082019050919050565b6000613dfc6010836145da565b9150613e0782614d4e565b602082019050919050565b6000613e1f6039836145da565b9150613e2a82614d77565b604082019050919050565b6000613e42602b836145da565b9150613e4d82614dc6565b604082019050919050565b6000613e656022836145da565b9150613e7082614e15565b604082019050919050565b6000613e886026836145da565b9150613e9382614e64565b604082019050919050565b6000613eab6020836145da565b9150613eb682614eb3565b602082019050919050565b6000613ece602f836145da565b9150613ed982614edc565b604082019050919050565b6000613ef1601a836145da565b9150613efc82614f2b565b602082019050919050565b6000613f146032836145da565b9150613f1f82614f54565b604082019050919050565b6000613f376022836145da565b9150613f4282614fa3565b604082019050919050565b6000613f5a6033836145da565b9150613f6582614ff2565b604082019050919050565b6000613f7d601d836145da565b9150613f8882615041565b602082019050919050565b6000613fa06021836145da565b9150613fab8261506a565b604082019050919050565b6000613fc3602e836145da565b9150613fce826150b9565b604082019050919050565b6000613fe6601f836145da565b9150613ff182615108565b602082019050919050565b6000614009602f836145da565b915061401482615131565b604082019050919050565b600061402c602d836145da565b915061403782615180565b604082019050919050565b600061404f6022836145da565b915061405a826151cf565b604082019050919050565b61406e81614815565b82525050565b61407d8161481f565b82525050565b600061408f8284613bc5565b60148201915081905092915050565b60006140aa8285613c83565b91506140b68284613c83565b91508190509392505050565b60006140cd82613d1d565b91506140d98284613bfa565b60208201915081905092915050565b60006020820190506140fd6000830184613bb6565b92915050565b60006080820190506141186000830187613bb6565b6141256020830186613bb6565b6141326040830185614065565b81810360608301526141448184613c11565b905095945050505050565b60006020820190506141646000830184613bdc565b92915050565b600060808201905061417f6000830187613beb565b61418c6020830186614074565b6141996040830185613beb565b6141a66060830184613beb565b95945050505050565b600060208201905081810360008301526141c98184613c4a565b905092915050565b600060208201905081810360008301526141ea81613cb4565b9050919050565b6000602082019050818103600083015261420a81613cd7565b9050919050565b6000602082019050818103600083015261422a81613cfa565b9050919050565b6000602082019050818103600083015261424a81613d40565b9050919050565b6000602082019050818103600083015261426a81613d63565b9050919050565b6000602082019050818103600083015261428a81613d86565b9050919050565b600060208201905081810360008301526142aa81613da9565b9050919050565b600060208201905081810360008301526142ca81613dcc565b9050919050565b600060208201905081810360008301526142ea81613def565b9050919050565b6000602082019050818103600083015261430a81613e12565b9050919050565b6000602082019050818103600083015261432a81613e35565b9050919050565b6000602082019050818103600083015261434a81613e58565b9050919050565b6000602082019050818103600083015261436a81613e7b565b9050919050565b6000602082019050818103600083015261438a81613e9e565b9050919050565b600060208201905081810360008301526143aa81613ec1565b9050919050565b600060208201905081810360008301526143ca81613ee4565b9050919050565b600060208201905081810360008301526143ea81613f07565b9050919050565b6000602082019050818103600083015261440a81613f2a565b9050919050565b6000602082019050818103600083015261442a81613f4d565b9050919050565b6000602082019050818103600083015261444a81613f70565b9050919050565b6000602082019050818103600083015261446a81613f93565b9050919050565b6000602082019050818103600083015261448a81613fb6565b9050919050565b600060208201905081810360008301526144aa81613fd9565b9050919050565b600060208201905081810360008301526144ca81613ffc565b9050919050565b600060208201905081810360008301526144ea8161401f565b9050919050565b6000602082019050818103600083015261450a81614042565b9050919050565b60006020820190506145266000830184614065565b92915050565b6000614536614547565b905061454282826148ca565b919050565b6000604051905090565b600067ffffffffffffffff82111561456c5761456b614a8e565b5b61457582614adb565b9050602081019050919050565b600067ffffffffffffffff82111561459d5761459c614a8e565b5b6145a682614adb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614601826147d9565b915061460c836147d9565b9250826fffffffffffffffffffffffffffffffff03821115614631576146306149a3565b5b828201905092915050565b600061464782614815565b915061465283614815565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614687576146866149a3565b5b828201905092915050565b600061469d82614815565b91506146a883614815565b9250826146b8576146b76149d2565b5b828204905092915050565b60006146ce82614815565b91506146d983614815565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614712576147116149a3565b5b828202905092915050565b6000614728826147d9565b9150614733836147d9565b925082821015614746576147456149a3565b5b828203905092915050565b600061475c82614815565b915061476783614815565b92508282101561477a576147796149a3565b5b828203905092915050565b6000614790826147f5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561485957808201518184015260208101905061483e565b83811115614868576000848401525b50505050565b600061487982614815565b9150600082141561488d5761488c6149a3565b5b600182039050919050565b600060028204905060018216806148b057607f821691505b602082108114156148c4576148c3614a30565b5b50919050565b6148d382614adb565b810181811067ffffffffffffffff821117156148f2576148f1614a8e565b5b80604052505050565b600061490682614815565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614939576149386149a3565b5b600182019050919050565b600061494f82614960565b9050919050565b6000819050919050565b600061496b82614aec565b9050919050565b600061497d82614815565b915061498883614815565b925082614998576149976149d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61522781614785565b811461523257600080fd5b50565b61523e81614797565b811461524957600080fd5b50565b615255816147ad565b811461526057600080fd5b50565b61526c81614815565b811461527757600080fd5b5056fea2646970667358221220ac2771f97400edf81acba706cee22d4c0cf024e0543657d7811594ac63df4d6164736f6c63430008070033697066733a2f2f516d5a62766771345248784c5954734e4442333773376a7031684e6478366a7178505533713635374832374d41732f

Deployed Bytecode

0x6080604052600436106102455760003560e01c80635b7633d011610139578063a79fdbb4116100b6578063e985e9c51161007a578063e985e9c514610837578063ee5aefa914610874578063f103b4331461089f578063f2fde38b146108c8578063f51f96dd146108f1578063fd24a8541461091c57610245565b8063a79fdbb414610752578063b88d4fde1461077d578063c87b56dd146107a6578063d7224ba0146107e3578063da3ef23f1461080e57610245565b80638da5cb5b116100fd5780638da5cb5b1461067f57806391b7f5ed146106aa578063946ef42a146106d357806395d89b41146106fe578063a22cb4651461072957610245565b80635b7633d0146105985780635c975abb146105c35780636352211e146105ee57806370a082311461062b578063715018a61461066857610245565b80632f745c59116101c75780633ccfd60b1161018b5780633ccfd60b146104e357806340c10f19146104ed57806342842e0e146105095780634f6ccce71461053257806355f804b31461056f57610245565b80632f745c59146104265780633425f90c146104635780633549345e1461048c57806336566f06146104b55780633aaeaabe146104cc57610245565b8063095ea7b31161020e578063095ea7b3146103435780631529e33b1461036c57806318160ddd146103955780631fac2a35146103c057806323b872dd146103fd57610245565b80620e7fa81461024a57806301ffc9a71461027557806306fdde03146102b2578063081812fc146102dd578063088a4ed01461031a575b600080fd5b34801561025657600080fd5b5061025f610938565b60405161026c9190614511565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190613a86565b61093e565b6040516102a9919061414f565b60405180910390f35b3480156102be57600080fd5b506102c7610a88565b6040516102d491906141af565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190613b29565b610b1a565b60405161031191906140e8565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190613b29565b610b9f565b005b34801561034f57600080fd5b5061036a60048036038101906103659190613a46565b610c25565b005b34801561037857600080fd5b50610393600480360381019061038e91906138c3565b610d3e565b005b3480156103a157600080fd5b506103aa610dfe565b6040516103b79190614511565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906138c3565b610e07565b6040516103f49190614511565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613930565b610e1f565b005b34801561043257600080fd5b5061044d60048036038101906104489190613a46565b610e2f565b60405161045a9190614511565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613b29565b61102d565b005b34801561049857600080fd5b506104b360048036038101906104ae9190613b29565b6110b3565b005b3480156104c157600080fd5b506104ca611139565b005b3480156104d857600080fd5b506104e16111e1565b005b6104eb611289565b005b61050760048036038101906105029190613a46565b611345565b005b34801561051557600080fd5b50610530600480360381019061052b9190613930565b6113f8565b005b34801561053e57600080fd5b5061055960048036038101906105549190613b29565b611418565b6040516105669190614511565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613ae0565b61146b565b005b3480156105a457600080fd5b506105ad611501565b6040516105ba91906140e8565b60405180910390f35b3480156105cf57600080fd5b506105d8611527565b6040516105e5919061414f565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190613b29565b61153a565b60405161062291906140e8565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d91906138c3565b611550565b60405161065f9190614511565b60405180910390f35b34801561067457600080fd5b5061067d611639565b005b34801561068b57600080fd5b506106946116c1565b6040516106a191906140e8565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc9190613b29565b6116eb565b005b3480156106df57600080fd5b506106e8611771565b6040516106f59190614511565b60405180910390f35b34801561070a57600080fd5b50610713611777565b60405161072091906141af565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190613a06565b611809565b005b34801561075e57600080fd5b5061076761198a565b604051610774919061414f565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613983565b61199d565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190613b29565b6119f9565b6040516107da91906141af565b60405180910390f35b3480156107ef57600080fd5b506107f8611aa0565b6040516108059190614511565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613ae0565b611aa6565b005b34801561084357600080fd5b5061085e600480360381019061085991906138f0565b611b3c565b60405161086b919061414f565b60405180910390f35b34801561088057600080fd5b50610889611bd0565b6040516108969190614511565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613b29565b611bd6565b005b3480156108d457600080fd5b506108ef60048036038101906108ea91906138c3565b611c5c565b005b3480156108fd57600080fd5b50610906611d54565b6040516109139190614511565b60405180910390f35b61093660048036038101906109319190613b56565b611d5a565b005b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a815750610a8082611eec565b5b9050919050565b606060018054610a9790614898565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac390614898565b8015610b105780601f10610ae557610100808354040283529160200191610b10565b820191906000526020600020905b815481529060010190602001808311610af357829003601f168201915b5050505050905090565b6000610b2582611f56565b610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b906144d1565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610ba7611f63565b73ffffffffffffffffffffffffffffffffffffffff16610bc56116c1565b73ffffffffffffffffffffffffffffffffffffffff1614610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290614371565b60405180910390fd5b8060128190555050565b6000610c308261153a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906143f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc0611f63565b73ffffffffffffffffffffffffffffffffffffffff161480610cef5750610cee81610ce9611f63565b611b3c565b5b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906142f1565b60405180910390fd5b610d39838383611f6b565b505050565b610d46611f63565b73ffffffffffffffffffffffffffffffffffffffff16610d646116c1565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190614371565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054905090565b60106020528060005260406000206000915090505481565b610e2a83838361201d565b505050565b6000610e3a83611550565b8210610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906141f1565b60405180910390fd5b6000610e85610dfe565b905060008060005b83811015610feb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f7f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fd75786841415610fc8578195505050505050611027565b8380610fd3906148fb565b9450505b508080610fe3906148fb565b915050610e8d565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90614471565b60405180910390fd5b92915050565b611035611f63565b73ffffffffffffffffffffffffffffffffffffffff166110536116c1565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614371565b60405180910390fd5b8060118190555050565b6110bb611f63565b73ffffffffffffffffffffffffffffffffffffffff166110d96116c1565b73ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614371565b60405180910390fd5b80600d8190555050565b611141611f63565b73ffffffffffffffffffffffffffffffffffffffff1661115f6116c1565b73ffffffffffffffffffffffffffffffffffffffff16146111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90614371565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6111e9611f63565b73ffffffffffffffffffffffffffffffffffffffff166112076116c1565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490614371565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611291611f63565b73ffffffffffffffffffffffffffffffffffffffff166112af6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90614371565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061134357600080fd5b565b600061134f610dfe565b905060125482111561136057600080fd5b600e54828261136f919061463c565b111561137a57600080fd5b6113826116c1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113e957600f60009054906101000a900460ff16156113ce57600080fd5b600c54826113dc91906146c3565b3410156113e857600080fd5b5b6113f383836125d6565b505050565b6114138383836040518060200160405280600081525061199d565b505050565b6000611422610dfe565b8210611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a90614271565b60405180910390fd5b819050919050565b611473611f63565b73ffffffffffffffffffffffffffffffffffffffff166114916116c1565b73ffffffffffffffffffffffffffffffffffffffff16146114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90614371565b60405180910390fd5b80600a90805190602001906114fd929190613647565b5050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b6000611545826125f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890614311565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611641611f63565b73ffffffffffffffffffffffffffffffffffffffff1661165f6116c1565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614371565b60405180910390fd5b6116bf60006127f7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f3611f63565b73ffffffffffffffffffffffffffffffffffffffff166117116116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614371565b60405180910390fd5b80600c8190555050565b60115481565b60606002805461178690614898565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290614898565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b611811611f63565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906143b1565b60405180910390fd5b806006600061188c611f63565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611939611f63565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197e919061414f565b60405180910390a35050565b600f60019054906101000a900460ff1681565b6119a884848461201d565b6119b4848484846128bd565b6119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614411565b60405180910390fd5b50505050565b6060611a0482611f56565b611a43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3a90614391565b60405180910390fd5b6000611a4d612a54565b90506000815111611a6d5760405180602001604052806000815250611a98565b80611a7784612ae6565b604051602001611a8892919061409e565b6040516020818303038152906040525b915050919050565b60075481565b611aae611f63565b73ffffffffffffffffffffffffffffffffffffffff16611acc6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990614371565b60405180910390fd5b80600b9080519060200190611b38929190613647565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b611bde611f63565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990614371565b60405180910390fd5b80600e8190555050565b611c64611f63565b73ffffffffffffffffffffffffffffffffffffffff16611c826116c1565b73ffffffffffffffffffffffffffffffffffffffff1614611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90614371565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f90614231565b60405180910390fd5b611d51816127f7565b50565b600c5481565b60026009541415611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614491565b60405180910390fd5b6002600981905550611db3338383612c47565b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de9906142d1565b60405180910390fd5b60115483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e40919061463c565b1115611e4b57600080fd5b600d5483611e5991906146c3565b341015611e6557600080fd5b600f60019054906101000a900460ff1615611e7f57600080fd5b82601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ece919061463c565b92505081905550611edf33846125d6565b6001600981905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612028826125f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661204f611f63565b73ffffffffffffffffffffffffffffffffffffffff1614806120ab5750612074611f63565b73ffffffffffffffffffffffffffffffffffffffff1661209384610b1a565b73ffffffffffffffffffffffffffffffffffffffff16145b806120c757506120c682600001516120c1611f63565b611b3c565b5b905080612109576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612100906143d1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614351565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614291565b60405180910390fd5b6121f88585856001612d1e565b6122086000848460000151611f6b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612276919061471d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661231a91906145f6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612420919061463c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125665761249681611f56565b15612565576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ce8686866001612d24565b505050505050565b6125f0828260405180602001604052806000815250612d2a565b5050565b6125fc6136cd565b61260582611f56565b612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b90614251565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000003283106126a85760017f00000000000000000000000000000000000000000000000000000000000000328461269b9190614751565b6126a5919061463c565b90505b60008390505b8181106127b6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a2578093505050506127f2565b5080806127ae9061486e565b9150506126ae565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e9906144b1565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006128de8473ffffffffffffffffffffffffffffffffffffffff16613209565b15612a47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612907611f63565b8786866040518563ffffffff1660e01b81526004016129299493929190614103565b602060405180830381600087803b15801561294357600080fd5b505af192505050801561297457506040513d601f19601f820116820180604052508101906129719190613ab3565b60015b6129f7573d80600081146129a4576040519150601f19603f3d011682016040523d82523d6000602084013e6129a9565b606091505b506000815114156129ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e690614411565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a4c565b600190505b949350505050565b6060600a8054612a6390614898565b80601f0160208091040260200160405190810160405280929190818152602001828054612a8f90614898565b8015612adc5780601f10612ab157610100808354040283529160200191612adc565b820191906000526020600020905b815481529060010190602001808311612abf57829003601f168201915b5050505050905090565b60606000821415612b2e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c42565b600082905060005b60008214612b60578080612b49906148fb565b915050600a82612b599190614692565b9150612b36565b60008167ffffffffffffffff811115612b7c57612b7b614a8e565b5b6040519080825280601f01601f191660200182016040528015612bae5781602001600182028036833780820191505090505b5090505b60008514612c3b57600182612bc79190614751565b9150600a85612bd69190614972565b6030612be2919061463c565b60f81b818381518110612bf857612bf7614a5f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c349190614692565b9450612bb2565b8093505050505b919050565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612cfe612cb486604051602001612c999190614083565b6040516020818303038152906040528051906020012061322c565b85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061325c565b73ffffffffffffffffffffffffffffffffffffffff161490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9790614451565b60405180910390fd5b612da981611f56565b15612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de090614431565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000032831115612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e43906144f1565b60405180910390fd5b612e596000858386612d1e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f5691906145f6565b6fffffffffffffffffffffffffffffffff168152602001858360200151612f7d91906145f6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156131ec57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461318c60008884886128bd565b6131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c290614411565b60405180910390fd5b81806131d6906148fb565b92505080806131e4906148fb565b91505061311b565b50806000819055506132016000878588612d24565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008160405160200161323f91906140c2565b604051602081830303815290604052805190602001209050919050565b600080600061326b8585613283565b9150915061327881613306565b819250505092915050565b6000806041835114156132c55760008060006020860151925060408601519150606086015160001a90506132b9878285856134db565b945094505050506132ff565b6040835114156132f65760008060208501519150604085015190506132eb8683836135e8565b9350935050506132ff565b60006002915091505b9250929050565b6000600481111561331a57613319614a01565b5b81600481111561332d5761332c614a01565b5b1415613338576134d8565b6001600481111561334c5761334b614a01565b5b81600481111561335f5761335e614a01565b5b14156133a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613397906141d1565b60405180910390fd5b600260048111156133b4576133b3614a01565b5b8160048111156133c7576133c6614a01565b5b1415613408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ff90614211565b60405180910390fd5b6003600481111561341c5761341b614a01565b5b81600481111561342f5761342e614a01565b5b1415613470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613467906142b1565b60405180910390fd5b60048081111561348357613482614a01565b5b81600481111561349657613495614a01565b5b14156134d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ce90614331565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135165760006003915091506135df565b601b8560ff161415801561352e5750601c8560ff1614155b156135405760006004915091506135df565b600060018787878760405160008152602001604052604051613565949392919061416a565b6020604051602081039080840390855afa158015613587573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135d6576000600192509250506135df565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61362b919061463c565b9050613639878288856134db565b935093505050935093915050565b82805461365390614898565b90600052602060002090601f01602090048101928261367557600085556136bc565b82601f1061368e57805160ff19168380011785556136bc565b828001600101855582156136bc579182015b828111156136bb5782518255916020019190600101906136a0565b5b5090506136c99190613707565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613720576000816000905550600101613708565b5090565b600061373761373284614551565b61452c565b90508281526020810184848401111561375357613752614acc565b5b61375e84828561482c565b509392505050565b600061377961377484614582565b61452c565b90508281526020810184848401111561379557613794614acc565b5b6137a084828561482c565b509392505050565b6000813590506137b78161521e565b92915050565b6000813590506137cc81615235565b92915050565b6000813590506137e18161524c565b92915050565b6000815190506137f68161524c565b92915050565b60008083601f84011261381257613811614ac2565b5b8235905067ffffffffffffffff81111561382f5761382e614abd565b5b60208301915083600182028301111561384b5761384a614ac7565b5b9250929050565b600082601f83011261386757613866614ac2565b5b8135613877848260208601613724565b91505092915050565b600082601f83011261389557613894614ac2565b5b81356138a5848260208601613766565b91505092915050565b6000813590506138bd81615263565b92915050565b6000602082840312156138d9576138d8614ad6565b5b60006138e7848285016137a8565b91505092915050565b6000806040838503121561390757613906614ad6565b5b6000613915858286016137a8565b9250506020613926858286016137a8565b9150509250929050565b60008060006060848603121561394957613948614ad6565b5b6000613957868287016137a8565b9350506020613968868287016137a8565b9250506040613979868287016138ae565b9150509250925092565b6000806000806080858703121561399d5761399c614ad6565b5b60006139ab878288016137a8565b94505060206139bc878288016137a8565b93505060406139cd878288016138ae565b925050606085013567ffffffffffffffff8111156139ee576139ed614ad1565b5b6139fa87828801613852565b91505092959194509250565b60008060408385031215613a1d57613a1c614ad6565b5b6000613a2b858286016137a8565b9250506020613a3c858286016137bd565b9150509250929050565b60008060408385031215613a5d57613a5c614ad6565b5b6000613a6b858286016137a8565b9250506020613a7c858286016138ae565b9150509250929050565b600060208284031215613a9c57613a9b614ad6565b5b6000613aaa848285016137d2565b91505092915050565b600060208284031215613ac957613ac8614ad6565b5b6000613ad7848285016137e7565b91505092915050565b600060208284031215613af657613af5614ad6565b5b600082013567ffffffffffffffff811115613b1457613b13614ad1565b5b613b2084828501613880565b91505092915050565b600060208284031215613b3f57613b3e614ad6565b5b6000613b4d848285016138ae565b91505092915050565b600080600060408486031215613b6f57613b6e614ad6565b5b6000613b7d868287016138ae565b935050602084013567ffffffffffffffff811115613b9e57613b9d614ad1565b5b613baa868287016137fc565b92509250509250925092565b613bbf81614785565b82525050565b613bd6613bd182614785565b614944565b82525050565b613be581614797565b82525050565b613bf4816147a3565b82525050565b613c0b613c06826147a3565b614956565b82525050565b6000613c1c826145b3565b613c2681856145c9565b9350613c3681856020860161483b565b613c3f81614adb565b840191505092915050565b6000613c55826145be565b613c5f81856145da565b9350613c6f81856020860161483b565b613c7881614adb565b840191505092915050565b6000613c8e826145be565b613c9881856145eb565b9350613ca881856020860161483b565b80840191505092915050565b6000613cc16018836145da565b9150613ccc82614af9565b602082019050919050565b6000613ce46022836145da565b9150613cef82614b22565b604082019050919050565b6000613d07601f836145da565b9150613d1282614b71565b602082019050919050565b6000613d2a601c836145eb565b9150613d3582614b9a565b601c82019050919050565b6000613d4d6026836145da565b9150613d5882614bc3565b604082019050919050565b6000613d70602a836145da565b9150613d7b82614c12565b604082019050919050565b6000613d936023836145da565b9150613d9e82614c61565b604082019050919050565b6000613db66025836145da565b9150613dc182614cb0565b604082019050919050565b6000613dd96022836145da565b9150613de482614cff565b604082019050919050565b6000613dfc6010836145da565b9150613e0782614d4e565b602082019050919050565b6000613e1f6039836145da565b9150613e2a82614d77565b604082019050919050565b6000613e42602b836145da565b9150613e4d82614dc6565b604082019050919050565b6000613e656022836145da565b9150613e7082614e15565b604082019050919050565b6000613e886026836145da565b9150613e9382614e64565b604082019050919050565b6000613eab6020836145da565b9150613eb682614eb3565b602082019050919050565b6000613ece602f836145da565b9150613ed982614edc565b604082019050919050565b6000613ef1601a836145da565b9150613efc82614f2b565b602082019050919050565b6000613f146032836145da565b9150613f1f82614f54565b604082019050919050565b6000613f376022836145da565b9150613f4282614fa3565b604082019050919050565b6000613f5a6033836145da565b9150613f6582614ff2565b604082019050919050565b6000613f7d601d836145da565b9150613f8882615041565b602082019050919050565b6000613fa06021836145da565b9150613fab8261506a565b604082019050919050565b6000613fc3602e836145da565b9150613fce826150b9565b604082019050919050565b6000613fe6601f836145da565b9150613ff182615108565b602082019050919050565b6000614009602f836145da565b915061401482615131565b604082019050919050565b600061402c602d836145da565b915061403782615180565b604082019050919050565b600061404f6022836145da565b915061405a826151cf565b604082019050919050565b61406e81614815565b82525050565b61407d8161481f565b82525050565b600061408f8284613bc5565b60148201915081905092915050565b60006140aa8285613c83565b91506140b68284613c83565b91508190509392505050565b60006140cd82613d1d565b91506140d98284613bfa565b60208201915081905092915050565b60006020820190506140fd6000830184613bb6565b92915050565b60006080820190506141186000830187613bb6565b6141256020830186613bb6565b6141326040830185614065565b81810360608301526141448184613c11565b905095945050505050565b60006020820190506141646000830184613bdc565b92915050565b600060808201905061417f6000830187613beb565b61418c6020830186614074565b6141996040830185613beb565b6141a66060830184613beb565b95945050505050565b600060208201905081810360008301526141c98184613c4a565b905092915050565b600060208201905081810360008301526141ea81613cb4565b9050919050565b6000602082019050818103600083015261420a81613cd7565b9050919050565b6000602082019050818103600083015261422a81613cfa565b9050919050565b6000602082019050818103600083015261424a81613d40565b9050919050565b6000602082019050818103600083015261426a81613d63565b9050919050565b6000602082019050818103600083015261428a81613d86565b9050919050565b600060208201905081810360008301526142aa81613da9565b9050919050565b600060208201905081810360008301526142ca81613dcc565b9050919050565b600060208201905081810360008301526142ea81613def565b9050919050565b6000602082019050818103600083015261430a81613e12565b9050919050565b6000602082019050818103600083015261432a81613e35565b9050919050565b6000602082019050818103600083015261434a81613e58565b9050919050565b6000602082019050818103600083015261436a81613e7b565b9050919050565b6000602082019050818103600083015261438a81613e9e565b9050919050565b600060208201905081810360008301526143aa81613ec1565b9050919050565b600060208201905081810360008301526143ca81613ee4565b9050919050565b600060208201905081810360008301526143ea81613f07565b9050919050565b6000602082019050818103600083015261440a81613f2a565b9050919050565b6000602082019050818103600083015261442a81613f4d565b9050919050565b6000602082019050818103600083015261444a81613f70565b9050919050565b6000602082019050818103600083015261446a81613f93565b9050919050565b6000602082019050818103600083015261448a81613fb6565b9050919050565b600060208201905081810360008301526144aa81613fd9565b9050919050565b600060208201905081810360008301526144ca81613ffc565b9050919050565b600060208201905081810360008301526144ea8161401f565b9050919050565b6000602082019050818103600083015261450a81614042565b9050919050565b60006020820190506145266000830184614065565b92915050565b6000614536614547565b905061454282826148ca565b919050565b6000604051905090565b600067ffffffffffffffff82111561456c5761456b614a8e565b5b61457582614adb565b9050602081019050919050565b600067ffffffffffffffff82111561459d5761459c614a8e565b5b6145a682614adb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614601826147d9565b915061460c836147d9565b9250826fffffffffffffffffffffffffffffffff03821115614631576146306149a3565b5b828201905092915050565b600061464782614815565b915061465283614815565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614687576146866149a3565b5b828201905092915050565b600061469d82614815565b91506146a883614815565b9250826146b8576146b76149d2565b5b828204905092915050565b60006146ce82614815565b91506146d983614815565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614712576147116149a3565b5b828202905092915050565b6000614728826147d9565b9150614733836147d9565b925082821015614746576147456149a3565b5b828203905092915050565b600061475c82614815565b915061476783614815565b92508282101561477a576147796149a3565b5b828203905092915050565b6000614790826147f5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561485957808201518184015260208101905061483e565b83811115614868576000848401525b50505050565b600061487982614815565b9150600082141561488d5761488c6149a3565b5b600182039050919050565b600060028204905060018216806148b057607f821691505b602082108114156148c4576148c3614a30565b5b50919050565b6148d382614adb565b810181811067ffffffffffffffff821117156148f2576148f1614a8e565b5b80604052505050565b600061490682614815565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614939576149386149a3565b5b600182019050919050565b600061494f82614960565b9050919050565b6000819050919050565b600061496b82614aec565b9050919050565b600061497d82614815565b915061498883614815565b925082614998576149976149d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f6e2077686974656c69737400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61522781614785565b811461523257600080fd5b50565b61523e81614797565b811461524957600080fd5b50565b615255816147ad565b811461526057600080fd5b50565b61526c81614815565b811461527757600080fd5b5056fea2646970667358221220ac2771f97400edf81acba706cee22d4c0cf024e0543657d7811594ac63df4d6164736f6c63430008070033

Deployed Bytecode Sourcemap

54699:3212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54950:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41612:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43417:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44978:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57169:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44499:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56609:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40053:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55100:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45854:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40717:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57301:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57058:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56766:75;;;;;;;;;;;;;:::i;:::-;;56853:96;;;;;;;;;;;;;:::i;:::-;;57786:120;;;:::i;:::-;;56127:365;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46087:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40230:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57541:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55247:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55029:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43226:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42048:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18958:103;;;;;;;;;;;;;:::i;:::-;;18307:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56957:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55164:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43586:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45264:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55061:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46335:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43761:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50995:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57652:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45623:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55206:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57436:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19216:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54907:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55674:444;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54950:40;;;;:::o;41612:372::-;41714:4;41766:25;41751:40;;;:11;:40;;;;:105;;;;41823:33;41808:48;;;:11;:48;;;;41751:105;:172;;;;41888:35;41873:50;;;:11;:50;;;;41751:172;:225;;;;41940:36;41964:11;41940:23;:36::i;:::-;41751:225;41731:245;;41612:372;;;:::o;43417:100::-;43471:13;43504:5;43497:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43417:100;:::o;44978:214::-;45046:7;45074:16;45082:7;45074;:16::i;:::-;45066:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45160:15;:24;45176:7;45160:24;;;;;;;;;;;;;;;;;;;;;45153:31;;44978:214;;;:::o;57169:122::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57266:17:::1;57249:14;:34;;;;57169:122:::0;:::o;44499:413::-;44572:13;44588:24;44604:7;44588:15;:24::i;:::-;44572:40;;44637:5;44631:11;;:2;:11;;;;44623:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44732:5;44716:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44741:37;44758:5;44765:12;:10;:12::i;:::-;44741:16;:37::i;:::-;44716:62;44694:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44876:28;44885:2;44889:7;44898:5;44876:8;:28::i;:::-;44561:351;44499:413;;:::o;56609:128::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56710:19:::1;56694:13;;:35;;;;;;;;;;;;;;;;;;56609:128:::0;:::o;40053:100::-;40106:7;40133:12;;40126:19;;40053:100;:::o;55100:57::-;;;;;;;;;;;;;;;;;:::o;45854:162::-;45980:28;45990:4;45996:2;46000:7;45980:9;:28::i;:::-;45854:162;;;:::o;40717:823::-;40806:7;40842:16;40852:5;40842:9;:16::i;:::-;40834:5;:24;40826:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40908:22;40933:13;:11;:13::i;:::-;40908:38;;40957:19;40991:25;41045:9;41040:426;41064:14;41060:1;:18;41040:426;;;41100:31;41134:11;:14;41146:1;41134:14;;;;;;;;;;;41100:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41193:1;41167:28;;:9;:14;;;:28;;;41163:103;;41236:9;:14;;;41216:34;;41163:103;41305:5;41284:26;;:17;:26;;;41280:175;;;41350:5;41335:11;:20;41331:77;;;41387:1;41380:8;;;;;;;;;41331:77;41426:13;;;;;:::i;:::-;;;;41280:175;41085:381;41080:3;;;;;:::i;:::-;;;;41040:426;;;;41476:56;;;;;;;;;;:::i;:::-;;;;;;;;40717:823;;;;;:::o;57301:123::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57399:17:::1;57382:14;:34;;;;57301:123:::0;:::o;57058:103::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57144:9:::1;57129:12;:24;;;;57058:103:::0;:::o;56766:75::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56825:6:::1;;;;;;;;;;;56824:7;56815:6;;:16;;;;;;;;;;;;;;;;;;56766:75::o:0;56853:96::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56926:13:::1;;;;;;;;;;;56925:14;56909:13;;:30;;;;;;;;;;;;;;;;;;56853:96::o:0;57786:120::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57856:10:::1;57848:24;;:47;57873:21;57848:47;;;;;;;;;;;;;;;;;;;;;;;57840:56;;;::::0;::::1;;57786:120::o:0;56127:365::-;56195:14;56212:13;:11;:13::i;:::-;56195:30;;56255:14;;56243:8;:26;;56234:36;;;;;;56308:9;;56296:8;56287:6;:17;;;;:::i;:::-;:30;;56279:39;;;;;;56351:7;:5;:7::i;:::-;56337:21;;:10;:21;;;56333:117;;56380:6;;;;;;;;;;;56379:7;56370:17;;;;;;56430:9;;56419:8;:20;;;;:::i;:::-;56406:9;:33;;56398:42;;;;;;56333:117;56458:24;56468:3;56473:8;56458:9;:24::i;:::-;56186:306;56127:365;;:::o;46087:177::-;46217:39;46234:4;46240:2;46244:7;46217:39;;;;;;;;;;;;:16;:39::i;:::-;46087:177;;;:::o;40230:187::-;40297:7;40333:13;:11;:13::i;:::-;40325:5;:21;40317:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40404:5;40397:12;;40230:187;;;:::o;57541:102::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57624:11:::1;57614:7;:21;;;;;;;;;;;;:::i;:::-;;57541:102:::0;:::o;55247:73::-;;;;;;;;;;;;;:::o;55029:25::-;;;;;;;;;;;;;:::o;43226:124::-;43290:7;43317:20;43329:7;43317:11;:20::i;:::-;:25;;;43310:32;;43226:124;;;:::o;42048:221::-;42112:7;42157:1;42140:19;;:5;:19;;;;42132:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42233:12;:19;42246:5;42233:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42225:36;;42218:43;;42048:221;;;:::o;18958:103::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19023:30:::1;19050:1;19023:18;:30::i;:::-;18958:103::o:0;18307:87::-;18353:7;18380:6;;;;;;;;;;;18373:13;;18307:87;:::o;56957:93::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57033:9:::1;57021;:21;;;;56957:93:::0;:::o;55164:34::-;;;;:::o;43586:104::-;43642:13;43675:7;43668:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43586:104;:::o;45264:288::-;45371:12;:10;:12::i;:::-;45359:24;;:8;:24;;;;45351:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45472:8;45427:18;:32;45446:12;:10;:12::i;:::-;45427:32;;;;;;;;;;;;;;;:42;45460:8;45427:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45525:8;45496:48;;45511:12;:10;:12::i;:::-;45496:48;;;45535:8;45496:48;;;;;;:::i;:::-;;;;;;;;45264:288;;:::o;55061:32::-;;;;;;;;;;;;;:::o;46335:355::-;46494:28;46504:4;46510:2;46514:7;46494:9;:28::i;:::-;46555:48;46578:4;46584:2;46588:7;46597:5;46555:22;:48::i;:::-;46533:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;46335:355;;;;:::o;43761:334::-;43834:13;43868:16;43876:7;43868;:16::i;:::-;43860:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43949:21;43973:10;:8;:10::i;:::-;43949:34;;44025:1;44007:7;44001:21;:25;:86;;;;;;;;;;;;;;;;;44053:7;44062:18;:7;:16;:18::i;:::-;44036:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44001:86;43994:93;;;43761:334;;;:::o;50995:43::-;;;;:::o;57652:126::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57753:17:::1;57737:13;:33;;;;;;;;;;;;:::i;:::-;;57652:126:::0;:::o;45623:164::-;45720:4;45744:18;:25;45763:5;45744:25;;;;;;;;;;;;;;;:35;45770:8;45744:35;;;;;;;;;;;;;;;;;;;;;;;;;45737:42;;45623:164;;;;:::o;55206:34::-;;;;:::o;57436:97::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57518:7:::1;57506:9;:19;;;;57436:97:::0;:::o;19216:201::-;18538:12;:10;:12::i;:::-;18527:23;;:7;:5;:7::i;:::-;:23;;;18519:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19325:1:::1;19305:22;;:8;:22;;;;19297:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19381:28;19400:8;19381:18;:28::i;:::-;19216:201:::0;:::o;54907:36::-;;;;:::o;55674:444::-;3747:1;4345:7;;:19;;4337:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:1;4478:7;:18;;;;55786:41:::1;55805:10;55817:9;;55786:18;:41::i;:::-;55778:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;55913:14;;55901:8;55865:21;:33;55887:10;55865:33;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:62;;55857:71;;;::::0;::::1;;55969:12;;55958:8;:23;;;;:::i;:::-;55945:9;:36;;55937:45;;;::::0;::::1;;56000:13;;;;;;;;;;;55999:14;55991:23;;;::::0;::::1;;56060:8;56023:21;:33;56045:10;56023:33;;;;;;;;;;;;;;;;:45;;;;;;;:::i;:::-;;;;;;;;56077:31;56087:10;56099:8;56077:9;:31::i;:::-;3703:1:::0;4657:7;:22;;;;55674:444;;;:::o;31091:157::-;31176:4;31215:25;31200:40;;;:11;:40;;;;31193:47;;31091:157;;;:::o;46945:111::-;47002:4;47036:12;;47026:7;:22;47019:29;;46945:111;;;:::o;17031:98::-;17084:7;17111:10;17104:17;;17031:98;:::o;50791:196::-;50933:2;50906:15;:24;50922:7;50906:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50971:7;50967:2;50951:28;;50960:5;50951:28;;;;;;;;;;;;50791:196;;;:::o;49099:1574::-;49214:35;49252:20;49264:7;49252:11;:20::i;:::-;49214:58;;49285:22;49327:13;:18;;;49311:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;49386:12;:10;:12::i;:::-;49362:36;;:20;49374:7;49362:11;:20::i;:::-;:36;;;49311:87;:154;;;;49415:50;49432:13;:18;;;49452:12;:10;:12::i;:::-;49415:16;:50::i;:::-;49311:154;49285:181;;49487:17;49479:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49602:4;49580:26;;:13;:18;;;:26;;;49572:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49682:1;49668:16;;:2;:16;;;;49660:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49739:43;49761:4;49767:2;49771:7;49780:1;49739:21;:43::i;:::-;49847:49;49864:1;49868:7;49877:13;:18;;;49847:8;:49::i;:::-;49939:1;49909:12;:18;49922:4;49909:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;49979:1;49951:12;:16;49964:2;49951:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50014:43;;;;;;;;50029:2;50014:43;;;;;;50040:15;50014:43;;;;;49991:11;:20;50003:7;49991:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50297:19;50329:1;50319:7;:11;;;;:::i;:::-;50297:33;;50386:1;50345:43;;:11;:24;50357:11;50345:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50341:227;;;50409:20;50417:11;50409:7;:20::i;:::-;50405:152;;;50477:64;;;;;;;;50492:13;:18;;;50477:64;;;;;;50512:13;:28;;;50477:64;;;;;50450:11;:24;50462:11;50450:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50405:152;50341:227;50604:7;50600:2;50585:27;;50594:4;50585:27;;;;;;;;;;;;50623:42;50644:4;50650:2;50654:7;50663:1;50623:20;:42::i;:::-;49203:1470;;;49099:1574;;;:::o;47064:104::-;47133:27;47143:2;47147:8;47133:27;;;;;;;;;;;;:9;:27::i;:::-;47064:104;;:::o;42514:650::-;42575:21;;:::i;:::-;42617:16;42625:7;42617;:16::i;:::-;42609:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42693:26;42745:12;42734:7;:23;42730:103;;42820:1;42805:12;42795:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;42774:47;;42730:103;42850:12;42865:7;42850:22;;42845:242;42882:18;42874:4;:26;42845:242;;42925:31;42959:11;:17;42971:4;42959:17;;;;;;;;;;;42925:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43021:1;42995:28;;:9;:14;;;:28;;;42991:85;;43051:9;43044:16;;;;;;;42991:85;42910:177;42902:6;;;;;:::i;:::-;;;;42845:242;;;;43099:57;;;;;;;;;;:::i;:::-;;;;;;;;42514:650;;;;:::o;19577:191::-;19651:16;19670:6;;;;;;;;;;;19651:25;;19696:8;19687:6;;:17;;;;;;;;;;;;;;;;;;19751:8;19720:40;;19741:8;19720:40;;;;;;;;;;;;19640:128;19577:191;:::o;52601:804::-;52756:4;52777:15;:2;:13;;;:15::i;:::-;52773:625;;;52829:2;52813:36;;;52850:12;:10;:12::i;:::-;52864:4;52870:7;52879:5;52813:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52809:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53076:1;53059:6;:13;:18;53055:273;;;53102:61;;;;;;;;;;:::i;:::-;;;;;;;;53055:273;53278:6;53272:13;53263:6;53259:2;53255:15;53248:38;52809:534;52946:45;;;52936:55;;;:6;:55;;;;52929:62;;;;;52773:625;53382:4;53375:11;;52601:804;;;;;;;:::o;56501:100::-;56553:13;56583:7;56576:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56501:100;:::o;5059:723::-;5115:13;5345:1;5336:5;:10;5332:53;;;5363:10;;;;;;;;;;;;;;;;;;;;;5332:53;5395:12;5410:5;5395:20;;5426:14;5451:78;5466:1;5458:4;:9;5451:78;;5484:8;;;;;:::i;:::-;;;;5515:2;5507:10;;;;;:::i;:::-;;;5451:78;;;5539:19;5571:6;5561:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5539:39;;5589:154;5605:1;5596:5;:10;5589:154;;5633:1;5623:11;;;;;:::i;:::-;;;5700:2;5692:5;:10;;;;:::i;:::-;5679:2;:24;;;;:::i;:::-;5666:39;;5649:6;5656;5649:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;5729:2;5720:11;;;;;:::i;:::-;;;5589:154;;;5767:6;5753:21;;;;;5059:723;;;;:::o;55437:229::-;55531:4;55643:13;;;;;;;;;;;55552:104;;:87;55566:61;55593:7;55576:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;55566:36;;;;;;:59;:61::i;:::-;55629:9;;55552:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:87::i;:::-;:104;;;55545:111;;55437:229;;;;;:::o;53893:159::-;;;;;:::o;54464:158::-;;;;;:::o;47445:1400::-;47568:20;47591:12;;47568:35;;47636:1;47622:16;;:2;:16;;;;47614:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47821:21;47829:12;47821:7;:21::i;:::-;47820:22;47812:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47907:12;47895:8;:24;;47887:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47971:61;48001:1;48005:2;48009:12;48023:8;47971:21;:61::i;:::-;48045:30;48078:12;:16;48091:2;48078:16;;;;;;;;;;;;;;;48045:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48124:135;;;;;;;;48180:8;48150:11;:19;;;:39;;;;:::i;:::-;48124:135;;;;;;48239:8;48204:11;:24;;;:44;;;;:::i;:::-;48124:135;;;;;48105:12;:16;48118:2;48105:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48298:43;;;;;;;;48313:2;48298:43;;;;;;48324:15;48298:43;;;;;48270:11;:25;48282:12;48270:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48354:20;48377:12;48354:35;;48407:9;48402:325;48426:8;48422:1;:12;48402:325;;;48486:12;48482:2;48461:38;;48478:1;48461:38;;;;;;;;;;;;48540:59;48571:1;48575:2;48579:12;48593:5;48540:22;:59::i;:::-;48514:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;48701:14;;;;;:::i;:::-;;;;48436:3;;;;;:::i;:::-;;;;48402:325;;;;48754:12;48739;:27;;;;48777:60;48806:1;48810:2;48814:12;48828:8;48777:20;:60::i;:::-;47557:1288;;;47445:1400;;;:::o;21008:326::-;21068:4;21325:1;21303:7;:19;;;:23;21296:30;;21008:326;;;:::o;15037:269::-;15106:7;15292:4;15239:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;15229:69;;;;;;15222:76;;15037:269;;;:::o;11235:231::-;11313:7;11334:17;11353:18;11375:27;11386:4;11392:9;11375:10;:27::i;:::-;11333:69;;;;11413:18;11425:5;11413:11;:18::i;:::-;11449:9;11442:16;;;;11235:231;;;;:::o;9125:1308::-;9206:7;9215:12;9460:2;9440:9;:16;:22;9436:990;;;9479:9;9503;9527:7;9736:4;9725:9;9721:20;9715:27;9710:32;;9786:4;9775:9;9771:20;9765:27;9760:32;;9844:4;9833:9;9829:20;9823:27;9820:1;9815:36;9810:41;;9887:25;9898:4;9904:1;9907;9910;9887:10;:25::i;:::-;9880:32;;;;;;;;;9436:990;9954:2;9934:9;:16;:22;9930:496;;;9973:9;9997:10;10209:4;10198:9;10194:20;10188:27;10183:32;;10260:4;10249:9;10245:20;10239:27;10233:33;;10302:23;10313:4;10319:1;10322:2;10302:10;:23::i;:::-;10295:30;;;;;;;;9930:496;10374:1;10378:35;10358:56;;;;9125:1308;;;;;;:::o;7396:643::-;7474:20;7465:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;7461:571;;;7511:7;;7461:571;7572:29;7563:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;7559:473;;;7618:34;;;;;;;;;;:::i;:::-;;;;;;;;7559:473;7683:35;7674:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;7670:362;;;7735:41;;;;;;;;;;:::i;:::-;;;;;;;;7670:362;7807:30;7798:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;7794:238;;;7854:44;;;;;;;;;;:::i;:::-;;;;;;;;7794:238;7929:30;7920:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;7916:116;;;7976:44;;;;;;;;;;:::i;:::-;;;;;;;;7916:116;7396:643;;:::o;12687:1632::-;12818:7;12827:12;13752:66;13747:1;13739:10;;:79;13735:163;;;13851:1;13855:30;13835:51;;;;;;13735:163;13917:2;13912:1;:7;;;;:18;;;;;13928:2;13923:1;:7;;;;13912:18;13908:102;;;13963:1;13967:30;13947:51;;;;;;13908:102;14107:14;14124:24;14134:4;14140:1;14143;14146;14124:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14107:41;;14181:1;14163:20;;:6;:20;;;14159:103;;;14216:1;14220:29;14200:50;;;;;;;14159:103;14282:6;14290:20;14274:37;;;;;12687:1632;;;;;;;;:::o;11729:344::-;11843:7;11852:12;11877:9;11902:66;11894:75;;11889:2;:80;11877:92;;11980:7;12019:2;12012:3;12005:2;11997:11;;:18;;11996:25;;;;:::i;:::-;11980:42;;12040:25;12051:4;12057:1;12060;12063;12040:10;:25::i;:::-;12033:32;;;;;;11729:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:329::-;2907:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:119;;;2962:79;;:::i;:::-;2924:119;3082:1;3107:53;3152:7;3143:6;3132:9;3128:22;3107:53;:::i;:::-;3097:63;;3053:117;2848:329;;;;:::o;3183:474::-;3251:6;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:53;3504:7;3495:6;3484:9;3480:22;3459:53;:::i;:::-;3449:63;;3405:117;3561:2;3587:53;3632:7;3623:6;3612:9;3608:22;3587:53;:::i;:::-;3577:63;;3532:118;3183:474;;;;;:::o;3663:619::-;3740:6;3748;3756;3805:2;3793:9;3784:7;3780:23;3776:32;3773:119;;;3811:79;;:::i;:::-;3773:119;3931:1;3956:53;4001:7;3992:6;3981:9;3977:22;3956:53;:::i;:::-;3946:63;;3902:117;4058:2;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4029:118;4186:2;4212:53;4257:7;4248:6;4237:9;4233:22;4212:53;:::i;:::-;4202:63;;4157:118;3663:619;;;;;:::o;4288:943::-;4383:6;4391;4399;4407;4456:3;4444:9;4435:7;4431:23;4427:33;4424:120;;;4463:79;;:::i;:::-;4424:120;4583:1;4608:53;4653:7;4644:6;4633:9;4629:22;4608:53;:::i;:::-;4598:63;;4554:117;4710:2;4736:53;4781:7;4772:6;4761:9;4757:22;4736:53;:::i;:::-;4726:63;;4681:118;4838:2;4864:53;4909:7;4900:6;4889:9;4885:22;4864:53;:::i;:::-;4854:63;;4809:118;4994:2;4983:9;4979:18;4966:32;5025:18;5017:6;5014:30;5011:117;;;5047:79;;:::i;:::-;5011:117;5152:62;5206:7;5197:6;5186:9;5182:22;5152:62;:::i;:::-;5142:72;;4937:287;4288:943;;;;;;;:::o;5237:468::-;5302:6;5310;5359:2;5347:9;5338:7;5334:23;5330:32;5327:119;;;5365:79;;:::i;:::-;5327:119;5485:1;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5456:117;5612:2;5638:50;5680:7;5671:6;5660:9;5656:22;5638:50;:::i;:::-;5628:60;;5583:115;5237:468;;;;;:::o;5711:474::-;5779:6;5787;5836:2;5824:9;5815:7;5811:23;5807:32;5804:119;;;5842:79;;:::i;:::-;5804:119;5962:1;5987:53;6032:7;6023:6;6012:9;6008:22;5987:53;:::i;:::-;5977:63;;5933:117;6089:2;6115:53;6160:7;6151:6;6140:9;6136:22;6115:53;:::i;:::-;6105:63;;6060:118;5711:474;;;;;:::o;6191:327::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:52;6493:7;6484:6;6473:9;6469:22;6449:52;:::i;:::-;6439:62;;6395:116;6191:327;;;;:::o;6524:349::-;6593:6;6642:2;6630:9;6621:7;6617:23;6613:32;6610:119;;;6648:79;;:::i;:::-;6610:119;6768:1;6793:63;6848:7;6839:6;6828:9;6824:22;6793:63;:::i;:::-;6783:73;;6739:127;6524:349;;;;:::o;6879:509::-;6948:6;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7308:63;7363:7;7354:6;7343:9;7339:22;7308:63;:::i;:::-;7298:73;;7094:287;6879:509;;;;:::o;7394:329::-;7453:6;7502:2;7490:9;7481:7;7477:23;7473:32;7470:119;;;7508:79;;:::i;:::-;7470:119;7628:1;7653:53;7698:7;7689:6;7678:9;7674:22;7653:53;:::i;:::-;7643:63;;7599:117;7394:329;;;;:::o;7729:672::-;7808:6;7816;7824;7873:2;7861:9;7852:7;7848:23;7844:32;7841:119;;;7879:79;;:::i;:::-;7841:119;7999:1;8024:53;8069:7;8060:6;8049:9;8045:22;8024:53;:::i;:::-;8014:63;;7970:117;8154:2;8143:9;8139:18;8126:32;8185:18;8177:6;8174:30;8171:117;;;8207:79;;:::i;:::-;8171:117;8320:64;8376:7;8367:6;8356:9;8352:22;8320:64;:::i;:::-;8302:82;;;;8097:297;7729:672;;;;;:::o;8407:118::-;8494:24;8512:5;8494:24;:::i;:::-;8489:3;8482:37;8407:118;;:::o;8531:157::-;8636:45;8656:24;8674:5;8656:24;:::i;:::-;8636:45;:::i;:::-;8631:3;8624:58;8531:157;;:::o;8694:109::-;8775:21;8790:5;8775:21;:::i;:::-;8770:3;8763:34;8694:109;;:::o;8809:118::-;8896:24;8914:5;8896:24;:::i;:::-;8891:3;8884:37;8809:118;;:::o;8933:157::-;9038:45;9058:24;9076:5;9058:24;:::i;:::-;9038:45;:::i;:::-;9033:3;9026:58;8933:157;;:::o;9096:360::-;9182:3;9210:38;9242:5;9210:38;:::i;:::-;9264:70;9327:6;9322:3;9264:70;:::i;:::-;9257:77;;9343:52;9388:6;9383:3;9376:4;9369:5;9365:16;9343:52;:::i;:::-;9420:29;9442:6;9420:29;:::i;:::-;9415:3;9411:39;9404:46;;9186:270;9096:360;;;;:::o;9462:364::-;9550:3;9578:39;9611:5;9578:39;:::i;:::-;9633:71;9697:6;9692:3;9633:71;:::i;:::-;9626:78;;9713:52;9758:6;9753:3;9746:4;9739:5;9735:16;9713:52;:::i;:::-;9790:29;9812:6;9790:29;:::i;:::-;9785:3;9781:39;9774:46;;9554:272;9462:364;;;;:::o;9832:377::-;9938:3;9966:39;9999:5;9966:39;:::i;:::-;10021:89;10103:6;10098:3;10021:89;:::i;:::-;10014:96;;10119:52;10164:6;10159:3;10152:4;10145:5;10141:16;10119:52;:::i;:::-;10196:6;10191:3;10187:16;10180:23;;9942:267;9832:377;;;;:::o;10215:366::-;10357:3;10378:67;10442:2;10437:3;10378:67;:::i;:::-;10371:74;;10454:93;10543:3;10454:93;:::i;:::-;10572:2;10567:3;10563:12;10556:19;;10215:366;;;:::o;10587:::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:::-;11101:3;11122:67;11186:2;11181:3;11122:67;:::i;:::-;11115:74;;11198:93;11287:3;11198:93;:::i;:::-;11316:2;11311:3;11307:12;11300:19;;10959:366;;;:::o;11331:402::-;11491:3;11512:85;11594:2;11589:3;11512:85;:::i;:::-;11505:92;;11606:93;11695:3;11606:93;:::i;:::-;11724:2;11719:3;11715:12;11708:19;;11331:402;;;:::o;11739:366::-;11881:3;11902:67;11966:2;11961:3;11902:67;:::i;:::-;11895:74;;11978:93;12067:3;11978:93;:::i;:::-;12096:2;12091:3;12087:12;12080:19;;11739:366;;;:::o;12111:::-;12253:3;12274:67;12338:2;12333:3;12274:67;:::i;:::-;12267:74;;12350:93;12439:3;12350:93;:::i;:::-;12468:2;12463:3;12459:12;12452:19;;12111:366;;;:::o;12483:::-;12625:3;12646:67;12710:2;12705:3;12646:67;:::i;:::-;12639:74;;12722:93;12811:3;12722:93;:::i;:::-;12840:2;12835:3;12831:12;12824:19;;12483:366;;;:::o;12855:::-;12997:3;13018:67;13082:2;13077:3;13018:67;:::i;:::-;13011:74;;13094:93;13183:3;13094:93;:::i;:::-;13212:2;13207:3;13203:12;13196:19;;12855:366;;;:::o;13227:::-;13369:3;13390:67;13454:2;13449:3;13390:67;:::i;:::-;13383:74;;13466:93;13555:3;13466:93;:::i;:::-;13584:2;13579:3;13575:12;13568:19;;13227:366;;;:::o;13599:::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:::-;14113:3;14134:67;14198:2;14193:3;14134:67;:::i;:::-;14127:74;;14210:93;14299:3;14210:93;:::i;:::-;14328:2;14323:3;14319:12;14312:19;;13971:366;;;:::o;14343:::-;14485:3;14506:67;14570:2;14565:3;14506:67;:::i;:::-;14499:74;;14582:93;14671:3;14582:93;:::i;:::-;14700:2;14695:3;14691:12;14684:19;;14343:366;;;:::o;14715:::-;14857:3;14878:67;14942:2;14937:3;14878:67;:::i;:::-;14871:74;;14954:93;15043:3;14954:93;:::i;:::-;15072:2;15067:3;15063:12;15056:19;;14715:366;;;:::o;15087:::-;15229:3;15250:67;15314:2;15309:3;15250:67;:::i;:::-;15243:74;;15326:93;15415:3;15326:93;:::i;:::-;15444:2;15439:3;15435:12;15428:19;;15087:366;;;:::o;15459:::-;15601:3;15622:67;15686:2;15681:3;15622:67;:::i;:::-;15615:74;;15698:93;15787:3;15698:93;:::i;:::-;15816:2;15811:3;15807:12;15800:19;;15459:366;;;:::o;15831:::-;15973:3;15994:67;16058:2;16053:3;15994:67;:::i;:::-;15987:74;;16070:93;16159:3;16070:93;:::i;:::-;16188:2;16183:3;16179:12;16172:19;;15831:366;;;:::o;16203:::-;16345:3;16366:67;16430:2;16425:3;16366:67;:::i;:::-;16359:74;;16442:93;16531:3;16442:93;:::i;:::-;16560:2;16555:3;16551:12;16544:19;;16203:366;;;:::o;16575:::-;16717:3;16738:67;16802:2;16797:3;16738:67;:::i;:::-;16731:74;;16814:93;16903:3;16814:93;:::i;:::-;16932:2;16927:3;16923:12;16916:19;;16575:366;;;:::o;16947:::-;17089:3;17110:67;17174:2;17169:3;17110:67;:::i;:::-;17103:74;;17186:93;17275:3;17186:93;:::i;:::-;17304:2;17299:3;17295:12;17288:19;;16947:366;;;:::o;17319:::-;17461:3;17482:67;17546:2;17541:3;17482:67;:::i;:::-;17475:74;;17558:93;17647:3;17558:93;:::i;:::-;17676:2;17671:3;17667:12;17660:19;;17319:366;;;:::o;17691:::-;17833:3;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17930:93;18019:3;17930:93;:::i;:::-;18048:2;18043:3;18039:12;18032:19;;17691:366;;;:::o;18063:::-;18205:3;18226:67;18290:2;18285:3;18226:67;:::i;:::-;18219:74;;18302:93;18391:3;18302:93;:::i;:::-;18420:2;18415:3;18411:12;18404:19;;18063:366;;;:::o;18435:::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:::-;18949:3;18970:67;19034:2;19029:3;18970:67;:::i;:::-;18963:74;;19046:93;19135:3;19046:93;:::i;:::-;19164:2;19159:3;19155:12;19148:19;;18807:366;;;:::o;19179:::-;19321:3;19342:67;19406:2;19401:3;19342:67;:::i;:::-;19335:74;;19418:93;19507:3;19418:93;:::i;:::-;19536:2;19531:3;19527:12;19520:19;;19179:366;;;:::o;19551:::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:::-;20065:3;20086:67;20150:2;20145:3;20086:67;:::i;:::-;20079:74;;20162:93;20251:3;20162:93;:::i;:::-;20280:2;20275:3;20271:12;20264:19;;19923:366;;;:::o;20295:118::-;20382:24;20400:5;20382:24;:::i;:::-;20377:3;20370:37;20295:118;;:::o;20419:112::-;20502:22;20518:5;20502:22;:::i;:::-;20497:3;20490:35;20419:112;;:::o;20537:256::-;20649:3;20664:75;20735:3;20726:6;20664:75;:::i;:::-;20764:2;20759:3;20755:12;20748:19;;20784:3;20777:10;;20537:256;;;;:::o;20799:435::-;20979:3;21001:95;21092:3;21083:6;21001:95;:::i;:::-;20994:102;;21113:95;21204:3;21195:6;21113:95;:::i;:::-;21106:102;;21225:3;21218:10;;20799:435;;;;;:::o;21240:522::-;21453:3;21475:148;21619:3;21475:148;:::i;:::-;21468:155;;21633:75;21704:3;21695:6;21633:75;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21753:3;21746:10;;21240:522;;;;:::o;21768:222::-;21861:4;21899:2;21888:9;21884:18;21876:26;;21912:71;21980:1;21969:9;21965:17;21956:6;21912:71;:::i;:::-;21768:222;;;;:::o;21996:640::-;22191:4;22229:3;22218:9;22214:19;22206:27;;22243:71;22311:1;22300:9;22296:17;22287:6;22243:71;:::i;:::-;22324:72;22392:2;22381:9;22377:18;22368:6;22324:72;:::i;:::-;22406;22474:2;22463:9;22459:18;22450:6;22406:72;:::i;:::-;22525:9;22519:4;22515:20;22510:2;22499:9;22495:18;22488:48;22553:76;22624:4;22615:6;22553:76;:::i;:::-;22545:84;;21996:640;;;;;;;:::o;22642:210::-;22729:4;22767:2;22756:9;22752:18;22744:26;;22780:65;22842:1;22831:9;22827:17;22818:6;22780:65;:::i;:::-;22642:210;;;;:::o;22858:545::-;23031:4;23069:3;23058:9;23054:19;23046:27;;23083:71;23151:1;23140:9;23136:17;23127:6;23083:71;:::i;:::-;23164:68;23228:2;23217:9;23213:18;23204:6;23164:68;:::i;:::-;23242:72;23310:2;23299:9;23295:18;23286:6;23242:72;:::i;:::-;23324;23392:2;23381:9;23377:18;23368:6;23324:72;:::i;:::-;22858:545;;;;;;;:::o;23409:313::-;23522:4;23560:2;23549:9;23545:18;23537:26;;23609:9;23603:4;23599:20;23595:1;23584:9;23580:17;23573:47;23637:78;23710:4;23701:6;23637:78;:::i;:::-;23629:86;;23409:313;;;;:::o;23728:419::-;23894:4;23932:2;23921:9;23917:18;23909:26;;23981:9;23975:4;23971:20;23967:1;23956:9;23952:17;23945:47;24009:131;24135:4;24009:131;:::i;:::-;24001:139;;23728:419;;;:::o;24153:::-;24319:4;24357:2;24346:9;24342:18;24334:26;;24406:9;24400:4;24396:20;24392:1;24381:9;24377:17;24370:47;24434:131;24560:4;24434:131;:::i;:::-;24426:139;;24153:419;;;:::o;24578:::-;24744:4;24782:2;24771:9;24767:18;24759:26;;24831:9;24825:4;24821:20;24817:1;24806:9;24802:17;24795:47;24859:131;24985:4;24859:131;:::i;:::-;24851:139;;24578:419;;;:::o;25003:::-;25169:4;25207:2;25196:9;25192:18;25184:26;;25256:9;25250:4;25246:20;25242:1;25231:9;25227:17;25220:47;25284:131;25410:4;25284:131;:::i;:::-;25276:139;;25003:419;;;:::o;25428:::-;25594:4;25632:2;25621:9;25617:18;25609:26;;25681:9;25675:4;25671:20;25667:1;25656:9;25652:17;25645:47;25709:131;25835:4;25709:131;:::i;:::-;25701:139;;25428:419;;;:::o;25853:::-;26019:4;26057:2;26046:9;26042:18;26034:26;;26106:9;26100:4;26096:20;26092:1;26081:9;26077:17;26070:47;26134:131;26260:4;26134:131;:::i;:::-;26126:139;;25853:419;;;:::o;26278:::-;26444:4;26482:2;26471:9;26467:18;26459:26;;26531:9;26525:4;26521:20;26517:1;26506:9;26502:17;26495:47;26559:131;26685:4;26559:131;:::i;:::-;26551:139;;26278:419;;;:::o;26703:::-;26869:4;26907:2;26896:9;26892:18;26884:26;;26956:9;26950:4;26946:20;26942:1;26931:9;26927:17;26920:47;26984:131;27110:4;26984:131;:::i;:::-;26976:139;;26703:419;;;:::o;27128:::-;27294:4;27332:2;27321:9;27317:18;27309:26;;27381:9;27375:4;27371:20;27367:1;27356:9;27352:17;27345:47;27409:131;27535:4;27409:131;:::i;:::-;27401:139;;27128:419;;;:::o;27553:::-;27719:4;27757:2;27746:9;27742:18;27734:26;;27806:9;27800:4;27796:20;27792:1;27781:9;27777:17;27770:47;27834:131;27960:4;27834:131;:::i;:::-;27826:139;;27553:419;;;:::o;27978:::-;28144:4;28182:2;28171:9;28167:18;28159:26;;28231:9;28225:4;28221:20;28217:1;28206:9;28202:17;28195:47;28259:131;28385:4;28259:131;:::i;:::-;28251:139;;27978:419;;;:::o;28403:::-;28569:4;28607:2;28596:9;28592:18;28584:26;;28656:9;28650:4;28646:20;28642:1;28631:9;28627:17;28620:47;28684:131;28810:4;28684:131;:::i;:::-;28676:139;;28403:419;;;:::o;28828:::-;28994:4;29032:2;29021:9;29017:18;29009:26;;29081:9;29075:4;29071:20;29067:1;29056:9;29052:17;29045:47;29109:131;29235:4;29109:131;:::i;:::-;29101:139;;28828:419;;;:::o;29253:::-;29419:4;29457:2;29446:9;29442:18;29434:26;;29506:9;29500:4;29496:20;29492:1;29481:9;29477:17;29470:47;29534:131;29660:4;29534:131;:::i;:::-;29526:139;;29253:419;;;:::o;29678:::-;29844:4;29882:2;29871:9;29867:18;29859:26;;29931:9;29925:4;29921:20;29917:1;29906:9;29902:17;29895:47;29959:131;30085:4;29959:131;:::i;:::-;29951:139;;29678:419;;;:::o;30103:::-;30269:4;30307:2;30296:9;30292:18;30284:26;;30356:9;30350:4;30346:20;30342:1;30331:9;30327:17;30320:47;30384:131;30510:4;30384:131;:::i;:::-;30376:139;;30103:419;;;:::o;30528:::-;30694:4;30732:2;30721:9;30717:18;30709:26;;30781:9;30775:4;30771:20;30767:1;30756:9;30752:17;30745:47;30809:131;30935:4;30809:131;:::i;:::-;30801:139;;30528:419;;;:::o;30953:::-;31119:4;31157:2;31146:9;31142:18;31134:26;;31206:9;31200:4;31196:20;31192:1;31181:9;31177:17;31170:47;31234:131;31360:4;31234:131;:::i;:::-;31226:139;;30953:419;;;:::o;31378:::-;31544:4;31582:2;31571:9;31567:18;31559:26;;31631:9;31625:4;31621:20;31617:1;31606:9;31602:17;31595:47;31659:131;31785:4;31659:131;:::i;:::-;31651:139;;31378:419;;;:::o;31803:::-;31969:4;32007:2;31996:9;31992:18;31984:26;;32056:9;32050:4;32046:20;32042:1;32031:9;32027:17;32020:47;32084:131;32210:4;32084:131;:::i;:::-;32076:139;;31803:419;;;:::o;32228:::-;32394:4;32432:2;32421:9;32417:18;32409:26;;32481:9;32475:4;32471:20;32467:1;32456:9;32452:17;32445:47;32509:131;32635:4;32509:131;:::i;:::-;32501:139;;32228:419;;;:::o;32653:::-;32819:4;32857:2;32846:9;32842:18;32834:26;;32906:9;32900:4;32896:20;32892:1;32881:9;32877:17;32870:47;32934:131;33060:4;32934:131;:::i;:::-;32926:139;;32653:419;;;:::o;33078:::-;33244:4;33282:2;33271:9;33267:18;33259:26;;33331:9;33325:4;33321:20;33317:1;33306:9;33302:17;33295:47;33359:131;33485:4;33359:131;:::i;:::-;33351:139;;33078:419;;;:::o;33503:::-;33669:4;33707:2;33696:9;33692:18;33684:26;;33756:9;33750:4;33746:20;33742:1;33731:9;33727:17;33720:47;33784:131;33910:4;33784:131;:::i;:::-;33776:139;;33503:419;;;:::o;33928:::-;34094:4;34132:2;34121:9;34117:18;34109:26;;34181:9;34175:4;34171:20;34167:1;34156:9;34152:17;34145:47;34209:131;34335:4;34209:131;:::i;:::-;34201:139;;33928:419;;;:::o;34353:::-;34519:4;34557:2;34546:9;34542:18;34534:26;;34606:9;34600:4;34596:20;34592:1;34581:9;34577:17;34570:47;34634:131;34760:4;34634:131;:::i;:::-;34626:139;;34353:419;;;:::o;34778:222::-;34871:4;34909:2;34898:9;34894:18;34886:26;;34922:71;34990:1;34979:9;34975:17;34966:6;34922:71;:::i;:::-;34778:222;;;;:::o;35006:129::-;35040:6;35067:20;;:::i;:::-;35057:30;;35096:33;35124:4;35116:6;35096:33;:::i;:::-;35006:129;;;:::o;35141:75::-;35174:6;35207:2;35201:9;35191:19;;35141:75;:::o;35222:307::-;35283:4;35373:18;35365:6;35362:30;35359:56;;;35395:18;;:::i;:::-;35359:56;35433:29;35455:6;35433:29;:::i;:::-;35425:37;;35517:4;35511;35507:15;35499:23;;35222:307;;;:::o;35535:308::-;35597:4;35687:18;35679:6;35676:30;35673:56;;;35709:18;;:::i;:::-;35673:56;35747:29;35769:6;35747:29;:::i;:::-;35739:37;;35831:4;35825;35821:15;35813:23;;35535:308;;;:::o;35849:98::-;35900:6;35934:5;35928:12;35918:22;;35849:98;;;:::o;35953:99::-;36005:6;36039:5;36033:12;36023:22;;35953:99;;;:::o;36058:168::-;36141:11;36175:6;36170:3;36163:19;36215:4;36210:3;36206:14;36191:29;;36058:168;;;;:::o;36232:169::-;36316:11;36350:6;36345:3;36338:19;36390:4;36385:3;36381:14;36366:29;;36232:169;;;;:::o;36407:148::-;36509:11;36546:3;36531:18;;36407:148;;;;:::o;36561:273::-;36601:3;36620:20;36638:1;36620:20;:::i;:::-;36615:25;;36654:20;36672:1;36654:20;:::i;:::-;36649:25;;36776:1;36740:34;36736:42;36733:1;36730:49;36727:75;;;36782:18;;:::i;:::-;36727:75;36826:1;36823;36819:9;36812:16;;36561:273;;;;:::o;36840:305::-;36880:3;36899:20;36917:1;36899:20;:::i;:::-;36894:25;;36933:20;36951:1;36933:20;:::i;:::-;36928:25;;37087:1;37019:66;37015:74;37012:1;37009:81;37006:107;;;37093:18;;:::i;:::-;37006:107;37137:1;37134;37130:9;37123:16;;36840:305;;;;:::o;37151:185::-;37191:1;37208:20;37226:1;37208:20;:::i;:::-;37203:25;;37242:20;37260:1;37242:20;:::i;:::-;37237:25;;37281:1;37271:35;;37286:18;;:::i;:::-;37271:35;37328:1;37325;37321:9;37316:14;;37151:185;;;;:::o;37342:348::-;37382:7;37405:20;37423:1;37405:20;:::i;:::-;37400:25;;37439:20;37457:1;37439:20;:::i;:::-;37434:25;;37627:1;37559:66;37555:74;37552:1;37549:81;37544:1;37537:9;37530:17;37526:105;37523:131;;;37634:18;;:::i;:::-;37523:131;37682:1;37679;37675:9;37664:20;;37342:348;;;;:::o;37696:191::-;37736:4;37756:20;37774:1;37756:20;:::i;:::-;37751:25;;37790:20;37808:1;37790:20;:::i;:::-;37785:25;;37829:1;37826;37823:8;37820:34;;;37834:18;;:::i;:::-;37820:34;37879:1;37876;37872:9;37864:17;;37696:191;;;;:::o;37893:::-;37933:4;37953:20;37971:1;37953:20;:::i;:::-;37948:25;;37987:20;38005:1;37987:20;:::i;:::-;37982:25;;38026:1;38023;38020:8;38017:34;;;38031:18;;:::i;:::-;38017:34;38076:1;38073;38069:9;38061:17;;37893:191;;;;:::o;38090:96::-;38127:7;38156:24;38174:5;38156:24;:::i;:::-;38145:35;;38090:96;;;:::o;38192:90::-;38226:7;38269:5;38262:13;38255:21;38244:32;;38192:90;;;:::o;38288:77::-;38325:7;38354:5;38343:16;;38288:77;;;:::o;38371:149::-;38407:7;38447:66;38440:5;38436:78;38425:89;;38371:149;;;:::o;38526:118::-;38563:7;38603:34;38596:5;38592:46;38581:57;;38526:118;;;:::o;38650:126::-;38687:7;38727:42;38720:5;38716:54;38705:65;;38650:126;;;:::o;38782:77::-;38819:7;38848:5;38837:16;;38782:77;;;:::o;38865:86::-;38900:7;38940:4;38933:5;38929:16;38918:27;;38865:86;;;:::o;38957:154::-;39041:6;39036:3;39031;39018:30;39103:1;39094:6;39089:3;39085:16;39078:27;38957:154;;;:::o;39117:307::-;39185:1;39195:113;39209:6;39206:1;39203:13;39195:113;;;39294:1;39289:3;39285:11;39279:18;39275:1;39270:3;39266:11;39259:39;39231:2;39228:1;39224:10;39219:15;;39195:113;;;39326:6;39323:1;39320:13;39317:101;;;39406:1;39397:6;39392:3;39388:16;39381:27;39317:101;39166:258;39117:307;;;:::o;39430:171::-;39469:3;39492:24;39510:5;39492:24;:::i;:::-;39483:33;;39538:4;39531:5;39528:15;39525:41;;;39546:18;;:::i;:::-;39525:41;39593:1;39586:5;39582:13;39575:20;;39430:171;;;:::o;39607:320::-;39651:6;39688:1;39682:4;39678:12;39668:22;;39735:1;39729:4;39725:12;39756:18;39746:81;;39812:4;39804:6;39800:17;39790:27;;39746:81;39874:2;39866:6;39863:14;39843:18;39840:38;39837:84;;;39893:18;;:::i;:::-;39837:84;39658:269;39607:320;;;:::o;39933:281::-;40016:27;40038:4;40016:27;:::i;:::-;40008:6;40004:40;40146:6;40134:10;40131:22;40110:18;40098:10;40095:34;40092:62;40089:88;;;40157:18;;:::i;:::-;40089:88;40197:10;40193:2;40186:22;39976:238;39933:281;;:::o;40220:233::-;40259:3;40282:24;40300:5;40282:24;:::i;:::-;40273:33;;40328:66;40321:5;40318:77;40315:103;;;40398:18;;:::i;:::-;40315:103;40445:1;40438:5;40434:13;40427:20;;40220:233;;;:::o;40459:100::-;40498:7;40527:26;40547:5;40527:26;:::i;:::-;40516:37;;40459:100;;;:::o;40565:79::-;40604:7;40633:5;40622:16;;40565:79;;;:::o;40650:94::-;40689:7;40718:20;40732:5;40718:20;:::i;:::-;40707:31;;40650:94;;;:::o;40750:176::-;40782:1;40799:20;40817:1;40799:20;:::i;:::-;40794:25;;40833:20;40851:1;40833:20;:::i;:::-;40828:25;;40872:1;40862:35;;40877:18;;:::i;:::-;40862:35;40918:1;40915;40911:9;40906:14;;40750:176;;;;:::o;40932:180::-;40980:77;40977:1;40970:88;41077:4;41074:1;41067:15;41101:4;41098:1;41091:15;41118:180;41166:77;41163:1;41156:88;41263:4;41260:1;41253:15;41287:4;41284:1;41277:15;41304:180;41352:77;41349:1;41342:88;41449:4;41446:1;41439:15;41473:4;41470:1;41463:15;41490:180;41538:77;41535:1;41528:88;41635:4;41632:1;41625:15;41659:4;41656:1;41649:15;41676:180;41724:77;41721:1;41714:88;41821:4;41818:1;41811:15;41845:4;41842:1;41835:15;41862:180;41910:77;41907:1;41900:88;42007:4;42004:1;41997:15;42031:4;42028:1;42021:15;42048:117;42157:1;42154;42147:12;42171:117;42280:1;42277;42270:12;42294:117;42403:1;42400;42393:12;42417:117;42526:1;42523;42516:12;42540:117;42649:1;42646;42639:12;42663:117;42772:1;42769;42762:12;42786:102;42827:6;42878:2;42874:7;42869:2;42862:5;42858:14;42854:28;42844:38;;42786:102;;;:::o;42894:94::-;42927:8;42975:5;42971:2;42967:14;42946:35;;42894:94;;;:::o;42994:174::-;43134:26;43130:1;43122:6;43118:14;43111:50;42994:174;:::o;43174:221::-;43314:34;43310:1;43302:6;43298:14;43291:58;43383:4;43378:2;43370:6;43366:15;43359:29;43174:221;:::o;43401:181::-;43541:33;43537:1;43529:6;43525:14;43518:57;43401:181;:::o;43588:214::-;43728:66;43724:1;43716:6;43712:14;43705:90;43588:214;:::o;43808:225::-;43948:34;43944:1;43936:6;43932:14;43925:58;44017:8;44012:2;44004:6;44000:15;43993:33;43808:225;:::o;44039:229::-;44179:34;44175:1;44167:6;44163:14;44156:58;44248:12;44243:2;44235:6;44231:15;44224:37;44039:229;:::o;44274:222::-;44414:34;44410:1;44402:6;44398:14;44391:58;44483:5;44478:2;44470:6;44466:15;44459:30;44274:222;:::o;44502:224::-;44642:34;44638:1;44630:6;44626:14;44619:58;44711:7;44706:2;44698:6;44694:15;44687:32;44502:224;:::o;44732:221::-;44872:34;44868:1;44860:6;44856:14;44849:58;44941:4;44936:2;44928:6;44924:15;44917:29;44732:221;:::o;44959:166::-;45099:18;45095:1;45087:6;45083:14;45076:42;44959:166;:::o;45131:244::-;45271:34;45267:1;45259:6;45255:14;45248:58;45340:27;45335:2;45327:6;45323:15;45316:52;45131:244;:::o;45381:230::-;45521:34;45517:1;45509:6;45505:14;45498:58;45590:13;45585:2;45577:6;45573:15;45566:38;45381:230;:::o;45617:221::-;45757:34;45753:1;45745:6;45741:14;45734:58;45826:4;45821:2;45813:6;45809:15;45802:29;45617:221;:::o;45844:225::-;45984:34;45980:1;45972:6;45968:14;45961:58;46053:8;46048:2;46040:6;46036:15;46029:33;45844:225;:::o;46075:182::-;46215:34;46211:1;46203:6;46199:14;46192:58;46075:182;:::o;46263:234::-;46403:34;46399:1;46391:6;46387:14;46380:58;46472:17;46467:2;46459:6;46455:15;46448:42;46263:234;:::o;46503:176::-;46643:28;46639:1;46631:6;46627:14;46620:52;46503:176;:::o;46685:237::-;46825:34;46821:1;46813:6;46809:14;46802:58;46894:20;46889:2;46881:6;46877:15;46870:45;46685:237;:::o;46928:221::-;47068:34;47064:1;47056:6;47052:14;47045:58;47137:4;47132:2;47124:6;47120:15;47113:29;46928:221;:::o;47155:238::-;47295:34;47291:1;47283:6;47279:14;47272:58;47364:21;47359:2;47351:6;47347:15;47340:46;47155:238;:::o;47399:179::-;47539:31;47535:1;47527:6;47523:14;47516:55;47399:179;:::o;47584:220::-;47724:34;47720:1;47712:6;47708:14;47701:58;47793:3;47788:2;47780:6;47776:15;47769:28;47584:220;:::o;47810:233::-;47950:34;47946:1;47938:6;47934:14;47927:58;48019:16;48014:2;48006:6;48002:15;47995:41;47810:233;:::o;48049:181::-;48189:33;48185:1;48177:6;48173:14;48166:57;48049:181;:::o;48236:234::-;48376:34;48372:1;48364:6;48360:14;48353:58;48445:17;48440:2;48432:6;48428:15;48421:42;48236:234;:::o;48476:232::-;48616:34;48612:1;48604:6;48600:14;48593:58;48685:15;48680:2;48672:6;48668:15;48661:40;48476:232;:::o;48714:221::-;48854:34;48850:1;48842:6;48838:14;48831:58;48923:4;48918:2;48910:6;48906:15;48899:29;48714:221;:::o;48941:122::-;49014:24;49032:5;49014:24;:::i;:::-;49007:5;49004:35;48994:63;;49053:1;49050;49043:12;48994:63;48941:122;:::o;49069:116::-;49139:21;49154:5;49139:21;:::i;:::-;49132:5;49129:32;49119:60;;49175:1;49172;49165:12;49119:60;49069:116;:::o;49191:120::-;49263:23;49280:5;49263:23;:::i;:::-;49256:5;49253:34;49243:62;;49301:1;49298;49291:12;49243:62;49191:120;:::o;49317:122::-;49390:24;49408:5;49390:24;:::i;:::-;49383:5;49380:35;49370:63;;49429:1;49426;49419:12;49370:63;49317:122;:::o

Swarm Source

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