ETH Price: $2,044.92 (+1.04%)

Token

Limelight (LMLT)
 

Overview

Max Total Supply

1,000,000,000 LMLT

Holders

4 (0.00%)

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

LMLT powers Limelight Music, a multi-chain music protocol empowering talented artists to succeed in the music industry through algorithmic music discovery, tokenized digital distribution with trustless royalty management, and more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LimelightToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-12-03
*/

// File: @openzeppelin/contracts/utils/structs/BitMaps.sol


// OpenZeppelin Contracts v4.4.0 (utils/structs/BitMaps.sol)
pragma solidity ^0.8.0;

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */
library BitMaps {
    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = 1 << (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }
}

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


pragma solidity ^0.8.10;
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool, uint256) {
        bytes32 computedHash = leaf;
        uint256 index = 0;

        for (uint256 i = 0; i < proof.length; i++) {
            index *= 2;
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
                index += 1;
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return (computedHash == root, index);
    }
}
//import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";






/**
 * @dev An ERC20 token for LMLT.
 *      Besides the addition of voting capabilities, we make a couple of customisations:
 *       - Airdrop claim functionality via `claimTokens`. At creation time the tokens that
 *         should be available for the airdrop are transferred to the token contract address;
 *         airdrop claims are made from this balance.
 *       - Support for the owner (the DAO) to mint new tokens, at up to 1% PA.
 */
