ETH Price: $2,491.88 (+0.88%)

Token

BRICS Tether (BRICST)
 

Overview

Max Total Supply

3,018,200 BRICST

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,065.57 BRICST

Value
$0.00
0xe0e8546e19c7813c206181fdfb769dde5cb03fcb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BRICSTether

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-31
*/

// File: @openzeppelin/contracts/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/contracts/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/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/utils/math/Math.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.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 // Deprecated in v4.8
    }

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

    /**
     * @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) {
        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.
            /// @solidity memory-safe-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 {
            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 the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/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/contracts/access/IAccessControl.sol


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

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

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

// File: @openzeppelin/contracts/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/contracts/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/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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 `from` to `to`.
     *
     * 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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/contracts/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.8.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/contracts/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: contracts/BRICSTether.sol


pragma solidity ^0.8.9;






/// @custom:security-contact [email protected]
contract BRICSTether is ERC20, ERC20Burnable, Pausable, AccessControl, ERC20Permit {
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() ERC20("BRICS Tether", "BRICST") ERC20Permit("BRICS Tether") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _mint(msg.sender, 100000 * 10 ** decimals());
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","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":"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":[],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040523480156200001257600080fd5b506040518060400160405280600c81526020017f4252494353205465746865720000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600c81526020017f42524943532054657468657200000000000000000000000000000000000000008152506040518060400160405280600681526020017f425249435354000000000000000000000000000000000000000000000000000081525081600390805190602001906200010492919062000667565b5080600490805190602001906200011d92919062000667565b5050506000600560006101000a81548160ff02191690831515021790555060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001a4818484620002ac60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050806101208181525050505050505050620002036000801b33620002e860201b60201c565b620002357f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620002e860201b60201c565b62000274336200024a620003da60201b60201c565b600a620002589190620008b1565b620186a062000268919062000902565b620003e360201b60201c565b620002a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620002e860201b60201c565b62000c05565b60008383834630604051602001620002c9959493929190620009d4565b6040516020818303038152906040528051906020012090509392505050565b620002fa82826200055160201b60201c565b620003d65760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200037b620005bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044d9062000a92565b60405180910390fd5b6200046a60008383620005c460201b60201c565b80600260008282546200047e919062000ab4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000531919062000b11565b60405180910390a36200054d60008383620005f160201b60201c565b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b620005d4620005f660201b60201c565b620005ec8383836200064b60201b62000d9b1760201c565b505050565b505050565b620006066200065060201b60201c565b1562000649576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006409062000b7e565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b828054620006759062000bcf565b90600052602060002090601f016020900481019282620006995760008555620006e5565b82601f10620006b457805160ff1916838001178555620006e5565b82800160010185558215620006e5579182015b82811115620006e4578251825591602001919060010190620006c7565b5b509050620006f49190620006f8565b5090565b5b8082111562000713576000816000905550600101620006f9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007a5578086048111156200077d576200077c62000717565b5b60018516156200078d5780820291505b80810290506200079d8562000746565b94506200075d565b94509492505050565b600082620007c0576001905062000893565b81620007d0576000905062000893565b8160018114620007e95760028114620007f4576200082a565b600191505062000893565b60ff84111562000809576200080862000717565b5b8360020a91508482111562000823576200082262000717565b5b5062000893565b5060208310610133831016604e8410600b8410161715620008645782820a9050838111156200085e576200085d62000717565b5b62000893565b62000873848484600162000753565b925090508184048111156200088d576200088c62000717565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008be826200089a565b9150620008cb83620008a4565b9250620008fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007ae565b905092915050565b60006200090f826200089a565b91506200091c836200089a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000958576200095762000717565b5b828202905092915050565b6000819050919050565b620009788162000963565b82525050565b62000989816200089a565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009bc826200098f565b9050919050565b620009ce81620009af565b82525050565b600060a082019050620009eb60008301886200096d565b620009fa60208301876200096d565b62000a0960408301866200096d565b62000a1860608301856200097e565b62000a276080830184620009c3565b9695505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a7a601f8362000a31565b915062000a878262000a42565b602082019050919050565b6000602082019050818103600083015262000aad8162000a6b565b9050919050565b600062000ac1826200089a565b915062000ace836200089a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b065762000b0562000717565b5b828201905092915050565b600060208201905062000b2860008301846200097e565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000b6660108362000a31565b915062000b738262000b2e565b602082019050919050565b6000602082019050818103600083015262000b998162000b57565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000be857607f821691505b6020821081141562000bff5762000bfe62000ba0565b5b50919050565b60805160a05160c05160e051610100516101205161349a62000c556000396000611484015260006114c6015260006114a5015260006113da0152600061143001526000611459015261349a6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610542578063d547741f14610560578063dd62ed3e1461057c578063e63ab1e9146105ac576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063d505accf14610526576101cf565b80637ecebe00116100de5780637ecebe00146104205780638456cb591461045057806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec5780633644e5151461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061213d565b6105ca565b6040516101fb9190612185565b60405180910390f35b61020c610644565b6040516102199190612239565b60405180910390f35b61023c600480360381019061023791906122ef565b6106d6565b6040516102499190612185565b60405180910390f35b61025a6106f9565b604051610267919061233e565b60405180910390f35b61028a60048036038101906102859190612359565b610703565b6040516102979190612185565b60405180910390f35b6102ba60048036038101906102b591906123e2565b610732565b6040516102c7919061241e565b60405180910390f35b6102ea60048036038101906102e59190612439565b610752565b005b6102f4610773565b6040516103019190612495565b60405180910390f35b61031261077c565b60405161031f919061241e565b60405180910390f35b610342600480360381019061033d9190612439565b61078b565b005b61035e600480360381019061035991906122ef565b61080e565b60405161036b9190612185565b60405180910390f35b61037c610845565b005b610398600480360381019061039391906122ef565b61087a565b005b6103b460048036038101906103af91906124b0565b6108b3565b005b6103be6108c7565b6040516103cb9190612185565b60405180910390f35b6103ee60048036038101906103e991906124dd565b6108de565b6040516103fb919061233e565b60405180910390f35b61041e600480360381019061041991906122ef565b610926565b005b61043a600480360381019061043591906124dd565b610946565b604051610447919061233e565b60405180910390f35b610458610996565b005b610474600480360381019061046f9190612439565b6109cb565b6040516104819190612185565b60405180910390f35b610492610a36565b60405161049f9190612239565b60405180910390f35b6104b0610ac8565b6040516104bd919061241e565b60405180910390f35b6104e060048036038101906104db91906122ef565b610acf565b6040516104ed9190612185565b60405180910390f35b610510600480360381019061050b91906122ef565b610b46565b60405161051d9190612185565b60405180910390f35b610540600480360381019061053b9190612536565b610b69565b005b61054a610cab565b604051610557919061241e565b60405180910390f35b61057a60048036038101906105759190612439565b610ccf565b005b610596600480360381019061059191906125d8565b610cf0565b6040516105a3919061233e565b60405180910390f35b6105b4610d77565b6040516105c1919061241e565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d575061063c82610da0565b5b9050919050565b60606003805461065390612647565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90612647565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6000806106e1610e0a565b90506106ee818585610e12565b600191505092915050565b6000600254905090565b60008061070e610e0a565b905061071b858285610fdd565b610726858585611069565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61075b82610732565b610764816112e1565b61076e83836112f5565b505050565b60006012905090565b60006107866113d6565b905090565b610793610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f7906126eb565b60405180910390fd5b61080a82826114f0565b5050565b600080610819610e0a565b905061083a81858561082b8589610cf0565b610835919061273a565b610e12565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61086f816112e1565b6108776115d2565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a4816112e1565b6108ae8383611635565b505050565b6108c46108be610e0a565b8261178c565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093882610932610e0a565b83610fdd565b610942828261178c565b5050565b600061098f600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061195a565b9050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c0816112e1565b6109c8611968565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a4590612647565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7190612647565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000801b81565b600080610ada610e0a565b90506000610ae88286610cf0565b905083811015610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612802565b60405180910390fd5b610b3a8286868403610e12565b60019250505092915050565b600080610b51610e0a565b9050610b5e818585611069565b600191505092915050565b83421115610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061286e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610bdb8c6119cb565b89604051602001610bf19695949392919061289d565b6040516020818303038152906040528051906020012090506000610c1482611a29565b90506000610c2482878787611a43565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061294a565b60405180910390fd5b610c9f8a8a8a610e12565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610cd882610732565b610ce1816112e1565b610ceb83836114f0565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906129dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612a6e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fd0919061233e565b60405180910390a3505050565b6000610fe98484610cf0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110635781811015611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612ada565b60405180910390fd5b6110628484848403610e12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612bfe565b60405180910390fd5b611154838383611a6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612c90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c8919061233e565b60405180910390a36112db848484611a86565b50505050565b6112f2816112ed610e0a565b611a8b565b50565b6112ff82826109cb565b6113d25760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611377610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561145257507f000000000000000000000000000000000000000000000000000000000000000046145b1561147f577f000000000000000000000000000000000000000000000000000000000000000090506114ed565b6114ea7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611b10565b90505b90565b6114fa82826109cb565b156115ce5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611573610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115da611b4a565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161e610e0a565b60405161162b9190612cb0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90612d17565b60405180910390fd5b6116b160008383611a6e565b80600260008282546116c3919061273a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611774919061233e565b60405180910390a361178860008383611a86565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390612da9565b60405180910390fd5b61180882600083611a6e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612e3b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611941919061233e565b60405180910390a361195583600084611a86565b505050565b600081600001549050919050565b611970611b93565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119b4610e0a565b6040516119c19190612cb0565b60405180910390a1565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a188161195a565b9150611a2381611bdd565b50919050565b6000611a3c611a366113d6565b83611bf3565b9050919050565b6000806000611a5487878787611c26565b91509150611a6181611d09565b8192505050949350505050565b611a76611b93565b611a81838383610d9b565b505050565b505050565b611a9582826109cb565b611b0c57611aa281611e77565b611ab08360001c6020611ea4565b604051602001611ac1929190612f2f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039190612239565b60405180910390fd5b5050565b60008383834630604051602001611b2b959493929190612f69565b6040516020818303038152906040528051906020012090509392505050565b611b526108c7565b611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613008565b60405180910390fd5b565b611b9b6108c7565b15611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613074565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611c08929190613101565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611c61576000600391509150611d00565b600060018787878760405160008152602001604052604051611c869493929190613138565b6020604051602081039080840390855afa158015611ca8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf757600060019250925050611d00565b80600092509250505b94509492505050565b60006004811115611d1d57611d1c61317d565b5b816004811115611d3057611d2f61317d565b5b1415611d3b57611e74565b60016004811115611d4f57611d4e61317d565b5b816004811115611d6257611d6161317d565b5b1415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a906131f8565b60405180910390fd5b60026004811115611db757611db661317d565b5b816004811115611dca57611dc961317d565b5b1415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613264565b60405180910390fd5b60036004811115611e1f57611e1e61317d565b5b816004811115611e3257611e3161317d565b5b1415611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906132f6565b60405180910390fd5b5b50565b6060611e9d8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611ea4565b9050919050565b606060006002836002611eb79190613316565b611ec1919061273a565b67ffffffffffffffff811115611eda57611ed9613370565b5b6040519080825280601f01601f191660200182016040528015611f0c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f4457611f4361339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611fa857611fa761339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611fe89190613316565b611ff2919061273a565b90505b6001811115612092577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120345761203361339f565b5b1a60f81b82828151811061204b5761204a61339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061208b906133ce565b9050611ff5565b50600084146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90613444565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61211a816120e5565b811461212557600080fd5b50565b60008135905061213781612111565b92915050565b600060208284031215612153576121526120e0565b5b600061216184828501612128565b91505092915050565b60008115159050919050565b61217f8161216a565b82525050565b600060208201905061219a6000830184612176565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121da5780820151818401526020810190506121bf565b838111156121e9576000848401525b50505050565b6000601f19601f8301169050919050565b600061220b826121a0565b61221581856121ab565b93506122258185602086016121bc565b61222e816121ef565b840191505092915050565b600060208201905081810360008301526122538184612200565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122868261225b565b9050919050565b6122968161227b565b81146122a157600080fd5b50565b6000813590506122b38161228d565b92915050565b6000819050919050565b6122cc816122b9565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b60008060408385031215612306576123056120e0565b5b6000612314858286016122a4565b9250506020612325858286016122da565b9150509250929050565b612338816122b9565b82525050565b6000602082019050612353600083018461232f565b92915050565b600080600060608486031215612372576123716120e0565b5b6000612380868287016122a4565b9350506020612391868287016122a4565b92505060406123a2868287016122da565b9150509250925092565b6000819050919050565b6123bf816123ac565b81146123ca57600080fd5b50565b6000813590506123dc816123b6565b92915050565b6000602082840312156123f8576123f76120e0565b5b6000612406848285016123cd565b91505092915050565b612418816123ac565b82525050565b6000602082019050612433600083018461240f565b92915050565b600080604083850312156124505761244f6120e0565b5b600061245e858286016123cd565b925050602061246f858286016122a4565b9150509250929050565b600060ff82169050919050565b61248f81612479565b82525050565b60006020820190506124aa6000830184612486565b92915050565b6000602082840312156124c6576124c56120e0565b5b60006124d4848285016122da565b91505092915050565b6000602082840312156124f3576124f26120e0565b5b6000612501848285016122a4565b91505092915050565b61251381612479565b811461251e57600080fd5b50565b6000813590506125308161250a565b92915050565b600080600080600080600060e0888a031215612555576125546120e0565b5b60006125638a828b016122a4565b97505060206125748a828b016122a4565b96505060406125858a828b016122da565b95505060606125968a828b016122da565b94505060806125a78a828b01612521565b93505060a06125b88a828b016123cd565b92505060c06125c98a828b016123cd565b91505092959891949750929550565b600080604083850312156125ef576125ee6120e0565b5b60006125fd858286016122a4565b925050602061260e858286016122a4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265f57607f821691505b6020821081141561267357612672612618565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006126d5602f836121ab565b91506126e082612679565b604082019050919050565b60006020820190508181036000830152612704816126c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612745826122b9565b9150612750836122b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127855761278461270b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127ec6025836121ab565b91506127f782612790565b604082019050919050565b6000602082019050818103600083015261281b816127df565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000612858601d836121ab565b915061286382612822565b602082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b6128978161227b565b82525050565b600060c0820190506128b2600083018961240f565b6128bf602083018861288e565b6128cc604083018761288e565b6128d9606083018661232f565b6128e6608083018561232f565b6128f360a083018461232f565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612934601e836121ab565b915061293f826128fe565b602082019050919050565b6000602082019050818103600083015261296381612927565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129c66024836121ab565b91506129d18261296a565b604082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a586022836121ab565b9150612a63826129fc565b604082019050919050565b60006020820190508181036000830152612a8781612a4b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ac4601d836121ab565b9150612acf82612a8e565b602082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b566025836121ab565b9150612b6182612afa565b604082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612be86023836121ab565b9150612bf382612b8c565b604082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c7a6026836121ab565b9150612c8582612c1e565b604082019050919050565b60006020820190508181036000830152612ca981612c6d565b9050919050565b6000602082019050612cc5600083018461288e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d01601f836121ab565b9150612d0c82612ccb565b602082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d936021836121ab565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e256022836121ab565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e9c601783612e5b565b9150612ea782612e66565b601782019050919050565b6000612ebd826121a0565b612ec78185612e5b565b9350612ed78185602086016121bc565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612f19601183612e5b565b9150612f2482612ee3565b601182019050919050565b6000612f3a82612e8f565b9150612f468285612eb2565b9150612f5182612f0c565b9150612f5d8284612eb2565b91508190509392505050565b600060a082019050612f7e600083018861240f565b612f8b602083018761240f565b612f98604083018661240f565b612fa5606083018561232f565b612fb2608083018461288e565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ff26014836121ab565b9150612ffd82612fbc565b602082019050919050565b6000602082019050818103600083015261302181612fe5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061305e6010836121ab565b915061306982613028565b602082019050919050565b6000602082019050818103600083015261308d81613051565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006130ca600283612e5b565b91506130d582613094565b600282019050919050565b6000819050919050565b6130fb6130f6826123ac565b6130e0565b82525050565b600061310c826130bd565b915061311882856130ea565b60208201915061312882846130ea565b6020820191508190509392505050565b600060808201905061314d600083018761240f565b61315a6020830186612486565b613167604083018561240f565b613174606083018461240f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006131e26018836121ab565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061324e601f836121ab565b915061325982613218565b602082019050919050565b6000602082019050818103600083015261327d81613241565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006132e06022836121ab565b91506132eb82613284565b604082019050919050565b6000602082019050818103600083015261330f816132d3565b9050919050565b6000613321826122b9565b915061332c836122b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133655761336461270b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006133d9826122b9565b915060008214156133ed576133ec61270b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061342e6020836121ab565b9150613439826133f8565b602082019050919050565b6000602082019050818103600083015261345d81613421565b905091905056fea26469706673582212207e60d900aa09d79cc8ebb08b59d0be2b8dbfdd72b97db3ae64355dad49c56cdc64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610542578063d547741f14610560578063dd62ed3e1461057c578063e63ab1e9146105ac576101cf565b8063a217fddf146104a8578063a457c2d7146104c6578063a9059cbb146104f6578063d505accf14610526576101cf565b80637ecebe00116100de5780637ecebe00146104205780638456cb591461045057806391d148541461045a57806395d89b411461048a576101cf565b80635c975abb146103b657806370a08231146103d457806379cc679014610404576101cf565b8063313ce56711610171578063395093511161014b57806339509351146103445780633f4ba83a1461037457806340c10f191461037e57806342966c681461039a576101cf565b8063313ce567146102ec5780633644e5151461030a57806336568abe14610328576101cf565b806318160ddd116101ad57806318160ddd1461025257806323b872dd14610270578063248a9ca3146102a05780632f2ff15d146102d0576101cf565b806301ffc9a7146101d457806306fdde0314610204578063095ea7b314610222575b600080fd5b6101ee60048036038101906101e9919061213d565b6105ca565b6040516101fb9190612185565b60405180910390f35b61020c610644565b6040516102199190612239565b60405180910390f35b61023c600480360381019061023791906122ef565b6106d6565b6040516102499190612185565b60405180910390f35b61025a6106f9565b604051610267919061233e565b60405180910390f35b61028a60048036038101906102859190612359565b610703565b6040516102979190612185565b60405180910390f35b6102ba60048036038101906102b591906123e2565b610732565b6040516102c7919061241e565b60405180910390f35b6102ea60048036038101906102e59190612439565b610752565b005b6102f4610773565b6040516103019190612495565b60405180910390f35b61031261077c565b60405161031f919061241e565b60405180910390f35b610342600480360381019061033d9190612439565b61078b565b005b61035e600480360381019061035991906122ef565b61080e565b60405161036b9190612185565b60405180910390f35b61037c610845565b005b610398600480360381019061039391906122ef565b61087a565b005b6103b460048036038101906103af91906124b0565b6108b3565b005b6103be6108c7565b6040516103cb9190612185565b60405180910390f35b6103ee60048036038101906103e991906124dd565b6108de565b6040516103fb919061233e565b60405180910390f35b61041e600480360381019061041991906122ef565b610926565b005b61043a600480360381019061043591906124dd565b610946565b604051610447919061233e565b60405180910390f35b610458610996565b005b610474600480360381019061046f9190612439565b6109cb565b6040516104819190612185565b60405180910390f35b610492610a36565b60405161049f9190612239565b60405180910390f35b6104b0610ac8565b6040516104bd919061241e565b60405180910390f35b6104e060048036038101906104db91906122ef565b610acf565b6040516104ed9190612185565b60405180910390f35b610510600480360381019061050b91906122ef565b610b46565b60405161051d9190612185565b60405180910390f35b610540600480360381019061053b9190612536565b610b69565b005b61054a610cab565b604051610557919061241e565b60405180910390f35b61057a60048036038101906105759190612439565b610ccf565b005b610596600480360381019061059191906125d8565b610cf0565b6040516105a3919061233e565b60405180910390f35b6105b4610d77565b6040516105c1919061241e565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063d575061063c82610da0565b5b9050919050565b60606003805461065390612647565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90612647565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6000806106e1610e0a565b90506106ee818585610e12565b600191505092915050565b6000600254905090565b60008061070e610e0a565b905061071b858285610fdd565b610726858585611069565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b61075b82610732565b610764816112e1565b61076e83836112f5565b505050565b60006012905090565b60006107866113d6565b905090565b610793610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f7906126eb565b60405180910390fd5b61080a82826114f0565b5050565b600080610819610e0a565b905061083a81858561082b8589610cf0565b610835919061273a565b610e12565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61086f816112e1565b6108776115d2565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a4816112e1565b6108ae8383611635565b505050565b6108c46108be610e0a565b8261178c565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61093882610932610e0a565b83610fdd565b610942828261178c565b5050565b600061098f600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061195a565b9050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109c0816112e1565b6109c8611968565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610a4590612647565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7190612647565b8015610abe5780601f10610a9357610100808354040283529160200191610abe565b820191906000526020600020905b815481529060010190602001808311610aa157829003601f168201915b5050505050905090565b6000801b81565b600080610ada610e0a565b90506000610ae88286610cf0565b905083811015610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612802565b60405180910390fd5b610b3a8286868403610e12565b60019250505092915050565b600080610b51610e0a565b9050610b5e818585611069565b600191505092915050565b83421115610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba39061286e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610bdb8c6119cb565b89604051602001610bf19695949392919061289d565b6040516020818303038152906040528051906020012090506000610c1482611a29565b90506000610c2482878787611a43565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b9061294a565b60405180910390fd5b610c9f8a8a8a610e12565b50505050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610cd882610732565b610ce1816112e1565b610ceb83836114f0565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906129dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990612a6e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fd0919061233e565b60405180910390a3505050565b6000610fe98484610cf0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110635781811015611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612ada565b60405180910390fd5b6110628484848403610e12565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090612b6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090612bfe565b60405180910390fd5b611154838383611a6e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612c90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c8919061233e565b60405180910390a36112db848484611a86565b50505050565b6112f2816112ed610e0a565b611a8b565b50565b6112ff82826109cb565b6113d25760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611377610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60007f0000000000000000000000008b4b1545a0b68d9af148e4bcc99a89ca3662d60d73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561145257507f000000000000000000000000000000000000000000000000000000000000000146145b1561147f577f57c48aeae6fc5a0e209e70805a50f77df34e499832e9e15be8045f01da27b02a90506114ed565b6114ea7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fa10599b33f67291cd595825148554c03a0ca59dafc6ba7542dd38d6822aadde77fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611b10565b90505b90565b6114fa82826109cb565b156115ce5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611573610e0a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6115da611b4a565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61161e610e0a565b60405161162b9190612cb0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169c90612d17565b60405180910390fd5b6116b160008383611a6e565b80600260008282546116c3919061273a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611774919061233e565b60405180910390a361178860008383611a86565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f390612da9565b60405180910390fd5b61180882600083611a6e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590612e3b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611941919061233e565b60405180910390a361195583600084611a86565b505050565b600081600001549050919050565b611970611b93565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119b4610e0a565b6040516119c19190612cb0565b60405180910390a1565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a188161195a565b9150611a2381611bdd565b50919050565b6000611a3c611a366113d6565b83611bf3565b9050919050565b6000806000611a5487878787611c26565b91509150611a6181611d09565b8192505050949350505050565b611a76611b93565b611a81838383610d9b565b505050565b505050565b611a9582826109cb565b611b0c57611aa281611e77565b611ab08360001c6020611ea4565b604051602001611ac1929190612f2f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b039190612239565b60405180910390fd5b5050565b60008383834630604051602001611b2b959493929190612f69565b6040516020818303038152906040528051906020012090509392505050565b611b526108c7565b611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613008565b60405180910390fd5b565b611b9b6108c7565b15611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290613074565b60405180910390fd5b565b6001816000016000828254019250508190555050565b60008282604051602001611c08929190613101565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611c61576000600391509150611d00565b600060018787878760405160008152602001604052604051611c869493929190613138565b6020604051602081039080840390855afa158015611ca8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf757600060019250925050611d00565b80600092509250505b94509492505050565b60006004811115611d1d57611d1c61317d565b5b816004811115611d3057611d2f61317d565b5b1415611d3b57611e74565b60016004811115611d4f57611d4e61317d565b5b816004811115611d6257611d6161317d565b5b1415611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a906131f8565b60405180910390fd5b60026004811115611db757611db661317d565b5b816004811115611dca57611dc961317d565b5b1415611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290613264565b60405180910390fd5b60036004811115611e1f57611e1e61317d565b5b816004811115611e3257611e3161317d565b5b1415611e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6a906132f6565b60405180910390fd5b5b50565b6060611e9d8273ffffffffffffffffffffffffffffffffffffffff16601460ff16611ea4565b9050919050565b606060006002836002611eb79190613316565b611ec1919061273a565b67ffffffffffffffff811115611eda57611ed9613370565b5b6040519080825280601f01601f191660200182016040528015611f0c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611f4457611f4361339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611fa857611fa761339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611fe89190613316565b611ff2919061273a565b90505b6001811115612092577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106120345761203361339f565b5b1a60f81b82828151811061204b5761204a61339f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061208b906133ce565b9050611ff5565b50600084146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90613444565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61211a816120e5565b811461212557600080fd5b50565b60008135905061213781612111565b92915050565b600060208284031215612153576121526120e0565b5b600061216184828501612128565b91505092915050565b60008115159050919050565b61217f8161216a565b82525050565b600060208201905061219a6000830184612176565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121da5780820151818401526020810190506121bf565b838111156121e9576000848401525b50505050565b6000601f19601f8301169050919050565b600061220b826121a0565b61221581856121ab565b93506122258185602086016121bc565b61222e816121ef565b840191505092915050565b600060208201905081810360008301526122538184612200565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122868261225b565b9050919050565b6122968161227b565b81146122a157600080fd5b50565b6000813590506122b38161228d565b92915050565b6000819050919050565b6122cc816122b9565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b60008060408385031215612306576123056120e0565b5b6000612314858286016122a4565b9250506020612325858286016122da565b9150509250929050565b612338816122b9565b82525050565b6000602082019050612353600083018461232f565b92915050565b600080600060608486031215612372576123716120e0565b5b6000612380868287016122a4565b9350506020612391868287016122a4565b92505060406123a2868287016122da565b9150509250925092565b6000819050919050565b6123bf816123ac565b81146123ca57600080fd5b50565b6000813590506123dc816123b6565b92915050565b6000602082840312156123f8576123f76120e0565b5b6000612406848285016123cd565b91505092915050565b612418816123ac565b82525050565b6000602082019050612433600083018461240f565b92915050565b600080604083850312156124505761244f6120e0565b5b600061245e858286016123cd565b925050602061246f858286016122a4565b9150509250929050565b600060ff82169050919050565b61248f81612479565b82525050565b60006020820190506124aa6000830184612486565b92915050565b6000602082840312156124c6576124c56120e0565b5b60006124d4848285016122da565b91505092915050565b6000602082840312156124f3576124f26120e0565b5b6000612501848285016122a4565b91505092915050565b61251381612479565b811461251e57600080fd5b50565b6000813590506125308161250a565b92915050565b600080600080600080600060e0888a031215612555576125546120e0565b5b60006125638a828b016122a4565b97505060206125748a828b016122a4565b96505060406125858a828b016122da565b95505060606125968a828b016122da565b94505060806125a78a828b01612521565b93505060a06125b88a828b016123cd565b92505060c06125c98a828b016123cd565b91505092959891949750929550565b600080604083850312156125ef576125ee6120e0565b5b60006125fd858286016122a4565b925050602061260e858286016122a4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061265f57607f821691505b6020821081141561267357612672612618565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006126d5602f836121ab565b91506126e082612679565b604082019050919050565b60006020820190508181036000830152612704816126c8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612745826122b9565b9150612750836122b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127855761278461270b565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127ec6025836121ab565b91506127f782612790565b604082019050919050565b6000602082019050818103600083015261281b816127df565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000612858601d836121ab565b915061286382612822565b602082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b6128978161227b565b82525050565b600060c0820190506128b2600083018961240f565b6128bf602083018861288e565b6128cc604083018761288e565b6128d9606083018661232f565b6128e6608083018561232f565b6128f360a083018461232f565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612934601e836121ab565b915061293f826128fe565b602082019050919050565b6000602082019050818103600083015261296381612927565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129c66024836121ab565b91506129d18261296a565b604082019050919050565b600060208201905081810360008301526129f5816129b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a586022836121ab565b9150612a63826129fc565b604082019050919050565b60006020820190508181036000830152612a8781612a4b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ac4601d836121ab565b9150612acf82612a8e565b602082019050919050565b60006020820190508181036000830152612af381612ab7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612b566025836121ab565b9150612b6182612afa565b604082019050919050565b60006020820190508181036000830152612b8581612b49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612be86023836121ab565b9150612bf382612b8c565b604082019050919050565b60006020820190508181036000830152612c1781612bdb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612c7a6026836121ab565b9150612c8582612c1e565b604082019050919050565b60006020820190508181036000830152612ca981612c6d565b9050919050565b6000602082019050612cc5600083018461288e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d01601f836121ab565b9150612d0c82612ccb565b602082019050919050565b60006020820190508181036000830152612d3081612cf4565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d936021836121ab565b9150612d9e82612d37565b604082019050919050565b60006020820190508181036000830152612dc281612d86565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e256022836121ab565b9150612e3082612dc9565b604082019050919050565b60006020820190508181036000830152612e5481612e18565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000612e9c601783612e5b565b9150612ea782612e66565b601782019050919050565b6000612ebd826121a0565b612ec78185612e5b565b9350612ed78185602086016121bc565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000612f19601183612e5b565b9150612f2482612ee3565b601182019050919050565b6000612f3a82612e8f565b9150612f468285612eb2565b9150612f5182612f0c565b9150612f5d8284612eb2565b91508190509392505050565b600060a082019050612f7e600083018861240f565b612f8b602083018761240f565b612f98604083018661240f565b612fa5606083018561232f565b612fb2608083018461288e565b9695505050505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ff26014836121ab565b9150612ffd82612fbc565b602082019050919050565b6000602082019050818103600083015261302181612fe5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061305e6010836121ab565b915061306982613028565b602082019050919050565b6000602082019050818103600083015261308d81613051565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006130ca600283612e5b565b91506130d582613094565b600282019050919050565b6000819050919050565b6130fb6130f6826123ac565b6130e0565b82525050565b600061310c826130bd565b915061311882856130ea565b60208201915061312882846130ea565b6020820191508190509392505050565b600060808201905061314d600083018761240f565b61315a6020830186612486565b613167604083018561240f565b613174606083018461240f565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006131e26018836121ab565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061324e601f836121ab565b915061325982613218565b602082019050919050565b6000602082019050818103600083015261327d81613241565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006132e06022836121ab565b91506132eb82613284565b604082019050919050565b6000602082019050818103600083015261330f816132d3565b9050919050565b6000613321826122b9565b915061332c836122b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133655761336461270b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006133d9826122b9565b915060008214156133ed576133ec61270b565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061342e6020836121ab565b9150613439826133f8565b602082019050919050565b6000602082019050818103600083015261345d81613421565b905091905056fea26469706673582212207e60d900aa09d79cc8ebb08b59d0be2b8dbfdd72b97db3ae64355dad49c56cdc64736f6c63430008090033

Deployed Bytecode Sourcemap

70730:1003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40881:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54963:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57314:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56083:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58095:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42704:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43145:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55925:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68970:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44289:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58799:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71331:77;;;:::i;:::-;;71416:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70020:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48223:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56254:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70430:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68712:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71250:73;;;:::i;:::-;;41177:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55182:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40282:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59540:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56587:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68001:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70889:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43585:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56843:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70820:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40881:204;40966:4;41005:32;40990:47;;;:11;:47;;;;:87;;;;41041:36;41065:11;41041:23;:36::i;:::-;40990:87;40983:94;;40881:204;;;:::o;54963:100::-;55017:13;55050:5;55043:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54963:100;:::o;57314:201::-;57397:4;57414:13;57430:12;:10;:12::i;:::-;57414:28;;57453:32;57462:5;57469:7;57478:6;57453:8;:32::i;:::-;57503:4;57496:11;;;57314:201;;;;:::o;56083:108::-;56144:7;56171:12;;56164:19;;56083:108;:::o;58095:295::-;58226:4;58243:15;58261:12;:10;:12::i;:::-;58243:30;;58284:38;58300:4;58306:7;58315:6;58284:15;:38::i;:::-;58333:27;58343:4;58349:2;58353:6;58333:9;:27::i;:::-;58378:4;58371:11;;;58095:295;;;;;:::o;42704:131::-;42778:7;42805:6;:12;42812:4;42805:12;;;;;;;;;;;:22;;;42798:29;;42704:131;;;:::o;43145:147::-;43228:18;43241:4;43228:12;:18::i;:::-;40773:16;40784:4;40773:10;:16::i;:::-;43259:25:::1;43270:4;43276:7;43259:10;:25::i;:::-;43145:147:::0;;;:::o;55925:93::-;55983:5;56008:2;56001:9;;55925:93;:::o;68970:115::-;69030:7;69057:20;:18;:20::i;:::-;69050:27;;68970:115;:::o;44289:218::-;44396:12;:10;:12::i;:::-;44385:23;;:7;:23;;;44377:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44473:26;44485:4;44491:7;44473:11;:26::i;:::-;44289:218;;:::o;58799:238::-;58887:4;58904:13;58920:12;:10;:12::i;:::-;58904:28;;58943:64;58952:5;58959:7;58996:10;58968:25;58978:5;58985:7;58968:9;:25::i;:::-;:38;;;;:::i;:::-;58943:8;:64::i;:::-;59025:4;59018:11;;;58799:238;;;;:::o;71331:77::-;70858:24;40773:16;40784:4;40773:10;:16::i;:::-;71390:10:::1;:8;:10::i;:::-;71331:77:::0;:::o;71416:107::-;70927:24;40773:16;40784:4;40773:10;:16::i;:::-;71498:17:::1;71504:2;71508:6;71498:5;:17::i;:::-;71416:107:::0;;;:::o;70020:91::-;70076:27;70082:12;:10;:12::i;:::-;70096:6;70076:5;:27::i;:::-;70020:91;:::o;48223:86::-;48270:4;48294:7;;;;;;;;;;;48287:14;;48223:86;:::o;56254:127::-;56328:7;56355:9;:18;56365:7;56355:18;;;;;;;;;;;;;;;;56348:25;;56254:127;;;:::o;70430:164::-;70507:46;70523:7;70532:12;:10;:12::i;:::-;70546:6;70507:15;:46::i;:::-;70564:22;70570:7;70579:6;70564:5;:22::i;:::-;70430:164;;:::o;68712:128::-;68781:7;68808:24;:7;:14;68816:5;68808:14;;;;;;;;;;;;;;;:22;:24::i;:::-;68801:31;;68712:128;;;:::o;71250:73::-;70858:24;40773:16;40784:4;40773:10;:16::i;:::-;71307:8:::1;:6;:8::i;:::-;71250:73:::0;:::o;41177:147::-;41263:4;41287:6;:12;41294:4;41287:12;;;;;;;;;;;:20;;:29;41308:7;41287:29;;;;;;;;;;;;;;;;;;;;;;;;;41280:36;;41177:147;;;;:::o;55182:104::-;55238:13;55271:7;55264:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55182:104;:::o;40282:49::-;40327:4;40282:49;;;:::o;59540:436::-;59633:4;59650:13;59666:12;:10;:12::i;:::-;59650:28;;59689:24;59716:25;59726:5;59733:7;59716:9;:25::i;:::-;59689:52;;59780:15;59760:16;:35;;59752:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59873:60;59882:5;59889:7;59917:15;59898:16;:34;59873:8;:60::i;:::-;59964:4;59957:11;;;;59540:436;;;;:::o;56587:193::-;56666:4;56683:13;56699:12;:10;:12::i;:::-;56683:28;;56722;56732:5;56739:2;56743:6;56722:9;:28::i;:::-;56768:4;56761:11;;;56587:193;;;;:::o;68001:645::-;68245:8;68226:15;:27;;68218:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;68300:18;67176:95;68360:5;68367:7;68376:5;68383:16;68393:5;68383:9;:16::i;:::-;68401:8;68331:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68321:90;;;;;;68300:111;;68424:12;68439:28;68456:10;68439:16;:28::i;:::-;68424:43;;68480:14;68497:28;68511:4;68517:1;68520;68523;68497:13;:28::i;:::-;68480:45;;68554:5;68544:15;;:6;:15;;;68536:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;68607:31;68616:5;68623:7;68632:5;68607:8;:31::i;:::-;68207:439;;;68001:645;;;;;;;:::o;70889:62::-;70927:24;70889:62;:::o;43585:149::-;43669:18;43682:4;43669:12;:18::i;:::-;40773:16;40784:4;40773:10;:16::i;:::-;43700:26:::1;43712:4;43718:7;43700:11;:26::i;:::-;43585:149:::0;;;:::o;56843:151::-;56932:7;56959:11;:18;56971:5;56959:18;;;;;;;;;;;;;;;:27;56978:7;56959:27;;;;;;;;;;;;;;;;56952:34;;56843:151;;;;:::o;70820:62::-;70858:24;70820:62;:::o;65291:125::-;;;;:::o;5612:157::-;5697:4;5736:25;5721:40;;;:11;:40;;;;5714:47;;5612:157;;;:::o;38090:98::-;38143:7;38170:10;38163:17;;38090:98;:::o;63567:380::-;63720:1;63703:19;;:5;:19;;;;63695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63801:1;63782:21;;:7;:21;;;;63774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63885:6;63855:11;:18;63867:5;63855:18;;;;;;;;;;;;;;;:27;63874:7;63855:27;;;;;;;;;;;;;;;:36;;;;63923:7;63907:32;;63916:5;63907:32;;;63932:6;63907:32;;;;;;:::i;:::-;;;;;;;;63567:380;;;:::o;64238:453::-;64373:24;64400:25;64410:5;64417:7;64400:9;:25::i;:::-;64373:52;;64460:17;64440:16;:37;64436:248;;64522:6;64502:16;:26;;64494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64606:51;64615:5;64622:7;64650:6;64631:16;:25;64606:8;:51::i;:::-;64436:248;64362:329;64238:453;;;:::o;60446:840::-;60593:1;60577:18;;:4;:18;;;;60569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60670:1;60656:16;;:2;:16;;;;60648:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;60725:38;60746:4;60752:2;60756:6;60725:20;:38::i;:::-;60776:19;60798:9;:15;60808:4;60798:15;;;;;;;;;;;;;;;;60776:37;;60847:6;60832:11;:21;;60824:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60964:6;60950:11;:20;60932:9;:15;60942:4;60932:15;;;;;;;;;;;;;;;:38;;;;61167:6;61150:9;:13;61160:2;61150:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;61217:2;61202:26;;61211:4;61202:26;;;61221:6;61202:26;;;;;;:::i;:::-;;;;;;;;61241:37;61261:4;61267:2;61271:6;61241:19;:37::i;:::-;60558:728;60446:840;;;:::o;41628:105::-;41695:30;41706:4;41712:12;:10;:12::i;:::-;41695:10;:30::i;:::-;41628:105;:::o;45886:238::-;45970:22;45978:4;45984:7;45970;:22::i;:::-;45965:152;;46041:4;46009:6;:12;46016:4;46009:12;;;;;;;;;;;:20;;:29;46030:7;46009:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;46092:12;:10;:12::i;:::-;46065:40;;46083:7;46065:40;;46077:4;46065:40;;;;;;;;;;45965:152;45886:238;;:::o;32969:314::-;33022:7;33063:12;33046:29;;33054:4;33046:29;;;:66;;;;;33096:16;33079:13;:33;33046:66;33042:234;;;33136:24;33129:31;;;;33042:234;33200:64;33222:10;33234:12;33248:15;33200:21;:64::i;:::-;33193:71;;32969:314;;:::o;46304:239::-;46388:22;46396:4;46402:7;46388;:22::i;:::-;46384:152;;;46459:5;46427:6;:12;46434:4;46427:12;;;;;;;;;;;:20;;:29;46448:7;46427:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;46511:12;:10;:12::i;:::-;46484:40;;46502:7;46484:40;;46496:4;46484:40;;;;;;;;;;46384:152;46304:239;;:::o;49078:120::-;48087:16;:14;:16::i;:::-;49147:5:::1;49137:7;;:15;;;;;;;;;;;;;;;;;;49168:22;49177:12;:10;:12::i;:::-;49168:22;;;;;;:::i;:::-;;;;;;;;49078:120::o:0;61573:548::-;61676:1;61657:21;;:7;:21;;;;61649:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61727:49;61756:1;61760:7;61769:6;61727:20;:49::i;:::-;61805:6;61789:12;;:22;;;;;;;:::i;:::-;;;;;;;;61982:6;61960:9;:18;61970:7;61960:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;62036:7;62015:37;;62032:1;62015:37;;;62045:6;62015:37;;;;;;:::i;:::-;;;;;;;;62065:48;62093:1;62097:7;62106:6;62065:19;:48::i;:::-;61573:548;;:::o;62454:675::-;62557:1;62538:21;;:7;:21;;;;62530:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;62610:49;62631:7;62648:1;62652:6;62610:20;:49::i;:::-;62672:22;62697:9;:18;62707:7;62697:18;;;;;;;;;;;;;;;;62672:43;;62752:6;62734:14;:24;;62726:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;62871:6;62854:14;:23;62833:9;:18;62843:7;62833:18;;;;;;;;;;;;;;;:44;;;;62988:6;62972:12;;:22;;;;;;;;;;;63049:1;63023:37;;63032:7;63023:37;;;63053:6;63023:37;;;;;;:::i;:::-;;;;;;;;63073:48;63093:7;63110:1;63114:6;63073:19;:48::i;:::-;62519:610;62454:675;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;48819:118::-;47828:19;:17;:19::i;:::-;48889:4:::1;48879:7;;:14;;;;;;;;;;;;;;;;;;48909:20;48916:12;:10;:12::i;:::-;48909:20;;;;;;:::i;:::-;;;;;;;;48819:118::o:0;69223:207::-;69283:15;69311:30;69344:7;:14;69352:5;69344:14;;;;;;;;;;;;;;;69311:47;;69379:15;:5;:13;:15::i;:::-;69369:25;;69405:17;:5;:15;:17::i;:::-;69300:130;69223:207;;;:::o;34196:167::-;34273:7;34300:55;34322:20;:18;:20::i;:::-;34344:10;34300:21;:55::i;:::-;34293:62;;34196:167;;;:::o;27842:279::-;27970:7;27991:17;28010:18;28032:25;28043:4;28049:1;28052;28055;28032:10;:25::i;:::-;27990:67;;;;28068:18;28080:5;28068:11;:18::i;:::-;28104:9;28097:16;;;;27842:279;;;;;;:::o;71531:199::-;47828:19;:17;:19::i;:::-;71678:44:::1;71705:4;71711:2;71715:6;71678:26;:44::i;:::-;71531:199:::0;;;:::o;66020:124::-;;;;:::o;42023:492::-;42112:22;42120:4;42126:7;42112;:22::i;:::-;42107:401;;42300:28;42320:7;42300:19;:28::i;:::-;42401:38;42429:4;42421:13;;42436:2;42401:19;:38::i;:::-;42205:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42151:345;;;;;;;;;;;:::i;:::-;;;;;;;;42107:401;42023:492;;:::o;33291:263::-;33435:7;33483:8;33493;33503:11;33516:13;33539:4;33472:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33462:84;;;;;;33455:91;;33291:263;;;;;:::o;48567:108::-;48634:8;:6;:8::i;:::-;48626:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48567:108::o;48382:::-;48453:8;:6;:8::i;:::-;48452:9;48444:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;48382:108::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;29533:196::-;29626:7;29692:15;29709:10;29663:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29653:68;;;;;;29646:75;;29533:196;;;;:::o;26183:1520::-;26314:7;26323:12;27248:66;27243:1;27235:10;;:79;27231:163;;;27347:1;27351:30;27331:51;;;;;;27231:163;27491:14;27508:24;27518:4;27524:1;27527;27530;27508:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27491:41;;27565:1;27547:20;;:6;:20;;;27543:103;;;27600:1;27604:29;27584:50;;;;;;;27543:103;27666:6;27674:20;27658:37;;;;;26183:1520;;;;;;;;:::o;21575:521::-;21653:20;21644:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;21640:449;;;21690:7;;21640:449;21751:29;21742:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;21738:351;;;21797:34;;;;;;;;;;:::i;:::-;;;;;;;;21738:351;21862:35;21853:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;21849:240;;;21914:41;;;;;;;;;;:::i;:::-;;;;;;;;21849:240;21986:30;21977:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;21973:116;;;22033:44;;;;;;;;;;:::i;:::-;;;;;;;;21973:116;21575:521;;:::o;20817:151::-;20875:13;20908:52;20936:4;20920:22;;18972:2;20908:52;;:11;:52::i;:::-;20901:59;;20817:151;;;:::o;20213:447::-;20288:13;20314:19;20359:1;20350:6;20346:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20336:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20314:47;;20372:15;:6;20379:1;20372:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20398;:6;20405:1;20398:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;20429:9;20454:1;20445:6;20441:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;20429:26;;20424:131;20461:1;20457;:5;20424:131;;;20496:8;20513:3;20505:5;:11;20496:21;;;;;;;:::i;:::-;;;;;20484:6;20491:1;20484:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;20542:1;20532:11;;;;;20464:3;;;;:::i;:::-;;;20424:131;;;;20582:1;20573:5;:10;20565:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;20645:6;20631:21;;;20213:447;;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:77::-;5265:7;5294:5;5283:16;;5228:77;;;:::o;5311:122::-;5384:24;5402:5;5384:24;:::i;:::-;5377:5;5374:35;5364:63;;5423:1;5420;5413:12;5364:63;5311:122;:::o;5439:139::-;5485:5;5523:6;5510:20;5501:29;;5539:33;5566:5;5539:33;:::i;:::-;5439:139;;;;:::o;5584:329::-;5643:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:119;;;5698:79;;:::i;:::-;5660:119;5818:1;5843:53;5888:7;5879:6;5868:9;5864:22;5843:53;:::i;:::-;5833:63;;5789:117;5584:329;;;;:::o;5919:118::-;6006:24;6024:5;6006:24;:::i;:::-;6001:3;5994:37;5919:118;;:::o;6043:222::-;6136:4;6174:2;6163:9;6159:18;6151:26;;6187:71;6255:1;6244:9;6240:17;6231:6;6187:71;:::i;:::-;6043:222;;;;:::o;6271:474::-;6339:6;6347;6396:2;6384:9;6375:7;6371:23;6367:32;6364:119;;;6402:79;;:::i;:::-;6364:119;6522:1;6547:53;6592:7;6583:6;6572:9;6568:22;6547:53;:::i;:::-;6537:63;;6493:117;6649:2;6675:53;6720:7;6711:6;6700:9;6696:22;6675:53;:::i;:::-;6665:63;;6620:118;6271:474;;;;;:::o;6751:86::-;6786:7;6826:4;6819:5;6815:16;6804:27;;6751:86;;;:::o;6843:112::-;6926:22;6942:5;6926:22;:::i;:::-;6921:3;6914:35;6843:112;;:::o;6961:214::-;7050:4;7088:2;7077:9;7073:18;7065:26;;7101:67;7165:1;7154:9;7150:17;7141:6;7101:67;:::i;:::-;6961:214;;;;:::o;7181:329::-;7240:6;7289:2;7277:9;7268:7;7264:23;7260:32;7257:119;;;7295:79;;:::i;:::-;7257:119;7415:1;7440:53;7485:7;7476:6;7465:9;7461:22;7440:53;:::i;:::-;7430:63;;7386:117;7181:329;;;;:::o;7516:::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7750:1;7775:53;7820:7;7811:6;7800:9;7796:22;7775:53;:::i;:::-;7765:63;;7721:117;7516:329;;;;:::o;7851:118::-;7922:22;7938:5;7922:22;:::i;:::-;7915:5;7912:33;7902:61;;7959:1;7956;7949:12;7902:61;7851:118;:::o;7975:135::-;8019:5;8057:6;8044:20;8035:29;;8073:31;8098:5;8073:31;:::i;:::-;7975:135;;;;:::o;8116:1199::-;8227:6;8235;8243;8251;8259;8267;8275;8324:3;8312:9;8303:7;8299:23;8295:33;8292:120;;;8331:79;;:::i;:::-;8292:120;8451:1;8476:53;8521:7;8512:6;8501:9;8497:22;8476:53;:::i;:::-;8466:63;;8422:117;8578:2;8604:53;8649:7;8640:6;8629:9;8625:22;8604:53;:::i;:::-;8594:63;;8549:118;8706:2;8732:53;8777:7;8768:6;8757:9;8753:22;8732:53;:::i;:::-;8722:63;;8677:118;8834:2;8860:53;8905:7;8896:6;8885:9;8881:22;8860:53;:::i;:::-;8850:63;;8805:118;8962:3;8989:51;9032:7;9023:6;9012:9;9008:22;8989:51;:::i;:::-;8979:61;;8933:117;9089:3;9116:53;9161:7;9152:6;9141:9;9137:22;9116:53;:::i;:::-;9106:63;;9060:119;9218:3;9245:53;9290:7;9281:6;9270:9;9266:22;9245:53;:::i;:::-;9235:63;;9189:119;8116:1199;;;;;;;;;;:::o;9321:474::-;9389:6;9397;9446:2;9434:9;9425:7;9421:23;9417:32;9414:119;;;9452:79;;:::i;:::-;9414:119;9572:1;9597:53;9642:7;9633:6;9622:9;9618:22;9597:53;:::i;:::-;9587:63;;9543:117;9699:2;9725:53;9770:7;9761:6;9750:9;9746:22;9725:53;:::i;:::-;9715:63;;9670:118;9321:474;;;;;:::o;9801:180::-;9849:77;9846:1;9839:88;9946:4;9943:1;9936:15;9970:4;9967:1;9960:15;9987:320;10031:6;10068:1;10062:4;10058:12;10048:22;;10115:1;10109:4;10105:12;10136:18;10126:81;;10192:4;10184:6;10180:17;10170:27;;10126:81;10254:2;10246:6;10243:14;10223:18;10220:38;10217:84;;;10273:18;;:::i;:::-;10217:84;10038:269;9987:320;;;:::o;10313:234::-;10453:34;10449:1;10441:6;10437:14;10430:58;10522:17;10517:2;10509:6;10505:15;10498:42;10313:234;:::o;10553:366::-;10695:3;10716:67;10780:2;10775:3;10716:67;:::i;:::-;10709:74;;10792:93;10881:3;10792:93;:::i;:::-;10910:2;10905:3;10901:12;10894:19;;10553:366;;;:::o;10925:419::-;11091:4;11129:2;11118:9;11114:18;11106:26;;11178:9;11172:4;11168:20;11164:1;11153:9;11149:17;11142:47;11206:131;11332:4;11206:131;:::i;:::-;11198:139;;10925:419;;;:::o;11350:180::-;11398:77;11395:1;11388:88;11495:4;11492:1;11485:15;11519:4;11516:1;11509:15;11536:305;11576:3;11595:20;11613:1;11595:20;:::i;:::-;11590:25;;11629:20;11647:1;11629:20;:::i;:::-;11624:25;;11783:1;11715:66;11711:74;11708:1;11705:81;11702:107;;;11789:18;;:::i;:::-;11702:107;11833:1;11830;11826:9;11819:16;;11536:305;;;;:::o;11847:224::-;11987:34;11983:1;11975:6;11971:14;11964:58;12056:7;12051:2;12043:6;12039:15;12032:32;11847:224;:::o;12077:366::-;12219:3;12240:67;12304:2;12299:3;12240:67;:::i;:::-;12233:74;;12316:93;12405:3;12316:93;:::i;:::-;12434:2;12429:3;12425:12;12418:19;;12077:366;;;:::o;12449:419::-;12615:4;12653:2;12642:9;12638:18;12630:26;;12702:9;12696:4;12692:20;12688:1;12677:9;12673:17;12666:47;12730:131;12856:4;12730:131;:::i;:::-;12722:139;;12449:419;;;:::o;12874:179::-;13014:31;13010:1;13002:6;12998:14;12991:55;12874:179;:::o;13059:366::-;13201:3;13222:67;13286:2;13281:3;13222:67;:::i;:::-;13215:74;;13298:93;13387:3;13298:93;:::i;:::-;13416:2;13411:3;13407:12;13400:19;;13059:366;;;:::o;13431:419::-;13597:4;13635:2;13624:9;13620:18;13612:26;;13684:9;13678:4;13674:20;13670:1;13659:9;13655:17;13648:47;13712:131;13838:4;13712:131;:::i;:::-;13704:139;;13431:419;;;:::o;13856:118::-;13943:24;13961:5;13943:24;:::i;:::-;13938:3;13931:37;13856:118;;:::o;13980:775::-;14213:4;14251:3;14240:9;14236:19;14228:27;;14265:71;14333:1;14322:9;14318:17;14309:6;14265:71;:::i;:::-;14346:72;14414:2;14403:9;14399:18;14390:6;14346:72;:::i;:::-;14428;14496:2;14485:9;14481:18;14472:6;14428:72;:::i;:::-;14510;14578:2;14567:9;14563:18;14554:6;14510:72;:::i;:::-;14592:73;14660:3;14649:9;14645:19;14636:6;14592:73;:::i;:::-;14675;14743:3;14732:9;14728:19;14719:6;14675:73;:::i;:::-;13980:775;;;;;;;;;:::o;14761:180::-;14901:32;14897:1;14889:6;14885:14;14878:56;14761:180;:::o;14947:366::-;15089:3;15110:67;15174:2;15169:3;15110:67;:::i;:::-;15103:74;;15186:93;15275:3;15186:93;:::i;:::-;15304:2;15299:3;15295:12;15288:19;;14947:366;;;:::o;15319:419::-;15485:4;15523:2;15512:9;15508:18;15500:26;;15572:9;15566:4;15562:20;15558:1;15547:9;15543:17;15536:47;15600:131;15726:4;15600:131;:::i;:::-;15592:139;;15319:419;;;:::o;15744:223::-;15884:34;15880:1;15872:6;15868:14;15861:58;15953:6;15948:2;15940:6;15936:15;15929:31;15744:223;:::o;15973:366::-;16115:3;16136:67;16200:2;16195:3;16136:67;:::i;:::-;16129:74;;16212:93;16301:3;16212:93;:::i;:::-;16330:2;16325:3;16321:12;16314:19;;15973:366;;;:::o;16345:419::-;16511:4;16549:2;16538:9;16534:18;16526:26;;16598:9;16592:4;16588:20;16584:1;16573:9;16569:17;16562:47;16626:131;16752:4;16626:131;:::i;:::-;16618:139;;16345:419;;;:::o;16770:221::-;16910:34;16906:1;16898:6;16894:14;16887:58;16979:4;16974:2;16966:6;16962:15;16955:29;16770:221;:::o;16997:366::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:419::-;17535:4;17573:2;17562:9;17558:18;17550:26;;17622:9;17616:4;17612:20;17608:1;17597:9;17593:17;17586:47;17650:131;17776:4;17650:131;:::i;:::-;17642:139;;17369:419;;;:::o;17794:179::-;17934:31;17930:1;17922:6;17918:14;17911:55;17794:179;:::o;17979:366::-;18121:3;18142:67;18206:2;18201:3;18142:67;:::i;:::-;18135:74;;18218:93;18307:3;18218:93;:::i;:::-;18336:2;18331:3;18327:12;18320:19;;17979:366;;;:::o;18351:419::-;18517:4;18555:2;18544:9;18540:18;18532:26;;18604:9;18598:4;18594:20;18590:1;18579:9;18575:17;18568:47;18632:131;18758:4;18632:131;:::i;:::-;18624:139;;18351:419;;;:::o;18776:224::-;18916:34;18912:1;18904:6;18900:14;18893:58;18985:7;18980:2;18972:6;18968:15;18961:32;18776:224;:::o;19006:366::-;19148:3;19169:67;19233:2;19228:3;19169:67;:::i;:::-;19162:74;;19245:93;19334:3;19245:93;:::i;:::-;19363:2;19358:3;19354:12;19347:19;;19006:366;;;:::o;19378:419::-;19544:4;19582:2;19571:9;19567:18;19559:26;;19631:9;19625:4;19621:20;19617:1;19606:9;19602:17;19595:47;19659:131;19785:4;19659:131;:::i;:::-;19651:139;;19378:419;;;:::o;19803:222::-;19943:34;19939:1;19931:6;19927:14;19920:58;20012:5;20007:2;19999:6;19995:15;19988:30;19803:222;:::o;20031:366::-;20173:3;20194:67;20258:2;20253:3;20194:67;:::i;:::-;20187:74;;20270:93;20359:3;20270:93;:::i;:::-;20388:2;20383:3;20379:12;20372:19;;20031:366;;;:::o;20403:419::-;20569:4;20607:2;20596:9;20592:18;20584:26;;20656:9;20650:4;20646:20;20642:1;20631:9;20627:17;20620:47;20684:131;20810:4;20684:131;:::i;:::-;20676:139;;20403:419;;;:::o;20828:225::-;20968:34;20964:1;20956:6;20952:14;20945:58;21037:8;21032:2;21024:6;21020:15;21013:33;20828:225;:::o;21059:366::-;21201:3;21222:67;21286:2;21281:3;21222:67;:::i;:::-;21215:74;;21298:93;21387:3;21298:93;:::i;:::-;21416:2;21411:3;21407:12;21400:19;;21059:366;;;:::o;21431:419::-;21597:4;21635:2;21624:9;21620:18;21612:26;;21684:9;21678:4;21674:20;21670:1;21659:9;21655:17;21648:47;21712:131;21838:4;21712:131;:::i;:::-;21704:139;;21431:419;;;:::o;21856:222::-;21949:4;21987:2;21976:9;21972:18;21964:26;;22000:71;22068:1;22057:9;22053:17;22044:6;22000:71;:::i;:::-;21856:222;;;;:::o;22084:181::-;22224:33;22220:1;22212:6;22208:14;22201:57;22084:181;:::o;22271:366::-;22413:3;22434:67;22498:2;22493:3;22434:67;:::i;:::-;22427:74;;22510:93;22599:3;22510:93;:::i;:::-;22628:2;22623:3;22619:12;22612:19;;22271:366;;;:::o;22643:419::-;22809:4;22847:2;22836:9;22832:18;22824:26;;22896:9;22890:4;22886:20;22882:1;22871:9;22867:17;22860:47;22924:131;23050:4;22924:131;:::i;:::-;22916:139;;22643:419;;;:::o;23068:220::-;23208:34;23204:1;23196:6;23192:14;23185:58;23277:3;23272:2;23264:6;23260:15;23253:28;23068:220;:::o;23294:366::-;23436:3;23457:67;23521:2;23516:3;23457:67;:::i;:::-;23450:74;;23533:93;23622:3;23533:93;:::i;:::-;23651:2;23646:3;23642:12;23635:19;;23294:366;;;:::o;23666:419::-;23832:4;23870:2;23859:9;23855:18;23847:26;;23919:9;23913:4;23909:20;23905:1;23894:9;23890:17;23883:47;23947:131;24073:4;23947:131;:::i;:::-;23939:139;;23666:419;;;:::o;24091:221::-;24231:34;24227:1;24219:6;24215:14;24208:58;24300:4;24295:2;24287:6;24283:15;24276:29;24091:221;:::o;24318:366::-;24460:3;24481:67;24545:2;24540:3;24481:67;:::i;:::-;24474:74;;24557:93;24646:3;24557:93;:::i;:::-;24675:2;24670:3;24666:12;24659:19;;24318:366;;;:::o;24690:419::-;24856:4;24894:2;24883:9;24879:18;24871:26;;24943:9;24937:4;24933:20;24929:1;24918:9;24914:17;24907:47;24971:131;25097:4;24971:131;:::i;:::-;24963:139;;24690:419;;;:::o;25115:148::-;25217:11;25254:3;25239:18;;25115:148;;;;:::o;25269:173::-;25409:25;25405:1;25397:6;25393:14;25386:49;25269:173;:::o;25448:402::-;25608:3;25629:85;25711:2;25706:3;25629:85;:::i;:::-;25622:92;;25723:93;25812:3;25723:93;:::i;:::-;25841:2;25836:3;25832:12;25825:19;;25448:402;;;:::o;25856:377::-;25962:3;25990:39;26023:5;25990:39;:::i;:::-;26045:89;26127:6;26122:3;26045:89;:::i;:::-;26038:96;;26143:52;26188:6;26183:3;26176:4;26169:5;26165:16;26143:52;:::i;:::-;26220:6;26215:3;26211:16;26204:23;;25966:267;25856:377;;;;:::o;26239:167::-;26379:19;26375:1;26367:6;26363:14;26356:43;26239:167;:::o;26412:402::-;26572:3;26593:85;26675:2;26670:3;26593:85;:::i;:::-;26586:92;;26687:93;26776:3;26687:93;:::i;:::-;26805:2;26800:3;26796:12;26789:19;;26412:402;;;:::o;26820:967::-;27202:3;27224:148;27368:3;27224:148;:::i;:::-;27217:155;;27389:95;27480:3;27471:6;27389:95;:::i;:::-;27382:102;;27501:148;27645:3;27501:148;:::i;:::-;27494:155;;27666:95;27757:3;27748:6;27666:95;:::i;:::-;27659:102;;27778:3;27771:10;;26820:967;;;;;:::o;27793:664::-;27998:4;28036:3;28025:9;28021:19;28013:27;;28050:71;28118:1;28107:9;28103:17;28094:6;28050:71;:::i;:::-;28131:72;28199:2;28188:9;28184:18;28175:6;28131:72;:::i;:::-;28213;28281:2;28270:9;28266:18;28257:6;28213:72;:::i;:::-;28295;28363:2;28352:9;28348:18;28339:6;28295:72;:::i;:::-;28377:73;28445:3;28434:9;28430:19;28421:6;28377:73;:::i;:::-;27793:664;;;;;;;;:::o;28463:170::-;28603:22;28599:1;28591:6;28587:14;28580:46;28463:170;:::o;28639:366::-;28781:3;28802:67;28866:2;28861:3;28802:67;:::i;:::-;28795:74;;28878:93;28967:3;28878:93;:::i;:::-;28996:2;28991:3;28987:12;28980:19;;28639:366;;;:::o;29011:419::-;29177:4;29215:2;29204:9;29200:18;29192:26;;29264:9;29258:4;29254:20;29250:1;29239:9;29235:17;29228:47;29292:131;29418:4;29292:131;:::i;:::-;29284:139;;29011:419;;;:::o;29436:166::-;29576:18;29572:1;29564:6;29560:14;29553:42;29436:166;:::o;29608:366::-;29750:3;29771:67;29835:2;29830:3;29771:67;:::i;:::-;29764:74;;29847:93;29936:3;29847:93;:::i;:::-;29965:2;29960:3;29956:12;29949:19;;29608:366;;;:::o;29980:419::-;30146:4;30184:2;30173:9;30169:18;30161:26;;30233:9;30227:4;30223:20;30219:1;30208:9;30204:17;30197:47;30261:131;30387:4;30261:131;:::i;:::-;30253:139;;29980:419;;;:::o;30405:214::-;30545:66;30541:1;30533:6;30529:14;30522:90;30405:214;:::o;30625:400::-;30785:3;30806:84;30888:1;30883:3;30806:84;:::i;:::-;30799:91;;30899:93;30988:3;30899:93;:::i;:::-;31017:1;31012:3;31008:11;31001:18;;30625:400;;;:::o;31031:79::-;31070:7;31099:5;31088:16;;31031:79;;;:::o;31116:157::-;31221:45;31241:24;31259:5;31241:24;:::i;:::-;31221:45;:::i;:::-;31216:3;31209:58;31116:157;;:::o;31279:663::-;31520:3;31542:148;31686:3;31542:148;:::i;:::-;31535:155;;31700:75;31771:3;31762:6;31700:75;:::i;:::-;31800:2;31795:3;31791:12;31784:19;;31813:75;31884:3;31875:6;31813:75;:::i;:::-;31913:2;31908:3;31904:12;31897:19;;31933:3;31926:10;;31279:663;;;;;:::o;31948:545::-;32121:4;32159:3;32148:9;32144:19;32136:27;;32173:71;32241:1;32230:9;32226:17;32217:6;32173:71;:::i;:::-;32254:68;32318:2;32307:9;32303:18;32294:6;32254:68;:::i;:::-;32332:72;32400:2;32389:9;32385:18;32376:6;32332:72;:::i;:::-;32414;32482:2;32471:9;32467:18;32458:6;32414:72;:::i;:::-;31948:545;;;;;;;:::o;32499:180::-;32547:77;32544:1;32537:88;32644:4;32641:1;32634:15;32668:4;32665:1;32658:15;32685:174;32825:26;32821:1;32813:6;32809:14;32802:50;32685:174;:::o;32865:366::-;33007:3;33028:67;33092:2;33087:3;33028:67;:::i;:::-;33021:74;;33104:93;33193:3;33104:93;:::i;:::-;33222:2;33217:3;33213:12;33206:19;;32865:366;;;:::o;33237:419::-;33403:4;33441:2;33430:9;33426:18;33418:26;;33490:9;33484:4;33480:20;33476:1;33465:9;33461:17;33454:47;33518:131;33644:4;33518:131;:::i;:::-;33510:139;;33237:419;;;:::o;33662:181::-;33802:33;33798:1;33790:6;33786:14;33779:57;33662:181;:::o;33849:366::-;33991:3;34012:67;34076:2;34071:3;34012:67;:::i;:::-;34005:74;;34088:93;34177:3;34088:93;:::i;:::-;34206:2;34201:3;34197:12;34190:19;;33849:366;;;:::o;34221:419::-;34387:4;34425:2;34414:9;34410:18;34402:26;;34474:9;34468:4;34464:20;34460:1;34449:9;34445:17;34438:47;34502:131;34628:4;34502:131;:::i;:::-;34494:139;;34221:419;;;:::o;34646:221::-;34786:34;34782:1;34774:6;34770:14;34763:58;34855:4;34850:2;34842:6;34838:15;34831:29;34646:221;:::o;34873:366::-;35015:3;35036:67;35100:2;35095:3;35036:67;:::i;:::-;35029:74;;35112:93;35201:3;35112:93;:::i;:::-;35230:2;35225:3;35221:12;35214:19;;34873:366;;;:::o;35245:419::-;35411:4;35449:2;35438:9;35434:18;35426:26;;35498:9;35492:4;35488:20;35484:1;35473:9;35469:17;35462:47;35526:131;35652:4;35526:131;:::i;:::-;35518:139;;35245:419;;;:::o;35670:348::-;35710:7;35733:20;35751:1;35733:20;:::i;:::-;35728:25;;35767:20;35785:1;35767:20;:::i;:::-;35762:25;;35955:1;35887:66;35883:74;35880:1;35877:81;35872:1;35865:9;35858:17;35854:105;35851:131;;;35962:18;;:::i;:::-;35851:131;36010:1;36007;36003:9;35992:20;;35670:348;;;;:::o;36024:180::-;36072:77;36069:1;36062:88;36169:4;36166:1;36159:15;36193:4;36190:1;36183:15;36210:180;36258:77;36255:1;36248:88;36355:4;36352:1;36345:15;36379:4;36376:1;36369:15;36396:171;36435:3;36458:24;36476:5;36458:24;:::i;:::-;36449:33;;36504:4;36497:5;36494:15;36491:41;;;36512:18;;:::i;:::-;36491:41;36559:1;36552:5;36548:13;36541:20;;36396:171;;;:::o;36573:182::-;36713:34;36709:1;36701:6;36697:14;36690:58;36573:182;:::o;36761:366::-;36903:3;36924:67;36988:2;36983:3;36924:67;:::i;:::-;36917:74;;37000:93;37089:3;37000:93;:::i;:::-;37118:2;37113:3;37109:12;37102:19;;36761:366;;;:::o;37133:419::-;37299:4;37337:2;37326:9;37322:18;37314:26;;37386:9;37380:4;37376:20;37372:1;37361:9;37357:17;37350:47;37414:131;37540:4;37414:131;:::i;:::-;37406:139;;37133:419;;;:::o

Swarm Source

ipfs://7e60d900aa09d79cc8ebb08b59d0be2b8dbfdd72b97db3ae64355dad49c56cdc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.