ETH Price: $1,849.80 (-13.80%)
 

Overview

Max Total Supply

90,000,000 GTPS

Holders

9 (0.00%)

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The global digital currency to become the new single reserve currency. For staking and yield farming. A cross-chain, transferable asset.

Contract Source Code Verified (Exact Match)

Contract Name:
GlobalTransactionPaymentSolution

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at optimistic.etherscan.io on 2022-06-11
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/[email protected]/interfaces/IERC3156FlashBorrower.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashBorrower.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC3156 FlashBorrower, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashBorrower {
    /**
     * @dev Receive a flash loan.
     * @param initiator The initiator of the loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param fee The additional amount of tokens to repay.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
     */
    function onFlashLoan(
        address initiator,
        address token,
        uint256 amount,
        uint256 fee,
        bytes calldata data
    ) external returns (bytes32);
}

// File: @openzeppelin/[email protected]/interfaces/IERC3156FlashLender.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the ERC3156 FlashLender, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * _Available since v4.1._
 */
interface IERC3156FlashLender {
    /**
     * @dev The amount of currency available to be lended.
     * @param token The loan currency.
     * @return The amount of `token` that can be borrowed.
     */
    function maxFlashLoan(address token) external view returns (uint256);

    /**
     * @dev The fee to be charged for a given loan.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @return The amount of `token` to be charged for the loan, on top of the returned principal.
     */
    function flashFee(address token, uint256 amount) external view returns (uint256);

    /**
     * @dev Initiate a flash loan.
     * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
     * @param token The loan currency.
     * @param amount The amount of tokens lent.
     * @param data Arbitrary data structure, intended to contain user-defined parameters.
     */
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

// File: @openzeppelin/[email protected]/utils/math/SafeCast.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

// File: @openzeppelin/[email protected]/governance/utils/IVotes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;

/**
 * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
 *
 * _Available since v4.5._
 */
interface IVotes {
    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Returns the current amount of votes that `account` has.
     */
    function getVotes(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
     */
    function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the delegate that `account` has chosen.
     */
    function delegates(address account) external view returns (address);

    /**
     * @dev Delegates votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) external;

    /**
     * @dev Delegates votes from signer to `delegatee`.
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/utils/cryptography/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/[email protected]/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/[email protected]/utils/math/Math.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

// File: @openzeppelin/[email protected]/utils/Arrays.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20FlashMint.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/ERC20FlashMint.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the ERC3156 Flash loans extension, as defined in
 * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
 *
 * Adds the {flashLoan} method, which provides flash loan support at the token
 * level. By default there is no fee, but this can be changed by overriding {flashFee}.
 *
 * _Available since v4.1._
 */
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
    bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");

    /**
     * @dev Returns the maximum amount of tokens available for loan.
     * @param token The address of the token that is requested.
     * @return The amount of token that can be loaned.
     */
    function maxFlashLoan(address token) public view virtual override returns (uint256) {
        return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
    }

    /**
     * @dev Returns the fee applied when doing flash loans. By default this
     * implementation has 0 fees. This function can be overloaded to make
     * the flash loan mechanism deflationary.
     * @param token The token to be flash loaned.
     * @param amount The amount of tokens to be loaned.
     * @return The fees applied to the corresponding flash loan.
     */
    function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
        require(token == address(this), "ERC20FlashMint: wrong token");
        // silence warning about unused variable without the addition of bytecode.
        amount;
        return 0;
    }