contract LimelightToken is ERC20, ERC20Permit, ERC20Votes, Ownable {
    using BitMaps for BitMaps.BitMap;

    uint256 public constant minimumMintInterval = 365 days;
    uint256 public constant mintCap = 100; // 1%

    bytes32 public merkleRoot;
    uint256 public nextMint; // Timestamp
    uint256 public claimPeriodEnds; // Timestamp
    BitMaps.BitMap private claimed;

    event MerkleRootChanged(bytes32 merkleRoot);
    event Claim(address indexed claimant, uint256 amount);


    constructor()
        ERC20("Limelight", "LMLT")
        ERC20Permit("Limelight")
    {
        uint256 freeSupply = 900000000; //900m
        uint256 airdropSupply = 100000000; //100m
        uint256 _claimPeriodEnds = 1641013200; //Sat Jan 01 2022 00:00:00 GMT-0500 (Eastern Standard Time)
        _mint(msg.sender, freeSupply * 1e18);
        _mint(address(this), airdropSupply * 1e18);
        claimPeriodEnds = _claimPeriodEnds;
        nextMint = block.timestamp + minimumMintInterval;
    }

    /**
     * @dev Claims airdropped tokens.
     * @param amount The amount of the claim being made.
     * @param delegate The address the tokenholder wants to delegate their votes to.
     * @param merkleProof A merkle proof proving the claim is valid.
     */
    function claimTokens(uint256 amount, address delegate, bytes32[] calldata merkleProof) external {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, amount));
        (bool valid, uint256 index) = MerkleProof.verify(merkleProof, merkleRoot, leaf);
        require(valid, "LMLT: Valid proof required.");
        require(!isClaimed(index), "LMLT: Tokens already claimed.");
        
        claimed.set(index);
        emit Claim(msg.sender, amount);

        _delegate(msg.sender, delegate);
        _transfer(address(this), msg.sender, amount);
    }

    /**
     * @dev Allows the owner to sweep unclaimed tokens after the claim period ends.
     * @param dest The address to sweep the tokens to.
     */
    function sweep(address dest) external onlyOwner {
        require(block.timestamp > claimPeriodEnds, "LMLT: Claim period not yet ended");
        _transfer(address(this), dest, balanceOf(address(this)));
    }

    /**
     * @dev Returns true if the claim at the given index in the merkle tree has already been made.
     * @param index The index into the merkle tree.
     */
    function isClaimed(uint256 index) public view returns (bool) {
        return claimed.get(index);
    }

    /**
     * @dev Sets the merkle root. Only callable if the root is not yet set.
     * @param _merkleRoot The merkle root to set.
     */
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        require(merkleRoot == bytes32(0), "LMLT: Merkle root already set");
        merkleRoot = _merkleRoot;
        emit MerkleRootChanged(_merkleRoot);
    }

    /**
     * @dev Mints new tokens. Can only be executed every `minimumMintInterval`, by the owner, and cannot
     *      exceed `mintCap / 10000` fraction of the current total supply.
     * @param dest The address to mint the new tokens to.
     * @param amount The quantity of tokens to mint.
     */
    function mint(address dest, uint256 amount) external onlyOwner {
        require(amount <= (totalSupply() * mintCap) / 10000, "LMLT: Mint exceeds maximum amount");
        require(block.timestamp >= nextMint, "LMLT: Cannot mint yet");

        nextMint = block.timestamp + minimumMintInterval;
        _mint(dest, 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

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","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":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"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":"claimPeriodEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"delegate","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"index","type":"uint256"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumMintInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"sweep","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"}]

6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140523480156200003757600080fd5b5060405180604001604052806009815260200168131a5b595b1a59da1d60ba1b81525080604051806040016040528060018152602001603160f81b81525060405180604001604052806009815260200168131a5b595b1a59da1d60ba1b815250604051806040016040528060048152602001631313531560e21b8152508160039080519060200190620000cc9291906200083a565b508051620000e29060049060208401906200083a565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c094850190915281519190960120905292909252610120525062000181905033620001ea565b6335a4e9006305f5e1006361cfdfd0620001af33620001a985670de0b6b3a7640000620008ec565b6200023c565b620001c830620001a984670de0b6b3a7640000620008ec565b600c819055620001dd6301e13380426200090e565b600b555062000996915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200025382826200025760201b620011271760201c565b5050565b6200026e82826200030e60201b620011b71760201c565b6001600160e01b0362000282620003fd8216565b1115620002ef5760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084015b60405180910390fd5b6200030860086200129e6200040360201b178362000418565b50505050565b6001600160a01b038216620003665760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002e6565b80600260008282546200037a91906200090e565b90915550506001600160a01b03821660009081526020819052604081208054839290620003a99084906200090e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36200025360008383620005cf565b60025490565b60006200041182846200090e565b9392505050565b8254600090819080156200046a57856200043460018362000929565b8154811062000447576200044762000943565b60009182526020909120015464010000000090046001600160e01b03166200046d565b60005b6001600160e01b031692506200048483858760201c565b9150600081118015620004c857504386620004a160018462000929565b81548110620004b457620004b462000943565b60009182526020909120015463ffffffff16145b156200053c57620004e482620005e760201b620012aa1760201c565b86620004f260018462000929565b8154811062000505576200050562000943565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550620005c1565b8560405180604001604052806200055e436200065660201b620013171760201c565b63ffffffff1681526020016200057f85620005e760201b620012aa1760201c565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b505050565b620005ca838383620006bd60201b6200137c1760201c565b60006001600160e01b03821115620006525760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401620002e6565b5090565b600063ffffffff821115620006525760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401620002e6565b620006d5838383620005ca60201b620013ae1760201c565b6001600160a01b03838116600090815260066020526040808220548584168352912054620005ca92918216911683818314801590620007145750600081115b15620005ca576001600160a01b03831615620007a1576001600160a01b0383166000908152600760209081526040822082916200075e91906200082c901b620013b3178562000418565b91509150846001600160a01b031660008051602062002e99833981519152838360405162000796929190918252602082015260400190565b60405180910390a250505b6001600160a01b03821615620005ca576001600160a01b038216600090815260076020908152604082208291620007e5919062000403901b6200129e178562000418565b91509150836001600160a01b031660008051602062002e9983398151915283836040516200081d929190918252602082015260400190565b60405180910390a25050505050565b600062000411828462000929565b828054620008489062000959565b90600052602060002090601f0160209004810192826200086c5760008555620008b7565b82601f106200088757805160ff1916838001178555620008b7565b82800160010185558215620008b7579182015b82811115620008b75782518255916020019190600101906200089a565b50620006529291505b80821115620006525760008155600101620008c0565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009095762000909620008d6565b500290565b60008219821115620009245762000924620008d6565b500190565b6000828210156200093e576200093e620008d6565b500390565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806200096e57607f821691505b602082108114156200099057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051610140516124a8620009f16000396000610efb01526000611741015260006117900152600061176b015260006116c4015260006116ee0152600061171801526124a86000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a6116101255780639e34070f116100ad578063cf6654431161007c578063cf6654431461047a578063d505accf14610483578063dd62ed3e14610496578063f1127ed8146104cf578063f2fde38b1461050c57600080fd5b80639e34070f1461042e578063a457c2d714610441578063a9059cbb14610454578063c3cda5201461046757600080fd5b80637ecebe00116100f45780637ecebe00146103dc5780638da5cb5b146103ef5780638e539e8c1461040057806395d89b41146104135780639ab24eb01461041b57600080fd5b8063715018a6146103a657806376122903146103ae57806376c71ca1146103c15780637cb64759146103c957600080fd5b806339509351116101a8578063587cde1e11610177578063587cde1e146102f55780635c19a95c1461033957806366deac471461034c5780636fcfff451461035557806370a082311461037d57600080fd5b806339509351146102b15780633a46b1a8146102c457806340c10f19146102d7578063515b612a146102ea57600080fd5b806323b872dd116101e457806323b872dd1461027e5780632eb4a7ab14610291578063313ce5671461029a5780633644e515146102a957600080fd5b806301681a621461021657806306fdde031461022b578063095ea7b31461024957806318160ddd1461026c575b600080fd5b61022961022436600461207c565b61051f565b005b6102336105c2565b6040516102409190612097565b60405180910390f35b61025c6102573660046120ec565b610654565b6040519015158152602001610240565b6002545b604051908152602001610240565b61025c61028c366004612116565b61066a565b610270600a5481565b60405160128152602001610240565b610270610714565b61025c6102bf3660046120ec565b610723565b6102706102d23660046120ec565b61075f565b6102296102e53660046120ec565b6107d9565b6102706301e1338081565b61032161030336600461207c565b6001600160a01b039081166000908152600660205260409020541690565b6040516001600160a01b039091168152602001610240565b61022961034736600461207c565b6108e7565b610270600c5481565b61036861036336600461207c565b6108f1565b60405163ffffffff9091168152602001610240565b61027061038b36600461207c565b6001600160a01b031660009081526020819052604090205490565b610229610919565b6102296103bc366004612152565b61094f565b610270606481565b6102296103d73660046121dc565b610aec565b6102706103ea36600461207c565b610ba1565b6009546001600160a01b0316610321565b61027061040e3660046121dc565b610bbf565b610233610c1b565b61027061042936600461207c565b610c2a565b61025c61043c3660046121dc565b610cb1565b61025c61044f3660046120ec565b610cd4565b61025c6104623660046120ec565b610d6d565b610229610475366004612206565b610d7a565b610270600b5481565b61022961049136600461225e565b610ea7565b6102706104a43660046122c8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e26104dd3660046122fb565b61100b565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610240565b61022961051a36600461207c565b61108f565b6009546001600160a01b031633146105525760405162461bcd60e51b81526004016105499061233b565b60405180910390fd5b600c5442116105a35760405162461bcd60e51b815260206004820181905260248201527f4c4d4c543a20436c61696d20706572696f64206e6f742079657420656e6465646044820152606401610549565b306000818152602081905260409020546105bf919083906113bf565b50565b6060600380546105d190612370565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90612370565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b6000610661338484611593565b50600192915050565b60006106778484846113bf565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610549565b6107098533858403611593565b506001949350505050565b600061071e6116b7565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161066191859061075a9086906123bb565b611593565b60004382106107b05760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610549565b6001600160a01b03831660009081526007602052604090206107d290836117de565b9392505050565b6009546001600160a01b031633146108035760405162461bcd60e51b81526004016105499061233b565b612710606461081160025490565b61081b91906123d3565b61082591906123f2565b81111561087e5760405162461bcd60e51b815260206004820152602160248201527f4c4d4c543a204d696e742065786365656473206d6178696d756d20616d6f756e6044820152601d60fa1b6064820152608401610549565b600b544210156108c85760405162461bcd60e51b8152602060048201526015602482015274131353150e8810d85b9b9bdd081b5a5b9d081e595d605a1b6044820152606401610549565b6108d66301e13380426123bb565b600b556108e3828261189b565b5050565b6105bf33826118a5565b6001600160a01b03811660009081526007602052604081205461091390611317565b92915050565b6009546001600160a01b031633146109435760405162461bcd60e51b81526004016105499061233b565b61094d600061191e565b565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526000906054016040516020818303038152906040528051906020012090506000806109d385858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150869050611970565b9150915081610a245760405162461bcd60e51b815260206004820152601b60248201527f4c4d4c543a2056616c69642070726f6f662072657175697265642e00000000006044820152606401610549565b610a2d81610cb1565b15610a7a5760405162461bcd60e51b815260206004820152601d60248201527f4c4d4c543a20546f6b656e7320616c726561647920636c61696d65642e0000006044820152606401610549565b600881901c6000908152600d602052604090208054600160ff84161b17905560405187815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a2610ad833876118a5565b610ae33033896113bf565b50505050505050565b6009546001600160a01b03163314610b165760405162461bcd60e51b81526004016105499061233b565b600a5415610b665760405162461bcd60e51b815260206004820152601d60248201527f4c4d4c543a204d65726b6c6520726f6f7420616c7265616479207365740000006044820152606401610549565b600a8190556040518181527f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c9060200160405180910390a150565b6001600160a01b038116600090815260056020526040812054610913565b6000438210610c105760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610549565b6109136008836117de565b6060600480546105d190612370565b6001600160a01b0381166000908152600760205260408120548015610c9e576001600160a01b0383166000908152600760205260409020610c6c600183612414565b81548110610c7c57610c7c61242b565b60009182526020909120015464010000000090046001600160e01b0316610ca1565b60005b6001600160e01b03169392505050565b600881901c6000908152600d6020526040812054600160ff84161b161515610913565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610549565b610d633385858403611593565b5060019392505050565b60006106613384846113bf565b83421115610dca5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610549565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610e4490610e3c9060a00160405160208183030381529060405280519060200120611a3e565b858585611a8c565b9050610e4f81611ab4565b8614610e9d5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610549565b610ae381886118a5565b83421115610ef75760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610549565b60007f0000000000000000000000000000000000000000000000000000000000000000888888610f268c611ab4565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610f8182611a3e565b90506000610f9182878787611a8c565b9050896001600160a01b0316816001600160a01b031614610ff45760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610549565b610fff8a8a8a611593565b50505050505050505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff841690811061104f5761104f61242b565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b031633146110b95760405162461bcd60e51b81526004016105499061233b565b6001600160a01b03811661111e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610549565b6105bf8161191e565b61113182826111b7565b6002546001600160e01b0310156111a35760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610549565b6111b1600861129e83611adc565b50505050565b6001600160a01b03821661120d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610549565b806002600082825461121f91906123bb565b90915550506001600160a01b0382166000908152602081905260408120805483929061124c9084906123bb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36108e360008383611c55565b60006107d282846123bb565b60006001600160e01b038211156113135760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610549565b5090565b600063ffffffff8211156113135760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610549565b6001600160a01b038381166000908152600660205260408082205485841683529120546113ae92918216911683611c60565b505050565b60006107d28284612414565b6001600160a01b0383166114235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610549565b6001600160a01b0382166114855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610549565b6001600160a01b038316600090815260208190526040902054818110156114fd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610549565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906115349084906123bb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161158091815260200190565b60405180910390a36111b1848484611c55565b6001600160a01b0383166115f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610549565b6001600160a01b0382166116565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610549565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561171057507f000000000000000000000000000000000000000000000000000000000000000046145b1561173a57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b818110156118425760006117f98284611d9d565b90508486828154811061180e5761180e61242b565b60009182526020909120015463ffffffff16111561182e5780925061183c565b6118398160016123bb565b91505b506117e5565b81156118865784611854600184612414565b815481106118645761186461242b565b60009182526020909120015464010000000090046001600160e01b0316611889565b60005b6001600160e01b031695945050505050565b6108e38282611127565b6001600160a01b038281166000818152600660208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46111b1828483611c60565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000808281805b8751811015611a325761198b6002836123d3565b915060008882815181106119a1576119a161242b565b602002602001015190508084116119e3576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350611a1f565b6040805160208101839052908101859052606001604051602081830303815290604052805190602001209350600183611a1c91906123bb565b92505b5080611a2a81612441565b915050611977565b50941495939450505050565b6000610913611a4b6116b7565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611a9d87878787611db8565b91509150611aaa81611ea5565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b825460009081908015611b275785611af5600183612414565b81548110611b0557611b0561242b565b60009182526020909120015464010000000090046001600160e01b0316611b2a565b60005b6001600160e01b03169250611b4383858763ffffffff16565b9150600081118015611b8157504386611b5d600184612414565b81548110611b6d57611b6d61242b565b60009182526020909120015463ffffffff16145b15611be157611b8f826112aa565b86611b9b600184612414565b81548110611bab57611bab61242b565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611c4c565b856040518060400160405280611bf643611317565b63ffffffff168152602001611c0a856112aa565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b6113ae83838361137c565b816001600160a01b0316836001600160a01b031614158015611c825750600081115b156113ae576001600160a01b03831615611d10576001600160a01b03831660009081526007602052604081208190611cbd906113b385611adc565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611d05929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156113ae576001600160a01b03821660009081526007602052604081208190611d469061129e85611adc565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611d8e929190918252602082015260400190565b60405180910390a25050505050565b6000611dac60028484186123f2565b6107d2908484166123bb565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611def5750600090506003611e9c565b8460ff16601b14158015611e0757508460ff16601c14155b15611e185750600090506004611e9c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e6c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e9557600060019250925050611e9c565b9150600090505b94509492505050565b6000816004811115611eb957611eb961245c565b1415611ec25750565b6001816004811115611ed657611ed661245c565b1415611f245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610549565b6002816004811115611f3857611f3861245c565b1415611f865760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610549565b6003816004811115611f9a57611f9a61245c565b1415611ff35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610549565b60048160048111156120075761200761245c565b14156105bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610549565b80356001600160a01b038116811461207757600080fd5b919050565b60006020828403121561208e57600080fd5b6107d282612060565b600060208083528351808285015260005b818110156120c4578581018301518582016040015282016120a8565b818111156120d6576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156120ff57600080fd5b61210883612060565b946020939093013593505050565b60008060006060848603121561212b57600080fd5b61213484612060565b925061214260208501612060565b9150604084013590509250925092565b6000806000806060858703121561216857600080fd5b8435935061217860208601612060565b9250604085013567ffffffffffffffff8082111561219557600080fd5b818701915087601f8301126121a957600080fd5b8135818111156121b857600080fd5b8860208260051b85010111156121cd57600080fd5b95989497505060200194505050565b6000602082840312156121ee57600080fd5b5035919050565b803560ff8116811461207757600080fd5b60008060008060008060c0878903121561221f57600080fd5b61222887612060565b95506020870135945060408701359350612244606088016121f5565b92506080870135915060a087013590509295509295509295565b600080600080600080600060e0888a03121561227957600080fd5b61228288612060565b965061229060208901612060565b955060408801359450606088013593506122ac608089016121f5565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156122db57600080fd5b6122e483612060565b91506122f260208401612060565b90509250929050565b6000806040838503121561230e57600080fd5b61231783612060565b9150602083013563ffffffff8116811461233057600080fd5b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061238457607f821691505b60208210811415611ad657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156123ce576123ce6123a5565b500190565b60008160001904831182151516156123ed576123ed6123a5565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612426576124266123a5565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612455576124556123a5565b5060010190565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220cb84944733b472f42f5cc30f66fa83a3e036742fb35933b422d206beea2b0e8364736f6c634300080a0033dec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063715018a6116101255780639e34070f116100ad578063cf6654431161007c578063cf6654431461047a578063d505accf14610483578063dd62ed3e14610496578063f1127ed8146104cf578063f2fde38b1461050c57600080fd5b80639e34070f1461042e578063a457c2d714610441578063a9059cbb14610454578063c3cda5201461046757600080fd5b80637ecebe00116100f45780637ecebe00146103dc5780638da5cb5b146103ef5780638e539e8c1461040057806395d89b41146104135780639ab24eb01461041b57600080fd5b8063715018a6146103a657806376122903146103ae57806376c71ca1146103c15780637cb64759146103c957600080fd5b806339509351116101a8578063587cde1e11610177578063587cde1e146102f55780635c19a95c1461033957806366deac471461034c5780636fcfff451461035557806370a082311461037d57600080fd5b806339509351146102b15780633a46b1a8146102c457806340c10f19146102d7578063515b612a146102ea57600080fd5b806323b872dd116101e457806323b872dd1461027e5780632eb4a7ab14610291578063313ce5671461029a5780633644e515146102a957600080fd5b806301681a621461021657806306fdde031461022b578063095ea7b31461024957806318160ddd1461026c575b600080fd5b61022961022436600461207c565b61051f565b005b6102336105c2565b6040516102409190612097565b60405180910390f35b61025c6102573660046120ec565b610654565b6040519015158152602001610240565b6002545b604051908152602001610240565b61025c61028c366004612116565b61066a565b610270600a5481565b60405160128152602001610240565b610270610714565b61025c6102bf3660046120ec565b610723565b6102706102d23660046120ec565b61075f565b6102296102e53660046120ec565b6107d9565b6102706301e1338081565b61032161030336600461207c565b6001600160a01b039081166000908152600660205260409020541690565b6040516001600160a01b039091168152602001610240565b61022961034736600461207c565b6108e7565b610270600c5481565b61036861036336600461207c565b6108f1565b60405163ffffffff9091168152602001610240565b61027061038b36600461207c565b6001600160a01b031660009081526020819052604090205490565b610229610919565b6102296103bc366004612152565b61094f565b610270606481565b6102296103d73660046121dc565b610aec565b6102706103ea36600461207c565b610ba1565b6009546001600160a01b0316610321565b61027061040e3660046121dc565b610bbf565b610233610c1b565b61027061042936600461207c565b610c2a565b61025c61043c3660046121dc565b610cb1565b61025c61044f3660046120ec565b610cd4565b61025c6104623660046120ec565b610d6d565b610229610475366004612206565b610d7a565b610270600b5481565b61022961049136600461225e565b610ea7565b6102706104a43660046122c8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104e26104dd3660046122fb565b61100b565b60408051825163ffffffff1681526020928301516001600160e01b03169281019290925201610240565b61022961051a36600461207c565b61108f565b6009546001600160a01b031633146105525760405162461bcd60e51b81526004016105499061233b565b60405180910390fd5b600c5442116105a35760405162461bcd60e51b815260206004820181905260248201527f4c4d4c543a20436c61696d20706572696f64206e6f742079657420656e6465646044820152606401610549565b306000818152602081905260409020546105bf919083906113bf565b50565b6060600380546105d190612370565b80601f01602080910402602001604051908101604052809291908181526020018280546105fd90612370565b801561064a5780601f1061061f5761010080835404028352916020019161064a565b820191906000526020600020905b81548152906001019060200180831161062d57829003601f168201915b5050505050905090565b6000610661338484611593565b50600192915050565b60006106778484846113bf565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106fc5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610549565b6107098533858403611593565b506001949350505050565b600061071e6116b7565b905090565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161066191859061075a9086906123bb565b611593565b60004382106107b05760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610549565b6001600160a01b03831660009081526007602052604090206107d290836117de565b9392505050565b6009546001600160a01b031633146108035760405162461bcd60e51b81526004016105499061233b565b612710606461081160025490565b61081b91906123d3565b61082591906123f2565b81111561087e5760405162461bcd60e51b815260206004820152602160248201527f4c4d4c543a204d696e742065786365656473206d6178696d756d20616d6f756e6044820152601d60fa1b6064820152608401610549565b600b544210156108c85760405162461bcd60e51b8152602060048201526015602482015274131353150e8810d85b9b9bdd081b5a5b9d081e595d605a1b6044820152606401610549565b6108d66301e13380426123bb565b600b556108e3828261189b565b5050565b6105bf33826118a5565b6001600160a01b03811660009081526007602052604081205461091390611317565b92915050565b6009546001600160a01b031633146109435760405162461bcd60e51b81526004016105499061233b565b61094d600061191e565b565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526000906054016040516020818303038152906040528051906020012090506000806109d385858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150869050611970565b9150915081610a245760405162461bcd60e51b815260206004820152601b60248201527f4c4d4c543a2056616c69642070726f6f662072657175697265642e00000000006044820152606401610549565b610a2d81610cb1565b15610a7a5760405162461bcd60e51b815260206004820152601d60248201527f4c4d4c543a20546f6b656e7320616c726561647920636c61696d65642e0000006044820152606401610549565b600881901c6000908152600d602052604090208054600160ff84161b17905560405187815233907f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49060200160405180910390a2610ad833876118a5565b610ae33033896113bf565b50505050505050565b6009546001600160a01b03163314610b165760405162461bcd60e51b81526004016105499061233b565b600a5415610b665760405162461bcd60e51b815260206004820152601d60248201527f4c4d4c543a204d65726b6c6520726f6f7420616c7265616479207365740000006044820152606401610549565b600a8190556040518181527f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c9060200160405180910390a150565b6001600160a01b038116600090815260056020526040812054610913565b6000438210610c105760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152606401610549565b6109136008836117de565b6060600480546105d190612370565b6001600160a01b0381166000908152600760205260408120548015610c9e576001600160a01b0383166000908152600760205260409020610c6c600183612414565b81548110610c7c57610c7c61242b565b60009182526020909120015464010000000090046001600160e01b0316610ca1565b60005b6001600160e01b03169392505050565b600881901c6000908152600d6020526040812054600160ff84161b161515610913565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610549565b610d633385858403611593565b5060019392505050565b60006106613384846113bf565b83421115610dca5760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152606401610549565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b038816918101919091526060810186905260808101859052600090610e4490610e3c9060a00160405160208183030381529060405280519060200120611a3e565b858585611a8c565b9050610e4f81611ab4565b8614610e9d5760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152606401610549565b610ae381886118a5565b83421115610ef75760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610549565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610f268c611ab4565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610f8182611a3e565b90506000610f9182878787611a8c565b9050896001600160a01b0316816001600160a01b031614610ff45760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610549565b610fff8a8a8a611593565b50505050505050505050565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff841690811061104f5761104f61242b565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b031633146110b95760405162461bcd60e51b81526004016105499061233b565b6001600160a01b03811661111e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610549565b6105bf8161191e565b61113182826111b7565b6002546001600160e01b0310156111a35760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608401610549565b6111b1600861129e83611adc565b50505050565b6001600160a01b03821661120d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610549565b806002600082825461121f91906123bb565b90915550506001600160a01b0382166000908152602081905260408120805483929061124c9084906123bb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36108e360008383611c55565b60006107d282846123bb565b60006001600160e01b038211156113135760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610549565b5090565b600063ffffffff8211156113135760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608401610549565b6001600160a01b038381166000908152600660205260408082205485841683529120546113ae92918216911683611c60565b505050565b60006107d28284612414565b6001600160a01b0383166114235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610549565b6001600160a01b0382166114855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610549565b6001600160a01b038316600090815260208190526040902054818110156114fd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610549565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906115349084906123bb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161158091815260200190565b60405180910390a36111b1848484611c55565b6001600160a01b0383166115f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610549565b6001600160a01b0382166116565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610549565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000306001600160a01b037f0000000000000000000000005ea1dd3f3f3685c32d771b2e89a70d9c5ccf8a0c1614801561171057507f000000000000000000000000000000000000000000000000000000000000000146145b1561173a57507f471d8145122a680be788c92cd4537a8568ff2610915aa4eb3b4ca005c52ba59a90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f47f16cf3587e772ca407acac1acd56994bd2d0eadffeea010617d9b8c132c515828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b8154600090815b818110156118425760006117f98284611d9d565b90508486828154811061180e5761180e61242b565b60009182526020909120015463ffffffff16111561182e5780925061183c565b6118398160016123bb565b91505b506117e5565b81156118865784611854600184612414565b815481106118645761186461242b565b60009182526020909120015464010000000090046001600160e01b0316611889565b60005b6001600160e01b031695945050505050565b6108e38282611127565b6001600160a01b038281166000818152600660208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46111b1828483611c60565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000808281805b8751811015611a325761198b6002836123d3565b915060008882815181106119a1576119a161242b565b602002602001015190508084116119e3576040805160208101869052908101829052606001604051602081830303815290604052805190602001209350611a1f565b6040805160208101839052908101859052606001604051602081830303815290604052805190602001209350600183611a1c91906123bb565b92505b5080611a2a81612441565b915050611977565b50941495939450505050565b6000610913611a4b6116b7565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611a9d87878787611db8565b91509150611aaa81611ea5565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b825460009081908015611b275785611af5600183612414565b81548110611b0557611b0561242b565b60009182526020909120015464010000000090046001600160e01b0316611b2a565b60005b6001600160e01b03169250611b4383858763ffffffff16565b9150600081118015611b8157504386611b5d600184612414565b81548110611b6d57611b6d61242b565b60009182526020909120015463ffffffff16145b15611be157611b8f826112aa565b86611b9b600184612414565b81548110611bab57611bab61242b565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b03160217905550611c4c565b856040518060400160405280611bf643611317565b63ffffffff168152602001611c0a856112aa565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b6113ae83838361137c565b816001600160a01b0316836001600160a01b031614158015611c825750600081115b156113ae576001600160a01b03831615611d10576001600160a01b03831660009081526007602052604081208190611cbd906113b385611adc565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611d05929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156113ae576001600160a01b03821660009081526007602052604081208190611d469061129e85611adc565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611d8e929190918252602082015260400190565b60405180910390a25050505050565b6000611dac60028484186123f2565b6107d2908484166123bb565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611def5750600090506003611e9c565b8460ff16601b14158015611e0757508460ff16601c14155b15611e185750600090506004611e9c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e6c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e9557600060019250925050611e9c565b9150600090505b94509492505050565b6000816004811115611eb957611eb961245c565b1415611ec25750565b6001816004811115611ed657611ed661245c565b1415611f245760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610549565b6002816004811115611f3857611f3861245c565b1415611f865760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610549565b6003816004811115611f9a57611f9a61245c565b1415611ff35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610549565b60048160048111156120075761200761245c565b14156105bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610549565b80356001600160a01b038116811461207757600080fd5b919050565b60006020828403121561208e57600080fd5b6107d282612060565b600060208083528351808285015260005b818110156120c4578581018301518582016040015282016120a8565b818111156120d6576000604083870101525b50601f01601f1916929092016040019392505050565b600080604083850312156120ff57600080fd5b61210883612060565b946020939093013593505050565b60008060006060848603121561212b57600080fd5b61213484612060565b925061214260208501612060565b9150604084013590509250925092565b6000806000806060858703121561216857600080fd5b8435935061217860208601612060565b9250604085013567ffffffffffffffff8082111561219557600080fd5b818701915087601f8301126121a957600080fd5b8135818111156121b857600080fd5b8860208260051b85010111156121cd57600080fd5b95989497505060200194505050565b6000602082840312156121ee57600080fd5b5035919050565b803560ff8116811461207757600080fd5b60008060008060008060c0878903121561221f57600080fd5b61222887612060565b95506020870135945060408701359350612244606088016121f5565b92506080870135915060a087013590509295509295509295565b600080600080600080600060e0888a03121561227957600080fd5b61228288612060565b965061229060208901612060565b955060408801359450606088013593506122ac608089016121f5565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156122db57600080fd5b6122e483612060565b91506122f260208401612060565b90509250929050565b6000806040838503121561230e57600080fd5b61231783612060565b9150602083013563ffffffff8116811461233057600080fd5b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061238457607f821691505b60208210811415611ad657634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156123ce576123ce6123a5565b500190565b60008160001904831182151516156123ed576123ed6123a5565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612426576124266123a5565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612455576124556123a5565b5060010190565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220cb84944733b472f42f5cc30f66fa83a3e036742fb35933b422d206beea2b0e8364736f6c634300080a0033

Deployed Bytecode Sourcemap

65002:4156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67034:212;;;;;;:::i;:::-;;:::i;:::-;;37842:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40009:169;;;;;;:::i;:::-;;:::i;:::-;;;1409:14:1;;1402:22;1384:41;;1372:2;1357:18;40009:169:0;1244:187:1;38962:108:0;39050:12;;38962:108;;;1582:25:1;;;1570:2;1555:18;38962:108:0;1436:177:1;40660:492:0;;;;;;:::i;:::-;;:::i;65230:25::-;;;;;;38804:93;;;38887:2;2275:36:1;;2263:2;2248:18;38804:93:0;2133:184:1;50235:115:0;;;:::i;41561:215::-;;;;;;:::i;:::-;;:::i;53998:251::-;;;;;;:::i;:::-;;:::i;68234:334::-;;;;;;:::i;:::-;;:::i;65117:54::-;;65163:8;65117:54;;53398:119;;;;;;:::i;:::-;-1:-1:-1;;;;;53490:19:0;;;53463:7;53490:19;;;:10;:19;;;;;;;;53398:119;;;;-1:-1:-1;;;;;2486:32:1;;;2468:51;;2456:2;2441:18;53398:119:0;2322:203:1;56437:105:0;;;;;;:::i;:::-;;:::i;65305:30::-;;;;;;53154:151;;;;;;:::i;:::-;;:::i;:::-;;;2704:10:1;2692:23;;;2674:42;;2662:2;2647:18;53154:151:0;2530:192:1;39133:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;39234:18:0;39207:7;39234:18;;;;;;;;;;;;39133:127;62285:103;;;:::i;66295:572::-;;;;;;:::i;:::-;;:::i;65178:37::-;;65212:3;65178:37;;67684:229;;;;;;:::i;:::-;;:::i;49977:128::-;;;;;;:::i;:::-;;:::i;61634:87::-;61707:6;;-1:-1:-1;;;;;61707:6:0;61634:87;;54538:242;;;;;;:::i;:::-;;:::i;38061:104::-;;;:::i;53601:195::-;;;;;;:::i;:::-;;:::i;67425:105::-;;;;;;:::i;:::-;;:::i;42279:413::-;;;;;;:::i;:::-;;:::i;39473:175::-;;;;;;:::i;:::-;;:::i;56624:582::-;;;;;;:::i;:::-;;:::i;65262:23::-;;;;;;49266:645;;;;;;:::i;:::-;;:::i;39711:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;39827:18:0;;;39800:7;39827:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39711:151;52924:150;;;;;;:::i;:::-;;:::i;:::-;;;;6011:13:1;;6026:10;6007:30;5989:49;;6098:4;6086:17;;;6080:24;-1:-1:-1;;;;;6076:50:1;6054:20;;;6047:80;;;;5962:18;52924:150:0;5787:346:1;62543:201:0;;;;;;:::i;:::-;;:::i;67034:212::-;61707:6;;-1:-1:-1;;;;;61707:6:0;35577:10;61854:23;61846:68;;;;-1:-1:-1;;;61846:68:0;;;;;;;:::i;:::-;;;;;;;;;67119:15:::1;;67101;:33;67093:78;;;::::0;-1:-1:-1;;;67093:78:0;;6701:2:1;67093:78:0::1;::::0;::::1;6683:21:1::0;;;6720:18;;;6713:30;6779:34;6759:18;;;6752:62;6831:18;;67093:78:0::1;6499:356:1::0;67093:78:0::1;67200:4;39207:7:::0;39234:18;;;;;;;;;;;67182:56:::1;::::0;67200:4;67207;;67182:9:::1;:56::i;:::-;67034:212:::0;:::o;37842:100::-;37896:13;37929:5;37922:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37842:100;:::o;40009:169::-;40092:4;40109:39;35577:10;40132:7;40141:6;40109:8;:39::i;:::-;-1:-1:-1;40166:4:0;40009:169;;;;:::o;40660:492::-;40800:4;40817:36;40827:6;40835:9;40846:6;40817:9;:36::i;:::-;-1:-1:-1;;;;;40893:19:0;;40866:24;40893:19;;;:11;:19;;;;;;;;35577:10;40893:33;;;;;;;;40945:26;;;;40937:79;;;;-1:-1:-1;;;40937:79:0;;7447:2:1;40937:79:0;;;7429:21:1;7486:2;7466:18;;;7459:30;7525:34;7505:18;;;7498:62;-1:-1:-1;;;7576:18:1;;;7569:38;7624:19;;40937:79:0;7245:404:1;40937:79:0;41052:57;41061:6;35577:10;41102:6;41083:16;:25;41052:8;:57::i;:::-;-1:-1:-1;41140:4:0;;40660:492;-1:-1:-1;;;;40660:492:0:o;50235:115::-;50295:7;50322:20;:18;:20::i;:::-;50315:27;;50235:115;:::o;41561:215::-;35577:10;41649:4;41698:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;41698:34:0;;;;;;;;;;41649:4;;41666:80;;41689:7;;41698:47;;41735:10;;41698:47;:::i;:::-;41666:8;:80::i;53998:251::-;54079:7;54121:12;54107:11;:26;54099:70;;;;-1:-1:-1;;;54099:70:0;;8121:2:1;54099:70:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:33;8179:18;;;8172:61;8250:18;;54099:70:0;7919:355:1;54099:70:0;-1:-1:-1;;;;;54206:21:0;;;;;;:12;:21;;;;;54187:54;;54229:11;54187:18;:54::i;:::-;54180:61;53998:251;-1:-1:-1;;;53998:251:0:o;68234:334::-;61707:6;;-1:-1:-1;;;;;61707:6:0;35577:10;61854:23;61846:68;;;;-1:-1:-1;;;61846:68:0;;;;;;;:::i;:::-;68354:5:::1;65212:3;68327:13;39050:12:::0;;;38962:108;68327:13:::1;:23;;;;:::i;:::-;68326:33;;;;:::i;:::-;68316:6;:43;;68308:89;;;::::0;-1:-1:-1;;;68308:89:0;;8876:2:1;68308:89:0::1;::::0;::::1;8858:21:1::0;8915:2;8895:18;;;8888:30;8954:34;8934:18;;;8927:62;-1:-1:-1;;;9005:18:1;;;8998:31;9046:19;;68308:89:0::1;8674:397:1::0;68308:89:0::1;68435:8;;68416:15;:27;;68408:61;;;::::0;-1:-1:-1;;;68408:61:0;;9278:2:1;68408:61:0::1;::::0;::::1;9260:21:1::0;9317:2;9297:18;;;9290:30;-1:-1:-1;;;9336:18:1;;;9329:51;9397:18;;68408:61:0::1;9076:345:1::0;68408:61:0::1;68493:37;65163:8;68493:15;:37;:::i;:::-;68482:8;:48:::0;68541:19:::1;68547:4:::0;68553:6;68541:5:::1;:19::i;:::-;68234:334:::0;;:::o;56437:105::-;56500:34;35577:10;56524:9;56500;:34::i;53154:151::-;-1:-1:-1;;;;;53268:21:0;;53224:6;53268:21;;;:12;:21;;;;;:28;53250:47;;:17;:47::i;:::-;53243:54;53154:151;-1:-1:-1;;53154:151:0:o;62285:103::-;61707:6;;-1:-1:-1;;;;;61707:6:0;35577:10;61854:23;61846:68;;;;-1:-1:-1;;;61846:68:0;;;;;;;:::i;:::-;62350:30:::1;62377:1;62350:18;:30::i;:::-;62285:103::o:0;66295:572::-;66427:36;;-1:-1:-1;;66444:10:0;9603:2:1;9599:15;9595:53;66427:36:0;;;9583:66:1;9665:12;;;9658:28;;;66402:12:0;;9702::1;;66427:36:0;;;;;;;;;;;;66417:47;;;;;;66402:62;;66476:10;66488:13;66505:49;66524:11;;66505:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66537:10:0;;;-1:-1:-1;66549:4:0;;-1:-1:-1;66505:18:0;:49::i;:::-;66475:79;;;;66573:5;66565:45;;;;-1:-1:-1;;;66565:45:0;;9927:2:1;66565:45:0;;;9909:21:1;9966:2;9946:18;;;9939:30;10005:29;9985:18;;;9978:57;10052:18;;66565:45:0;9725:351:1;66565:45:0;66630:16;66640:5;66630:9;:16::i;:::-;66629:17;66621:59;;;;-1:-1:-1;;;66621:59:0;;10283:2:1;66621:59:0;;;10265:21:1;10322:2;10302:18;;;10295:30;10361:31;10341:18;;;10334:59;10410:18;;66621:59:0;10081:353:1;66621:59:0;1305:1;1296:10;;;1279:14;1362:20;;;66701:7;1362:20;;;;;:28;;1332:1;1346:4;1338:12;;1332:19;1362:28;;;66735:25;;1582::1;;;66741:10:0;;66735:25;;1570:2:1;1555:18;66735:25:0;;;;;;;66773:31;66783:10;66795:8;66773:9;:31::i;:::-;66815:44;66833:4;66840:10;66852:6;66815:9;:44::i;:::-;66391:476;;;66295:572;;;;:::o;67684:229::-;61707:6;;-1:-1:-1;;;;;61707:6:0;35577:10;61854:23;61846:68;;;;-1:-1:-1;;;61846:68:0;;;;;;;:::i;:::-;67766:10:::1;::::0;:24;67758:66:::1;;;::::0;-1:-1:-1;;;67758:66:0;;10641:2:1;67758:66:0::1;::::0;::::1;10623:21:1::0;10680:2;10660:18;;;10653:30;10719:31;10699:18;;;10692:59;10768:18;;67758:66:0::1;10439:353:1::0;67758:66:0::1;67835:10;:24:::0;;;67875:30:::1;::::0;1582:25:1;;;67875:30:0::1;::::0;1570:2:1;1555:18;67875:30:0::1;;;;;;;67684:229:::0;:::o;49977:128::-;-1:-1:-1;;;;;50073:14:0;;50046:7;50073:14;;;:7;:14;;;;;12000;50073:24;11908:114;54538:242;54608:7;54650:12;54636:11;:26;54628:70;;;;-1:-1:-1;;;54628:70:0;;8121:2:1;54628:70:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:33;8179:18;;;8172:61;8250:18;;54628:70:0;7919:355:1;54628:70:0;54716:56;54735:23;54760:11;54716:18;:56::i;38061:104::-;38117:13;38150:7;38143:14;;;;;:::i;53601:195::-;-1:-1:-1;;;;;53691:21:0;;53657:7;53691:21;;;:12;:21;;;;;:28;53737:8;;:51;;-1:-1:-1;;;;;53752:21:0;;;;;;:12;:21;;;;;53774:7;53780:1;53774:3;:7;:::i;:::-;53752:30;;;;;;;;:::i;:::-;;;;;;;;;;:36;;;;-1:-1:-1;;;;;53752:36:0;53737:51;;;53748:1;53737:51;-1:-1:-1;;;;;53730:58:0;;53601:195;-1:-1:-1;;;53601:195:0:o;67425:105::-;718:1;709:10;;;67480:4;782:20;;;67504:7;782:20;;;;;;745:1;759:4;751:12;;745:19;782:27;:32;;67504:18;601:221;42279:413;35577:10;42372:4;42416:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;42416:34:0;;;;;;;;;;42469:35;;;;42461:85;;;;-1:-1:-1;;;42461:85:0;;11261:2:1;42461:85:0;;;11243:21:1;11300:2;11280:18;;;11273:30;11339:34;11319:18;;;11312:62;-1:-1:-1;;;11390:18:1;;;11383:35;11435:19;;42461:85:0;11059:401:1;42461:85:0;42582:67;35577:10;42605:7;42633:15;42614:16;:34;42582:8;:67::i;:::-;-1:-1:-1;42680:4:0;;42279:413;-1:-1:-1;;;42279:413:0:o;39473:175::-;39559:4;39576:42;35577:10;39600:9;39611:6;39576:9;:42::i;56624:582::-;56842:6;56823:15;:25;;56815:67;;;;-1:-1:-1;;;56815:67:0;;11667:2:1;56815:67:0;;;11649:21:1;11706:2;11686:18;;;11679:30;11745:31;11725:18;;;11718:59;11794:18;;56815:67:0;11465:353:1;56815:67:0;56965:58;;;52175:71;56965:58;;;12054:25:1;-1:-1:-1;;;;;12115:32:1;;12095:18;;;12088:60;;;;12164:18;;;12157:34;;;12207:18;;;12200:34;;;56893:14:0;;56910:174;;56938:87;;12026:19:1;;56965:58:0;;;;;;;;;;;;56955:69;;;;;;56938:16;:87::i;:::-;57040:1;57056;57072;56910:13;:174::i;:::-;56893:191;;57112:17;57122:6;57112:9;:17::i;:::-;57103:5;:26;57095:64;;;;-1:-1:-1;;;57095:64:0;;12447:2:1;57095:64:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525:27;12505:18;;;12498:55;12570:18;;57095:64:0;12245:349:1;57095:64:0;57170:28;57180:6;57188:9;57170;:28::i;49266:645::-;49510:8;49491:15;:27;;49483:69;;;;-1:-1:-1;;;49483:69:0;;12801:2:1;49483:69:0;;;12783:21:1;12840:2;12820:18;;;12813:30;12879:31;12859:18;;;12852:59;12928:18;;49483:69:0;12599:353:1;49483:69:0;49565:18;49607:16;49625:5;49632:7;49641:5;49648:16;49658:5;49648:9;:16::i;:::-;49596:79;;;;;;13244:25:1;;;;-1:-1:-1;;;;;13343:15:1;;;13323:18;;;13316:43;13395:15;;;;13375:18;;;13368:43;13427:18;;;13420:34;13470:19;;;13463:35;13514:19;;;13507:35;;;13216:19;;49596:79:0;;;;;;;;;;;;49586:90;;;;;;49565:111;;49689:12;49704:28;49721:10;49704:16;:28::i;:::-;49689:43;;49745:14;49762:28;49776:4;49782:1;49785;49788;49762:13;:28::i;:::-;49745:45;;49819:5;-1:-1:-1;;;;;49809:15:0;:6;-1:-1:-1;;;;;49809:15:0;;49801:58;;;;-1:-1:-1;;;49801:58:0;;13755:2:1;49801:58:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:32;13813:18;;;13806:60;13883:18;;49801:58:0;13553:354:1;49801:58:0;49872:31;49881:5;49888:7;49897:5;49872:8;:31::i;:::-;49472:439;;;49266:645;;;;;;;:::o;52924:150::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;53040:21:0;;;;;;:12;:21;;;;;:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;;53033:33;;;;;;;;;53040:26;;53033:33;;;;;;;;;-1:-1:-1;;;;;53033:33:0;;;;;;;;;52924:150;-1:-1:-1;;;52924:150:0:o;62543:201::-;61707:6;;-1:-1:-1;;;;;61707:6:0;35577:10;61854:23;61846:68;;;;-1:-1:-1;;;61846:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62632:22:0;::::1;62624:73;;;::::0;-1:-1:-1;;;62624:73:0;;14114:2:1;62624:73:0::1;::::0;::::1;14096:21:1::0;14153:2;14133:18;;;14126:30;14192:34;14172:18;;;14165:62;-1:-1:-1;;;14243:18:1;;;14236:36;14289:19;;62624:73:0::1;13912:402:1::0;62624:73:0::1;62708:28;62727:8;62708:18;:28::i;57512:290::-:0;57597:28;57609:7;57618:6;57597:11;:28::i;:::-;39050:12;;-1:-1:-1;;;;;;57644:29:0;57636:90;;;;-1:-1:-1;;;57636:90:0;;14521:2:1;57636:90:0;;;14503:21:1;14560:2;14540:18;;;14533:30;14599:34;14579:18;;;14572:62;-1:-1:-1;;;14650:18:1;;;14643:46;14706:19;;57636:90:0;14319:412:1;57636:90:0;57739:55;57756:23;57781:4;57787:6;57739:16;:55::i;:::-;;;57512:290;;:::o;44202:399::-;-1:-1:-1;;;;;44286:21:0;;44278:65;;;;-1:-1:-1;;;44278:65:0;;14938:2:1;44278:65:0;;;14920:21:1;14977:2;14957:18;;;14950:30;15016:33;14996:18;;;14989:61;15067:18;;44278:65:0;14736:355:1;44278:65:0;44434:6;44418:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;44451:18:0;;:9;:18;;;;;;;;;;:28;;44473:6;;44451:9;:28;;44473:6;;44451:28;:::i;:::-;;;;-1:-1:-1;;44495:37:0;;1582:25:1;;;-1:-1:-1;;;;;44495:37:0;;;44512:1;;44495:37;;1570:2:1;1555:18;44495:37:0;;;;;;;44545:48;44573:1;44577:7;44586:6;44545:19;:48::i;60356:98::-;60414:7;60441:5;60445:1;60441;:5;:::i;2859:195::-;2916:7;-1:-1:-1;;;;;2944:26:0;;;2936:78;;;;-1:-1:-1;;;2936:78:0;;15298:2:1;2936:78:0;;;15280:21:1;15337:2;15317:18;;;15310:30;15376:34;15356:18;;;15349:62;-1:-1:-1;;;15427:18:1;;;15420:37;15474:19;;2936:78:0;15096:403:1;2936:78:0;-1:-1:-1;3040:5:0;2859:195::o;4829:190::-;4885:6;4921:16;4912:25;;;4904:76;;;;-1:-1:-1;;;4904:76:0;;15706:2:1;4904:76:0;;;15688:21:1;15745:2;15725:18;;;15718:30;15784:34;15764:18;;;15757:62;-1:-1:-1;;;15835:18:1;;;15828:36;15881:19;;4904:76:0;15504:402:1;58230:262:0;-1:-1:-1;;;;;53490:19:0;;;53463:7;53490:19;;;:10;:19;;;;;;;;;;;;;;;58428:56;;53490:19;;;;;58477:6;58428:16;:56::i;:::-;58230:262;;;:::o;60462:103::-;60525:7;60552:5;60556:1;60552;:5;:::i;43182:733::-;-1:-1:-1;;;;;43322:20:0;;43314:70;;;;-1:-1:-1;;;43314:70:0;;16113:2:1;43314:70:0;;;16095:21:1;16152:2;16132:18;;;16125:30;16191:34;16171:18;;;16164:62;-1:-1:-1;;;16242:18:1;;;16235:35;16287:19;;43314:70:0;15911:401:1;43314:70:0;-1:-1:-1;;;;;43403:23:0;;43395:71;;;;-1:-1:-1;;;43395:71:0;;16519:2:1;43395:71:0;;;16501:21:1;16558:2;16538:18;;;16531:30;16597:34;16577:18;;;16570:62;-1:-1:-1;;;16648:18:1;;;16641:33;16691:19;;43395:71:0;16317:399:1;43395:71:0;-1:-1:-1;;;;;43563:17:0;;43539:21;43563:17;;;;;;;;;;;43599:23;;;;43591:74;;;;-1:-1:-1;;;43591:74:0;;16923:2:1;43591:74:0;;;16905:21:1;16962:2;16942:18;;;16935:30;17001:34;16981:18;;;16974:62;-1:-1:-1;;;17052:18:1;;;17045:36;17098:19;;43591:74:0;16721:402:1;43591:74:0;-1:-1:-1;;;;;43701:17:0;;;:9;:17;;;;;;;;;;;43721:22;;;43701:42;;43765:20;;;;;;;;:30;;43737:6;;43701:9;43765:30;;43737:6;;43765:30;:::i;:::-;;;;;;;;43830:9;-1:-1:-1;;;;;43813:35:0;43822:6;-1:-1:-1;;;;;43813:35:0;;43841:6;43813:35;;;;1582:25:1;;1570:2;1555:18;;1436:177;43813:35:0;;;;;;;;43861:46;43881:6;43889:9;43900:6;43861:19;:46::i;45963:380::-;-1:-1:-1;;;;;46099:19:0;;46091:68;;;;-1:-1:-1;;;46091:68:0;;17330:2:1;46091:68:0;;;17312:21:1;17369:2;17349:18;;;17342:30;17408:34;17388:18;;;17381:62;-1:-1:-1;;;17459:18:1;;;17452:34;17503:19;;46091:68:0;17128:400:1;46091:68:0;-1:-1:-1;;;;;46178:21:0;;46170:68;;;;-1:-1:-1;;;46170:68:0;;17735:2:1;46170:68:0;;;17717:21:1;17774:2;17754:18;;;17747:30;17813:34;17793:18;;;17786:62;-1:-1:-1;;;17864:18:1;;;17857:32;17906:19;;46170:68:0;17533:398:1;46170:68:0;-1:-1:-1;;;;;46251:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46303:32;;1582:25:1;;;46303:32:0;;1555:18:1;46303:32:0;;;;;;;45963:380;;;:::o;27421:314::-;27474:7;27506:4;-1:-1:-1;;;;;27515:12:0;27498:29;;:66;;;;;27548:16;27531:13;:33;27498:66;27494:234;;;-1:-1:-1;27588:24:0;;27421:314::o;27494:234::-;-1:-1:-1;27924:73:0;;;27674:10;27924:73;;;;18840:25:1;;;;27686:12:0;18881:18:1;;;18874:34;27700:15:0;18924:18:1;;;18917:34;27968:13:0;18967:18:1;;;18960:34;27991:4:0;19010:19:1;;;;19003:61;;;;27924:73:0;;;;;;;;;;18812:19:1;;;;27924:73:0;;;27914:84;;;;;;50235:115::o;54869:1482::-;56002:12;;54968:7;;;56051:236;56064:4;56058:3;:10;56051:236;;;56085:11;56099:23;56112:3;56117:4;56099:12;:23::i;:::-;56085:37;;56164:11;56141:5;56147:3;56141:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;:34;56137:139;;;56203:3;56196:10;;56137:139;;;56253:7;:3;56259:1;56253:7;:::i;:::-;56247:13;;56137:139;56070:217;56051:236;;;56306:9;;:37;;56322:5;56328:8;56335:1;56328:4;:8;:::i;:::-;56322:15;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;-1:-1:-1;;;;;56322:21:0;56306:37;;;56318:1;56306:37;-1:-1:-1;;;;;56299:44:0;;54869:1482;-1:-1:-1;;;;;54869:1482:0:o;68847:145::-;68961:23;68973:2;68977:6;68961:11;:23::i;58656:388::-;-1:-1:-1;;;;;53490:19:0;;;58741:23;53490:19;;;:10;:19;;;;;;;;;;39234:18;;;;;;;58856:21;;;;:33;;;-1:-1:-1;;;;;;58856:33:0;;;;;;;58907:54;;53490:19;;;;;39234:18;;58856:33;;53490:19;;;58907:54;;58741:23;58907:54;58974:62;58991:15;59008:9;59019:16;58974;:62::i;62904:191::-;62997:6;;;-1:-1:-1;;;;;63014:17:0;;;-1:-1:-1;;;;;;63014:17:0;;;;;;;63047:40;;62997:6;;;63014:17;62997:6;;63047:40;;62978:16;;63047:40;62967:128;62904:191;:::o;63527:930::-;63652:4;;63701;63652;;63746:579;63770:5;:12;63766:1;:16;63746:579;;;63804:10;63813:1;63804:10;;:::i;:::-;;;63829:20;63852:5;63858:1;63852:8;;;;;;;;:::i;:::-;;;;;;;63829:31;;63897:12;63881;:28;63877:437;;64034:44;;;;;;18093:19:1;;;18128:12;;;18121:28;;;18165:12;;64034:44:0;;;;;;;;;;;;64024:55;;;;;;64009:70;;63877:437;;;64224:44;;;;;;18093:19:1;;;18128:12;;;18121:28;;;18165:12;;64224:44:0;;;;;;;;;;;;64214:55;;;;;;64199:70;;64297:1;64288:10;;;;;:::i;:::-;;;63877:437;-1:-1:-1;63784:3:0;;;;:::i;:::-;;;;63746:579;;;-1:-1:-1;64421:20:0;;;;;-1:-1:-1;;;;63527:930:0:o;28648:167::-;28725:7;28752:55;28774:20;:18;:20::i;:::-;28796:10;24118:57;;-1:-1:-1;;;24118:57:0;;;19333:27:1;19376:11;;;19369:27;;;19412:12;;;19405:28;;;24081:7:0;;19449:12:1;;24118:57:0;;;;;;;;;;;;24108:68;;;;;;24101:75;;23988:196;;;;;22297:279;22425:7;22446:17;22465:18;22487:25;22498:4;22504:1;22507;22510;22487:10;:25::i;:::-;22445:67;;;;22523:18;22535:5;22523:11;:18::i;:::-;-1:-1:-1;22559:9:0;22297:279;-1:-1:-1;;;;;22297:279:0:o;50488:207::-;-1:-1:-1;;;;;50609:14:0;;50548:15;50609:14;;;:7;:14;;;;;12000;;12137:1;12119:19;;;;12000:14;50670:17;50565:130;50488:207;;;:::o;59703:645::-;59940:12;;59877:17;;;;59975:8;;:35;;59990:5;59996:7;60002:1;59996:3;:7;:::i;:::-;59990:14;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;-1:-1:-1;;;;;59990:20:0;59975:35;;;59986:1;59975:35;-1:-1:-1;;;;;59963:47:0;;;60033:20;60036:9;60047:5;60033:2;:20;;:::i;:::-;60021:32;;60076:1;60070:3;:7;:51;;;;-1:-1:-1;60109:12:0;60081:5;60087:7;60093:1;60087:3;:7;:::i;:::-;60081:14;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;:40;60070:51;60066:275;;;60161:29;60180:9;60161:18;:29::i;:::-;60138:5;60144:7;60150:1;60144:3;:7;:::i;:::-;60138:14;;;;;;;;:::i;:::-;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;60138:52:0;;;;;-1:-1:-1;;;;;60138:52:0;;;;;;60066:275;;;60223:5;60234:94;;;;;;;;60257:31;60275:12;60257:17;:31::i;:::-;60234:94;;;;;;60297:29;60316:9;60297:18;:29::i;:::-;-1:-1:-1;;;;;60234:94:0;;;;;;60223:106;;;;;;;-1:-1:-1;60223:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60066:275;59915:433;59703:645;;;;;;:::o;68646:193::-;68788:43;68814:4;68820:2;68824:6;68788:25;:43::i;59052:643::-;59184:3;-1:-1:-1;;;;;59177:10:0;:3;-1:-1:-1;;;;;59177:10:0;;;:24;;;;;59200:1;59191:6;:10;59177:24;59173:515;;;-1:-1:-1;;;;;59222:17:0;;;59218:224;;-1:-1:-1;;;;;59318:17:0;;59261;59318;;;:12;:17;;;;;59261;;59301:54;;59337:9;59348:6;59301:16;:54::i;:::-;59260:95;;;;59400:3;-1:-1:-1;;;;;59379:47:0;;59405:9;59416;59379:47;;;;;;18502:25:1;;;18558:2;18543:18;;18536:34;18490:2;18475:18;;18328:248;59379:47:0;;;;;;;;59241:201;;59218:224;-1:-1:-1;;;;;59462:17:0;;;59458:219;;-1:-1:-1;;;;;59558:17:0;;59501;59558;;;:12;:17;;;;;59501;;59541:49;;59577:4;59583:6;59541:16;:49::i;:::-;59500:90;;;;59635:3;-1:-1:-1;;;;;59614:47:0;;59640:9;59651;59614:47;;;;;;18502:25:1;;;18558:2;18543:18;;18536:34;18490:2;18475:18;;18328:248;59614:47:0;;;;;;;;59481:196;;59052:643;;;:::o;10469:156::-;10531:7;10606:11;10616:1;10607:5;;;10606:11;:::i;:::-;10596:21;;10597:5;;;10596:21;:::i;20526:1632::-;20657:7;;21591:66;21578:79;;21574:163;;;-1:-1:-1;21690:1:0;;-1:-1:-1;21694:30:0;21674:51;;21574:163;21751:1;:7;;21756:2;21751:7;;:18;;;;;21762:1;:7;;21767:2;21762:7;;21751:18;21747:102;;;-1:-1:-1;21802:1:0;;-1:-1:-1;21806:30:0;21786:51;;21747:102;21963:24;;;21946:14;21963:24;;;;;;;;;19699:25:1;;;19772:4;19760:17;;19740:18;;;19733:45;;;;19794:18;;;19787:34;;;19837:18;;;19830:34;;;21963:24:0;;19671:19:1;;21963:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;21963:24:0;;-1:-1:-1;;21963:24:0;;;-1:-1:-1;;;;;;;22002:20:0;;21998:103;;22055:1;22059:29;22039:50;;;;;;;21998:103;22121:6;-1:-1:-1;22129:20:0;;-1:-1:-1;20526:1632:0;;;;;;;;:::o;15188:643::-;15266:20;15257:5;:29;;;;;;;;:::i;:::-;;15253:571;;;15188:643;:::o;15253:571::-;15364:29;15355:5;:38;;;;;;;;:::i;:::-;;15351:473;;;15410:34;;-1:-1:-1;;;15410:34:0;;20209:2:1;15410:34:0;;;20191:21:1;20248:2;20228:18;;;20221:30;20287:26;20267:18;;;20260:54;20331:18;;15410:34:0;20007:348:1;15351:473:0;15475:35;15466:5;:44;;;;;;;;:::i;:::-;;15462:362;;;15527:41;;-1:-1:-1;;;15527:41:0;;20562:2:1;15527:41:0;;;20544:21:1;20601:2;20581:18;;;20574:30;20640:33;20620:18;;;20613:61;20691:18;;15527:41:0;20360:355:1;15462:362:0;15599:30;15590:5;:39;;;;;;;;:::i;:::-;;15586:238;;;15646:44;;-1:-1:-1;;;15646:44:0;;20922:2:1;15646:44:0;;;20904:21:1;20961:2;20941:18;;;20934:30;21000:34;20980:18;;;20973:62;-1:-1:-1;;;21051:18:1;;;21044:32;21093:19;;15646:44:0;20720:398:1;15586:238:0;15721:30;15712:5;:39;;;;;;;;:::i;:::-;;15708:116;;;15768:44;;-1:-1:-1;;;15768:44:0;;21325:2:1;15768:44:0;;;21307:21:1;21364:2;21344:18;;;21337:30;21403:34;21383:18;;;21376:62;-1:-1:-1;;;21454:18:1;;;21447:32;21496:19;;15768:44:0;21123:398:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:597::-;495:4;524:2;553;542:9;535:21;585:6;579:13;628:6;623:2;612:9;608:18;601:34;653:1;663:140;677:6;674:1;671:13;663:140;;;772:14;;;768:23;;762:30;738:17;;;757:2;734:26;727:66;692:10;;663:140;;;821:6;818:1;815:13;812:91;;;891:1;886:2;877:6;866:9;862:22;858:31;851:42;812:91;-1:-1:-1;964:2:1;943:15;-1:-1:-1;;939:29:1;924:45;;;;971:2;920:54;;383:597;-1:-1:-1;;;383:597:1:o;985:254::-;1053:6;1061;1114:2;1102:9;1093:7;1089:23;1085:32;1082:52;;;1130:1;1127;1120:12;1082:52;1153:29;1172:9;1153:29;:::i;:::-;1143:39;1229:2;1214:18;;;;1201:32;;-1:-1:-1;;;985:254:1:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2727:757::-;2831:6;2839;2847;2855;2908:2;2896:9;2887:7;2883:23;2879:32;2876:52;;;2924:1;2921;2914:12;2876:52;2960:9;2947:23;2937:33;;2989:38;3023:2;3012:9;3008:18;2989:38;:::i;:::-;2979:48;;3078:2;3067:9;3063:18;3050:32;3101:18;3142:2;3134:6;3131:14;3128:34;;;3158:1;3155;3148:12;3128:34;3196:6;3185:9;3181:22;3171:32;;3241:7;3234:4;3230:2;3226:13;3222:27;3212:55;;3263:1;3260;3253:12;3212:55;3303:2;3290:16;3329:2;3321:6;3318:14;3315:34;;;3345:1;3342;3335:12;3315:34;3398:7;3393:2;3383:6;3380:1;3376:14;3372:2;3368:23;3364:32;3361:45;3358:65;;;3419:1;3416;3409:12;3358:65;2727:757;;;;-1:-1:-1;;3450:2:1;3442:11;;-1:-1:-1;;;2727:757:1:o;3489:180::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;-1:-1:-1;3640:23:1;;3489:180;-1:-1:-1;3489:180:1:o;3859:156::-;3925:20;;3985:4;3974:16;;3964:27;;3954:55;;4005:1;4002;3995:12;4020:531;4122:6;4130;4138;4146;4154;4162;4215:3;4203:9;4194:7;4190:23;4186:33;4183:53;;;4232:1;4229;4222:12;4183:53;4255:29;4274:9;4255:29;:::i;:::-;4245:39;;4331:2;4320:9;4316:18;4303:32;4293:42;;4382:2;4371:9;4367:18;4354:32;4344:42;;4405:36;4437:2;4426:9;4422:18;4405:36;:::i;:::-;4395:46;;4488:3;4477:9;4473:19;4460:33;4450:43;;4540:3;4529:9;4525:19;4512:33;4502:43;;4020:531;;;;;;;;:::o;4556:606::-;4667:6;4675;4683;4691;4699;4707;4715;4768:3;4756:9;4747:7;4743:23;4739:33;4736:53;;;4785:1;4782;4775:12;4736:53;4808:29;4827:9;4808:29;:::i;:::-;4798:39;;4856:38;4890:2;4879:9;4875:18;4856:38;:::i;:::-;4846:48;;4941:2;4930:9;4926:18;4913:32;4903:42;;4992:2;4981:9;4977:18;4964:32;4954:42;;5015:37;5047:3;5036:9;5032:19;5015:37;:::i;:::-;5005:47;;5099:3;5088:9;5084:19;5071:33;5061:43;;5151:3;5140:9;5136:19;5123:33;5113:43;;4556:606;;;;;;;;;;:::o;5167:260::-;5235:6;5243;5296:2;5284:9;5275:7;5271:23;5267:32;5264:52;;;5312:1;5309;5302:12;5264:52;5335:29;5354:9;5335:29;:::i;:::-;5325:39;;5383:38;5417:2;5406:9;5402:18;5383:38;:::i;:::-;5373:48;;5167:260;;;;;:::o;5432:350::-;5499:6;5507;5560:2;5548:9;5539:7;5535:23;5531:32;5528:52;;;5576:1;5573;5566:12;5528:52;5599:29;5618:9;5599:29;:::i;:::-;5589:39;;5678:2;5667:9;5663:18;5650:32;5722:10;5715:5;5711:22;5704:5;5701:33;5691:61;;5748:1;5745;5738:12;5691:61;5771:5;5761:15;;;5432:350;;;;;:::o;6138:356::-;6340:2;6322:21;;;6359:18;;;6352:30;6418:34;6413:2;6398:18;;6391:62;6485:2;6470:18;;6138:356::o;6860:380::-;6939:1;6935:12;;;;6982;;;7003:61;;7057:4;7049:6;7045:17;7035:27;;7003:61;7110:2;7102:6;7099:14;7079:18;7076:38;7073:161;;;7156:10;7151:3;7147:20;7144:1;7137:31;7191:4;7188:1;7181:15;7219:4;7216:1;7209:15;7654:127;7715:10;7710:3;7706:20;7703:1;7696:31;7746:4;7743:1;7736:15;7770:4;7767:1;7760:15;7786:128;7826:3;7857:1;7853:6;7850:1;7847:13;7844:39;;;7863:18;;:::i;:::-;-1:-1:-1;7899:9:1;;7786:128::o;8279:168::-;8319:7;8385:1;8381;8377:6;8373:14;8370:1;8367:21;8362:1;8355:9;8348:17;8344:45;8341:71;;;8392:18;;:::i;:::-;-1:-1:-1;8432:9:1;;8279:168::o;8452:217::-;8492:1;8518;8508:132;;8562:10;8557:3;8553:20;8550:1;8543:31;8597:4;8594:1;8587:15;8625:4;8622:1;8615:15;8508:132;-1:-1:-1;8654:9:1;;8452:217::o;10797:125::-;10837:4;10865:1;10862;10859:8;10856:34;;;10870:18;;:::i;:::-;-1:-1:-1;10907:9:1;;10797:125::o;10927:127::-;10988:10;10983:3;10979:20;10976:1;10969:31;11019:4;11016:1;11009:15;11043:4;11040:1;11033:15;18188:135;18227:3;-1:-1:-1;;18248:17:1;;18245:43;;;18268:18;;:::i;:::-;-1:-1:-1;18315:1:1;18304:13;;18188:135::o;19875:127::-;19936:10;19931:3;19927:20;19924:1;19917:31;19967:4;19964:1;19957:15;19991:4;19988:1;19981:15

Swarm Source

ipfs://cb84944733b472f42f5cc30f66fa83a3e036742fb35933b422d206beea2b0e83
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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