Token MangroveDAO

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
1,061,723 MANGROVE

Holders:
88 addresses

Transfers:
-

Contract:
0xcedf1b0bd0f2a6c1760c419be837ed9f5442e9e40xcEDf1b0bd0f2a6C1760c419be837Ed9F5442E9e4

Decimals:
18

Social Profiles:
Not Available, Update ?

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MangroveDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-26
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// File: @openzeppelin/[email protected]/utils/cryptography/draft-EIP712.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.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 immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

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

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

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

        bytes32 hash = _hashTypedDataV4(structHash);

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

        _approve(owner, spender, value);
    }

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/ERC20Votes.sol)

pragma solidity ^0.8.0;





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

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

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

    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

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

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

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

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

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

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

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

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

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

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

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

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

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

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

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

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

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

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

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

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contract-3c761ba538.sol


pragma solidity ^0.8.2;







/// @custom:security-contact [email protected]
contract MangroveDAO is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit, ERC20Votes {
    constructor() ERC20("MangroveDAO", "MANGROVE") ERC20Permit("MangroveDAO") {
        _mint(msg.sender, 1061723 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

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

    // The following functions are overrides required by Solidity.

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140523480156200003757600080fd5b506040518060400160405280600b81526020016a4d616e67726f766544414f60a81b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600b81526020016a4d616e67726f766544414f60a81b815250604051806040016040528060088152602001674d414e47524f564560c01b8152508160039080519060200190620000d492919062000898565b508051620000ea90600490602084019062000898565b50506005805460ff19169055506200010233620001d0565b815160208084019190912082518383012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c00190528051940193909320919290916080523060601b60c0526101205250620001ca9350339250620001a8915050601290565b620001b590600a62000998565b620001c4906210335b62000a57565b6200022a565b62000afc565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200024182826200024560201b62000dfc1760201c565b5050565b6200025c8282620002fc60201b62000e8c1760201c565b6001600160e01b0362000270620003f98216565b1115620002dd5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084015b60405180910390fd5b620002f6600962000f7f620003ff60201b178362000416565b50505050565b6001600160a01b038216620003545760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002d4565b6200036260008383620005c8565b806002600082825462000376919062000934565b90915550506001600160a01b03821660009081526020819052604081208054839290620003a590849062000934565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000241600083836200062d565b60025490565b60006200040d828462000934565b90505b92915050565b8254600090819080156200046857856200043260018362000a79565b8154811062000445576200044562000ae6565b60009182526020909120015464010000000090046001600160e01b03166200046b565b60005b6001600160e01b031692506200048283858760201c565b9150600081118015620004c6575043866200049f60018462000a79565b81548110620004b257620004b262000ae6565b60009182526020909120015463ffffffff16145b156200053a57620004e2826200064560201b62000f8b1760201c565b86620004f060018462000a79565b8154811062000503576200050362000ae6565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550620005bf565b8560405180604001604052806200055c43620006b460201b62000ff81760201c565b63ffffffff1681526020016200057d856200064560201b62000f8b1760201c565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60055460ff1615620006105760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620002d4565b620006288383836200062860201b6200084d1760201c565b505050565b620006288383836200071b60201b6200105d1760201c565b60006001600160e01b03821115620006b05760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401620002d4565b5090565b600063ffffffff821115620006b05760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401620002d4565b620007338383836200062860201b6200084d1760201c565b6001600160a01b038381166000908152600760205260408082205485841683529120546200062892918216911683818314801590620007725750600081115b1562000628576001600160a01b03831615620007ff576001600160a01b038316600090815260086020908152604082208291620007bc91906200088a901b6200108f178562000416565b91509150846001600160a01b031660008051602062002e368339815191528383604051620007f4929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161562000628576001600160a01b038216600090815260086020908152604082208291620008439190620003ff901b62000f7f178562000416565b91509150836001600160a01b031660008051602062002e3683398151915283836040516200087b929190918252602082015260400190565b60405180910390a25050505050565b60006200040d828462000a79565b828054620008a69062000a93565b90600052602060002090601f016020900481019282620008ca576000855562000915565b82601f10620008e557805160ff191683800117855562000915565b8280016001018555821562000915579182015b8281111562000915578251825591602001919060010190620008f8565b50620006b09291505b80821115620006b057600081556001016200091e565b600082198211156200094a576200094a62000ad0565b500190565b600181815b808511156200099057816000190482111562000974576200097462000ad0565b808516156200098257918102915b93841c939080029062000954565b509250929050565b60006200040d60ff841683600082620009b45750600162000410565b81620009c35750600062000410565b8160018114620009dc5760028114620009e75762000a07565b600191505062000410565b60ff841115620009fb57620009fb62000ad0565b50506001821b62000410565b5060208310610133831016604e8410600b841016171562000a2c575081810a62000410565b62000a3883836200094f565b806000190482111562000a4f5762000a4f62000ad0565b029392505050565b600081600019048311821515161562000a745762000a7462000ad0565b500290565b60008282101562000a8e5762000a8e62000ad0565b500390565b600181811c9082168062000aa857607f821691505b6020821081141562000aca57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60805160a05160c05160601c60e0516101005161012051610140516122dc62000b5a6000396000610bca015260006114280152600061147701526000611452015260006113ab015260006113d5015260006113ff01526122dc6000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806370a082311161010f5780639ab24eb0116100a2578063d505accf11610071578063d505accf14610423578063dd62ed3e14610436578063f1127ed81461046f578063f2fde38b146104ac57600080fd5b80639ab24eb0146103d7578063a457c2d7146103ea578063a9059cbb146103fd578063c3cda5201461041057600080fd5b80638456cb59116100de5780638456cb591461039e5780638da5cb5b146103a65780638e539e8c146103bc57806395d89b41146103cf57600080fd5b806370a0823114610347578063715018a61461037057806379cc6790146103785780637ecebe001461038b57600080fd5b80633a46b1a811610187578063587cde1e11610156578063587cde1e146102bd5780635c19a95c146103015780635c975abb146103145780636fcfff451461031f57600080fd5b80633a46b1a81461027a5780633f4ba83a1461028d57806340c10f191461029757806342966c68146102aa57600080fd5b806323b872dd116101c357806323b872dd1461023d578063313ce567146102505780633644e5151461025f578063395093511461026757600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26104bf565b6040516101ff9190612154565b60405180910390f35b61021b610216366004612079565b610551565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004611fd3565b610567565b604051601281526020016101ff565b61022f610616565b61021b610275366004612079565b610625565b61022f610288366004612079565b610661565b6102956106db565b005b6102956102a5366004612079565b610715565b6102956102b836600461213b565b610753565b6102e96102cb366004611f85565b6001600160a01b039081166000908152600760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b61029561030f366004611f85565b610760565b60055460ff1661021b565b61033261032d366004611f85565b61076a565b60405163ffffffff90911681526020016101ff565b61022f610355366004611f85565b6001600160a01b031660009081526020819052604090205490565b610295610792565b610295610386366004612079565b6107cc565b61022f610399366004611f85565b610852565b610295610870565b60055461010090046001600160a01b03166102e9565b61022f6103ca36600461213b565b6108a8565b6101f2610904565b61022f6103e5366004611f85565b610913565b61021b6103f8366004612079565b61099a565b61021b61040b366004612079565b610a33565b61029561041e3660046120a3565b610a40565b61029561043136600461200f565b610b76565b61022f610444366004611fa0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61048261047d3660046120fb565b610cda565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016101ff565b6102956104ba366004611f85565b610d5e565b6060600380546104ce9061222f565b80601f01602080910402602001604051908101604052809291908181526020018280546104fa9061222f565b80156105475780601f1061051c57610100808354040283529160200191610547565b820191906000526020600020905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b600061055e33848461109b565b50600192915050565b60006105748484846111bf565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61060b853385840361109b565b506001949350505050565b600061062061139e565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161055e91859061065c9086906121de565b61109b565b60004382106106b25760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105f5565b6001600160a01b03831660009081526008602052604090206106d490836114c5565b9392505050565b6005546001600160a01b0361010090910416331461070b5760405162461bcd60e51b81526004016105f5906121a9565b610713611582565b565b6005546001600160a01b036101009091041633146107455760405162461bcd60e51b81526004016105f5906121a9565b61074f8282611615565b5050565b61075d338261161f565b50565b61075d3382611629565b6001600160a01b03811660009081526008602052604081205461078c90610ff8565b92915050565b6005546001600160a01b036101009091041633146107c25760405162461bcd60e51b81526004016105f5906121a9565b61071360006116a2565b60006107d88333610444565b9050818110156108365760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105f5565b610843833384840361109b565b61084d838361161f565b505050565b6001600160a01b03811660009081526006602052604081205461078c565b6005546001600160a01b036101009091041633146108a05760405162461bcd60e51b81526004016105f5906121a9565b6107136116fc565b60004382106108f95760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016105f5565b61078c6009836114c5565b6060600480546104ce9061222f565b6001600160a01b0381166000908152600860205260408120548015610987576001600160a01b0383166000908152600860205260409020610955600183612218565b8154811061096557610965612290565b60009182526020909120015464010000000090046001600160e01b031661098a565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a1c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105f5565b610a29338585840361109b565b5060019392505050565b600061055e3384846111bf565b83421115610a905760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016105f5565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610b0a90610b029060a00160405160208183030381529060405280519060200120611777565b8585856117c5565b9050610b15816117ed565b8614610b635760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016105f5565b610b6d8188611629565b50505050505050565b83421115610bc65760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016105f5565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610bf58c6117ed565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610c5082611777565b90506000610c60828787876117c5565b9050896001600160a01b0316816001600160a01b031614610cc35760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016105f5565b610cce8a8a8a61109b565b50505050505050505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600860205260409020805463ffffffff8416908110610d1e57610d1e612290565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6005546001600160a01b03610100909104163314610d8e5760405162461bcd60e51b81526004016105f5906121a9565b6001600160a01b038116610df35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f5565b61075d816116a2565b610e068282610e8c565b6002546001600160e01b031015610e785760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016105f5565b610e866009610f7f83611815565b50505050565b6001600160a01b038216610ee25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105f5565b610eee6000838361198e565b8060026000828254610f0091906121de565b90915550506001600160a01b03821660009081526020819052604081208054839290610f2d9084906121de565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361074f600083836119d4565b60006106d482846121de565b60006001600160e01b03821115610ff45760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016105f5565b5090565b600063ffffffff821115610ff45760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016105f5565b6001600160a01b0383811660009081526007602052604080822054858416835291205461084d929182169116836119df565b60006106d48284612218565b6001600160a01b0383166110fd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105f5565b6001600160a01b03821661115e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105f5565b6001600160a01b0382166112855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105f5565b61129083838361198e565b6001600160a01b038316600090815260208190526040902054818110156113085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105f5565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061133f9084906121de565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161138b91815260200190565b60405180910390a3610e868484846119d4565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156113f757507f000000000000000000000000000000000000000000000000000000000000000046145b1561142157507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b818110156115295760006114e08284611b1c565b9050848682815481106114f5576114f5612290565b60009182526020909120015463ffffffff16111561151557809250611523565b6115208160016121de565b91505b506114cc565b811561156d578461153b600184612218565b8154811061154b5761154b612290565b60009182526020909120015464010000000090046001600160e01b0316611570565b60005b6001600160e01b031695945050505050565b60055460ff166115cb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016105f5565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b61074f8282610dfc565b61074f8282611b37565b6001600160a01b038281166000818152600760208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610e868284836119df565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff16156117425760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105f5565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115f83390565b600061078c61178461139e565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008060006117d687878787611b4f565b915091506117e381611c3c565b5095945050505050565b6001600160a01b03811660009081526006602052604090208054600181018255905b50919050565b825460009081908015611860578561182e600183612218565b8154811061183e5761183e612290565b60009182526020909120015464010000000090046001600160e01b0316611863565b60005b6001600160e01b0316925061187c83858763ffffffff16565b91506000811180156118ba57504386611896600184612218565b815481106118a6576118a6612290565b60009182526020909120015463ffffffff16145b1561191a576118c882610f8b565b866118d4600184612218565b815481106118e4576118e4612290565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611985565b85604051806040016040528061192f43610ff8565b63ffffffff16815260200161194385610f8b565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60055460ff161561084d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016105f5565b61084d83838361105d565b816001600160a01b0316836001600160a01b031614158015611a015750600081115b1561084d576001600160a01b03831615611a8f576001600160a01b03831660009081526008602052604081208190611a3c9061108f85611815565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611a84929190918252602082015260400190565b60405180910390a250505b6001600160a01b0382161561084d576001600160a01b03821660009081526008602052604081208190611ac590610f7f85611815565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611b0d929190918252602082015260400190565b60405180910390a25050505050565b6000611b2b60028484186121f6565b6106d4908484166121de565b611b418282611df7565b610e86600961108f83611815565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611b865750600090506003611c33565b8460ff16601b14158015611b9e57508460ff16601c14155b15611baf5750600090506004611c33565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611c03573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c2c57600060019250925050611c33565b9150600090505b94509492505050565b6000816004811115611c5057611c5061227a565b1415611c595750565b6001816004811115611c6d57611c6d61227a565b1415611cbb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105f5565b6002816004811115611ccf57611ccf61227a565b1415611d1d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105f5565b6003816004811115611d3157611d3161227a565b1415611d8a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105f5565b6004816004811115611d9e57611d9e61227a565b141561075d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105f5565b6001600160a01b038216611e575760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105f5565b611e638260008361198e565b6001600160a01b03821660009081526020819052604090205481811015611ed75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105f5565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611f06908490612218565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361084d836000846119d4565b80356001600160a01b0381168114611f6f57600080fd5b919050565b803560ff81168114611f6f57600080fd5b600060208284031215611f9757600080fd5b6106d482611f58565b60008060408385031215611fb357600080fd5b611fbc83611f58565b9150611fca60208401611f58565b90509250929050565b600080600060608486031215611fe857600080fd5b611ff184611f58565b9250611fff60208501611f58565b9150604084013590509250925092565b600080600080600080600060e0888a03121561202a57600080fd5b61203388611f58565b965061204160208901611f58565b9550604088013594506060880135935061205d60808901611f74565b925060a0880135915060c0880135905092959891949750929550565b6000806040838503121561208c57600080fd5b61209583611f58565b946020939093013593505050565b60008060008060008060c087890312156120bc57600080fd5b6120c587611f58565b955060208701359450604087013593506120e160608801611f74565b92506080870135915060a087013590509295509295509295565b6000806040838503121561210e57600080fd5b61211783611f58565b9150602083013563ffffffff8116811461213057600080fd5b809150509250929050565b60006020828403121561214d57600080fd5b5035919050565b600060208083528351808285015260005b8181101561218157858101830151858201604001528201612165565b81811115612193576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121f1576121f1612264565b500190565b60008261221357634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561222a5761222a612264565b500390565b600181811c9082168061224357607f821691505b6020821081141561180f57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d54342c7a00b6a642f71e185c14cd94545e7a0bdfcd3e43ff7640ede476a7d9e64736f6c63430008070033dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724

Deployed ByteCode Sourcemap

65334:1276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41104:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43271:169;;;;;;:::i;:::-;;:::i;:::-;;;3858:14:1;;3851:22;3833:41;;3821:2;3806:18;43271:169:0;3693:187:1;42224:108:0;42312:12;;42224:108;;;4031:25:1;;;4019:2;4004:18;42224:108:0;3885:177:1;43922:492:0;;;;;;:::i;:::-;;:::i;42066:93::-;;;42149:2;18121:36:1;;18109:2;18094:18;42066:93:0;17979:184:1;53503:115:0;;;:::i;44823:215::-;;;;;;:::i;:::-;;:::i;57272:251::-;;;;;;:::i;:::-;;:::i;65645:65::-;;;:::i;:::-;;65718:95;;;;;;:::i;:::-;;:::i;64420:91::-;;;;;;:::i;:::-;;:::i;56672:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;56764:19:0;;;56737:7;56764:19;;;:10;:19;;;;;;;;56672:119;;;;-1:-1:-1;;;;;3649:32:1;;;3631:51;;3619:2;3604:18;56672:119:0;3485:203:1;59711:105:0;;;;;;:::i;:::-;;:::i;34138:86::-;34209:7;;;;34138:86;;56428:151;;;;;;:::i;:::-;;:::i;:::-;;;17956:10:1;17944:23;;;17926:42;;17914:2;17899:18;56428:151:0;17782:192:1;42395:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;42496:18:0;42469:7;42496:18;;;;;;;;;;;;42395:127;32183:103;;;:::i;64830:368::-;;;;;;:::i;:::-;;:::i;53245:128::-;;;;;;:::i;:::-;;:::i;65576:61::-;;;:::i;31532:87::-;31605:6;;;;;-1:-1:-1;;;;;31605:6:0;31532:87;;57812:242;;;;;;:::i;:::-;;:::i;41323:104::-;;;:::i;56875:195::-;;;;;;:::i;:::-;;:::i;45541:413::-;;;;;;:::i;:::-;;:::i;42735:175::-;;;;;;:::i;:::-;;:::i;59898:582::-;;;;;;:::i;:::-;;:::i;52534:645::-;;;;;;:::i;:::-;;:::i;42973:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;43089:18:0;;;43062:7;43089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;42973:151;56198:150;;;;;;:::i;:::-;;:::i;:::-;;;;17220:13:1;;17235:10;17216:30;17198:49;;17307:4;17295:17;;;17289:24;-1:-1:-1;;;;;17285:50:1;17263:20;;;17256:80;;;;17171:18;56198:150:0;16996:346:1;32441:201:0;;;;;;:::i;:::-;;:::i;41104:100::-;41158:13;41191:5;41184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41104:100;:::o;43271:169::-;43354:4;43371:39;30330:10;43394:7;43403:6;43371:8;:39::i;:::-;-1:-1:-1;43428:4:0;43271:169;;;;:::o;43922:492::-;44062:4;44079:36;44089:6;44097:9;44108:6;44079:9;:36::i;:::-;-1:-1:-1;;;;;44155:19:0;;44128:24;44155:19;;;:11;:19;;;;;;;;30330:10;44155:33;;;;;;;;44207:26;;;;44199:79;;;;-1:-1:-1;;;44199:79:0;;12812:2:1;44199:79:0;;;12794:21:1;12851:2;12831:18;;;12824:30;12890:34;12870:18;;;12863:62;-1:-1:-1;;;12941:18:1;;;12934:38;12989:19;;44199:79:0;;;;;;;;;44314:57;44323:6;30330:10;44364:6;44345:16;:25;44314:8;:57::i;:::-;-1:-1:-1;44402:4:0;;43922:492;-1:-1:-1;;;;43922:492:0:o;53503:115::-;53563:7;53590:20;:18;:20::i;:::-;53583:27;;53503:115;:::o;44823:215::-;30330:10;44911:4;44960:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;44960:34:0;;;;;;;;;;44911:4;;44928:80;;44951:7;;44960:47;;44997:10;;44960:47;:::i;:::-;44928:8;:80::i;57272:251::-;57353:7;57395:12;57381:11;:26;57373:70;;;;-1:-1:-1;;;57373:70:0;;7543:2:1;57373:70:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:33;7601:18;;;7594:61;7672:18;;57373:70:0;7341:355:1;57373:70:0;-1:-1:-1;;;;;57480:21:0;;;;;;:12;:21;;;;;57461:54;;57503:11;57461:18;:54::i;:::-;57454:61;57272:251;-1:-1:-1;;;57272:251:0:o;65645:65::-;31605:6;;-1:-1:-1;;;;;31605:6:0;;;;;30330:10;31752:23;31744:68;;;;-1:-1:-1;;;31744:68:0;;;;;;;:::i;:::-;65692:10:::1;:8;:10::i;:::-;65645:65::o:0;65718:95::-;31605:6;;-1:-1:-1;;;;;31605:6:0;;;;;30330:10;31752:23;31744:68;;;;-1:-1:-1;;;31744:68:0;;;;;;;:::i;:::-;65788:17:::1;65794:2;65798:6;65788:5;:17::i;:::-;65718:95:::0;;:::o;64420:91::-;64476:27;30330:10;64496:6;64476:5;:27::i;:::-;64420:91;:::o;59711:105::-;59774:34;30330:10;59798:9;59774;:34::i;56428:151::-;-1:-1:-1;;;;;56542:21:0;;56498:6;56542:21;;;:12;:21;;;;;:28;56524:47;;:17;:47::i;:::-;56517:54;56428:151;-1:-1:-1;;56428:151:0:o;32183:103::-;31605:6;;-1:-1:-1;;;;;31605:6:0;;;;;30330:10;31752:23;31744:68;;;;-1:-1:-1;;;31744:68:0;;;;;;;:::i;:::-;32248:30:::1;32275:1;32248:18;:30::i;64830:368::-:0;64907:24;64934:32;64944:7;30330:10;42973:151;:::i;64934:32::-;64907:59;;65005:6;64985:16;:26;;64977:75;;;;-1:-1:-1;;;64977:75:0;;14407:2:1;64977:75:0;;;14389:21:1;14446:2;14426:18;;;14419:30;14485:34;14465:18;;;14458:62;-1:-1:-1;;;14536:18:1;;;14529:34;14580:19;;64977:75:0;14205:400:1;64977:75:0;65088:58;65097:7;30330:10;65139:6;65120:16;:25;65088:8;:58::i;:::-;65168:22;65174:7;65183:6;65168:5;:22::i;:::-;64896:302;64830:368;;:::o;53245:128::-;-1:-1:-1;;;;;53341:14:0;;53314:7;53341:14;;;:7;:14;;;;;10354;53341:24;10262:114;65576:61;31605:6;;-1:-1:-1;;;;;31605:6:0;;;;;30330:10;31752:23;31744:68;;;;-1:-1:-1;;;31744:68:0;;;;;;;:::i;:::-;65621:8:::1;:6;:8::i;57812:242::-:0;57882:7;57924:12;57910:11;:26;57902:70;;;;-1:-1:-1;;;57902:70:0;;7543:2:1;57902:70:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:33;7601:18;;;7594:61;7672:18;;57902:70:0;7341:355:1;57902:70:0;57990:56;58009:23;58034:11;57990:18;:56::i;41323:104::-;41379:13;41412:7;41405:14;;;;;:::i;56875:195::-;-1:-1:-1;;;;;56965:21:0;;56931:7;56965:21;;;:12;:21;;;;;:28;57011:8;;:51;;-1:-1:-1;;;;;57026:21:0;;;;;;:12;:21;;;;;57048:7;57054:1;57048:3;:7;:::i;:::-;57026:30;;;;;;;;:::i;:::-;;;;;;;;;;:36;;;;-1:-1:-1;;;;;57026:36:0;57011:51;;;57022:1;57011:51;-1:-1:-1;;;;;57004:58:0;;56875:195;-1:-1:-1;;;56875:195:0:o;45541:413::-;30330:10;45634:4;45678:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;45678:34:0;;;;;;;;;;45731:35;;;;45723:85;;;;-1:-1:-1;;;45723:85:0;;16432:2:1;45723:85:0;;;16414:21:1;16471:2;16451:18;;;16444:30;16510:34;16490:18;;;16483:62;-1:-1:-1;;;16561:18:1;;;16554:35;16606:19;;45723:85:0;16230:401:1;45723:85:0;45844:67;30330:10;45867:7;45895:15;45876:16;:34;45844:8;:67::i;:::-;-1:-1:-1;45942:4:0;;45541:413;-1:-1:-1;;;45541:413:0:o;42735:175::-;42821:4;42838:42;30330:10;42862:9;42873:6;42838:9;:42::i;59898:582::-;60116:6;60097:15;:25;;60089:67;;;;-1:-1:-1;;;60089:67:0;;8252:2:1;60089:67:0;;;8234:21:1;8291:2;8271:18;;;8264:30;8330:31;8310:18;;;8303:59;8379:18;;60089:67:0;8050:353:1;60089:67:0;60239:58;;;55449:71;60239:58;;;4894:25:1;-1:-1:-1;;;;;4955:32:1;;4935:18;;;4928:60;;;;5004:18;;;4997:34;;;5047:18;;;5040:34;;;60167:14:0;;60184:174;;60212:87;;4866:19:1;;60239:58:0;;;;;;;;;;;;60229:69;;;;;;60212:16;:87::i;:::-;60314:1;60330;60346;60184:13;:174::i;:::-;60167:191;;60386:17;60396:6;60386:9;:17::i;:::-;60377:5;:26;60369:64;;;;-1:-1:-1;;;60369:64:0;;9373:2:1;60369:64:0;;;9355:21:1;9412:2;9392:18;;;9385:30;9451:27;9431:18;;;9424:55;9496:18;;60369:64:0;9171:349:1;60369:64:0;60444:28;60454:6;60462:9;60444;:28::i;:::-;60078:402;59898:582;;;;;;:::o;52534:645::-;52778:8;52759:15;:27;;52751:69;;;;-1:-1:-1;;;52751:69:0;;10537:2:1;52751:69:0;;;10519:21:1;10576:2;10556:18;;;10549:30;10615:31;10595:18;;;10588:59;10664:18;;52751:69:0;10335:353:1;52751:69:0;52833:18;52875:16;52893:5;52900:7;52909:5;52916:16;52926:5;52916:9;:16::i;:::-;52864:79;;;;;;4354:25:1;;;;-1:-1:-1;;;;;4453:15:1;;;4433:18;;;4426:43;4505:15;;;;4485:18;;;4478:43;4537:18;;;4530:34;4580:19;;;4573:35;4624:19;;;4617:35;;;4326:19;;52864:79:0;;;;;;;;;;;;52854:90;;;;;;52833:111;;52957:12;52972:28;52989:10;52972:16;:28::i;:::-;52957:43;;53013:14;53030:28;53044:4;53050:1;53053;53056;53030:13;:28::i;:::-;53013:45;;53087:5;-1:-1:-1;;;;;53077:15:0;:6;-1:-1:-1;;;;;53077:15:0;;53069:58;;;;-1:-1:-1;;;53069:58:0;;12453:2:1;53069:58:0;;;12435:21:1;12492:2;12472:18;;;12465:30;12531:32;12511:18;;;12504:60;12581:18;;53069:58:0;12251:354:1;53069:58:0;53140:31;53149:5;53156:7;53165:5;53140:8;:31::i;:::-;52740:439;;;52534:645;;;;;;;:::o;56198:150::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;56314:21:0;;;;;;:12;:21;;;;;:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;;56307:33;;;;;;;;;56314:26;;56307:33;;;;;;;;;-1:-1:-1;;;;;56307:33:0;;;;;;;;;56198:150;-1:-1:-1;;;56198:150:0:o;32441:201::-;31605:6;;-1:-1:-1;;;;;31605:6:0;;;;;30330:10;31752:23;31744:68;;;;-1:-1:-1;;;31744:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32530:22:0;::::1;32522:73;;;::::0;-1:-1:-1;;;32522:73:0;;9727:2:1;32522:73:0::1;::::0;::::1;9709:21:1::0;9766:2;9746:18;;;9739:30;9805:34;9785:18;;;9778:62;-1:-1:-1;;;9856:18:1;;;9849:36;9902:19;;32522:73:0::1;9525:402:1::0;32522:73:0::1;32606:28;32625:8;32606:18;:28::i;60786:290::-:0;60871:28;60883:7;60892:6;60871:11;:28::i;:::-;42312:12;;-1:-1:-1;;;;;;60918:29:0;60910:90;;;;-1:-1:-1;;;60910:90:0;;13221:2:1;60910:90:0;;;13203:21:1;13260:2;13240:18;;;13233:30;13299:34;13279:18;;;13272:62;-1:-1:-1;;;13350:18:1;;;13343:46;13406:19;;60910:90:0;13019:412:1;60910:90:0;61013:55;61030:23;61055:4;61061:6;61013:16;:55::i;:::-;;;60786:290;;:::o;47464:399::-;-1:-1:-1;;;;;47548:21:0;;47540:65;;;;-1:-1:-1;;;47540:65:0;;16838:2:1;47540:65:0;;;16820:21:1;16877:2;16857:18;;;16850:30;16916:33;16896:18;;;16889:61;16967:18;;47540:65:0;16636:355:1;47540:65:0;47618:49;47647:1;47651:7;47660:6;47618:20;:49::i;:::-;47696:6;47680:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47713:18:0;;:9;:18;;;;;;;;;;:28;;47735:6;;47713:9;:28;;47735:6;;47713:28;:::i;:::-;;;;-1:-1:-1;;47757:37:0;;4031:25:1;;;-1:-1:-1;;;;;47757:37:0;;;47774:1;;47757:37;;4019:2:1;4004:18;47757:37:0;;;;;;;47807:48;47835:1;47839:7;47848:6;47807:19;:48::i;63630:98::-;63688:7;63715:5;63719:1;63715;:5;:::i;1201:195::-;1258:7;-1:-1:-1;;;;;1286:26:0;;;1278:78;;;;-1:-1:-1;;;1278:78:0;;13999:2:1;1278:78:0;;;13981:21:1;14038:2;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;-1:-1:-1;;;14128:18:1;;;14121:37;14175:19;;1278:78:0;13797:403:1;1278:78:0;-1:-1:-1;1382:5:0;1201:195::o;3171:190::-;3227:6;3263:16;3254:25;;;3246:76;;;;-1:-1:-1;;;3246:76:0;;15620:2:1;3246:76:0;;;15602:21:1;15659:2;15639:18;;;15632:30;15698:34;15678:18;;;15671:62;-1:-1:-1;;;15749:18:1;;;15742:36;15795:19;;3246:76:0;15418:402:1;61504:262:0;-1:-1:-1;;;;;56764:19:0;;;56737:7;56764:19;;;:10;:19;;;;;;;;;;;;;;;61702:56;;56764:19;;;;;61751:6;61702:16;:56::i;63736:103::-;63799:7;63826:5;63830:1;63826;:5;:::i;49225:380::-;-1:-1:-1;;;;;49361:19:0;;49353:68;;;;-1:-1:-1;;;49353:68:0;;16027:2:1;49353:68:0;;;16009:21:1;16066:2;16046:18;;;16039:30;16105:34;16085:18;;;16078:62;-1:-1:-1;;;16156:18:1;;;16149:34;16200:19;;49353:68:0;15825:400:1;49353:68:0;-1:-1:-1;;;;;49440:21:0;;49432:68;;;;-1:-1:-1;;;49432:68:0;;10134:2:1;49432:68:0;;;10116:21:1;10173:2;10153:18;;;10146:30;10212:34;10192:18;;;10185:62;-1:-1:-1;;;10263:18:1;;;10256:32;10305:19;;49432:68:0;9932:398:1;49432:68:0;-1:-1:-1;;;;;49513:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49565:32;;4031:25:1;;;49565:32:0;;4004:18:1;49565:32:0;;;;;;;49225:380;;;:::o;46444:733::-;-1:-1:-1;;;;;46584:20:0;;46576:70;;;;-1:-1:-1;;;46576:70:0;;15214:2:1;46576:70:0;;;15196:21:1;15253:2;15233:18;;;15226:30;15292:34;15272:18;;;15265:62;-1:-1:-1;;;15343:18:1;;;15336:35;15388:19;;46576:70:0;15012:401:1;46576:70:0;-1:-1:-1;;;;;46665:23:0;;46657:71;;;;-1:-1:-1;;;46657:71:0;;7139:2:1;46657:71:0;;;7121:21:1;7178:2;7158:18;;;7151:30;7217:34;7197:18;;;7190:62;-1:-1:-1;;;7268:18:1;;;7261:33;7311:19;;46657:71:0;6937:399:1;46657:71:0;46741:47;46762:6;46770:9;46781:6;46741:20;:47::i;:::-;-1:-1:-1;;;;;46825:17:0;;46801:21;46825:17;;;;;;;;;;;46861:23;;;;46853:74;;;;-1:-1:-1;;;46853:74:0;;10895:2:1;46853:74:0;;;10877:21:1;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:1;;;11017:36;11070:19;;46853:74:0;10693:402:1;46853:74:0;-1:-1:-1;;;;;46963:17:0;;;:9;:17;;;;;;;;;;;46983:22;;;46963:42;;47027:20;;;;;;;;:30;;46999:6;;46963:9;47027:30;;46999:6;;47027:30;:::i;:::-;;;;;;;;47092:9;-1:-1:-1;;;;;47075:35:0;47084:6;-1:-1:-1;;;;;47075:35:0;;47103:6;47075:35;;;;4031:25:1;;4019:2;4004:18;;3885:177;47075:35:0;;;;;;;;47123:46;47143:6;47151:9;47162:6;47123:19;:46::i;25793:314::-;25846:7;25878:4;-1:-1:-1;;;;;25887:12:0;25870:29;;:66;;;;;25920:16;25903:13;:33;25870:66;25866:234;;;-1:-1:-1;25960:24:0;;25793:314::o;25866:234::-;-1:-1:-1;26296:73:0;;;26046:10;26296:73;;;;5344:25:1;;;;26058:12:0;5385:18:1;;;5378:34;26072:15:0;5428:18:1;;;5421:34;26340:13:0;5471:18:1;;;5464:34;26363:4:0;5514:19:1;;;;5507:61;;;;26296:73:0;;;;;;;;;;5316:19:1;;;;26296:73:0;;;26286:84;;;;;;53503:115::o;58143:1482::-;59276:12;;58242:7;;;59325:236;59338:4;59332:3;:10;59325:236;;;59359:11;59373:23;59386:3;59391:4;59373:12;:23::i;:::-;59359:37;;59438:11;59415:5;59421:3;59415:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;:34;59411:139;;;59477:3;59470:10;;59411:139;;;59527:7;:3;59533:1;59527:7;:::i;:::-;59521:13;;59411:139;59344:217;59325:236;;;59580:9;;:37;;59596:5;59602:8;59609:1;59602:4;:8;:::i;:::-;59596:15;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;-1:-1:-1;;;;;59596:21:0;59580:37;;;59592:1;59580:37;-1:-1:-1;;;;;59573:44:0;;58143:1482;-1:-1:-1;;;;;58143:1482:0:o;35197:120::-;34209:7;;;;34733:41;;;;-1:-1:-1;;;34733:41:0;;7903:2:1;34733:41:0;;;7885:21:1;7942:2;7922:18;;;7915:30;-1:-1:-1;;;7961:18:1;;;7954:50;8021:18;;34733:41:0;7701:344:1;34733:41:0;35256:7:::1;:15:::0;;-1:-1:-1;;35256:15:0::1;::::0;;35287:22:::1;30330:10:::0;35296:12:::1;35287:22;::::0;-1:-1:-1;;;;;3649:32:1;;;3631:51;;3619:2;3604:18;35287:22:0::1;;;;;;;35197:120::o:0;66299:145::-;66413:23;66425:2;66429:6;66413:11;:23::i;66452:155::-;66571:28;66583:7;66592:6;66571:11;:28::i;61930:388::-;-1:-1:-1;;;;;56764:19:0;;;62015:23;56764:19;;;:10;:19;;;;;;;;;;42496:18;;;;;;;62130:21;;;;:33;;;-1:-1:-1;;;;;;62130:33:0;;;;;;;62181:54;;56764:19;;;;;42496:18;;62130:33;;56764:19;;;62181:54;;62015:23;62181:54;62248:62;62265:15;62282:9;62293:16;62248;:62::i;32802:191::-;32895:6;;;-1:-1:-1;;;;;32912:17:0;;;32895:6;32912:17;;;-1:-1:-1;;;;;;32912:17:0;;;;;;32945:40;;32895:6;;;;;;;;32945:40;;32876:16;;32945:40;32865:128;32802:191;:::o;34938:118::-;34209:7;;;;34463:9;34455:38;;;;-1:-1:-1;;;34455:38:0;;11705:2:1;34455:38:0;;;11687:21:1;11744:2;11724:18;;;11717:30;-1:-1:-1;;;11763:18:1;;;11756:46;11819:18;;34455:38:0;11503:340:1;34455:38:0;34998:7:::1;:14:::0;;-1:-1:-1;;34998:14:0::1;35008:4;34998:14;::::0;;35028:20:::1;35035:12;30330:10:::0;;30250:98;27020:167;27097:7;27124:55;27146:20;:18;:20::i;:::-;27168:10;22484:57;;-1:-1:-1;;;22484:57:0;;;3346:27:1;3389:11;;;3382:27;;;3425:12;;;3418:28;;;22447:7:0;;3462:12:1;;22484:57:0;;;;;;;;;;;;22474:68;;;;;;22467:75;;22354:196;;;;;20663:279;20791:7;20812:17;20831:18;20853:25;20864:4;20870:1;20873;20876;20853:10;:25::i;:::-;20811:67;;;;20889:18;20901:5;20889:11;:18::i;:::-;-1:-1:-1;20925:9:0;20663:279;-1:-1:-1;;;;;20663:279:0:o;53756:207::-;-1:-1:-1;;;;;53877:14:0;;53816:15;53877:14;;;:7;:14;;;;;10354;;10491:1;10473:19;;;;10354:14;53938:17;53833:130;53756:207;;;:::o;62977:645::-;63214:12;;63151:17;;;;63249:8;;:35;;63264:5;63270:7;63276:1;63270:3;:7;:::i;:::-;63264:14;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;-1:-1:-1;;;;;63264:20:0;63249:35;;;63260:1;63249:35;-1:-1:-1;;;;;63237:47:0;;;63307:20;63310:9;63321:5;63307:2;:20;;:::i;:::-;63295:32;;63350:1;63344:3;:7;:51;;;;-1:-1:-1;63383:12:0;63355:5;63361:7;63367:1;63361:3;:7;:::i;:::-;63355:14;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;:40;63344:51;63340:275;;;63435:29;63454:9;63435:18;:29::i;:::-;63412:5;63418:7;63424:1;63418:3;:7;:::i;:::-;63412:14;;;;;;;;:::i;:::-;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;63412:52:0;;;;;-1:-1:-1;;;;;63412:52:0;;;;;;63340:275;;;63497:5;63508:94;;;;;;;;63531:31;63549:12;63531:17;:31::i;:::-;63508:94;;;;;;63571:29;63590:9;63571:18;:29::i;:::-;-1:-1:-1;;;;;63508:94:0;;;;;;63497:106;;;;;;;-1:-1:-1;63497:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63340:275;63189:433;62977:645;;;;;;:::o;65821:199::-;34209:7;;;;34463:9;34455:38;;;;-1:-1:-1;;;34455:38:0;;11705:2:1;34455:38:0;;;11687:21:1;11744:2;11724:18;;;11717:30;-1:-1:-1;;;11763:18:1;;;11756:46;11819:18;;34455:38:0;11503:340:1;66098:193:0;66240:43;66266:4;66272:2;66276:6;66240:25;:43::i;62326:643::-;62458:3;-1:-1:-1;;;;;62451:10:0;:3;-1:-1:-1;;;;;62451:10:0;;;:24;;;;;62474:1;62465:6;:10;62451:24;62447:515;;;-1:-1:-1;;;;;62496:17:0;;;62492:224;;-1:-1:-1;;;;;62592:17:0;;62535;62592;;;:12;:17;;;;;62535;;62575:54;;62611:9;62622:6;62575:16;:54::i;:::-;62534:95;;;;62674:3;-1:-1:-1;;;;;62653:47:0;;62679:9;62690;62653:47;;;;;;17703:25:1;;;17759:2;17744:18;;17737:34;17691:2;17676:18;;17529:248;62653:47:0;;;;;;;;62515:201;;62492:224;-1:-1:-1;;;;;62736:17:0;;;62732:219;;-1:-1:-1;;;;;62832:17:0;;62775;62832;;;:12;:17;;;;;62775;;62815:49;;62851:4;62857:6;62815:16;:49::i;:::-;62774:90;;;;62909:3;-1:-1:-1;;;;;62888:47:0;;62914:9;62925;62888:47;;;;;;17703:25:1;;;17759:2;17744:18;;17737:34;17691:2;17676:18;;17529:248;62888:47:0;;;;;;;;62755:196;;62326:643;;;:::o;8817:156::-;8879:7;8954:11;8964:1;8955:5;;;8954:11;:::i;:::-;8944:21;;8945:5;;;8944:21;:::i;61170:194::-;61255:28;61267:7;61276:6;61255:11;:28::i;:::-;61296:60;61313:23;61338:9;61349:6;61296:16;:60::i;18892:1632::-;19023:7;;19957:66;19944:79;;19940:163;;;-1:-1:-1;20056:1:0;;-1:-1:-1;20060:30:0;20040:51;;19940:163;20117:1;:7;;20122:2;20117:7;;:18;;;;;20128:1;:7;;20133:2;20128:7;;20117:18;20113:102;;;-1:-1:-1;20168:1:0;;-1:-1:-1;20172:30:0;20152:51;;20113:102;20329:24;;;20312:14;20329:24;;;;;;;;;5806:25:1;;;5879:4;5867:17;;5847:18;;;5840:45;;;;5901:18;;;5894:34;;;5944:18;;;5937:34;;;20329:24:0;;5778:19:1;;20329:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20329:24:0;;-1:-1:-1;;20329:24:0;;;-1:-1:-1;;;;;;;20368:20:0;;20364:103;;20421:1;20425:29;20405:50;;;;;;;20364:103;20487:6;-1:-1:-1;20495:20:0;;-1:-1:-1;18892:1632:0;;;;;;;;:::o;13554:643::-;13632:20;13623:5;:29;;;;;;;;:::i;:::-;;13619:571;;;13554:643;:::o;13619:571::-;13730:29;13721:5;:38;;;;;;;;:::i;:::-;;13717:473;;;13776:34;;-1:-1:-1;;;13776:34:0;;6786:2:1;13776:34:0;;;6768:21:1;6825:2;6805:18;;;6798:30;6864:26;6844:18;;;6837:54;6908:18;;13776:34:0;6584:348:1;13717:473:0;13841:35;13832:5;:44;;;;;;;;:::i;:::-;;13828:362;;;13893:41;;-1:-1:-1;;;13893:41:0;;9013:2:1;13893:41:0;;;8995:21:1;9052:2;9032:18;;;9025:30;9091:33;9071:18;;;9064:61;9142:18;;13893:41:0;8811:355:1;13828:362:0;13965:30;13956:5;:39;;;;;;;;:::i;:::-;;13952:238;;;14012:44;;-1:-1:-1;;;14012:44:0;;11302:2:1;14012:44:0;;;11284:21:1;11341:2;11321:18;;;11314:30;11380:34;11360:18;;;11353:62;-1:-1:-1;;;11431:18:1;;;11424:32;11473:19;;14012:44:0;11100:398:1;13952:238:0;14087:30;14078:5;:39;;;;;;;;:::i;:::-;;14074:116;;;14134:44;;-1:-1:-1;;;14134:44:0;;12050:2:1;14134:44:0;;;12032:21:1;12089:2;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;-1:-1:-1;;;12179:18:1;;;12172:32;12221:19;;14134:44:0;11848:398:1;48196:591:0;-1:-1:-1;;;;;48280:21:0;;48272:67;;;;-1:-1:-1;;;48272:67:0;;14812:2:1;48272:67:0;;;14794:21:1;14851:2;14831:18;;;14824:30;14890:34;14870:18;;;14863:62;-1:-1:-1;;;14941:18:1;;;14934:31;14982:19;;48272:67:0;14610:397:1;48272:67:0;48352:49;48373:7;48390:1;48394:6;48352:20;:49::i;:::-;-1:-1:-1;;;;;48439:18:0;;48414:22;48439:18;;;;;;;;;;;48476:24;;;;48468:71;;;;-1:-1:-1;;;48468:71:0;;8610:2:1;48468:71:0;;;8592:21:1;8649:2;8629:18;;;8622:30;8688:34;8668:18;;;8661:62;-1:-1:-1;;;8739:18:1;;;8732:32;8781:19;;48468:71:0;8408:398:1;48468:71:0;-1:-1:-1;;;;;48575:18:0;;:9;:18;;;;;;;;;;48596:23;;;48575:44;;48641:12;:22;;48613:6;;48575:9;48641:22;;48613:6;;48641:22;:::i;:::-;;;;-1:-1:-1;;48681:37:0;;4031:25:1;;;48707:1:0;;-1:-1:-1;;;;;48681:37:0;;;;;4019:2:1;4004:18;48681:37:0;;;;;;;48731:48;48751:7;48768:1;48772:6;48731:19;:48::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:156::-;258:20;;318:4;307:16;;297:27;;287:55;;338:1;335;328:12;353:186;412:6;465:2;453:9;444:7;440:23;436:32;433:52;;;481:1;478;471:12;433:52;504:29;523:9;504:29;:::i;544:260::-;612:6;620;673:2;661:9;652:7;648:23;644:32;641:52;;;689:1;686;679:12;641:52;712:29;731:9;712:29;:::i;:::-;702:39;;760:38;794:2;783:9;779:18;760:38;:::i;:::-;750:48;;544:260;;;;;:::o;809:328::-;886:6;894;902;955:2;943:9;934:7;930:23;926:32;923:52;;;971:1;968;961:12;923:52;994:29;1013:9;994:29;:::i;:::-;984:39;;1042:38;1076:2;1065:9;1061:18;1042:38;:::i;:::-;1032:48;;1127:2;1116:9;1112:18;1099:32;1089:42;;809:328;;;;;:::o;1142:606::-;1253:6;1261;1269;1277;1285;1293;1301;1354:3;1342:9;1333:7;1329:23;1325:33;1322:53;;;1371:1;1368;1361:12;1322:53;1394:29;1413:9;1394:29;:::i;:::-;1384:39;;1442:38;1476:2;1465:9;1461:18;1442:38;:::i;:::-;1432:48;;1527:2;1516:9;1512:18;1499:32;1489:42;;1578:2;1567:9;1563:18;1550:32;1540:42;;1601:37;1633:3;1622:9;1618:19;1601:37;:::i;:::-;1591:47;;1685:3;1674:9;1670:19;1657:33;1647:43;;1737:3;1726:9;1722:19;1709:33;1699:43;;1142:606;;;;;;;;;;:::o;1753:254::-;1821:6;1829;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1997:2;1982:18;;;;1969:32;;-1:-1:-1;;;1753:254:1:o;2012:531::-;2114:6;2122;2130;2138;2146;2154;2207:3;2195:9;2186:7;2182:23;2178:33;2175:53;;;2224:1;2221;2214:12;2175:53;2247:29;2266:9;2247:29;:::i;:::-;2237:39;;2323:2;2312:9;2308:18;2295:32;2285:42;;2374:2;2363:9;2359:18;2346:32;2336:42;;2397:36;2429:2;2418:9;2414:18;2397:36;:::i;:::-;2387:46;;2480:3;2469:9;2465:19;2452:33;2442:43;;2532:3;2521:9;2517:19;2504:33;2494:43;;2012:531;;;;;;;;:::o;2548:350::-;2615:6;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2794:2;2783:9;2779:18;2766:32;2838:10;2831:5;2827:22;2820:5;2817:33;2807:61;;2864:1;2861;2854:12;2807:61;2887:5;2877:15;;;2548:350;;;;;:::o;2903:180::-;2962:6;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;-1:-1:-1;3054:23:1;;2903:180;-1:-1:-1;2903:180:1:o;5982:597::-;6094:4;6123:2;6152;6141:9;6134:21;6184:6;6178:13;6227:6;6222:2;6211:9;6207:18;6200:34;6252:1;6262:140;6276:6;6273:1;6270:13;6262:140;;;6371:14;;;6367:23;;6361:30;6337:17;;;6356:2;6333:26;6326:66;6291:10;;6262:140;;;6420:6;6417:1;6414:13;6411:91;;;6490:1;6485:2;6476:6;6465:9;6461:22;6457:31;6450:42;6411:91;-1:-1:-1;6563:2:1;6542:15;-1:-1:-1;;6538:29:1;6523:45;;;;6570:2;6519:54;;5982:597;-1:-1:-1;;;5982:597:1:o;13436:356::-;13638:2;13620:21;;;13657:18;;;13650:30;13716:34;13711:2;13696:18;;13689:62;13783:2;13768:18;;13436:356::o;18168:128::-;18208:3;18239:1;18235:6;18232:1;18229:13;18226:39;;;18245:18;;:::i;:::-;-1:-1:-1;18281:9:1;;18168:128::o;18301:217::-;18341:1;18367;18357:132;;18411:10;18406:3;18402:20;18399:1;18392:31;18446:4;18443:1;18436:15;18474:4;18471:1;18464:15;18357:132;-1:-1:-1;18503:9:1;;18301:217::o;18523:125::-;18563:4;18591:1;18588;18585:8;18582:34;;;18596:18;;:::i;:::-;-1:-1:-1;18633:9:1;;18523:125::o;18653:380::-;18732:1;18728:12;;;;18775;;;18796:61;;18850:4;18842:6;18838:17;18828:27;;18796:61;18903:2;18895:6;18892:14;18872:18;18869:38;18866:161;;;18949:10;18944:3;18940:20;18937:1;18930:31;18984:4;18981:1;18974:15;19012:4;19009:1;19002:15;19038:127;19099:10;19094:3;19090:20;19087:1;19080:31;19130:4;19127:1;19120:15;19154:4;19151:1;19144:15;19170:127;19231:10;19226:3;19222:20;19219:1;19212:31;19262:4;19259:1;19252:15;19286:4;19283:1;19276:15;19302:127;19363:10;19358:3;19354:20;19351:1;19344:31;19394:4;19391:1;19384:15;19418:4;19415:1;19408:15

Swarm Source

ipfs://d54342c7a00b6a642f71e185c14cd94545e7a0bdfcd3e43ff7640ede476a7d9e
Loading