    /**
     * @dev Performs a flash loan. New tokens are minted and sent to the
     * `receiver`, who is required to implement the {IERC3156FlashBorrower}
     * interface. By the end of the flash loan, the receiver is expected to own
     * amount + fee tokens and have them approved back to the token contract itself so
     * they can be burned.
     * @param receiver The receiver of the flash loan. Should implement the
     * {IERC3156FlashBorrower.onFlashLoan} interface.
     * @param token The token to be flash loaned. Only `address(this)` is
     * supported.
     * @param amount The amount of tokens to be loaned.
     * @param data An arbitrary datafield that is passed to the receiver.
     * @return `true` if the flash loan was successful.
     */
    // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount
    // minted at the beginning is always recovered and burned at the end, or else the entire function will revert.
    // slither-disable-next-line reentrancy-no-eth
    function flashLoan(
        IERC3156FlashBorrower receiver,
        address token,
        uint256 amount,
        bytes calldata data
    ) public virtual override returns (bool) {
        require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan");
        uint256 fee = flashFee(token, amount);
        _mint(address(receiver), amount);
        require(
            receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
            "ERC20FlashMint: invalid return value"
        );
        _spendAllowance(address(receiver), address(this), amount + fee);
        _burn(address(receiver), amount + fee);
        return true;
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Votes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol)

pragma solidity ^0.8.0;






/**
 * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
 * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
 *
 * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
 * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
 *
 * _Available since v4.2._
 */
abstract contract ERC20Votes is IVotes, ERC20Permit {
    struct Checkpoint {
        uint32 fromBlock;
        uint224 votes;
    }

    bytes32 private constant _DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    mapping(address => address) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view virtual returns (uint32) {
        return SafeCast.toUint32(_checkpoints[account].length);
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view virtual override returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view virtual override returns (uint256) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view virtual override returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        return high == 0 ? 0 : ckpts[high - 1].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public virtual override {
        _delegate(_msgSender(), delegatee);
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= expiry, "ERC20Votes: signature expired");
        address signer = ECDSA.recover(
            _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
            v,
            r,
            s
        );
        require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
        _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
     */
    function _maxSupply() internal view virtual returns (uint224) {
        return type(uint224).max;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal virtual override {
        super._burn(account, amount);

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
     * @dev Move voting power when tokens are transferred.
     *
     * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._afterTokenTransfer(from, to, amount);

        _moveVotingPower(delegates(from), delegates(to), amount);
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal virtual {
        address currentDelegate = delegates(delegator);
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
        newWeight = op(oldWeight, delta);

        if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
            ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
        } else {
            ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Snapshot.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/extensions/ERC20Snapshot.sol)

pragma solidity ^0.8.0;




/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
 * return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this
 * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
 *
 * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
 * alternative consider {ERC20Votes}.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */

abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Get the current snapshotId
     */
    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: GlobalTransactionPaymentSolution.sol


pragma solidity ^0.8.4;








contract GlobalTransactionPaymentSolution is ERC20, ERC20Burnable, ERC20Snapshot, Ownable, ERC20Permit, ERC20Votes, ERC20FlashMint {
    constructor()
        ERC20("GlobalTransactionPaymentSolution", "GTPS")
        ERC20Permit("GlobalTransactionPaymentSolution")
    {
        _mint(msg.sender, 90000000 * 10 ** decimals());
    }

    function snapshot() public onlyOwner {
        _snapshot();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Snapshot)
    {
        super._beforeTokenTransfer(from, to, amount);
    }

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._burn(account, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b506040518060400160405280602081526020017f476c6f62616c5472616e73616374696f6e5061796d656e74536f6c7574696f6e815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280602081526020017f476c6f62616c5472616e73616374696f6e5061796d656e74536f6c7574696f6e8152506040518060400160405280600481526020017f475450530000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010492919062000ffa565b5080600490805190602001906200011d92919062000ffa565b50505062000140620001346200023c60201b60201c565b6200024460201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001a98184846200030a60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505080610120818152505050505050505062000236336200020b6200034660201b60201c565b600a62000219919062001371565b63055d4a806200022a9190620014ae565b6200034f60201b60201c565b62001756565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600083838346306040516020016200032795949392919062001179565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b6200036682826200036a60201b620017321760201c565b5050565b6200038182826200042860201b620017bf1760201c565b62000391620005a160201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620003bf620005c560201b60201c565b111562000403576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fa90620011d6565b60405180910390fd5b62000422600e620005cf60201b6200191f1783620005e760201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200049b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000492906200123c565b60405180910390fd5b620004af600083836200090460201b60201c565b8060026000828254620004c39190620012b9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200051a9190620012b9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200058191906200125e565b60405180910390a36200059d600083836200092160201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b60008183620005df9190620012b9565b905092915050565b600080600085805490509050600081146200068057856001826200060c91906200150f565b8154811062000644577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000683565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250620006af83858760201c565b91506000811180156200072c57504386600183620006ce91906200150f565b8154811062000706577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15620007f15762000748826200093e60201b620019351760201c565b866001836200075891906200150f565b8154811062000790577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550620008fb565b8560405180604001604052806200081343620009ac60201b620019a01760201c565b63ffffffff16815260200162000834856200093e60201b620019351760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b6200091c83838362000a0260201b620019f31760201c565b505050565b6200093983838362000afd60201b62001aad1760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115620009a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099b90620011f8565b60405180910390fd5b819050919050565b600063ffffffff8016821115620009fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f1906200121a565b60405180910390fd5b819050919050565b62000a1a83838362000b4d60201b62001ad81760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000a775762000a618262000b5260201b60201c565b62000a7162000bb560201b60201c565b62000af8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad45762000abe8362000b5260201b60201c565b62000ace62000bb560201b60201c565b62000af7565b62000ae58362000b5260201b60201c565b62000af68262000b5260201b60201c565b5b5b505050565b62000b1583838362000bd960201b62001add1760201c565b62000b4862000b2a8462000bde60201b60201c565b62000b3b8462000bde60201b60201c565b8362000c4760201b60201c565b505050565b505050565b62000bb2600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000ba68362000e6a60201b60201c565b62000eb260201b60201c565b50565b62000bd7600662000bcb620005c560201b60201c565b62000eb260201b60201c565b565b505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000c845750600081115b1562000e6557600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000d775760008062000d1e600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000f3e60201b62001ae21785620005e760201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000d6c9291906200127b565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000e645760008062000e0b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620005cf60201b6200191f1785620005e760201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000e599291906200127b565b60405180910390a250505b5b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600062000ec462000f5660201b60201c565b90508062000edb8460000162000f7460201b60201c565b101562000f395782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000818362000f4e91906200150f565b905092915050565b600062000f6f600862000fec60201b62001af81760201c565b905090565b6000808280549050141562000f8d576000905062000fe7565b816001838054905062000fa191906200150f565b8154811062000fd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b600081600001549050919050565b82805462001008906200159f565b90600052602060002090601f0160209004810192826200102c576000855562001078565b82601f106200104757805160ff191683800117855562001078565b8280016001018555821562001078579182015b82811115620010775782518255916020019190600101906200105a565b5b5090506200108791906200108b565b5090565b5b80821115620010a65760008160009055506001016200108c565b5090565b620010b5816200154a565b82525050565b620010c6816200155e565b82525050565b6000620010db603083620012a8565b9150620010e88262001640565b604082019050919050565b600062001102602783620012a8565b91506200110f826200168f565b604082019050919050565b600062001129602683620012a8565b91506200113682620016de565b604082019050919050565b600062001150601f83620012a8565b91506200115d826200172d565b602082019050919050565b620011738162001588565b82525050565b600060a082019050620011906000830188620010bb565b6200119f6020830187620010bb565b620011ae6040830186620010bb565b620011bd606083018562001168565b620011cc6080830184620010aa565b9695505050505050565b60006020820190508181036000830152620011f181620010cc565b9050919050565b600060208201905081810360008301526200121381620010f3565b9050919050565b6000602082019050818103600083015262001235816200111a565b9050919050565b60006020820190508181036000830152620012578162001141565b9050919050565b600060208201905062001275600083018462001168565b92915050565b600060408201905062001292600083018562001168565b620012a1602083018462001168565b9392505050565b600082825260208201905092915050565b6000620012c68262001588565b9150620012d38362001588565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200130b576200130a620015d5565b5b828201905092915050565b6000808291508390505b6001851115620013685780860481111562001340576200133f620015d5565b5b6001851615620013505780820291505b8081029050620013608562001633565b945062001320565b94509492505050565b60006200137e8262001588565b91506200138b8362001592565b9250620013ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620013c2565b905092915050565b600082620013d45760019050620014a7565b81620013e45760009050620014a7565b8160018114620013fd576002811462001408576200143e565b6001915050620014a7565b60ff8411156200141d576200141c620015d5565b5b8360020a915084821115620014375762001436620015d5565b5b50620014a7565b5060208310610133831016604e8410600b8410161715620014785782820a905083811115620014725762001471620015d5565b5b620014a7565b62001487848484600162001316565b92509050818404811115620014a157620014a0620015d5565b5b81810290505b9392505050565b6000620014bb8262001588565b9150620014c88362001588565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620015045762001503620015d5565b5b828202905092915050565b60006200151c8262001588565b9150620015298362001588565b9250828210156200153f576200153e620015d5565b5b828203905092915050565b6000620015578262001568565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620015b857607f821691505b60208210811415620015cf57620015ce62001604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160a05160c05160601c60e0516101005161012051614fb5620017a96000396000612094015260006120d6015260006120b501526000611fea01526000612040015260006120690152614fb56000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf1461065f578063d9d98ce41461067b578063dd62ed3e146106ab578063f1127ed8146106db578063f2fde38b1461070b57610206565b80639ab24eb0146105b3578063a457c2d7146105e3578063a9059cbb14610613578063c3cda5201461064357610206565b80638e539e8c116100e95780638e539e8c1461052b57806395d89b411461055b5780639711715a14610579578063981b24d01461058357610206565b8063715018a6146104b757806379cc6790146104c15780637ecebe00146104dd5780638da5cb5b1461050d57610206565b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c146103db5780635cffe9de146103f7578063613255ab146104275780636fcfff451461045757806370a082311461048757610206565b806340c10f191461034357806342966c681461035f5780634ee2cd7e1461037b578063587cde1e146103ab57610206565b8063313ce567116101d9578063313ce567146102a75780633644e515146102c557806339509351146102e35780633a46b1a81461031357610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b610213610727565b60405161022091906140b8565b60405180910390f35b610243600480360381019061023e9190613785565b6107b9565b6040516102509190613f44565b60405180910390f35b6102616107dc565b60405161026e9190614495565b60405180910390f35b610291600480360381019061028c9190613698565b6107e6565b60405161029e9190613f44565b60405180910390f35b6102af610815565b6040516102bc91906144f4565b60405180910390f35b6102cd61081e565b6040516102da9190613f5f565b60405180910390f35b6102fd60048036038101906102f89190613785565b61082d565b60405161030a9190613f44565b60405180910390f35b61032d60048036038101906103289190613785565b610864565b60405161033a9190614495565b60405180910390f35b61035d60048036038101906103589190613785565b6108f8565b005b6103796004803603810190610374919061392f565b610982565b005b61039560048036038101906103909190613785565b610996565b6040516103a29190614495565b60405180910390f35b6103c560048036038101906103c09190613633565b610a06565b6040516103d29190613ecd565b60405180910390f35b6103f560048036038101906103f09190613633565b610a6f565b005b610411600480360381019061040c91906138af565b610a83565b60405161041e9190613f44565b60405180910390f35b610441600480360381019061043c9190613633565b610c17565b60405161044e9190614495565b60405180910390f35b610471600480360381019061046c9190613633565b610c8e565b60405161047e91906144d9565b60405180910390f35b6104a1600480360381019061049c9190613633565b610ce2565b6040516104ae9190614495565b60405180910390f35b6104bf610d2a565b005b6104db60048036038101906104d69190613785565b610db2565b005b6104f760048036038101906104f29190613633565b610dd2565b6040516105049190614495565b60405180910390f35b610515610e22565b6040516105229190613ecd565b60405180910390f35b6105456004803603810190610540919061392f565b610e4c565b6040516105529190614495565b60405180910390f35b610563610ea2565b60405161057091906140b8565b60405180910390f35b610581610f34565b005b61059d6004803603810190610598919061392f565b610fbb565b6040516105aa9190614495565b60405180910390f35b6105cd60048036038101906105c89190613633565b610fec565b6040516105da9190614495565b60405180910390f35b6105fd60048036038101906105f89190613785565b611123565b60405161060a9190613f44565b60405180910390f35b61062d60048036038101906106289190613785565b61119a565b60405161063a9190613f44565b60405180910390f35b61065d600480360381019061065891906137c1565b6111bd565b005b610679600480360381019061067491906136e7565b6112c1565b005b61069560048036038101906106909190613785565b611403565b6040516106a29190614495565b60405180910390f35b6106c560048036038101906106c0919061365c565b61147d565b6040516106d29190614495565b60405180910390f35b6106f560048036038101906106f0919061384a565b611504565b604051610702919061447a565b60405180910390f35b61072560048036038101906107209190613633565b61163a565b005b606060038054610736906146ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906146ed565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000806107c4611b06565b90506107d1818585611b0e565b600191505092915050565b6000600254905090565b6000806107f1611b06565b90506107fe858285611cd9565b610809858585611d65565b60019150509392505050565b60006012905090565b6000610828611fe6565b905090565b600080610838611b06565b905061085981858561084a858961147d565b6108549190614547565b611b0e565b600191505092915050565b60004382106108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f9061413a565b60405180910390fd5b6108f0600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612100565b905092915050565b610900611b06565b73ffffffffffffffffffffffffffffffffffffffff1661091e610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b9061433a565b60405180910390fd5b61097e8282612258565b5050565b61099361098d611b06565b82612266565b50565b60008060006109e384600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612274565b91509150816109fa576109f585610ce2565b6109fc565b805b9250505092915050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a80610a7a611b06565b82612390565b50565b6000610a8e85610c17565b841115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061437a565b60405180910390fd5b6000610adc8686611403565b9050610ae88786612258565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b8152600401610b4c96959493929190613ee8565b602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e9190613886565b14610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061429a565b60405180910390fd5b610bf487308388610bef9190614547565b611cd9565b610c09878287610c049190614547565b612266565b600191505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610c53576000610c87565b610c5b6107dc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610c8691906145ce565b5b9050919050565b6000610cdb600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506119a0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d32611b06565b73ffffffffffffffffffffffffffffffffffffffff16610d50610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061433a565b60405180910390fd5b610db060006124aa565b565b610dc482610dbe611b06565b83611cd9565b610dce8282612266565b5050565b6000610e1b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611af8565b9050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061413a565b60405180910390fd5b610e9b600e83612100565b9050919050565b606060048054610eb1906146ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd906146ed565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050505050905090565b610f3c611b06565b73ffffffffffffffffffffffffffffffffffffffff16610f5a610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061433a565b60405180910390fd5b610fb8612570565b50565b6000806000610fcb846006612274565b9150915081610fe157610fdc6107dc565b610fe3565b805b92505050919050565b600080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146110fa57600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261108891906145ce565b815481106110bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166110fd565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b60008061112e611b06565b9050600061113c828661147d565b905083811015611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061443a565b60405180910390fd5b61118e8286868403611b0e565b60019250505092915050565b6000806111a5611b06565b90506111b2818585611d65565b600191505092915050565b83421115611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061415a565b60405180910390fd5b600061126261125a7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf89898960405160200161123f9493929190613fdb565b604051602081830303815290604052805190602001206125c6565b8585856125e0565b905061126d8161260b565b86146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906141ba565b60405180910390fd5b6112b88188612390565b50505050505050565b83421115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061423a565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886113338c61260b565b8960405160200161134996959493929190613f7a565b604051602081830303815290604052805190602001209050600061136c826125c6565b9050600061137c828787876125e0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e3906142fa565b60405180910390fd5b6113f78a8a8a611b0e565b50505050505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906142ba565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61150c613518565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611589577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611642611b06565b73ffffffffffffffffffffffffffffffffffffffff16611660610e22565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061433a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d906141da565b60405180910390fd5b61172f816124aa565b50565b61173c82826117bf565b611744612669565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661176a6107dc565b11156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061431a565b60405180910390fd5b6117b9600e61191f8361268d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118269061445a565b60405180910390fd5b61183b60008383612977565b806002600082825461184d9190614547565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190614547565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119079190614495565b60405180910390a361191b60008383612987565b5050565b6000818361192d9190614547565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061435a565b60405180910390fd5b819050919050565b600063ffffffff80168211156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906143da565b60405180910390fd5b819050919050565b6119fe838383611ad8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a4957611a3c82612997565b611a446129ea565b611aa8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9457611a8783612997565b611a8f6129ea565b611aa7565b611a9d83612997565b611aa682612997565b5b5b505050565b611ab8838383611add565b611ad3611ac484610a06565b611acd84610a06565b836129fe565b505050565b505050565b505050565b60008183611af091906145ce565b905092915050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b75906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906141fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ccc9190614495565b60405180910390a3505050565b6000611ce5848461147d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d5f5781811015611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061421a565b60405180910390fd5b611d5e8484848403611b0e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906143ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9061411a565b60405180910390fd5b611e50838383612977565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd9061425a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f699190614547565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fcd9190614495565b60405180910390a3611fe0848484612987565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561206257507f000000000000000000000000000000000000000000000000000000000000000046145b1561208f577f000000000000000000000000000000000000000000000000000000000000000090506120fd565b6120fa7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612bf7565b90505b90565b6000808380549050905060005b818110156121a55760006121218284612c31565b90508486828154811061215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16111561218f5780925061219f565b60018161219c9190614547565b91505b5061210d565b6000821461222d57846001836121bb91906145ce565b815481106121f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612230565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b6122628282611732565b5050565b6122708282612c57565b5050565b600080600084116122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b19061441a565b60405180910390fd5b6122c2612c75565b841115612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906140fa565b60405180910390fd5b600061231c8585600001612c8690919063ffffffff16565b9050836000018054905081141561233a576000809250925050612389565b6001846001018281548110612378577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600061239b83610a06565b905060006123a884610ce2565b905082600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46124a48284836129fe565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061257c6008612dac565b6000612586612c75565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516125b79190614495565b60405180910390a18091505090565b60006125d96125d3611fe6565b83612dc2565b9050919050565b60008060006125f187878787612df5565b915091506125fe81612f02565b8192505050949350505050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061265881611af8565b915061266381612dac565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000806000858054905090506000811461272157856001826126af91906145ce565b815481106126e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612724565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061275283858763ffffffff16565b91506000811180156127cb5750438660018361276e91906145ce565b815481106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561287e576127d982611935565b866001836127e791906145ce565b8154811061281e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555061296e565b856040518060400160405280612893436119a0565b63ffffffff1681526020016128a785611935565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b6129828383836119f3565b505050565b612992838383611aad565b505050565b6129e7600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129e283610ce2565b613253565b50565b6129fc60066129f76107dc565b613253565b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a3a5750600081115b15612bf257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b1857600080612ac1600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ae28561268d565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612b0d9291906144b0565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bf157600080612b9a600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061191f8561268d565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612be69291906144b0565b60405180910390a250505b5b505050565b60008383834630604051602001612c12959493929190614020565b6040516020818303038152906040528051906020012090509392505050565b60006002828418612c42919061459d565b828416612c4f9190614547565b905092915050565b612c6182826132ce565b612c6f600e611ae28361268d565b50505050565b6000612c816008611af8565b905090565b60008083805490501415612c9d5760009050612da6565b600080848054905090505b80821015612d27576000612cbc8383612c31565b905084868281548110612cf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115612d1157809150612d21565b600181612d1e9190614547565b92505b50612ca8565b600082118015612d8557508385600184612d4191906145ce565b81548110612d78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15612da057600182612d9791906145ce565b92505050612da6565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612dd7929190613e96565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e30576000600391509150612ef9565b601b8560ff1614158015612e485750601c8560ff1614155b15612e5a576000600491509150612ef9565b600060018787878760405160008152602001604052604051612e7f9493929190614073565b6020604051602081039080840390855afa158015612ea1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ef057600060019250925050612ef9565b80600092509250505b94509492505050565b60006004811115612f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612f8057613250565b60016004811115612fba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906140da565b60405180910390fd5b6002600481111561306e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156130a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156130e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130df9061419a565b60405180910390fd5b60036004811115613122577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561315b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561319c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131939061427a565b60405180910390fd5b6004808111156131d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561320e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561324f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613246906142da565b60405180910390fd5b5b50565b600061325d612c75565b90508061326c846000016134a5565b10156132c95782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133359061439a565b60405180910390fd5b61334a82600083612977565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c79061417a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461342791906145ce565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161348c9190614495565b60405180910390a36134a083600084612987565b505050565b600080828054905014156134bc5760009050613513565b81600183805490506134ce91906145ce565b81548110613505577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061356581614ef5565b92915050565b60008135905061357a81614f0c565b92915050565b60008151905061358f81614f0c565b92915050565b60008083601f8401126135a757600080fd5b8235905067ffffffffffffffff8111156135c057600080fd5b6020830191508360018202830111156135d857600080fd5b9250929050565b6000813590506135ee81614f23565b92915050565b60008135905061360381614f3a565b92915050565b60008135905061361881614f51565b92915050565b60008135905061362d81614f68565b92915050565b60006020828403121561364557600080fd5b600061365384828501613556565b91505092915050565b6000806040838503121561366f57600080fd5b600061367d85828601613556565b925050602061368e85828601613556565b9150509250929050565b6000806000606084860312156136ad57600080fd5b60006136bb86828701613556565b93505060206136cc86828701613556565b92505060406136dd868287016135f4565b9150509250925092565b600080600080600080600060e0888a03121561370257600080fd5b60006137108a828b01613556565b97505060206137218a828b01613556565b96505060406137328a828b016135f4565b95505060606137438a828b016135f4565b94505060806137548a828b0161361e565b93505060a06137658a828b0161356b565b92505060c06137768a828b0161356b565b91505092959891949750929550565b6000806040838503121561379857600080fd5b60006137a685828601613556565b92505060206137b7858286016135f4565b9150509250929050565b60008060008060008060c087890312156137da57600080fd5b60006137e889828a01613556565b96505060206137f989828a016135f4565b955050604061380a89828a016135f4565b945050606061381b89828a0161361e565b935050608061382c89828a0161356b565b92505060a061383d89828a0161356b565b9150509295509295509295565b6000806040838503121561385d57600080fd5b600061386b85828601613556565b925050602061387c85828601613609565b9150509250929050565b60006020828403121561389857600080fd5b60006138a684828501613580565b91505092915050565b6000806000806000608086880312156138c757600080fd5b60006138d5888289016135df565b95505060206138e688828901613556565b94505060406138f7888289016135f4565b935050606086013567ffffffffffffffff81111561391457600080fd5b61392088828901613595565b92509250509295509295909350565b60006020828403121561394157600080fd5b600061394f848285016135f4565b91505092915050565b61396181614602565b82525050565b61397081614614565b82525050565b61397f81614620565b82525050565b61399661399182614620565b61471f565b82525050565b60006139a8838561451a565b93506139b58385846146ab565b6139be836147b6565b840190509392505050565b60006139d48261450f565b6139de818561452b565b93506139ee8185602086016146ba565b6139f7816147b6565b840191505092915050565b6000613a0f60188361452b565b9150613a1a826147c7565b602082019050919050565b6000613a32601d8361452b565b9150613a3d826147f0565b602082019050919050565b6000613a5560238361452b565b9150613a6082614819565b604082019050919050565b6000613a78601f8361452b565b9150613a8382614868565b602082019050919050565b6000613a9b601d8361452b565b9150613aa682614891565b602082019050919050565b6000613abe60228361452b565b9150613ac9826148ba565b604082019050919050565b6000613ae1601f8361452b565b9150613aec82614909565b602082019050919050565b6000613b0460198361452b565b9150613b0f82614932565b602082019050919050565b6000613b2760268361452b565b9150613b328261495b565b604082019050919050565b6000613b4a60228361452b565b9150613b55826149aa565b604082019050919050565b6000613b6d60028361453c565b9150613b78826149f9565b600282019050919050565b6000613b90601d8361452b565b9150613b9b82614a22565b602082019050919050565b6000613bb3601d8361452b565b9150613bbe82614a4b565b602082019050919050565b6000613bd660268361452b565b9150613be182614a74565b604082019050919050565b6000613bf960228361452b565b9150613c0482614ac3565b604082019050919050565b6000613c1c60248361452b565b9150613c2782614b12565b604082019050919050565b6000613c3f601b8361452b565b9150613c4a82614b61565b602082019050919050565b6000613c6260228361452b565b9150613c6d82614b8a565b604082019050919050565b6000613c85601e8361452b565b9150613c9082614bd9565b602082019050919050565b6000613ca860308361452b565b9150613cb382614c02565b604082019050919050565b6000613ccb60208361452b565b9150613cd682614c51565b602082019050919050565b6000613cee60278361452b565b9150613cf982614c7a565b604082019050919050565b6000613d11602b8361452b565b9150613d1c82614cc9565b604082019050919050565b6000613d3460218361452b565b9150613d3f82614d18565b604082019050919050565b6000613d5760258361452b565b9150613d6282614d67565b604082019050919050565b6000613d7a60268361452b565b9150613d8582614db6565b604082019050919050565b6000613d9d60248361452b565b9150613da882614e05565b604082019050919050565b6000613dc060168361452b565b9150613dcb82614e54565b602082019050919050565b6000613de360258361452b565b9150613dee82614e7d565b604082019050919050565b6000613e06601f8361452b565b9150613e1182614ecc565b602082019050919050565b604082016000820151613e326000850182613e69565b506020820151613e456020850182613e4b565b50505050565b613e548161465c565b82525050565b613e6381614684565b82525050565b613e728161468e565b82525050565b613e818161468e565b82525050565b613e908161469e565b82525050565b6000613ea182613b60565b9150613ead8285613985565b602082019150613ebd8284613985565b6020820191508190509392505050565b6000602082019050613ee26000830184613958565b92915050565b600060a082019050613efd6000830189613958565b613f0a6020830188613958565b613f176040830187613e5a565b613f246060830186613e5a565b8181036080830152613f3781848661399c565b9050979650505050505050565b6000602082019050613f596000830184613967565b92915050565b6000602082019050613f746000830184613976565b92915050565b600060c082019050613f8f6000830189613976565b613f9c6020830188613958565b613fa96040830187613958565b613fb66060830186613e5a565b613fc36080830185613e5a565b613fd060a0830184613e5a565b979650505050505050565b6000608082019050613ff06000830187613976565b613ffd6020830186613958565b61400a6040830185613e5a565b6140176060830184613e5a565b95945050505050565b600060a0820190506140356000830188613976565b6140426020830187613976565b61404f6040830186613976565b61405c6060830185613e5a565b6140696080830184613958565b9695505050505050565b60006080820190506140886000830187613976565b6140956020830186613e87565b6140a26040830185613976565b6140af6060830184613976565b95945050505050565b600060208201905081810360008301526140d281846139c9565b905092915050565b600060208201905081810360008301526140f381613a02565b9050919050565b6000602082019050818103600083015261411381613a25565b9050919050565b6000602082019050818103600083015261413381613a48565b9050919050565b6000602082019050818103600083015261415381613a6b565b9050919050565b6000602082019050818103600083015261417381613a8e565b9050919050565b6000602082019050818103600083015261419381613ab1565b9050919050565b600060208201905081810360008301526141b381613ad4565b9050919050565b600060208201905081810360008301526141d381613af7565b9050919050565b600060208201905081810360008301526141f381613b1a565b9050919050565b6000602082019050818103600083015261421381613b3d565b9050919050565b6000602082019050818103600083015261423381613b83565b9050919050565b6000602082019050818103600083015261425381613ba6565b9050919050565b6000602082019050818103600083015261427381613bc9565b9050919050565b6000602082019050818103600083015261429381613bec565b9050919050565b600060208201905081810360008301526142b381613c0f565b9050919050565b600060208201905081810360008301526142d381613c32565b9050919050565b600060208201905081810360008301526142f381613c55565b9050919050565b6000602082019050818103600083015261431381613c78565b9050919050565b6000602082019050818103600083015261433381613c9b565b9050919050565b6000602082019050818103600083015261435381613cbe565b9050919050565b6000602082019050818103600083015261437381613ce1565b9050919050565b6000602082019050818103600083015261439381613d04565b9050919050565b600060208201905081810360008301526143b381613d27565b9050919050565b600060208201905081810360008301526143d381613d4a565b9050919050565b600060208201905081810360008301526143f381613d6d565b9050919050565b6000602082019050818103600083015261441381613d90565b9050919050565b6000602082019050818103600083015261443381613db3565b9050919050565b6000602082019050818103600083015261445381613dd6565b9050919050565b6000602082019050818103600083015261447381613df9565b9050919050565b600060408201905061448f6000830184613e1c565b92915050565b60006020820190506144aa6000830184613e5a565b92915050565b60006040820190506144c56000830185613e5a565b6144d26020830184613e5a565b9392505050565b60006020820190506144ee6000830184613e78565b92915050565b60006020820190506145096000830184613e87565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061455282614684565b915061455d83614684565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561459257614591614729565b5b828201905092915050565b60006145a882614684565b91506145b383614684565b9250826145c3576145c2614758565b5b828204905092915050565b60006145d982614684565b91506145e483614684565b9250828210156145f7576145f6614729565b5b828203905092915050565b600061460d8261463c565b9050919050565b60008115159050919050565b6000819050919050565b600061463582614602565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156146d85780820151818401526020810190506146bd565b838111156146e7576000848401525b50505050565b6000600282049050600182168061470557607f821691505b6020821081141561471957614718614787565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b614efe81614602565b8114614f0957600080fd5b50565b614f1581614620565b8114614f2057600080fd5b50565b614f2c8161462a565b8114614f3757600080fd5b50565b614f4381614684565b8114614f4e57600080fd5b50565b614f5a8161468e565b8114614f6557600080fd5b50565b614f718161469e565b8114614f7c57600080fd5b5056fea2646970667358221220acb1b1c90afb606e7c49d98fcceae636b6bd3b234223daebc7a0fe25e60fede864736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf1461065f578063d9d98ce41461067b578063dd62ed3e146106ab578063f1127ed8146106db578063f2fde38b1461070b57610206565b80639ab24eb0146105b3578063a457c2d7146105e3578063a9059cbb14610613578063c3cda5201461064357610206565b80638e539e8c116100e95780638e539e8c1461052b57806395d89b411461055b5780639711715a14610579578063981b24d01461058357610206565b8063715018a6146104b757806379cc6790146104c15780637ecebe00146104dd5780638da5cb5b1461050d57610206565b806340c10f191161019d5780635c19a95c1161016c5780635c19a95c146103db5780635cffe9de146103f7578063613255ab146104275780636fcfff451461045757806370a082311461048757610206565b806340c10f191461034357806342966c681461035f5780634ee2cd7e1461037b578063587cde1e146103ab57610206565b8063313ce567116101d9578063313ce567146102a75780633644e515146102c557806339509351146102e35780633a46b1a81461031357610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461025957806323b872dd14610277575b600080fd5b610213610727565b60405161022091906140b8565b60405180910390f35b610243600480360381019061023e9190613785565b6107b9565b6040516102509190613f44565b60405180910390f35b6102616107dc565b60405161026e9190614495565b60405180910390f35b610291600480360381019061028c9190613698565b6107e6565b60405161029e9190613f44565b60405180910390f35b6102af610815565b6040516102bc91906144f4565b60405180910390f35b6102cd61081e565b6040516102da9190613f5f565b60405180910390f35b6102fd60048036038101906102f89190613785565b61082d565b60405161030a9190613f44565b60405180910390f35b61032d60048036038101906103289190613785565b610864565b60405161033a9190614495565b60405180910390f35b61035d60048036038101906103589190613785565b6108f8565b005b6103796004803603810190610374919061392f565b610982565b005b61039560048036038101906103909190613785565b610996565b6040516103a29190614495565b60405180910390f35b6103c560048036038101906103c09190613633565b610a06565b6040516103d29190613ecd565b60405180910390f35b6103f560048036038101906103f09190613633565b610a6f565b005b610411600480360381019061040c91906138af565b610a83565b60405161041e9190613f44565b60405180910390f35b610441600480360381019061043c9190613633565b610c17565b60405161044e9190614495565b60405180910390f35b610471600480360381019061046c9190613633565b610c8e565b60405161047e91906144d9565b60405180910390f35b6104a1600480360381019061049c9190613633565b610ce2565b6040516104ae9190614495565b60405180910390f35b6104bf610d2a565b005b6104db60048036038101906104d69190613785565b610db2565b005b6104f760048036038101906104f29190613633565b610dd2565b6040516105049190614495565b60405180910390f35b610515610e22565b6040516105229190613ecd565b60405180910390f35b6105456004803603810190610540919061392f565b610e4c565b6040516105529190614495565b60405180910390f35b610563610ea2565b60405161057091906140b8565b60405180910390f35b610581610f34565b005b61059d6004803603810190610598919061392f565b610fbb565b6040516105aa9190614495565b60405180910390f35b6105cd60048036038101906105c89190613633565b610fec565b6040516105da9190614495565b60405180910390f35b6105fd60048036038101906105f89190613785565b611123565b60405161060a9190613f44565b60405180910390f35b61062d60048036038101906106289190613785565b61119a565b60405161063a9190613f44565b60405180910390f35b61065d600480360381019061065891906137c1565b6111bd565b005b610679600480360381019061067491906136e7565b6112c1565b005b61069560048036038101906106909190613785565b611403565b6040516106a29190614495565b60405180910390f35b6106c560048036038101906106c0919061365c565b61147d565b6040516106d29190614495565b60405180910390f35b6106f560048036038101906106f0919061384a565b611504565b604051610702919061447a565b60405180910390f35b61072560048036038101906107209190613633565b61163a565b005b606060038054610736906146ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610762906146ed565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6000806107c4611b06565b90506107d1818585611b0e565b600191505092915050565b6000600254905090565b6000806107f1611b06565b90506107fe858285611cd9565b610809858585611d65565b60019150509392505050565b60006012905090565b6000610828611fe6565b905090565b600080610838611b06565b905061085981858561084a858961147d565b6108549190614547565b611b0e565b600191505092915050565b60004382106108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f9061413a565b60405180910390fd5b6108f0600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612100565b905092915050565b610900611b06565b73ffffffffffffffffffffffffffffffffffffffff1661091e610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b9061433a565b60405180910390fd5b61097e8282612258565b5050565b61099361098d611b06565b82612266565b50565b60008060006109e384600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612274565b91509150816109fa576109f585610ce2565b6109fc565b805b9250505092915050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a80610a7a611b06565b82612390565b50565b6000610a8e85610c17565b841115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061437a565b60405180910390fd5b6000610adc8686611403565b9050610ae88786612258565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b8152600401610b4c96959493929190613ee8565b602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e9190613886565b14610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd59061429a565b60405180910390fd5b610bf487308388610bef9190614547565b611cd9565b610c09878287610c049190614547565b612266565b600191505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610c53576000610c87565b610c5b6107dc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610c8691906145ce565b5b9050919050565b6000610cdb600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506119a0565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d32611b06565b73ffffffffffffffffffffffffffffffffffffffff16610d50610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061433a565b60405180910390fd5b610db060006124aa565b565b610dc482610dbe611b06565b83611cd9565b610dce8282612266565b5050565b6000610e1b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611af8565b9050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061413a565b60405180910390fd5b610e9b600e83612100565b9050919050565b606060048054610eb1906146ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610edd906146ed565b8015610f2a5780601f10610eff57610100808354040283529160200191610f2a565b820191906000526020600020905b815481529060010190602001808311610f0d57829003601f168201915b5050505050905090565b610f3c611b06565b73ffffffffffffffffffffffffffffffffffffffff16610f5a610e22565b73ffffffffffffffffffffffffffffffffffffffff1614610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa79061433a565b60405180910390fd5b610fb8612570565b50565b6000806000610fcb846006612274565b9150915081610fe157610fdc6107dc565b610fe3565b805b92505050919050565b600080600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146110fa57600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261108891906145ce565b815481106110bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166110fd565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b60008061112e611b06565b9050600061113c828661147d565b905083811015611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061443a565b60405180910390fd5b61118e8286868403611b0e565b60019250505092915050565b6000806111a5611b06565b90506111b2818585611d65565b600191505092915050565b83421115611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f79061415a565b60405180910390fd5b600061126261125a7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf89898960405160200161123f9493929190613fdb565b604051602081830303815290604052805190602001206125c6565b8585856125e0565b905061126d8161260b565b86146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906141ba565b60405180910390fd5b6112b88188612390565b50505050505050565b83421115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061423a565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886113338c61260b565b8960405160200161134996959493929190613f7a565b604051602081830303815290604052805190602001209050600061136c826125c6565b9050600061137c828787876125e0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e3906142fa565b60405180910390fd5b6113f78a8a8a611b0e565b50505050505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906142ba565b60405180910390fd5b6000905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61150c613518565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611589577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611642611b06565b73ffffffffffffffffffffffffffffffffffffffff16611660610e22565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad9061433a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d906141da565b60405180910390fd5b61172f816124aa565b50565b61173c82826117bf565b611744612669565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661176a6107dc565b11156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061431a565b60405180910390fd5b6117b9600e61191f8361268d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561182f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118269061445a565b60405180910390fd5b61183b60008383612977565b806002600082825461184d9190614547565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190614547565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516119079190614495565b60405180910390a361191b60008383612987565b5050565b6000818361192d9190614547565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061435a565b60405180910390fd5b819050919050565b600063ffffffff80168211156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906143da565b60405180910390fd5b819050919050565b6119fe838383611ad8565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a4957611a3c82612997565b611a446129ea565b611aa8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9457611a8783612997565b611a8f6129ea565b611aa7565b611a9d83612997565b611aa682612997565b5b5b505050565b611ab8838383611add565b611ad3611ac484610a06565b611acd84610a06565b836129fe565b505050565b505050565b505050565b60008183611af091906145ce565b905092915050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b75906143fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906141fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ccc9190614495565b60405180910390a3505050565b6000611ce5848461147d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d5f5781811015611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061421a565b60405180910390fd5b611d5e8484848403611b0e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc906143ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c9061411a565b60405180910390fd5b611e50838383612977565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd9061425a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f699190614547565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fcd9190614495565b60405180910390a3611fe0848484612987565b50505050565b60007f0000000000000000000000009427a2a738affbc5880f0646b5251069c022e52573ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561206257507f000000000000000000000000000000000000000000000000000000000000000a46145b1561208f577fc79651c185723d9edf67c91c5ce49d95bc5b687769dbf9efb05f7dc451d46dd790506120fd565b6120fa7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f559ad240efd8fd2f29fdb9ddeff921d9cf58cc759bcede75f26dc72a5950aae17fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6612bf7565b90505b90565b6000808380549050905060005b818110156121a55760006121218284612c31565b90508486828154811061215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16111561218f5780925061219f565b60018161219c9190614547565b91505b5061210d565b6000821461222d57846001836121bb91906145ce565b815481106121f2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612230565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b6122628282611732565b5050565b6122708282612c57565b5050565b600080600084116122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b19061441a565b60405180910390fd5b6122c2612c75565b841115612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb906140fa565b60405180910390fd5b600061231c8585600001612c8690919063ffffffff16565b9050836000018054905081141561233a576000809250925050612389565b6001846001018281548110612378577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600061239b83610a06565b905060006123a884610ce2565b905082600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46124a48284836129fe565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061257c6008612dac565b6000612586612c75565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516125b79190614495565b60405180910390a18091505090565b60006125d96125d3611fe6565b83612dc2565b9050919050565b60008060006125f187878787612df5565b915091506125fe81612f02565b8192505050949350505050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061265881611af8565b915061266381612dac565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000806000858054905090506000811461272157856001826126af91906145ce565b815481106126e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612724565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061275283858763ffffffff16565b91506000811180156127cb5750438660018361276e91906145ce565b815481106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561287e576127d982611935565b866001836127e791906145ce565b8154811061281e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555061296e565b856040518060400160405280612893436119a0565b63ffffffff1681526020016128a785611935565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b6129828383836119f3565b505050565b612992838383611aad565b505050565b6129e7600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206129e283610ce2565b613253565b50565b6129fc60066129f76107dc565b613253565b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a3a5750600081115b15612bf257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b1857600080612ac1600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611ae28561268d565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612b0d9291906144b0565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bf157600080612b9a600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061191f8561268d565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612be69291906144b0565b60405180910390a250505b5b505050565b60008383834630604051602001612c12959493929190614020565b6040516020818303038152906040528051906020012090509392505050565b60006002828418612c42919061459d565b828416612c4f9190614547565b905092915050565b612c6182826132ce565b612c6f600e611ae28361268d565b50505050565b6000612c816008611af8565b905090565b60008083805490501415612c9d5760009050612da6565b600080848054905090505b80821015612d27576000612cbc8383612c31565b905084868281548110612cf8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001541115612d1157809150612d21565b600181612d1e9190614547565b92505b50612ca8565b600082118015612d8557508385600184612d4191906145ce565b81548110612d78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b15612da057600182612d9791906145ce565b92505050612da6565b81925050505b92915050565b6001816000016000828254019250508190555050565b60008282604051602001612dd7929190613e96565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612e30576000600391509150612ef9565b601b8560ff1614158015612e485750601c8560ff1614155b15612e5a576000600491509150612ef9565b600060018787878760405160008152602001604052604051612e7f9493929190614073565b6020604051602081039080840390855afa158015612ea1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ef057600060019250925050612ef9565b80600092509250505b94509492505050565b60006004811115612f3c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612f8057613250565b60016004811115612fba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906140da565b60405180910390fd5b6002600481111561306e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156130a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156130e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130df9061419a565b60405180910390fd5b60036004811115613122577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561315b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561319c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131939061427a565b60405180910390fd5b6004808111156131d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561320e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561324f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613246906142da565b60405180910390fd5b5b50565b600061325d612c75565b90508061326c846000016134a5565b10156132c95782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561333e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133359061439a565b60405180910390fd5b61334a82600083612977565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c79061417a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461342791906145ce565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161348c9190614495565b60405180910390a36134a083600084612987565b505050565b600080828054905014156134bc5760009050613513565b81600183805490506134ce91906145ce565b81548110613505577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b60008135905061356581614ef5565b92915050565b60008135905061357a81614f0c565b92915050565b60008151905061358f81614f0c565b92915050565b60008083601f8401126135a757600080fd5b8235905067ffffffffffffffff8111156135c057600080fd5b6020830191508360018202830111156135d857600080fd5b9250929050565b6000813590506135ee81614f23565b92915050565b60008135905061360381614f3a565b92915050565b60008135905061361881614f51565b92915050565b60008135905061362d81614f68565b92915050565b60006020828403121561364557600080fd5b600061365384828501613556565b91505092915050565b6000806040838503121561366f57600080fd5b600061367d85828601613556565b925050602061368e85828601613556565b9150509250929050565b6000806000606084860312156136ad57600080fd5b60006136bb86828701613556565b93505060206136cc86828701613556565b92505060406136dd868287016135f4565b9150509250925092565b600080600080600080600060e0888a03121561370257600080fd5b60006137108a828b01613556565b97505060206137218a828b01613556565b96505060406137328a828b016135f4565b95505060606137438a828b016135f4565b94505060806137548a828b0161361e565b93505060a06137658a828b0161356b565b92505060c06137768a828b0161356b565b91505092959891949750929550565b6000806040838503121561379857600080fd5b60006137a685828601613556565b92505060206137b7858286016135f4565b9150509250929050565b60008060008060008060c087890312156137da57600080fd5b60006137e889828a01613556565b96505060206137f989828a016135f4565b955050604061380a89828a016135f4565b945050606061381b89828a0161361e565b935050608061382c89828a0161356b565b92505060a061383d89828a0161356b565b9150509295509295509295565b6000806040838503121561385d57600080fd5b600061386b85828601613556565b925050602061387c85828601613609565b9150509250929050565b60006020828403121561389857600080fd5b60006138a684828501613580565b91505092915050565b6000806000806000608086880312156138c757600080fd5b60006138d5888289016135df565b95505060206138e688828901613556565b94505060406138f7888289016135f4565b935050606086013567ffffffffffffffff81111561391457600080fd5b61392088828901613595565b92509250509295509295909350565b60006020828403121561394157600080fd5b600061394f848285016135f4565b91505092915050565b61396181614602565b82525050565b61397081614614565b82525050565b61397f81614620565b82525050565b61399661399182614620565b61471f565b82525050565b60006139a8838561451a565b93506139b58385846146ab565b6139be836147b6565b840190509392505050565b60006139d48261450f565b6139de818561452b565b93506139ee8185602086016146ba565b6139f7816147b6565b840191505092915050565b6000613a0f60188361452b565b9150613a1a826147c7565b602082019050919050565b6000613a32601d8361452b565b9150613a3d826147f0565b602082019050919050565b6000613a5560238361452b565b9150613a6082614819565b604082019050919050565b6000613a78601f8361452b565b9150613a8382614868565b602082019050919050565b6000613a9b601d8361452b565b9150613aa682614891565b602082019050919050565b6000613abe60228361452b565b9150613ac9826148ba565b604082019050919050565b6000613ae1601f8361452b565b9150613aec82614909565b602082019050919050565b6000613b0460198361452b565b9150613b0f82614932565b602082019050919050565b6000613b2760268361452b565b9150613b328261495b565b604082019050919050565b6000613b4a60228361452b565b9150613b55826149aa565b604082019050919050565b6000613b6d60028361453c565b9150613b78826149f9565b600282019050919050565b6000613b90601d8361452b565b9150613b9b82614a22565b602082019050919050565b6000613bb3601d8361452b565b9150613bbe82614a4b565b602082019050919050565b6000613bd660268361452b565b9150613be182614a74565b604082019050919050565b6000613bf960228361452b565b9150613c0482614ac3565b604082019050919050565b6000613c1c60248361452b565b9150613c2782614b12565b604082019050919050565b6000613c3f601b8361452b565b9150613c4a82614b61565b602082019050919050565b6000613c6260228361452b565b9150613c6d82614b8a565b604082019050919050565b6000613c85601e8361452b565b9150613c9082614bd9565b602082019050919050565b6000613ca860308361452b565b9150613cb382614c02565b604082019050919050565b6000613ccb60208361452b565b9150613cd682614c51565b602082019050919050565b6000613cee60278361452b565b9150613cf982614c7a565b604082019050919050565b6000613d11602b8361452b565b9150613d1c82614cc9565b604082019050919050565b6000613d3460218361452b565b9150613d3f82614d18565b604082019050919050565b6000613d5760258361452b565b9150613d6282614d67565b604082019050919050565b6000613d7a60268361452b565b9150613d8582614db6565b604082019050919050565b6000613d9d60248361452b565b9150613da882614e05565b604082019050919050565b6000613dc060168361452b565b9150613dcb82614e54565b602082019050919050565b6000613de360258361452b565b9150613dee82614e7d565b604082019050919050565b6000613e06601f8361452b565b9150613e1182614ecc565b602082019050919050565b604082016000820151613e326000850182613e69565b506020820151613e456020850182613e4b565b50505050565b613e548161465c565b82525050565b613e6381614684565b82525050565b613e728161468e565b82525050565b613e818161468e565b82525050565b613e908161469e565b82525050565b6000613ea182613b60565b9150613ead8285613985565b602082019150613ebd8284613985565b6020820191508190509392505050565b6000602082019050613ee26000830184613958565b92915050565b600060a082019050613efd6000830189613958565b613f0a6020830188613958565b613f176040830187613e5a565b613f246060830186613e5a565b8181036080830152613f3781848661399c565b9050979650505050505050565b6000602082019050613f596000830184613967565b92915050565b6000602082019050613f746000830184613976565b92915050565b600060c082019050613f8f6000830189613976565b613f9c6020830188613958565b613fa96040830187613958565b613fb66060830186613e5a565b613fc36080830185613e5a565b613fd060a0830184613e5a565b979650505050505050565b6000608082019050613ff06000830187613976565b613ffd6020830186613958565b61400a6040830185613e5a565b6140176060830184613e5a565b95945050505050565b600060a0820190506140356000830188613976565b6140426020830187613976565b61404f6040830186613976565b61405c6060830185613e5a565b6140696080830184613958565b9695505050505050565b60006080820190506140886000830187613976565b6140956020830186613e87565b6140a26040830185613976565b6140af6060830184613976565b95945050505050565b600060208201905081810360008301526140d281846139c9565b905092915050565b600060208201905081810360008301526140f381613a02565b9050919050565b6000602082019050818103600083015261411381613a25565b9050919050565b6000602082019050818103600083015261413381613a48565b9050919050565b6000602082019050818103600083015261415381613a6b565b9050919050565b6000602082019050818103600083015261417381613a8e565b9050919050565b6000602082019050818103600083015261419381613ab1565b9050919050565b600060208201905081810360008301526141b381613ad4565b9050919050565b600060208201905081810360008301526141d381613af7565b9050919050565b600060208201905081810360008301526141f381613b1a565b9050919050565b6000602082019050818103600083015261421381613b3d565b9050919050565b6000602082019050818103600083015261423381613b83565b9050919050565b6000602082019050818103600083015261425381613ba6565b9050919050565b6000602082019050818103600083015261427381613bc9565b9050919050565b6000602082019050818103600083015261429381613bec565b9050919050565b600060208201905081810360008301526142b381613c0f565b9050919050565b600060208201905081810360008301526142d381613c32565b9050919050565b600060208201905081810360008301526142f381613c55565b9050919050565b6000602082019050818103600083015261431381613c78565b9050919050565b6000602082019050818103600083015261433381613c9b565b9050919050565b6000602082019050818103600083015261435381613cbe565b9050919050565b6000602082019050818103600083015261437381613ce1565b9050919050565b6000602082019050818103600083015261439381613d04565b9050919050565b600060208201905081810360008301526143b381613d27565b9050919050565b600060208201905081810360008301526143d381613d4a565b9050919050565b600060208201905081810360008301526143f381613d6d565b9050919050565b6000602082019050818103600083015261441381613d90565b9050919050565b6000602082019050818103600083015261443381613db3565b9050919050565b6000602082019050818103600083015261445381613dd6565b9050919050565b6000602082019050818103600083015261447381613df9565b9050919050565b600060408201905061448f6000830184613e1c565b92915050565b60006020820190506144aa6000830184613e5a565b92915050565b60006040820190506144c56000830185613e5a565b6144d26020830184613e5a565b9392505050565b60006020820190506144ee6000830184613e78565b92915050565b60006020820190506145096000830184613e87565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061455282614684565b915061455d83614684565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561459257614591614729565b5b828201905092915050565b60006145a882614684565b91506145b383614684565b9250826145c3576145c2614758565b5b828204905092915050565b60006145d982614684565b91506145e483614684565b9250828210156145f7576145f6614729565b5b828203905092915050565b600061460d8261463c565b9050919050565b60008115159050919050565b6000819050919050565b600061463582614602565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156146d85780820151818401526020810190506146bd565b838111156146e7576000848401525b50505050565b6000600282049050600182168061470557607f821691505b6020821081141561471957614718614787565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b614efe81614602565b8114614f0957600080fd5b50565b614f1581614620565b8114614f2057600080fd5b50565b614f2c8161462a565b8114614f3757600080fd5b50565b614f4381614684565b8114614f4e57600080fd5b50565b614f5a8161468e565b8114614f6557600080fd5b50565b614f718161469e565b8114614f7c57600080fd5b5056fea2646970667358221220acb1b1c90afb606e7c49d98fcceae636b6bd3b234223daebc7a0fe25e60fede864736f6c63430008040033

Deployed Bytecode Sourcemap

82279:1312:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45021:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47372:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46141:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48153:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45983:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62229:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48857:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65437:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82700:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81606:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77122:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64811:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67910:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58700:697;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56750:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64567:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46312:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38426:103;;;:::i;:::-;;82016:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61971:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37775:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65994:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45240:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82625:67;;;:::i;:::-;;77492:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65023:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49598:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46645:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68106:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61260:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57327:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46901:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64337:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38684:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45021:100;45075:13;45108:5;45101:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45021:100;:::o;47372:201::-;47455:4;47472:13;47488:12;:10;:12::i;:::-;47472:28;;47511:32;47520:5;47527:7;47536:6;47511:8;:32::i;:::-;47561:4;47554:11;;;47372:201;;;;:::o;46141:108::-;46202:7;46229:12;;46222:19;;46141:108;:::o;48153:295::-;48284:4;48301:15;48319:12;:10;:12::i;:::-;48301:30;;48342:38;48358:4;48364:7;48373:6;48342:15;:38::i;:::-;48391:27;48401:4;48407:2;48411:6;48391:9;:27::i;:::-;48436:4;48429:11;;;48153:295;;;;;:::o;45983:93::-;46041:5;46066:2;46059:9;;45983:93;:::o;62229:115::-;62289:7;62316:20;:18;:20::i;:::-;62309:27;;62229:115;:::o;48857:238::-;48945:4;48962:13;48978:12;:10;:12::i;:::-;48962:28;;49001:64;49010:5;49017:7;49054:10;49026:25;49036:5;49043:7;49026:9;:25::i;:::-;:38;;;;:::i;:::-;49001:8;:64::i;:::-;49083:4;49076:11;;;48857:238;;;;:::o;65437:268::-;65535:7;65577:12;65563:11;:26;65555:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;65643:54;65662:12;:21;65675:7;65662:21;;;;;;;;;;;;;;;65685:11;65643:18;:54::i;:::-;65636:61;;65437:268;;;;:::o;82700:95::-;38006:12;:10;:12::i;:::-;37995:23;;:7;:5;:7::i;:::-;:23;;;37987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82770:17:::1;82776:2;82780:6;82770:5;:17::i;:::-;82700:95:::0;;:::o;81606:91::-;81662:27;81668:12;:10;:12::i;:::-;81682:6;81662:5;:27::i;:::-;81606:91;:::o;77122:266::-;77209:7;77230:16;77248:13;77265:55;77274:10;77286:24;:33;77311:7;77286:33;;;;;;;;;;;;;;;77265:8;:55::i;:::-;77229:91;;;;77340:11;:40;;77362:18;77372:7;77362:9;:18::i;:::-;77340:40;;;77354:5;77340:40;77333:47;;;;77122:266;;;;:::o;64811:128::-;64885:7;64912:10;:19;64923:7;64912:19;;;;;;;;;;;;;;;;;;;;;;;;;64905:26;;64811:128;;;:::o;67910:114::-;67982:34;67992:12;:10;:12::i;:::-;68006:9;67982;:34::i;:::-;67910:114;:::o;58700:697::-;58879:4;58914:19;58927:5;58914:12;:19::i;:::-;58904:6;:29;;58896:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58992:11;59006:23;59015:5;59022:6;59006:8;:23::i;:::-;58992:37;;59040:32;59054:8;59065:6;59040:5;:32::i;:::-;56487:45;59105:8;:20;;;59126:10;59138:5;59145:6;59153:3;59158:4;;59105:58;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;59083:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;59255:63;59279:8;59298:4;59314:3;59305:6;:12;;;;:::i;:::-;59255:15;:63::i;:::-;59329:38;59343:8;59363:3;59354:6;:12;;;;:::i;:::-;59329:5;:38::i;:::-;59385:4;59378:11;;;58700:697;;;;;;;:::o;56750:178::-;56825:7;56869:4;56852:22;;:5;:22;;;:68;;56919:1;56852:68;;;56897:19;:17;:19::i;:::-;56877:17;:39;;;;:::i;:::-;56852:68;56845:75;;56750:178;;;:::o;64567:151::-;64637:6;64663:47;64681:12;:21;64694:7;64681:21;;;;;;;;;;;;;;;:28;;;;64663:17;:47::i;:::-;64656:54;;64567:151;;;:::o;46312:127::-;46386:7;46413:9;:18;46423:7;46413:18;;;;;;;;;;;;;;;;46406:25;;46312:127;;;:::o;38426:103::-;38006:12;:10;:12::i;:::-;37995:23;;:7;:5;:7::i;:::-;:23;;;37987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38491:30:::1;38518:1;38491:18;:30::i;:::-;38426:103::o:0;82016:164::-;82093:46;82109:7;82118:12;:10;:12::i;:::-;82132:6;82093:15;:46::i;:::-;82150:22;82156:7;82165:6;82150:5;:22::i;:::-;82016:164;;:::o;61971:128::-;62040:7;62067:24;:7;:14;62075:5;62067:14;;;;;;;;;;;;;;;:22;:24::i;:::-;62060:31;;61971:128;;;:::o;37775:87::-;37821:7;37848:6;;;;;;;;;;;37841:13;;37775:87;:::o;65994:259::-;66081:7;66123:12;66109:11;:26;66101:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;66189:56;66208:23;66233:11;66189:18;:56::i;:::-;66182:63;;65994:259;;;:::o;45240:104::-;45296:13;45329:7;45322:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45240:104;:::o;82625:67::-;38006:12;:10;:12::i;:::-;37995:23;;:7;:5;:7::i;:::-;:23;;;37987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;82673:11:::1;:9;:11::i;:::-;;82625:67::o:0;77492:234::-;77564:7;77585:16;77603:13;77620:43;77629:10;77641:21;77620:8;:43::i;:::-;77584:79;;;;77683:11;:35;;77705:13;:11;:13::i;:::-;77683:35;;;77697:5;77683:35;77676:42;;;;77492:234;;;:::o;65023:212::-;65096:7;65116:11;65130:12;:21;65143:7;65130:21;;;;;;;;;;;;;;;:28;;;;65116:42;;65183:1;65176:3;:8;:51;;65191:12;:21;65204:7;65191:21;;;;;;;;;;;;;;;65219:1;65213:3;:7;;;;:::i;:::-;65191:30;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;65176:51;;;65187:1;65176:51;65169:58;;;;;65023:212;;;:::o;49598:436::-;49691:4;49708:13;49724:12;:10;:12::i;:::-;49708:28;;49747:24;49774:25;49784:5;49791:7;49774:9;:25::i;:::-;49747:52;;49838:15;49818:16;:35;;49810:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49931:60;49940:5;49947:7;49975:15;49956:16;:34;49931:8;:60::i;:::-;50022:4;50015:11;;;;49598:436;;;;:::o;46645:193::-;46724:4;46741:13;46757:12;:10;:12::i;:::-;46741:28;;46780;46790:5;46797:2;46801:6;46780:9;:28::i;:::-;46826:4;46819:11;;;46645:193;;;;:::o;68106:591::-;68333:6;68314:15;:25;;68306:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;68384:14;68401:174;68429:87;64017:71;68489:9;68500:5;68507:6;68456:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68446:69;;;;;;68429:16;:87::i;:::-;68531:1;68547;68563;68401:13;:174::i;:::-;68384:191;;68603:17;68613:6;68603:9;:17::i;:::-;68594:5;:26;68586:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;68661:28;68671:6;68679:9;68661;:28::i;:::-;68106:591;;;;;;;:::o;61260:645::-;61504:8;61485:15;:27;;61477:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;61559:18;60435:95;61619:5;61626:7;61635:5;61642:16;61652:5;61642:9;:16::i;:::-;61660:8;61590:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61580:90;;;;;;61559:111;;61683:12;61698:28;61715:10;61698:16;:28::i;:::-;61683:43;;61739:14;61756:28;61770:4;61776:1;61779;61782;61756:13;:28::i;:::-;61739:45;;61813:5;61803:15;;:6;:15;;;61795:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61866:31;61875:5;61882:7;61891:5;61866:8;:31::i;:::-;61260:645;;;;;;;;;;:::o;57327:297::-;57414:7;57459:4;57442:22;;:5;:22;;;57434:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57615:1;57608:8;;57327:297;;;;:::o;46901:151::-;46990:7;47017:11;:18;47029:5;47017:18;;;;;;;;;;;;;;;:27;47036:7;47017:27;;;;;;;;;;;;;;;;47010:34;;46901:151;;;;:::o;64337:150::-;64416:17;;:::i;:::-;64453:12;:21;64466:7;64453:21;;;;;;;;;;;;;;;64475:3;64453:26;;;;;;;;;;;;;;;;;;;;;;;;;64446:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64337:150;;;;:::o;38684:201::-;38006:12;:10;:12::i;:::-;37995:23;;:7;:5;:7::i;:::-;:23;;;37987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38793:1:::1;38773:22;;:8;:22;;;;38765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38849:28;38868:8;38849:18;:28::i;:::-;38684:201:::0;:::o;69003:290::-;69088:28;69100:7;69109:6;69088:11;:28::i;:::-;69152:12;:10;:12::i;:::-;69135:29;;:13;:11;:13::i;:::-;:29;;69127:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;69230:55;69247:23;69272:4;69278:6;69230:16;:55::i;:::-;;;69003:290;;:::o;51471:399::-;51574:1;51555:21;;:7;:21;;;;51547:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51625:49;51654:1;51658:7;51667:6;51625:20;:49::i;:::-;51703:6;51687:12;;:22;;;;;;;:::i;:::-;;;;;;;;51742:6;51720:9;:18;51730:7;51720:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;51785:7;51764:37;;51781:1;51764:37;;;51794:6;51764:37;;;;;;:::i;:::-;;;;;;;;51814:48;51842:1;51846:7;51855:6;51814:19;:48::i;:::-;51471:399;;:::o;71847:98::-;71905:7;71936:1;71932;:5;;;;:::i;:::-;71925:12;;71847:98;;;;:::o;3715:195::-;3772:7;3809:17;3800:26;;:5;:26;;3792:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3896:5;3881:21;;3715:195;;;:::o;5685:190::-;5741:6;5777:16;5768:25;;:5;:25;;5760:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5861:5;5847:20;;5685:190;;;:::o;77943:622::-;78086:44;78113:4;78119:2;78123:6;78086:26;:44::i;:::-;78163:1;78147:18;;:4;:18;;;78143:415;;;78203:26;78226:2;78203:22;:26::i;:::-;78244:28;:26;:28::i;:::-;78143:415;;;78308:1;78294:16;;:2;:16;;;78290:268;;;78348:28;78371:4;78348:22;:28::i;:::-;78391;:26;:28::i;:::-;78290:268;;;78477:28;78500:4;78477:22;:28::i;:::-;78520:26;78543:2;78520:22;:26::i;:::-;78290:268;78143:415;77943:622;;;:::o;69721:262::-;69863:43;69889:4;69895:2;69899:6;69863:25;:43::i;:::-;69919:56;69936:15;69946:4;69936:9;:15::i;:::-;69953:13;69963:2;69953:9;:13::i;:::-;69968:6;69919:16;:56::i;:::-;69721:262;;;:::o;54956:125::-;;;;:::o;55685:124::-;;;;:::o;71953:103::-;72016:7;72047:1;72043;:5;;;;:::i;:::-;72036:12;;71953:103;;;;:::o;32332:114::-;32397:7;32424;:14;;;32417:21;;32332:114;;;:::o;36493:98::-;36546:7;36573:10;36566:17;;36493:98;:::o;53232:380::-;53385:1;53368:19;;:5;:19;;;;53360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53466:1;53447:21;;:7;:21;;;;53439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53550:6;53520:11;:18;53532:5;53520:18;;;;;;;;;;;;;;;:27;53539:7;53520:27;;;;;;;;;;;;;;;:36;;;;53588:7;53572:32;;53581:5;53572:32;;;53597:6;53572:32;;;;;;:::i;:::-;;;;;;;;53232:380;;;:::o;53903:453::-;54038:24;54065:25;54075:5;54082:7;54065:9;:25::i;:::-;54038:52;;54125:17;54105:16;:37;54101:248;;54187:6;54167:16;:26;;54159:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54271:51;54280:5;54287:7;54315:6;54296:16;:25;54271:8;:51::i;:::-;54101:248;53903:453;;;;:::o;50513:671::-;50660:1;50644:18;;:4;:18;;;;50636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50737:1;50723:16;;:2;:16;;;;50715:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50792:38;50813:4;50819:2;50823:6;50792:20;:38::i;:::-;50843:19;50865:9;:15;50875:4;50865:15;;;;;;;;;;;;;;;;50843:37;;50914:6;50899:11;:21;;50891:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;51031:6;51017:11;:20;50999:9;:15;51009:4;50999:15;;;;;;;;;;;;;;;:38;;;;51076:6;51059:9;:13;51069:2;51059:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;51115:2;51100:26;;51109:4;51100:26;;;51119:6;51100:26;;;;;;:::i;:::-;;;;;;;;51139:37;51159:4;51165:2;51169:6;51139:19;:37::i;:::-;50513:671;;;;:::o;27682:314::-;27735:7;27776:12;27759:29;;27767:4;27759:29;;;:66;;;;;27809:16;27792:13;:33;27759:66;27755:234;;;27849:24;27842:31;;;;27755:234;27913:64;27935:10;27947:12;27961:15;27913:21;:64::i;:::-;27906:71;;27682:314;;:::o;66342:1482::-;66441:7;67460:12;67475:5;:12;;;;67460:27;;67498:11;67524:236;67537:4;67531:3;:10;67524:236;;;67558:11;67572:23;67585:3;67590:4;67572:12;:23::i;:::-;67558:37;;67637:11;67614:5;67620:3;67614:10;;;;;;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;:34;;;67610:139;;;67676:3;67669:10;;67610:139;;;67732:1;67726:3;:7;;;;:::i;:::-;67720:13;;67610:139;67524:236;;;;67787:1;67779:4;:9;:37;;67795:5;67808:1;67801:4;:8;;;;:::i;:::-;67795:15;;;;;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;67779:37;;;67791:1;67779:37;67772:44;;;;;;66342:1482;;;;:::o;83280:145::-;83394:23;83406:2;83410:6;83394:11;:23::i;:::-;83280:145;;:::o;83433:155::-;83552:28;83564:7;83573:6;83552:11;:28::i;:::-;83433:155;;:::o;78573:1619::-;78662:4;78668:7;78709:1;78696:10;:14;78688:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;78770:23;:21;:23::i;:::-;78756:10;:37;;78748:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;79966:13;79982:40;80011:10;79982:9;:13;;:28;;:40;;;;:::i;:::-;79966:56;;80048:9;:13;;:20;;;;80039:5;:29;80035:150;;;80093:5;80100:1;80085:17;;;;;;;80035:150;80143:4;80149:9;:16;;80166:5;80149:23;;;;;;;;;;;;;;;;;;;;;;;;80135:38;;;;;78573:1619;;;;;;:::o;70147:388::-;70232:23;70258:20;70268:9;70258;:20::i;:::-;70232:46;;70289:24;70316:20;70326:9;70316;:20::i;:::-;70289:47;;70371:9;70347:10;:21;70358:9;70347:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;70442:9;70398:54;;70425:15;70398:54;;70414:9;70398:54;;;;;;;;;;;;70465:62;70482:15;70499:9;70510:16;70465;:62::i;:::-;70147:388;;;;:::o;39045:191::-;39119:16;39138:6;;;;;;;;;;;39119:25;;39164:8;39155:6;;:17;;;;;;;;;;;;;;;;;;39219:8;39188:40;;39209:8;39188:40;;;;;;;;;;;;39045:191;;:::o;76594:223::-;76641:7;76661:30;:18;:28;:30::i;:::-;76704:17;76724:23;:21;:23::i;:::-;76704:43;;76763:19;76772:9;76763:19;;;;;;:::i;:::-;;;;;;;;76800:9;76793:16;;;76594:223;:::o;28909:167::-;28986:7;29013:55;29035:20;:18;:20::i;:::-;29057:10;29013:21;:55::i;:::-;29006:62;;28909:167;;;:::o;22552:279::-;22680:7;22701:17;22720:18;22742:25;22753:4;22759:1;22762;22765;22742:10;:25::i;:::-;22700:67;;;;22778:18;22790:5;22778:11;:18::i;:::-;22814:9;22807:16;;;;22552:279;;;;;;:::o;62482:207::-;62542:15;62570:30;62603:7;:14;62611:5;62603:14;;;;;;;;;;;;;;;62570:47;;62638:15;:5;:13;:15::i;:::-;62628:25;;62664:17;:5;:15;:17::i;:::-;62482:207;;;;:::o;68804:105::-;68857:7;68884:17;68877:24;;68804:105;:::o;71194:645::-;71368:17;71387;71417:11;71431:5;:12;;;;71417:26;;71473:1;71466:3;:8;:35;;71481:5;71493:1;71487:3;:7;;;;:::i;:::-;71481:14;;;;;;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;71466:35;;;71477:1;71466:35;71454:47;;;;71524:20;71527:9;71538:5;71524:2;:20;;:::i;:::-;71512:32;;71567:1;71561:3;:7;:51;;;;;71600:12;71572:5;71584:1;71578:3;:7;;;;:::i;:::-;71572:14;;;;;;;;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;:40;;;71561:51;71557:275;;;71652:29;71671:9;71652:18;:29::i;:::-;71629:5;71641:1;71635:3;:7;;;;:::i;:::-;71629:14;;;;;;;;;;;;;;;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;71557:275;;;71714:5;71725:94;;;;;;;;71748:31;71766:12;71748:17;:31::i;:::-;71725:94;;;;;;71788:29;71807:9;71788:18;:29::i;:::-;71725:94;;;;;71714:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71557:275;71194:645;;;;;;;:::o;82873:198::-;83019:44;83046:4;83052:2;83056:6;83019:26;:44::i;:::-;82873:198;;;:::o;83079:193::-;83221:43;83247:4;83253:2;83257:6;83221:25;:43::i;:::-;83079:193;;;:::o;80200:146::-;80268:70;80284:24;:33;80309:7;80284:33;;;;;;;;;;;;;;;80319:18;80329:7;80319:9;:18::i;:::-;80268:15;:70::i;:::-;80200:146;:::o;80354:118::-;80411:53;80427:21;80450:13;:11;:13::i;:::-;80411:15;:53::i;:::-;80354:118::o;70543:643::-;70675:3;70668:10;;:3;:10;;;;:24;;;;;70691:1;70682:6;:10;70668:24;70664:515;;;70728:1;70713:17;;:3;:17;;;70709:224;;70752:17;70771;70792:54;70809:12;:17;70822:3;70809:17;;;;;;;;;;;;;;;70828:9;70839:6;70792:16;:54::i;:::-;70751:95;;;;70891:3;70870:47;;;70896:9;70907;70870:47;;;;;;;:::i;:::-;;;;;;;;70709:224;;;70968:1;70953:17;;:3;:17;;;70949:219;;70992:17;71011;71032:49;71049:12;:17;71062:3;71049:17;;;;;;;;;;;;;;;71068:4;71074:6;71032:16;:49::i;:::-;70991:90;;;;71126:3;71105:47;;;71131:9;71142;71105:47;;;;;;;:::i;:::-;;;;;;;;70949:219;;;70664:515;70543:643;;;:::o;28004:263::-;28148:7;28196:8;28206;28216:11;28229:13;28252:4;28185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28175:84;;;;;;28168:91;;28004:263;;;;;:::o;33661:156::-;33723:7;33808:1;33803;33799;:5;33798:11;;;;:::i;:::-;33793:1;33789;:5;33788:21;;;;:::i;:::-;33781:28;;33661:156;;;;:::o;69387:194::-;69472:28;69484:7;69493:6;69472:11;:28::i;:::-;69513:60;69530:23;69555:9;69566:6;69513:16;:60::i;:::-;;;69387:194;;:::o;76883:127::-;76947:7;76974:28;:18;:26;:28::i;:::-;76967:35;;76883:127;:::o;34883:918::-;34972:7;35012:1;34996:5;:12;;;;:17;34992:58;;;35037:1;35030:8;;;;34992:58;35062:11;35088:12;35103:5;:12;;;;35088:27;;35128:424;35141:4;35135:3;:10;35128:424;;;35162:11;35176:23;35189:3;35194:4;35176:12;:23::i;:::-;35162:37;;35433:7;35420:5;35426:3;35420:10;;;;;;;;;;;;;;;;;;;;;;;;:20;35416:125;;;35468:3;35461:10;;35416:125;;;35524:1;35518:3;:7;;;;:::i;:::-;35512:13;;35416:125;35128:424;;;;35678:1;35672:3;:7;:36;;;;;35701:7;35683:5;35695:1;35689:3;:7;;;;:::i;:::-;35683:14;;;;;;;;;;;;;;;;;;;;;;;;:25;35672:36;35668:126;;;35738:1;35732:3;:7;;;;:::i;:::-;35725:14;;;;;;35668:126;35779:3;35772:10;;;;34883:918;;;;;:::o;32454:127::-;32561:1;32543:7;:14;;;:19;;;;;;;;;;;32454:127;:::o;24243:196::-;24336:7;24402:15;24419:10;24373:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24363:68;;;;;;24356:75;;24243:196;;;;:::o;20781:1632::-;20912:7;20921:12;21846:66;21841:1;21833:10;;:79;21829:163;;;21945:1;21949:30;21929:51;;;;;;21829:163;22011:2;22006:1;:7;;;;:18;;;;;22022:2;22017:1;:7;;;;22006:18;22002:102;;;22057:1;22061:30;22041:51;;;;;;22002:102;22201:14;22218:24;22228:4;22234:1;22237;22240;22218:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22201:41;;22275:1;22257:20;;:6;:20;;;22253:103;;;22310:1;22314:29;22294:50;;;;;;;22253:103;22376:6;22384:20;22368:37;;;;;20781:1632;;;;;;;;:::o;15490:643::-;15568:20;15559:29;;;;;;;;;;;;;;;;:5;:29;;;;;;;;;;;;;;;;;15555:571;;;15605:7;;15555:571;15666:29;15657:38;;;;;;;;;;;;;;;;:5;:38;;;;;;;;;;;;;;;;;15653:473;;;15712:34;;;;;;;;;;:::i;:::-;;;;;;;;15653:473;15777:35;15768:44;;;;;;;;;;;;;;;;:5;:44;;;;;;;;;;;;;;;;;15764:362;;;15829:41;;;;;;;;;;:::i;:::-;;;;;;;;15764:362;15901:30;15892:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;15888:238;;;15948:44;;;;;;;;;;:::i;:::-;;;;;;;;15888:238;16023:30;16014:39;;;;;;;;;;;;;;;;:5;:39;;;;;;;;;;;;;;;;;16010:116;;;16070:44;;;;;;;;;;:::i;:::-;;;;;;;;16010:116;15490:643;;:::o;80480:310::-;80575:17;80595:23;:21;:23::i;:::-;80575:43;;80666:9;80633:30;80649:9;:13;;80633:15;:30::i;:::-;:42;80629:154;;;80692:9;:13;;80711:9;80692:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80736:9;:16;;80758:12;80736:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80629:154;80480:310;;;:::o;52203:591::-;52306:1;52287:21;;:7;:21;;;;52279:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52359:49;52380:7;52397:1;52401:6;52359:20;:49::i;:::-;52421:22;52446:9;:18;52456:7;52446:18;;;;;;;;;;;;;;;;52421:43;;52501:6;52483:14;:24;;52475:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52620:6;52603:14;:23;52582:9;:18;52592:7;52582:18;;;;;;;;;;;;;;;:44;;;;52664:6;52648:12;;:22;;;;;;;:::i;:::-;;;;;;;;52714:1;52688:37;;52697:7;52688:37;;;52718:6;52688:37;;;;;;:::i;:::-;;;;;;;;52738:48;52758:7;52775:1;52779:6;52738:19;:48::i;:::-;52203:591;;;:::o;80798:212::-;80868:7;80906:1;80892:3;:10;;;;:15;80888:115;;;80931:1;80924:8;;;;80888:115;80972:3;80989:1;80976:3;:10;;;;:14;;;;:::i;:::-;80972:19;;;;;;;;;;;;;;;;;;;;;;;;80965:26;;80798:212;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:143::-;354:5;385:6;379:13;370:22;;401:33;428:5;401:33;:::i;:::-;360:80;;;;:::o;459:351::-;516:8;526:6;576:3;569:4;561:6;557:17;553:27;543:2;;594:1;591;584:12;543:2;630:6;617:20;607:30;;660:18;652:6;649:30;646:2;;;692:1;689;682:12;646:2;729:4;721:6;717:17;705:29;;783:3;775:4;767:6;763:17;753:8;749:32;746:41;743:2;;;800:1;797;790:12;743:2;533:277;;;;;:::o;816:195::-;890:5;928:6;915:20;906:29;;944:61;999:5;944:61;:::i;:::-;896:115;;;;:::o;1017:139::-;1063:5;1101:6;1088:20;1079:29;;1117:33;1144:5;1117:33;:::i;:::-;1069:87;;;;:::o;1162:137::-;1207:5;1245:6;1232:20;1223:29;;1261:32;1287:5;1261:32;:::i;:::-;1213:86;;;;:::o;1305:135::-;1349:5;1387:6;1374:20;1365:29;;1403:31;1428:5;1403:31;:::i;:::-;1355:85;;;;:::o;1446:262::-;1505:6;1554:2;1542:9;1533:7;1529:23;1525:32;1522:2;;;1570:1;1567;1560:12;1522:2;1613:1;1638:53;1683:7;1674:6;1663:9;1659:22;1638:53;:::i;:::-;1628:63;;1584:117;1512:196;;;;:::o;1714:407::-;1782:6;1790;1839:2;1827:9;1818:7;1814:23;1810:32;1807:2;;;1855:1;1852;1845:12;1807:2;1898:1;1923:53;1968:7;1959:6;1948:9;1944:22;1923:53;:::i;:::-;1913:63;;1869:117;2025:2;2051:53;2096:7;2087:6;2076:9;2072:22;2051:53;:::i;:::-;2041:63;;1996:118;1797:324;;;;;:::o;2127:552::-;2204:6;2212;2220;2269:2;2257:9;2248:7;2244:23;2240:32;2237:2;;;2285:1;2282;2275:12;2237:2;2328:1;2353:53;2398:7;2389:6;2378:9;2374:22;2353:53;:::i;:::-;2343:63;;2299:117;2455:2;2481:53;2526:7;2517:6;2506:9;2502:22;2481:53;:::i;:::-;2471:63;;2426:118;2583:2;2609:53;2654:7;2645:6;2634:9;2630:22;2609:53;:::i;:::-;2599:63;;2554:118;2227:452;;;;;:::o;2685:1132::-;2796:6;2804;2812;2820;2828;2836;2844;2893:3;2881:9;2872:7;2868:23;2864:33;2861:2;;;2910:1;2907;2900:12;2861:2;2953:1;2978:53;3023:7;3014:6;3003:9;2999:22;2978:53;:::i;:::-;2968:63;;2924:117;3080:2;3106:53;3151:7;3142:6;3131:9;3127:22;3106:53;:::i;:::-;3096:63;;3051:118;3208:2;3234:53;3279:7;3270:6;3259:9;3255:22;3234:53;:::i;:::-;3224:63;;3179:118;3336:2;3362:53;3407:7;3398:6;3387:9;3383:22;3362:53;:::i;:::-;3352:63;;3307:118;3464:3;3491:51;3534:7;3525:6;3514:9;3510:22;3491:51;:::i;:::-;3481:61;;3435:117;3591:3;3618:53;3663:7;3654:6;3643:9;3639:22;3618:53;:::i;:::-;3608:63;;3562:119;3720:3;3747:53;3792:7;3783:6;3772:9;3768:22;3747:53;:::i;:::-;3737:63;;3691:119;2851:966;;;;;;;;;;:::o;3823:407::-;3891:6;3899;3948:2;3936:9;3927:7;3923:23;3919:32;3916:2;;;3964:1;3961;3954:12;3916:2;4007:1;4032:53;4077:7;4068:6;4057:9;4053:22;4032:53;:::i;:::-;4022:63;;3978:117;4134:2;4160:53;4205:7;4196:6;4185:9;4181:22;4160:53;:::i;:::-;4150:63;;4105:118;3906:324;;;;;:::o;4236:986::-;4338:6;4346;4354;4362;4370;4378;4427:3;4415:9;4406:7;4402:23;4398:33;4395:2;;;4444:1;4441;4434:12;4395:2;4487:1;4512:53;4557:7;4548:6;4537:9;4533:22;4512:53;:::i;:::-;4502:63;;4458:117;4614:2;4640:53;4685:7;4676:6;4665:9;4661:22;4640:53;:::i;:::-;4630:63;;4585:118;4742:2;4768:53;4813:7;4804:6;4793:9;4789:22;4768:53;:::i;:::-;4758:63;;4713:118;4870:2;4896:51;4939:7;4930:6;4919:9;4915:22;4896:51;:::i;:::-;4886:61;;4841:116;4996:3;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4967:119;5125:3;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5096:119;4385:837;;;;;;;;:::o;5228:405::-;5295:6;5303;5352:2;5340:9;5331:7;5327:23;5323:32;5320:2;;;5368:1;5365;5358:12;5320:2;5411:1;5436:53;5481:7;5472:6;5461:9;5457:22;5436:53;:::i;:::-;5426:63;;5382:117;5538:2;5564:52;5608:7;5599:6;5588:9;5584:22;5564:52;:::i;:::-;5554:62;;5509:117;5310:323;;;;;:::o;5639:284::-;5709:6;5758:2;5746:9;5737:7;5733:23;5729:32;5726:2;;;5774:1;5771;5764:12;5726:2;5817:1;5842:64;5898:7;5889:6;5878:9;5874:22;5842:64;:::i;:::-;5832:74;;5788:128;5716:207;;;;:::o;5929:885::-;6054:6;6062;6070;6078;6086;6135:3;6123:9;6114:7;6110:23;6106:33;6103:2;;;6152:1;6149;6142:12;6103:2;6195:1;6220:81;6293:7;6284:6;6273:9;6269:22;6220:81;:::i;:::-;6210:91;;6166:145;6350:2;6376:53;6421:7;6412:6;6401:9;6397:22;6376:53;:::i;:::-;6366:63;;6321:118;6478:2;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6449:118;6634:2;6623:9;6619:18;6606:32;6665:18;6657:6;6654:30;6651:2;;;6697:1;6694;6687:12;6651:2;6733:64;6789:7;6780:6;6769:9;6765:22;6733:64;:::i;:::-;6715:82;;;;6577:230;6093:721;;;;;;;;:::o;6820:262::-;6879:6;6928:2;6916:9;6907:7;6903:23;6899:32;6896:2;;;6944:1;6941;6934:12;6896:2;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;6886:196;;;;:::o;7088:118::-;7175:24;7193:5;7175:24;:::i;:::-;7170:3;7163:37;7153:53;;:::o;7212:109::-;7293:21;7308:5;7293:21;:::i;:::-;7288:3;7281:34;7271:50;;:::o;7327:118::-;7414:24;7432:5;7414:24;:::i;:::-;7409:3;7402:37;7392:53;;:::o;7451:157::-;7556:45;7576:24;7594:5;7576:24;:::i;:::-;7556:45;:::i;:::-;7551:3;7544:58;7534:74;;:::o;7636:301::-;7732:3;7753:70;7816:6;7811:3;7753:70;:::i;:::-;7746:77;;7833:43;7869:6;7864:3;7857:5;7833:43;:::i;:::-;7901:29;7923:6;7901:29;:::i;:::-;7896:3;7892:39;7885:46;;7736:201;;;;;:::o;7943:364::-;8031:3;8059:39;8092:5;8059:39;:::i;:::-;8114:71;8178:6;8173:3;8114:71;:::i;:::-;8107:78;;8194:52;8239:6;8234:3;8227:4;8220:5;8216:16;8194:52;:::i;:::-;8271:29;8293:6;8271:29;:::i;:::-;8266:3;8262:39;8255:46;;8035:272;;;;;:::o;8313:366::-;8455:3;8476:67;8540:2;8535:3;8476:67;:::i;:::-;8469:74;;8552:93;8641:3;8552:93;:::i;:::-;8670:2;8665:3;8661:12;8654:19;;8459:220;;;:::o;8685:366::-;8827:3;8848:67;8912:2;8907:3;8848:67;:::i;:::-;8841:74;;8924:93;9013:3;8924:93;:::i;:::-;9042:2;9037:3;9033:12;9026:19;;8831:220;;;:::o;9057:366::-;9199:3;9220:67;9284:2;9279:3;9220:67;:::i;:::-;9213:74;;9296:93;9385:3;9296:93;:::i;:::-;9414:2;9409:3;9405:12;9398:19;;9203:220;;;:::o;9429:366::-;9571:3;9592:67;9656:2;9651:3;9592:67;:::i;:::-;9585:74;;9668:93;9757:3;9668:93;:::i;:::-;9786:2;9781:3;9777:12;9770:19;;9575:220;;;:::o;9801:366::-;9943:3;9964:67;10028:2;10023:3;9964:67;:::i;:::-;9957:74;;10040:93;10129:3;10040:93;:::i;:::-;10158:2;10153:3;10149:12;10142:19;;9947:220;;;:::o;10173:366::-;10315:3;10336:67;10400:2;10395:3;10336:67;:::i;:::-;10329:74;;10412:93;10501:3;10412:93;:::i;:::-;10530:2;10525:3;10521:12;10514:19;;10319:220;;;:::o;10545:366::-;10687:3;10708:67;10772:2;10767:3;10708:67;:::i;:::-;10701:74;;10784:93;10873:3;10784:93;:::i;:::-;10902:2;10897:3;10893:12;10886:19;;10691:220;;;:::o;10917:366::-;11059:3;11080:67;11144:2;11139:3;11080:67;:::i;:::-;11073:74;;11156:93;11245:3;11156:93;:::i;:::-;11274:2;11269:3;11265:12;11258:19;;11063:220;;;:::o;11289:366::-;11431:3;11452:67;11516:2;11511:3;11452:67;:::i;:::-;11445:74;;11528:93;11617:3;11528:93;:::i;:::-;11646:2;11641:3;11637:12;11630:19;;11435:220;;;:::o;11661:366::-;11803:3;11824:67;11888:2;11883:3;11824:67;:::i;:::-;11817:74;;11900:93;11989:3;11900:93;:::i;:::-;12018:2;12013:3;12009:12;12002:19;;11807:220;;;:::o;12033:400::-;12193:3;12214:84;12296:1;12291:3;12214:84;:::i;:::-;12207:91;;12307:93;12396:3;12307:93;:::i;:::-;12425:1;12420:3;12416:11;12409:18;;12197:236;;;:::o;12439:366::-;12581:3;12602:67;12666:2;12661:3;12602:67;:::i;:::-;12595:74;;12678:93;12767:3;12678:93;:::i;:::-;12796:2;12791:3;12787:12;12780:19;;12585:220;;;:::o;12811:366::-;12953:3;12974:67;13038:2;13033:3;12974:67;:::i;:::-;12967:74;;13050:93;13139:3;13050:93;:::i;:::-;13168:2;13163:3;13159:12;13152:19;;12957:220;;;:::o;13183:366::-;13325:3;13346:67;13410:2;13405:3;13346:67;:::i;:::-;13339:74;;13422:93;13511:3;13422:93;:::i;:::-;13540:2;13535:3;13531:12;13524:19;;13329:220;;;:::o;13555:366::-;13697:3;13718:67;13782:2;13777:3;13718:67;:::i;:::-;13711:74;;13794:93;13883:3;13794:93;:::i;:::-;13912:2;13907:3;13903:12;13896:19;;13701:220;;;:::o;13927:366::-;14069:3;14090:67;14154:2;14149:3;14090:67;:::i;:::-;14083:74;;14166:93;14255:3;14166:93;:::i;:::-;14284:2;14279:3;14275:12;14268:19;;14073:220;;;:::o;14299:366::-;14441:3;14462:67;14526:2;14521:3;14462:67;:::i;:::-;14455:74;;14538:93;14627:3;14538:93;:::i;:::-;14656:2;14651:3;14647:12;14640:19;;14445:220;;;:::o;14671:366::-;14813:3;14834:67;14898:2;14893:3;14834:67;:::i;:::-;14827:74;;14910:93;14999:3;14910:93;:::i;:::-;15028:2;15023:3;15019:12;15012:19;;14817:220;;;:::o;15043:366::-;15185:3;15206:67;15270:2;15265:3;15206:67;:::i;:::-;15199:74;;15282:93;15371:3;15282:93;:::i;:::-;15400:2;15395:3;15391:12;15384:19;;15189:220;;;:::o;15415:366::-;15557:3;15578:67;15642:2;15637:3;15578:67;:::i;:::-;15571:74;;15654:93;15743:3;15654:93;:::i;:::-;15772:2;15767:3;15763:12;15756:19;;15561:220;;;:::o;15787:366::-;15929:3;15950:67;16014:2;16009:3;15950:67;:::i;:::-;15943:74;;16026:93;16115:3;16026:93;:::i;:::-;16144:2;16139:3;16135:12;16128:19;;15933:220;;;:::o;16159:366::-;16301:3;16322:67;16386:2;16381:3;16322:67;:::i;:::-;16315:74;;16398:93;16487:3;16398:93;:::i;:::-;16516:2;16511:3;16507:12;16500:19;;16305:220;;;:::o;16531:366::-;16673:3;16694:67;16758:2;16753:3;16694:67;:::i;:::-;16687:74;;16770:93;16859:3;16770:93;:::i;:::-;16888:2;16883:3;16879:12;16872:19;;16677:220;;;:::o;16903:366::-;17045:3;17066:67;17130:2;17125:3;17066:67;:::i;:::-;17059:74;;17142:93;17231:3;17142:93;:::i;:::-;17260:2;17255:3;17251:12;17244:19;;17049:220;;;:::o;17275:366::-;17417:3;17438:67;17502:2;17497:3;17438:67;:::i;:::-;17431:74;;17514:93;17603:3;17514:93;:::i;:::-;17632:2;17627:3;17623:12;17616:19;;17421:220;;;:::o;17647:366::-;17789:3;17810:67;17874:2;17869:3;17810:67;:::i;:::-;17803:74;;17886:93;17975:3;17886:93;:::i;:::-;18004:2;17999:3;17995:12;17988:19;;17793:220;;;:::o;18019:366::-;18161:3;18182:67;18246:2;18241:3;18182:67;:::i;:::-;18175:74;;18258:93;18347:3;18258:93;:::i;:::-;18376:2;18371:3;18367:12;18360:19;;18165:220;;;:::o;18391:366::-;18533:3;18554:67;18618:2;18613:3;18554:67;:::i;:::-;18547:74;;18630:93;18719:3;18630:93;:::i;:::-;18748:2;18743:3;18739:12;18732:19;;18537:220;;;:::o;18763:366::-;18905:3;18926:67;18990:2;18985:3;18926:67;:::i;:::-;18919:74;;19002:93;19091:3;19002:93;:::i;:::-;19120:2;19115:3;19111:12;19104:19;;18909:220;;;:::o;19135:366::-;19277:3;19298:67;19362:2;19357:3;19298:67;:::i;:::-;19291:74;;19374:93;19463:3;19374:93;:::i;:::-;19492:2;19487:3;19483:12;19476:19;;19281:220;;;:::o;19575:517::-;19728:4;19723:3;19719:14;19820:4;19813:5;19809:16;19803:23;19839:61;19894:4;19889:3;19885:14;19871:12;19839:61;:::i;:::-;19743:167;19993:4;19986:5;19982:16;19976:23;20012:63;20069:4;20064:3;20060:14;20046:12;20012:63;:::i;:::-;19920:165;19697:395;;;:::o;20098:108::-;20175:24;20193:5;20175:24;:::i;:::-;20170:3;20163:37;20153:53;;:::o;20212:118::-;20299:24;20317:5;20299:24;:::i;:::-;20294:3;20287:37;20277:53;;:::o;20336:105::-;20411:23;20428:5;20411:23;:::i;:::-;20406:3;20399:36;20389:52;;:::o;20447:115::-;20532:23;20549:5;20532:23;:::i;:::-;20527:3;20520:36;20510:52;;:::o;20568:112::-;20651:22;20667:5;20651:22;:::i;:::-;20646:3;20639:35;20629:51;;:::o;20686:663::-;20927:3;20949:148;21093:3;20949:148;:::i;:::-;20942:155;;21107:75;21178:3;21169:6;21107:75;:::i;:::-;21207:2;21202:3;21198:12;21191:19;;21220:75;21291:3;21282:6;21220:75;:::i;:::-;21320:2;21315:3;21311:12;21304:19;;21340:3;21333:10;;20931:418;;;;;:::o;21355:222::-;21448:4;21486:2;21475:9;21471:18;21463:26;;21499:71;21567:1;21556:9;21552:17;21543:6;21499:71;:::i;:::-;21453:124;;;;:::o;21583:771::-;21816:4;21854:3;21843:9;21839:19;21831:27;;21868:71;21936:1;21925:9;21921:17;21912:6;21868:71;:::i;:::-;21949:72;22017:2;22006:9;22002:18;21993:6;21949:72;:::i;:::-;22031;22099:2;22088:9;22084:18;22075:6;22031:72;:::i;:::-;22113;22181:2;22170:9;22166:18;22157:6;22113:72;:::i;:::-;22233:9;22227:4;22223:20;22217:3;22206:9;22202:19;22195:49;22261:86;22342:4;22333:6;22325;22261:86;:::i;:::-;22253:94;;21821:533;;;;;;;;;:::o;22360:210::-;22447:4;22485:2;22474:9;22470:18;22462:26;;22498:65;22560:1;22549:9;22545:17;22536:6;22498:65;:::i;:::-;22452:118;;;;:::o;22576:222::-;22669:4;22707:2;22696:9;22692:18;22684:26;;22720:71;22788:1;22777:9;22773:17;22764:6;22720:71;:::i;:::-;22674:124;;;;:::o;22804:775::-;23037:4;23075:3;23064:9;23060:19;23052:27;;23089:71;23157:1;23146:9;23142:17;23133:6;23089:71;:::i;:::-;23170:72;23238:2;23227:9;23223:18;23214:6;23170:72;:::i;:::-;23252;23320:2;23309:9;23305:18;23296:6;23252:72;:::i;:::-;23334;23402:2;23391:9;23387:18;23378:6;23334:72;:::i;:::-;23416:73;23484:3;23473:9;23469:19;23460:6;23416:73;:::i;:::-;23499;23567:3;23556:9;23552:19;23543:6;23499:73;:::i;:::-;23042:537;;;;;;;;;:::o;23585:553::-;23762:4;23800:3;23789:9;23785:19;23777:27;;23814:71;23882:1;23871:9;23867:17;23858:6;23814:71;:::i;:::-;23895:72;23963:2;23952:9;23948:18;23939:6;23895:72;:::i;:::-;23977;24045:2;24034:9;24030:18;24021:6;23977:72;:::i;:::-;24059;24127:2;24116:9;24112:18;24103:6;24059:72;:::i;:::-;23767:371;;;;;;;:::o;24144:664::-;24349:4;24387:3;24376:9;24372:19;24364:27;;24401:71;24469:1;24458:9;24454:17;24445:6;24401:71;:::i;:::-;24482:72;24550:2;24539:9;24535:18;24526:6;24482:72;:::i;:::-;24564;24632:2;24621:9;24617:18;24608:6;24564:72;:::i;:::-;24646;24714:2;24703:9;24699:18;24690:6;24646:72;:::i;:::-;24728:73;24796:3;24785:9;24781:19;24772:6;24728:73;:::i;:::-;24354:454;;;;;;;;:::o;24814:545::-;24987:4;25025:3;25014:9;25010:19;25002:27;;25039:71;25107:1;25096:9;25092:17;25083:6;25039:71;:::i;:::-;25120:68;25184:2;25173:9;25169:18;25160:6;25120:68;:::i;:::-;25198:72;25266:2;25255:9;25251:18;25242:6;25198:72;:::i;:::-;25280;25348:2;25337:9;25333:18;25324:6;25280:72;:::i;:::-;24992:367;;;;;;;:::o;25365:313::-;25478:4;25516:2;25505:9;25501:18;25493:26;;25565:9;25559:4;25555:20;25551:1;25540:9;25536:17;25529:47;25593:78;25666:4;25657:6;25593:78;:::i;:::-;25585:86;;25483:195;;;;:::o;25684:419::-;25850:4;25888:2;25877:9;25873:18;25865:26;;25937:9;25931:4;25927:20;25923:1;25912:9;25908:17;25901:47;25965:131;26091:4;25965:131;:::i;:::-;25957:139;;25855:248;;;:::o;26109:419::-;26275:4;26313:2;26302:9;26298:18;26290:26;;26362:9;26356:4;26352:20;26348:1;26337:9;26333:17;26326:47;26390:131;26516:4;26390:131;:::i;:::-;26382:139;;26280:248;;;:::o;26534:419::-;26700:4;26738:2;26727:9;26723:18;26715:26;;26787:9;26781:4;26777:20;26773:1;26762:9;26758:17;26751:47;26815:131;26941:4;26815:131;:::i;:::-;26807:139;;26705:248;;;:::o;26959:419::-;27125:4;27163:2;27152:9;27148:18;27140:26;;27212:9;27206:4;27202:20;27198:1;27187:9;27183:17;27176:47;27240:131;27366:4;27240:131;:::i;:::-;27232:139;;27130:248;;;:::o;27384:419::-;27550:4;27588:2;27577:9;27573:18;27565:26;;27637:9;27631:4;27627:20;27623:1;27612:9;27608:17;27601:47;27665:131;27791:4;27665:131;:::i;:::-;27657:139;;27555:248;;;:::o;27809:419::-;27975:4;28013:2;28002:9;27998:18;27990:26;;28062:9;28056:4;28052:20;28048:1;28037:9;28033:17;28026:47;28090:131;28216:4;28090:131;:::i;:::-;28082:139;;27980:248;;;:::o;28234:419::-;28400:4;28438:2;28427:9;28423:18;28415:26;;28487:9;28481:4;28477:20;28473:1;28462:9;28458:17;28451:47;28515:131;28641:4;28515:131;:::i;:::-;28507:139;;28405:248;;;:::o;28659:419::-;28825:4;28863:2;28852:9;28848:18;28840:26;;28912:9;28906:4;28902:20;28898:1;28887:9;28883:17;28876:47;28940:131;29066:4;28940:131;:::i;:::-;28932:139;;28830:248;;;:::o;29084:419::-;29250:4;29288:2;29277:9;29273:18;29265:26;;29337:9;29331:4;29327:20;29323:1;29312:9;29308:17;29301:47;29365:131;29491:4;29365:131;:::i;:::-;29357:139;;29255:248;;;:::o;29509:419::-;29675:4;29713:2;29702:9;29698:18;29690:26;;29762:9;29756:4;29752:20;29748:1;29737:9;29733:17;29726:47;29790:131;29916:4;29790:131;:::i;:::-;29782:139;;29680:248;;;:::o;29934:419::-;30100:4;30138:2;30127:9;30123:18;30115:26;;30187:9;30181:4;30177:20;30173:1;30162:9;30158:17;30151:47;30215:131;30341:4;30215:131;:::i;:::-;30207:139;;30105:248;;;:::o;30359:419::-;30525:4;30563:2;30552:9;30548:18;30540:26;;30612:9;30606:4;30602:20;30598:1;30587:9;30583:17;30576:47;30640:131;30766:4;30640:131;:::i;:::-;30632:139;;30530:248;;;:::o;30784:419::-;30950:4;30988:2;30977:9;30973:18;30965:26;;31037:9;31031:4;31027:20;31023:1;31012:9;31008:17;31001:47;31065:131;31191:4;31065:131;:::i;:::-;31057:139;;30955:248;;;:::o;31209:419::-;31375:4;31413:2;31402:9;31398:18;31390:26;;31462:9;31456:4;31452:20;31448:1;31437:9;31433:17;31426:47;31490:131;31616:4;31490:131;:::i;:::-;31482:139;;31380:248;;;:::o;31634:419::-;31800:4;31838:2;31827:9;31823:18;31815:26;;31887:9;31881:4;31877:20;31873:1;31862:9;31858:17;31851:47;31915:131;32041:4;31915:131;:::i;:::-;31907:139;;31805:248;;;:::o;32059:419::-;32225:4;32263:2;32252:9;32248:18;32240:26;;32312:9;32306:4;32302:20;32298:1;32287:9;32283:17;32276:47;32340:131;32466:4;32340:131;:::i;:::-;32332:139;;32230:248;;;:::o;32484:419::-;32650:4;32688:2;32677:9;32673:18;32665:26;;32737:9;32731:4;32727:20;32723:1;32712:9;32708:17;32701:47;32765:131;32891:4;32765:131;:::i;:::-;32757:139;;32655:248;;;:::o;32909:419::-;33075:4;33113:2;33102:9;33098:18;33090:26;;33162:9;33156:4;33152:20;33148:1;33137:9;33133:17;33126:47;33190:131;33316:4;33190:131;:::i;:::-;33182:139;;33080:248;;;:::o;33334:419::-;33500:4;33538:2;33527:9;33523:18;33515:26;;33587:9;33581:4;33577:20;33573:1;33562:9;33558:17;33551:47;33615:131;33741:4;33615:131;:::i;:::-;33607:139;;33505:248;;;:::o;33759:419::-;33925:4;33963:2;33952:9;33948:18;33940:26;;34012:9;34006:4;34002:20;33998:1;33987:9;33983:17;33976:47;34040:131;34166:4;34040:131;:::i;:::-;34032:139;;33930:248;;;:::o;34184:419::-;34350:4;34388:2;34377:9;34373:18;34365:26;;34437:9;34431:4;34427:20;34423:1;34412:9;34408:17;34401:47;34465:131;34591:4;34465:131;:::i;:::-;34457:139;;34355:248;;;:::o;34609:419::-;34775:4;34813:2;34802:9;34798:18;34790:26;;34862:9;34856:4;34852:20;34848:1;34837:9;34833:17;34826:47;34890:131;35016:4;34890:131;:::i;:::-;34882:139;;34780:248;;;:::o;35034:419::-;35200:4;35238:2;35227:9;35223:18;35215:26;;35287:9;35281:4;35277:20;35273:1;35262:9;35258:17;35251:47;35315:131;35441:4;35315:131;:::i;:::-;35307:139;;35205:248;;;:::o;35459:419::-;35625:4;35663:2;35652:9;35648:18;35640:26;;35712:9;35706:4;35702:20;35698:1;35687:9;35683:17;35676:47;35740:131;35866:4;35740:131;:::i;:::-;35732:139;;35630:248;;;:::o;35884:419::-;36050:4;36088:2;36077:9;36073:18;36065:26;;36137:9;36131:4;36127:20;36123:1;36112:9;36108:17;36101:47;36165:131;36291:4;36165:131;:::i;:::-;36157:139;;36055:248;;;:::o;36309:419::-;36475:4;36513:2;36502:9;36498:18;36490:26;;36562:9;36556:4;36552:20;36548:1;36537:9;36533:17;36526:47;36590:131;36716:4;36590:131;:::i;:::-;36582:139;;36480:248;;;:::o;36734:419::-;36900:4;36938:2;36927:9;36923:18;36915:26;;36987:9;36981:4;36977:20;36973:1;36962:9;36958:17;36951:47;37015:131;37141:4;37015:131;:::i;:::-;37007:139;;36905:248;;;:::o;37159:419::-;37325:4;37363:2;37352:9;37348:18;37340:26;;37412:9;37406:4;37402:20;37398:1;37387:9;37383:17;37376:47;37440:131;37566:4;37440:131;:::i;:::-;37432:139;;37330:248;;;:::o;37584:419::-;37750:4;37788:2;37777:9;37773:18;37765:26;;37837:9;37831:4;37827:20;37823:1;37812:9;37808:17;37801:47;37865:131;37991:4;37865:131;:::i;:::-;37857:139;;37755:248;;;:::o;38009:334::-;38158:4;38196:2;38185:9;38181:18;38173:26;;38209:127;38333:1;38322:9;38318:17;38309:6;38209:127;:::i;:::-;38163:180;;;;:::o;38349:222::-;38442:4;38480:2;38469:9;38465:18;38457:26;;38493:71;38561:1;38550:9;38546:17;38537:6;38493:71;:::i;:::-;38447:124;;;;:::o;38577:332::-;38698:4;38736:2;38725:9;38721:18;38713:26;;38749:71;38817:1;38806:9;38802:17;38793:6;38749:71;:::i;:::-;38830:72;38898:2;38887:9;38883:18;38874:6;38830:72;:::i;:::-;38703:206;;;;;:::o;38915:218::-;39006:4;39044:2;39033:9;39029:18;39021:26;;39057:69;39123:1;39112:9;39108:17;39099:6;39057:69;:::i;:::-;39011:122;;;;:::o;39139:214::-;39228:4;39266:2;39255:9;39251:18;39243:26;;39279:67;39343:1;39332:9;39328:17;39319:6;39279:67;:::i;:::-;39233:120;;;;:::o;39359:99::-;39411:6;39445:5;39439:12;39429:22;;39418:40;;;:::o;39464:168::-;39547:11;39581:6;39576:3;39569:19;39621:4;39616:3;39612:14;39597:29;;39559:73;;;;:::o;39638:169::-;39722:11;39756:6;39751:3;39744:19;39796:4;39791:3;39787:14;39772:29;;39734:73;;;;:::o;39813:148::-;39915:11;39952:3;39937:18;;39927:34;;;;:::o;39967:305::-;40007:3;40026:20;40044:1;40026:20;:::i;:::-;40021:25;;40060:20;40078:1;40060:20;:::i;:::-;40055:25;;40214:1;40146:66;40142:74;40139:1;40136:81;40133:2;;;40220:18;;:::i;:::-;40133:2;40264:1;40261;40257:9;40250:16;;40011:261;;;;:::o;40278:185::-;40318:1;40335:20;40353:1;40335:20;:::i;:::-;40330:25;;40369:20;40387:1;40369:20;:::i;:::-;40364:25;;40408:1;40398:2;;40413:18;;:::i;:::-;40398:2;40455:1;40452;40448:9;40443:14;;40320:143;;;;:::o;40469:191::-;40509:4;40529:20;40547:1;40529:20;:::i;:::-;40524:25;;40563:20;40581:1;40563:20;:::i;:::-;40558:25;;40602:1;40599;40596:8;40593:2;;;40607:18;;:::i;:::-;40593:2;40652:1;40649;40645:9;40637:17;;40514:146;;;;:::o;40666:96::-;40703:7;40732:24;40750:5;40732:24;:::i;:::-;40721:35;;40711:51;;;:::o;40768:90::-;40802:7;40845:5;40838:13;40831:21;40820:32;;40810:48;;;:::o;40864:77::-;40901:7;40930:5;40919:16;;40909:32;;;:::o;40947:124::-;41012:7;41041:24;41059:5;41041:24;:::i;:::-;41030:35;;41020:51;;;:::o;41077:126::-;41114:7;41154:42;41147:5;41143:54;41132:65;;41122:81;;;:::o;41209:142::-;41246:7;41286:58;41279:5;41275:70;41264:81;;41254:97;;;:::o;41357:77::-;41394:7;41423:5;41412:16;;41402:32;;;:::o;41440:93::-;41476:7;41516:10;41509:5;41505:22;41494:33;;41484:49;;;:::o;41539:86::-;41574:7;41614:4;41607:5;41603:16;41592:27;;41582:43;;;:::o;41631:154::-;41715:6;41710:3;41705;41692:30;41777:1;41768:6;41763:3;41759:16;41752:27;41682:103;;;:::o;41791:307::-;41859:1;41869:113;41883:6;41880:1;41877:13;41869:113;;;41968:1;41963:3;41959:11;41953:18;41949:1;41944:3;41940:11;41933:39;41905:2;41902:1;41898:10;41893:15;;41869:113;;;42000:6;41997:1;41994:13;41991:2;;;42080:1;42071:6;42066:3;42062:16;42055:27;41991:2;41840:258;;;;:::o;42104:320::-;42148:6;42185:1;42179:4;42175:12;42165:22;;42232:1;42226:4;42222:12;42253:18;42243:2;;42309:4;42301:6;42297:17;42287:27;;42243:2;42371;42363:6;42360:14;42340:18;42337:38;42334:2;;;42390:18;;:::i;:::-;42334:2;42155:269;;;;:::o;42430:79::-;42469:7;42498:5;42487:16;;42477:32;;;:::o;42515:180::-;42563:77;42560:1;42553:88;42660:4;42657:1;42650:15;42684:4;42681:1;42674:15;42701:180;42749:77;42746:1;42739:88;42846:4;42843:1;42836:15;42870:4;42867:1;42860:15;42887:180;42935:77;42932:1;42925:88;43032:4;43029:1;43022:15;43056:4;43053:1;43046:15;43073:102;43114:6;43165:2;43161:7;43156:2;43149:5;43145:14;43141:28;43131:38;;43121:54;;;:::o;43181:174::-;43321:26;43317:1;43309:6;43305:14;43298:50;43287:68;:::o;43361:179::-;43501:31;43497:1;43489:6;43485:14;43478:55;43467:73;:::o;43546:222::-;43686:34;43682:1;43674:6;43670:14;43663:58;43755:5;43750:2;43742:6;43738:15;43731:30;43652:116;:::o;43774:181::-;43914:33;43910:1;43902:6;43898:14;43891:57;43880:75;:::o;43961:179::-;44101:31;44097:1;44089:6;44085:14;44078:55;44067:73;:::o;44146:221::-;44286:34;44282:1;44274:6;44270:14;44263:58;44355:4;44350:2;44342:6;44338:15;44331:29;44252:115;:::o;44373:181::-;44513:33;44509:1;44501:6;44497:14;44490:57;44479:75;:::o;44560:175::-;44700:27;44696:1;44688:6;44684:14;44677:51;44666:69;:::o;44741:225::-;44881:34;44877:1;44869:6;44865:14;44858:58;44950:8;44945:2;44937:6;44933:15;44926:33;44847:119;:::o;44972:221::-;45112:34;45108:1;45100:6;45096:14;45089:58;45181:4;45176:2;45168:6;45164:15;45157:29;45078:115;:::o;45199:214::-;45339:66;45335:1;45327:6;45323:14;45316:90;45305:108;:::o;45419:179::-;45559:31;45555:1;45547:6;45543:14;45536:55;45525:73;:::o;45604:179::-;45744:31;45740:1;45732:6;45728:14;45721:55;45710:73;:::o;45789:225::-;45929:34;45925:1;45917:6;45913:14;45906:58;45998:8;45993:2;45985:6;45981:15;45974:33;45895:119;:::o;46020:221::-;46160:34;46156:1;46148:6;46144:14;46137:58;46229:4;46224:2;46216:6;46212:15;46205:29;46126:115;:::o;46247:223::-;46387:34;46383:1;46375:6;46371:14;46364:58;46456:6;46451:2;46443:6;46439:15;46432:31;46353:117;:::o;46476:177::-;46616:29;46612:1;46604:6;46600:14;46593:53;46582:71;:::o;46659:221::-;46799:34;46795:1;46787:6;46783:14;46776:58;46868:4;46863:2;46855:6;46851:15;46844:29;46765:115;:::o;46886:180::-;47026:32;47022:1;47014:6;47010:14;47003:56;46992:74;:::o;47072:235::-;47212:34;47208:1;47200:6;47196:14;47189:58;47281:18;47276:2;47268:6;47264:15;47257:43;47178:129;:::o;47313:182::-;47453:34;47449:1;47441:6;47437:14;47430:58;47419:76;:::o;47501:226::-;47641:34;47637:1;47629:6;47625:14;47618:58;47710:9;47705:2;47697:6;47693:15;47686:34;47607:120;:::o;47733:230::-;47873:34;47869:1;47861:6;47857:14;47850:58;47942:13;47937:2;47929:6;47925:15;47918:38;47839:124;:::o;47969:220::-;48109:34;48105:1;48097:6;48093:14;48086:58;48178:3;48173:2;48165:6;48161:15;48154:28;48075:114;:::o;48195:224::-;48335:34;48331:1;48323:6;48319:14;48312:58;48404:7;48399:2;48391:6;48387:15;48380:32;48301:118;:::o;48425:225::-;48565:34;48561:1;48553:6;48549:14;48542:58;48634:8;48629:2;48621:6;48617:15;48610:33;48531:119;:::o;48656:223::-;48796:34;48792:1;48784:6;48780:14;48773:58;48865:6;48860:2;48852:6;48848:15;48841:31;48762:117;:::o;48885:172::-;49025:24;49021:1;49013:6;49009:14;49002:48;48991:66;:::o;49063:224::-;49203:34;49199:1;49191:6;49187:14;49180:58;49272:7;49267:2;49259:6;49255:15;49248:32;49169:118;:::o;49293:181::-;49433:33;49429:1;49421:6;49417:14;49410:57;49399:75;:::o;49480:122::-;49553:24;49571:5;49553:24;:::i;:::-;49546:5;49543:35;49533:2;;49592:1;49589;49582:12;49533:2;49523:79;:::o;49608:122::-;49681:24;49699:5;49681:24;:::i;:::-;49674:5;49671:35;49661:2;;49720:1;49717;49710:12;49661:2;49651:79;:::o;49736:178::-;49837:52;49883:5;49837:52;:::i;:::-;49830:5;49827:63;49817:2;;49904:1;49901;49894:12;49817:2;49807:107;:::o;49920:122::-;49993:24;50011:5;49993:24;:::i;:::-;49986:5;49983:35;49973:2;;50032:1;50029;50022:12;49973:2;49963:79;:::o;50048:120::-;50120:23;50137:5;50120:23;:::i;:::-;50113:5;50110:34;50100:2;;50158:1;50155;50148:12;50100:2;50090:78;:::o;50174:118::-;50245:22;50261:5;50245:22;:::i;:::-;50238:5;50235:33;50225:2;;50282:1;50279;50272:12;50225:2;50215:77;:::o

Swarm Source

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