Token Cerby Token

DeFi  

Overview ERC20

Price
$0.00 @ 0.000009 AVAX
Fully Diluted Market Cap
Total Supply:
1,588,926,417.092494 CERBY

Holders:
130 addresses

Transfers:
-

Contract:
0xdef1fac7bf08f173d286bbbdcbeeade6951298400xdef1fac7Bf08f173D286BbBDcBeeADe695129840

Decimals:
18

Official Site:

Social Profiles:

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

OVERVIEW

Cerby Token is a new Cross-Chain Token Standard allowing you to easily bridge between blockchains and DLT networks.

Market

Volume (24H):$0.00
Market Capitalization:$3,745,024.00
Circulating Supply:23,148,496,801.00 CERBY
Market Data Source: Coinmarketcap


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

Contract Source Code Verified (Exact Match)

Contract Name:
CerbyToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, BSD-2-Clause license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: BSD-2-Clause

// File: sol-defifactory-token/openzeppelin/utils/Counters.sol



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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;
        }
    }
}

// File: sol-defifactory-token/openzeppelin/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 {
    /**
     * @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) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // 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) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @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) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @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 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: sol-defifactory-token/openzeppelin/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;

    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);
        _TYPE_HASH = typeHash;
    }

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

    function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
        return keccak256(
            abi.encode(
                typeHash,
                name,
                version,
                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: sol-defifactory-token/openzeppelin/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: sol-defifactory-token/openzeppelin/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: sol-defifactory-token/openzeppelin/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: sol-defifactory-token/openzeppelin/utils/structs/EnumerableSet.sol



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastvalue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastvalue;
                // Update the index for the moved value
                set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: sol-defifactory-token/openzeppelin/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: sol-defifactory-token/openzeppelin/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: sol-defifactory-token/openzeppelin/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: sol-defifactory-token/openzeppelin/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: sol-defifactory-token/openzeppelin/token/ERC20/ERC20Mod.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 guidelines: functions revert instead
 * of 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 ERC20Mod is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) internal tokenBalances;
    uint internal totalTokenSupply;

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


    string internal _name;
    string internal _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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) {
        // overriden in parent contract
        return totalTokenSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return tokenBalances[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) { }

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

    /**
     * @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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 { }


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

// File: sol-defifactory-token/openzeppelin/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 ERC20Mod, 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 {
        // solhint-disable-next-line not-rely-on-time
        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: sol-defifactory-token/openzeppelin/access/AccessControl.sol



pragma solidity ^0.8.0;





struct RoleAccess {
    bytes32 role;
    address addr;
}

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

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

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant ROLE_ADMIN = 0x00;

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

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

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

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

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

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

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(ROLE_ADMIN) {
        _grantRole(role, account);
    }
    
    function grantRolesBulk(RoleAccess[] calldata roles)
        external
        onlyRole(ROLE_ADMIN)
    {
        for(uint i = 0; i<roles.length; i++)
        {
            _setupRole(roles[i].role, roles[i].addr);
        }
    }

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

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

        _revokeRole(role, account);
    }

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

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

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: sol-defifactory-token/openzeppelin/access/AccessControlEnumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: sol-defifactory-token/interfaces/ICerbyBotDetection.sol



pragma solidity ^0.8.10;

struct TransactionInfo {
    bool isBuy;
    bool isSell;
}

interface ICerbyBotDetection {
        
    function checkTransactionInfo(address tokenAddr, address sender, address recipient, uint recipientBalance, uint transferAmount)
        external
        returns (TransactionInfo memory output);
    
    function isBotAddress(address addr)
        external
        view
        returns (bool);
}
// File: sol-defifactory-token/interfaces/ICerbyToken.sol



pragma solidity ^0.8.10;

struct AccessSettings {
        bool isMinter;
        bool isBurner;
        bool isTransferer;
        bool isModerator;
        bool isTaxer;
        
        address addr;
    }

interface ICerbyToken {
    
    function allowance(
        address owner, 
        address spender
    ) external view returns (uint);
    
    function transferFrom(
        address sender, 
        address recipient, 
        uint256 amount
    ) external returns (bool);
    
    function transfer(
        address recipient, 
        uint256 amount
    ) external returns (bool);
    
    function approve(
        address _spender,
        uint _value
    )  external returns (
        bool success
    );
    
    function balanceOf(
        address account
    )
        external
        view
        returns (uint);
    
    function totalSupply()
        external
        view
        returns (uint);
        
    function mintHumanAddress(address to, uint desiredAmountToMint) external;

    function burnHumanAddress(address from, uint desiredAmountToBurn) external;

    function mintByBridge(address to, uint realAmountToMint) external;

    function burnByBridge(address from, uint realAmountBurn) external;
    
    function getUtilsContractAtPos(uint pos)
        external
        view
        returns (address);
    
    function updateUtilsContracts(AccessSettings[] calldata accessSettings)
        external;
    
    function transferCustom(address sender, address recipient, uint256 amount)
        external;
}
// File: sol-defifactory-token/CerbyBasedToken.sol



pragma solidity ^0.8.10;





contract CerbyBasedToken is Context, AccessControlEnumerable, ERC20Mod, ERC20Permit {
    bytes32 public constant ROLE_MINTER = keccak256("ROLE_MINTER");
    bytes32 public constant ROLE_BURNER = keccak256("ROLE_BURNER");
    bytes32 public constant ROLE_TRANSFERER = keccak256("ROLE_TRANSFERER");
    bytes32 public constant ROLE_MODERATOR = keccak256("ROLE_MODERATOR");
    
    uint internal constant CERBY_BOT_DETECTION_CONTRACT_ID = 3;
    address constant CERBY_TOKEN_CONTRACT_ADDRESS = 0xdef1fac7Bf08f173D286BbBDcBeeADe695129840;
    address constant BURN_ADDRESS = address(0x0);
    
    bool public isPaused;
    bool isInitialized;
    
    event TransferCustom(address sender, address recipient, uint amount);
    event MintHumanAddress(address recipient, uint amount);
    event BurnHumanAddress(address sender, uint amount);
    
    event MintedByBridge(address recipient, uint amount);
    event BurnedByBridge(address sender, uint amount);

    constructor(string memory name, string memory symbol) 
        ERC20Mod(name, symbol) 
        ERC20Permit(name)
    {
    }
    
    function initializeOwner(address owner)
        internal
    {
        require(
            !isInitialized,
            "T: Already initialized"
        );
        
        isInitialized = true;
        _setupRole(ROLE_ADMIN, owner);
        _setupRole(ROLE_MINTER, owner);
        _setupRole(ROLE_BURNER, owner);
        _setupRole(ROLE_TRANSFERER, owner);
        _setupRole(ROLE_MODERATOR, owner);
    }
    
    modifier checkTransaction(address sender, address recipient, uint transferAmount)
    {
        ICerbyBotDetection iCerbyBotDetection = ICerbyBotDetection(
            getUtilsContractAtPos(CERBY_BOT_DETECTION_CONTRACT_ID)
        );
        iCerbyBotDetection.checkTransactionInfo(
            CERBY_TOKEN_CONTRACT_ADDRESS, 
            sender, 
            recipient, 
            tokenBalances[recipient], 
            transferAmount
        );
        _;
    }
    
    modifier notPausedContract {
        require(
            !isPaused,
            "T: paused"
        );
        _;
    }
    
    modifier pausedContract {
        require(
            isPaused,
            "T: !paused"
        );
        _;
    }
    
    modifier recipientIsNotBurnAddress(address recipient) {
        require(
            recipient != BURN_ADDRESS,
            "T: !burn"
        );
        _;
    }
    
    function getUtilsContractAtPos(uint pos)
        public
        view
        virtual
        returns (address)
    {
        return ICerbyToken(CERBY_TOKEN_CONTRACT_ADDRESS).getUtilsContractAtPos(pos);
    }
    
    function updateNameAndSymbol(string calldata __name, string calldata __symbol)
        external
        onlyRole(ROLE_ADMIN)
    {
        _name = __name;
        _symbol = __symbol;
    }
    
    function pauseContract()
        external
        notPausedContract
        onlyRole(ROLE_ADMIN)
    {
        isPaused = true;
    }
    
    function resumeContract()
        external
        pausedContract
        onlyRole(ROLE_ADMIN)
    {
        isPaused = false;
    }
    
    function transfer(address recipient, uint256 amount) 
        public 
        notPausedContract
        virtual 
        override 
        returns (bool) 
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
    
    function transferFrom(address sender, address recipient, uint256 amount) 
        public 
        notPausedContract
        recipientIsNotBurnAddress(recipient)
        virtual 
        override 
        returns (bool) 
    {
        _transfer(sender, recipient, amount);

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

        return true;
    }
    
    function moderatorTransferFromWhilePaused(address sender, address recipient, uint256 amount) 
        external 
        pausedContract
        onlyRole(ROLE_MODERATOR)
        recipientIsNotBurnAddress(recipient)
        returns (bool) 
    {
        _transfer(sender, recipient, amount);

        return true;
    }
    
    function transferCustom(address sender, address recipient, uint256 amount)
        external
        notPausedContract
        onlyRole(ROLE_TRANSFERER)
        recipientIsNotBurnAddress(recipient)
    {
        _transfer(sender, recipient, amount);
        
        emit TransferCustom(sender, recipient, amount);
    }
    
    function _transfer(address sender, address recipient, uint transferAmount) 
        internal
        virtual 
        recipientIsNotBurnAddress(recipient)
        checkTransaction(sender, recipient, transferAmount)
        override 
    {
        tokenBalances[sender] -= transferAmount;
        tokenBalances[recipient] += transferAmount;
        
        emit Transfer(sender, recipient, transferAmount);
    }
    
    function mintByBridge(address to, uint desiredAmountToMint) 
        external
        notPausedContract
        onlyRole(ROLE_MINTER)
    {
        _mintHumanAddress(to, desiredAmountToMint);
        emit MintedByBridge(to, desiredAmountToMint);
    }
    
    function mintHumanAddress(address to, uint desiredAmountToMint) 
        external
        notPausedContract
        onlyRole(ROLE_MINTER)
    {
        _mintHumanAddress(to, desiredAmountToMint);
        emit MintHumanAddress(to, desiredAmountToMint);
    }
    
    function _mintHumanAddress(address to, uint desiredAmountToMint) 
        private
        recipientIsNotBurnAddress(to)
    {
        tokenBalances[to] += desiredAmountToMint;
        totalTokenSupply += desiredAmountToMint;
        
        emit Transfer(BURN_ADDRESS, to, desiredAmountToMint);
    }

    function burnByBridge(address from, uint desiredAmountToBurn)
        external
        notPausedContract
        onlyRole(ROLE_BURNER)
    {
        _burnHumanAddress(from, desiredAmountToBurn);
        emit BurnedByBridge(from, desiredAmountToBurn);
    }

    function burnHumanAddress(address from, uint desiredAmountToBurn)
        external
        notPausedContract
        onlyRole(ROLE_BURNER)
    {
        _burnHumanAddress(from, desiredAmountToBurn);
        emit BurnHumanAddress(from, desiredAmountToBurn);
    }

    function _burnHumanAddress(address from, uint desiredAmountToBurn)
        private
    {
        tokenBalances[from] -= desiredAmountToBurn;
        totalTokenSupply -= desiredAmountToBurn;
        
        emit Transfer(from, BURN_ADDRESS, desiredAmountToBurn);
    }
    
    function getChainId() 
        external 
        view 
        returns (uint) 
    {
        return block.chainid;
    }
}

// File: sol-defifactory-token/CerbyToken.sol



pragma solidity ^0.8.10;


contract CerbyToken is CerbyBasedToken {
    
    
    address[] utilsContracts;
    
    event UpdatedUtilsContracts(AccessSettings[] accessSettings);
    
    
    constructor()
        CerbyBasedToken("Cerby Token", "CERBY")
    {
        initializeOwner(msg.sender);
    }
    
    
    
    // ----------------------
    
    function updateUtilsContracts(AccessSettings[] memory accessSettings)
        public
        onlyRole(ROLE_ADMIN)
    {
        for(uint i = 0; i < utilsContracts.length; i++)
        {
            revokeRole(ROLE_MINTER, utilsContracts[i]);
            revokeRole(ROLE_BURNER, utilsContracts[i]);
            revokeRole(ROLE_TRANSFERER, utilsContracts[i]);
            revokeRole(ROLE_MODERATOR, utilsContracts[i]);
        }
        delete utilsContracts;
        
        for(uint i = 0; i < accessSettings.length; i++)
        {
            if (accessSettings[i].isMinter) grantRole(ROLE_MINTER, accessSettings[i].addr);
            if (accessSettings[i].isBurner) grantRole(ROLE_BURNER, accessSettings[i].addr);
            if (accessSettings[i].isTransferer) grantRole(ROLE_TRANSFERER, accessSettings[i].addr);
            if (accessSettings[i].isModerator) grantRole(ROLE_MODERATOR, accessSettings[i].addr);
            
            utilsContracts.push(accessSettings[i].addr);
        }
        
        emit UpdatedUtilsContracts(accessSettings);
    }
    
    function getUtilsContractAtPos(uint pos)
        public
        override
        view
        returns (address)
    {
        return utilsContracts[pos];
    }
    
    function getUtilsContractsCount()
        external
        view
        returns(uint)
    {
        return utilsContracts.length;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnHumanAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurnedByBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintHumanAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintedByBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferCustom","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bool","name":"isMinter","type":"bool"},{"internalType":"bool","name":"isBurner","type":"bool"},{"internalType":"bool","name":"isTransferer","type":"bool"},{"internalType":"bool","name":"isModerator","type":"bool"},{"internalType":"bool","name":"isTaxer","type":"bool"},{"internalType":"address","name":"addr","type":"address"}],"indexed":false,"internalType":"struct AccessSettings[]","name":"accessSettings","type":"tuple[]"}],"name":"UpdatedUtilsContracts","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_BURNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_MINTER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_MODERATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_TRANSFERER","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":"from","type":"address"},{"internalType":"uint256","name":"desiredAmountToBurn","type":"uint256"}],"name":"burnByBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"desiredAmountToBurn","type":"uint256"}],"name":"burnHumanAddress","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":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pos","type":"uint256"}],"name":"getUtilsContractAtPos","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUtilsContractsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"addr","type":"address"}],"internalType":"struct RoleAccess[]","name":"roles","type":"tuple[]"}],"name":"grantRolesBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"desiredAmountToMint","type":"uint256"}],"name":"mintByBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"desiredAmountToMint","type":"uint256"}],"name":"mintHumanAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"moderatorTransferFromWhilePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resumeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"transferCustom","outputs":[],"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":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"}],"name":"updateNameAndSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"isMinter","type":"bool"},{"internalType":"bool","name":"isBurner","type":"bool"},{"internalType":"bool","name":"isTransferer","type":"bool"},{"internalType":"bool","name":"isModerator","type":"bool"},{"internalType":"bool","name":"isTaxer","type":"bool"},{"internalType":"address","name":"addr","type":"address"}],"internalType":"struct AccessSettings[]","name":"accessSettings","type":"tuple[]"}],"name":"updateUtilsContracts","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120523480156200003757600080fd5b506040518060400160405280600b81526020016a21b2b9313c902a37b5b2b760a91b81525060405180604001604052806005815260200164434552425960d81b8152508180604051806040016040528060018152602001603160f81b81525084848160059080519060200190620000b0929190620003fa565b508051620000c6906006906020840190620003fa565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a018190528183019890985260608101959095526080808601939093523085830152805180860390920182529390920190925280519401939093209092526101005250620001639250339150620001699050565b620004dd565b600854610100900460ff1615620001c65760405162461bcd60e51b815260206004820152601660248201527f543a20416c726561647920696e697469616c697a656400000000000000000000604482015260640160405180910390fd5b6008805461ff001916610100179055620001e260008262000295565b6200020e7faeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b6014618262000295565b6200023a7fb5b5a86cc252b1b75a439c6ff372933ceb0690188924e6461150adeb00ab80d88262000295565b620002667f02a8464c3e212c8f1064432774c6cc3e76f14bd7ccdafd9a1d1cf9b43b51e5248262000295565b620002927f233299fc8224c0cb5b2b8b651b93354cf11d5245f1374bb37773608ffa1913c18262000295565b50565b620002ac8282620002d860201b620012741760201c565b6000828152600160209081526040909120620002d391839062001282620002e8821b17901c565b505050565b620002e4828262000308565b5050565b6000620002ff836001600160a01b038416620003a8565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620002e4576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620003643390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620003f15750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000302565b50600062000302565b8280546200040890620004a0565b90600052602060002090601f0160209004810192826200042c576000855562000477565b82601f106200044757805160ff191683800117855562000477565b8280016001018555821562000477579182015b82811115620004775782518255916020019190600101906200045a565b506200048592915062000489565b5090565b5b808211156200048557600081556001016200048a565b600181811c90821680620004b557607f821691505b60208210811415620004d757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516128156200052d600039600061112d0152600061179a015260006117e9015260006117c4015260006117480152600061177101526128156000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c806366830b2111610146578063a457c2d7116100c3578063ca15c87311610087578063ca15c87314610523578063d391014b14610536578063d505accf1461053e578063d547741f14610551578063dd62ed3e14610564578063eaf9d1941461059d57600080fd5b8063a457c2d7146104d5578063a9059cbb146104e8578063b187bd26146104fb578063c238651b14610508578063c4bc5da51461051b57600080fd5b80639010d07c1161010a5780639010d07c1461047f57806391d148541461049257806392afc33a146104a557806395d89b41146104ba5780639cff2eba146104c257600080fd5b806366830b211461040857806370a082311461041b578063789210b3146104445780637ecebe00146104575780638493712a1461046a57600080fd5b80631f2eba24116101df5780633408e470116101a35780633408e470146103b75780633644e515146103bd57806336568abe146103c557806339509351146103d8578063439766ce146103eb57806354ff02d8146103f357600080fd5b80631f2eba241461034c57806323b872dd1461035f578063248a9ca3146103725780632f2ff15d14610395578063313ce567146103a857600080fd5b8063095ea7b311610226578063095ea7b3146103035780630bb9ff5d1461031657806318160ddd1461032957806318a8ad87146103315780631bf73b721461034457600080fd5b806301ffc9a7146102635780630288f0fb1461028b57806303ed957f146102ae57806306fb1a07146102c357806306fdde03146102ee575b600080fd5b610276610271366004611fcc565b6105b0565b60405190151581526020015b60405180910390f35b6102a06000805160206127a083398151915281565b604051908152602001610282565b6102c16102bc366004611ff6565b6105db565b005b6102d66102d136600461206b565b610658565b6040516001600160a01b039091168152602001610282565b6102f6610688565b60405161028291906120b0565b6102766103113660046120ff565b61071a565b6102c16103243660046120ff565b610730565b6003546102a0565b6102c161033f3660046120ff565b6107c7565b6009546102a0565b6102c161035a3660046120ff565b61084c565b61027661036d366004612129565b6108d1565b6102a061038036600461206b565b60009081526020819052604090206001015490565b6102c16103a3366004612165565b6109c9565b60405160128152602001610282565b466102a0565b6102a06109f0565b6102c16103d3366004612165565b6109ff565b6102766103e63660046120ff565b610a21565b6102c1610a58565b6102a060008051602061276083398151915281565b6102c16104163660046120ff565b610a97565b6102a0610429366004612191565b6001600160a01b031660009081526002602052604090205490565b6102c161045236600461222a565b610b1c565b6102a0610465366004612191565b610ddc565b6102a060008051602061278083398151915281565b6102d661048d366004612350565b610dfa565b6102766104a0366004612165565b610e19565b6102a06000805160206127c083398151915281565b6102f6610e42565b6102c16104d0366004612129565b610e51565b6102766104e33660046120ff565b610f11565b6102766104f63660046120ff565b610fac565b6008546102769060ff1681565b610276610516366004612129565b610fdd565b6102c161106a565b6102a061053136600461206b565b6110c2565b6102a0600081565b6102c161054c366004612372565b6110d9565b6102c161055f366004612165565b61123d565b6102a06105723660046123e5565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6102c16105ab366004612458565b611247565b60006001600160e01b03198216635a05180f60e01b14806105d557506105d582611297565b92915050565b60006105e781336112cc565b60005b8281101561065257610640848483818110610607576106076124c4565b90506040020160000135858584818110610623576106236124c4565b905060400201602001602081019061063b9190612191565b611330565b8061064a816124f0565b9150506105ea565b50505050565b60006009828154811061066d5761066d6124c4565b6000918252602090912001546001600160a01b031692915050565b6060600580546106979061250b565b80601f01602080910402602001604051908101604052809291908181526020018280546106c39061250b565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600061072733848461133a565b50600192915050565b60085460ff161561075c5760405162461bcd60e51b815260040161075390612540565b60405180910390fd5b6000805160206127c083398151915261077581336112cc565b61077f838361145f565b604080516001600160a01b0385168152602081018490527f099fc78bcf3c24b8cd6ad4eda1e3eb007e511c09c640af1c46437ded34cf10f291015b60405180910390a1505050565b60085460ff16156107ea5760405162461bcd60e51b815260040161075390612540565b60008051602061276083398151915261080381336112cc565b61080d838361150a565b604080516001600160a01b0385168152602081018490527f0a5b82707bc4ce1d57e909b70adb28e393a34c2ab77e30f862ca2e0e9f8da90591016107ba565b60085460ff161561086f5760405162461bcd60e51b815260040161075390612540565b6000805160206127c083398151915261088881336112cc565b610892838361145f565b604080516001600160a01b0385168152602081018490527f7d48429c6eb871d47dea691d65bb2d1f99eaf5d33e7a06363b8fafb3f6ea017891016107ba565b60085460009060ff16156108f75760405162461bcd60e51b815260040161075390612540565b826001600160a01b03811661091e5760405162461bcd60e51b815260040161075390612563565b610929858585611595565b6001600160a01b0385166000908152600460209081526040808320338452909152902054838110156109a95760405162461bcd60e51b8152602060048201526024808201527f543a207472616e7366657220616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610753565b6109bd86336109b88785612585565b61133a565b50600195945050505050565b6109d3828261172e565b60008281526001602052604090206109eb9082611282565b505050565b60006109fa611744565b905090565b610a098282611837565b60008281526001602052604090206109eb90826118b1565b3360008181526004602090815260408083206001600160a01b038716845290915281205490916107279185906109b890869061259c565b60085460ff1615610a7b5760405162461bcd60e51b815260040161075390612540565b6000610a8781336112cc565b506008805460ff19166001179055565b60085460ff1615610aba5760405162461bcd60e51b815260040161075390612540565b600080516020612760833981519152610ad381336112cc565b610add838361150a565b604080516001600160a01b0385168152602081018490527f3eac2380fcf2b255bd916ae212498a2e55f3c99baab43d3eb29cb6349639d0d291016107ba565b6000610b2881336112cc565b60005b600954811015610bf557610b746000805160206127c083398151915260098381548110610b5a57610b5a6124c4565b6000918252602090912001546001600160a01b031661123d565b610b9960008051602061276083398151915260098381548110610b5a57610b5a6124c4565b610bbe60008051602061278083398151915260098381548110610b5a57610b5a6124c4565b610be36000805160206127a083398151915260098381548110610b5a57610b5a6124c4565b80610bed816124f0565b915050610b2b565b50610c0260096000611f12565b60005b8251811015610da057828181518110610c2057610c206124c4565b60200260200101516000015115610c6657610c666000805160206127c0833981519152848381518110610c5557610c556124c4565b602002602001015160a001516109c9565b828181518110610c7857610c786124c4565b60200260200101516020015115610cad57610cad600080516020612760833981519152848381518110610c5557610c556124c4565b828181518110610cbf57610cbf6124c4565b60200260200101516040015115610cf457610cf4600080516020612780833981519152848381518110610c5557610c556124c4565b828181518110610d0657610d066124c4565b60200260200101516060015115610d3b57610d3b6000805160206127a0833981519152848381518110610c5557610c556124c4565b6009838281518110610d4f57610d4f6124c4565b60209081029190910181015160a0015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580610d98816124f0565b915050610c05565b507f13340c8e795b6b33898709afdee63a73df74c7ca9d8204d3265aa483ac0e403782604051610dd091906125b4565b60405180910390a15050565b6001600160a01b0381166000908152600760205260408120546105d5565b6000828152600160205260408120610e1290836118c6565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600680546106979061250b565b60085460ff1615610e745760405162461bcd60e51b815260040161075390612540565b600080516020612780833981519152610e8d81336112cc565b826001600160a01b038116610eb45760405162461bcd60e51b815260040161075390612563565b610ebf858585611595565b604080516001600160a01b038088168252861660208201529081018490527f4f21c37c3184c9b0bbc63a812b0a1a148f15f1bd6db127e7e562d9b0436803259060600160405180910390a15050505050565b3360009081526004602090815260408083206001600160a01b038616845290915281205482811015610f935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610753565b610fa233856109b88685612585565b5060019392505050565b60085460009060ff1615610fd25760405162461bcd60e51b815260040161075390612540565b610727338484611595565b60085460009060ff1661101f5760405162461bcd60e51b815260206004820152600a602482015269150e88085c185d5cd95960b21b6044820152606401610753565b6000805160206127a083398151915261103881336112cc565b836001600160a01b03811661105f5760405162461bcd60e51b815260040161075390612563565b6109bd868686611595565b60085460ff166110a95760405162461bcd60e51b815260206004820152600a602482015269150e88085c185d5cd95960b21b6044820152606401610753565b60006110b581336112cc565b506008805460ff19169055565b60008181526001602052604081206105d5906118d2565b834211156111295760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610753565b60007f00000000000000000000000000000000000000000000000000000000000000008888886111588c6118dc565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006111b382611904565b905060006111c382878787611952565b9050896001600160a01b0316816001600160a01b0316146112265760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610753565b6112318a8a8a61133a565b50505050505050505050565b610a098282611afb565b600061125381336112cc565b61125f60058686611f33565b5061126c60068484611f33565b505050505050565b61127e8282611b21565b5050565b6000610e12836001600160a01b038416611ba5565b60006001600160e01b03198216637965db0b60e01b14806105d557506301ffc9a760e01b6001600160e01b03198316146105d5565b6112d68282610e19565b61127e576112ee816001600160a01b03166014611bf4565b6112f9836020611bf4565b60405160200161130a92919061263f565b60408051601f198184030181529082905262461bcd60e51b8252610753916004016120b0565b6109d38282611274565b6001600160a01b03831661139c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610753565b6001600160a01b0382166113fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610753565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b816001600160a01b0381166114865760405162461bcd60e51b815260040161075390612563565b6001600160a01b038316600090815260026020526040812080548492906114ae90849061259c565b9250508190555081600360008282546114c7919061259c565b90915550506040518281526001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611452565b6001600160a01b03821660009081526002602052604081208054839290611532908490612585565b92505081905550806003600082825461154b9190612585565b90915550506040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b816001600160a01b0381166115bc5760405162461bcd60e51b815260040161075390612563565b83838360006115cb6003610658565b6001600160a01b03848116600081815260026020526040908190205490516359a7f9b760e11b815273def1fac7bf08f173d286bbbdcbeeade69512984060048201528884166024820152604481019290925260648201526084810185905291925082169063b34ff36e9060a40160408051808303816000875af1158015611656573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167a91906126b4565b506001600160a01b038816600090815260026020526040812080548892906116a3908490612585565b90915550506001600160a01b038716600090815260026020526040812080548892906116d090849061259c565b92505081905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8860405161171c91815260200190565b60405180910390a35050505050505050565b600061173a81336112cc565b6109eb8383611b21565b60007f000000000000000000000000000000000000000000000000000000000000000046141561179357507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b03811633146118a75760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610753565b61127e8282611d90565b6000610e12836001600160a01b038416611df5565b6000610e128383611ee8565b60006105d5825490565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006105d5611911611744565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156119cf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610753565b8360ff16601b14806119e457508360ff16601c145b611a3b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610753565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611a8f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611af25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610753565b95945050505050565b600082815260208190526040902060010154611b1781336112cc565b6109eb8383611d90565b611b2b8282610e19565b61127e576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611b613390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611bec575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556105d5565b5060006105d5565b60606000611c03836002612713565b611c0e90600261259c565b67ffffffffffffffff811115611c2657611c266121ac565b6040519080825280601f01601f191660200182016040528015611c50576020820181803683370190505b509050600360fc1b81600081518110611c6b57611c6b6124c4565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611c9a57611c9a6124c4565b60200101906001600160f81b031916908160001a9053506000611cbe846002612713565b611cc990600161259c565b90505b6001811115611d41576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611cfd57611cfd6124c4565b1a60f81b828281518110611d1357611d136124c4565b60200101906001600160f81b031916908160001a90535060049490941c93611d3a81612732565b9050611ccc565b508315610e125760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610753565b611d9a8282610e19565b1561127e576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015611ede576000611e19600183612585565b8554909150600090611e2d90600190612585565b9050818114611e92576000866000018281548110611e4d57611e4d6124c4565b9060005260206000200154905080876000018481548110611e7057611e706124c4565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611ea357611ea3612749565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506105d5565b60009150506105d5565b6000826000018281548110611eff57611eff6124c4565b9060005260206000200154905092915050565b5080546000825590600052602060002090810190611f309190611fb7565b50565b828054611f3f9061250b565b90600052602060002090601f016020900481019282611f615760008555611fa7565b82601f10611f7a5782800160ff19823516178555611fa7565b82800160010185558215611fa7579182015b82811115611fa7578235825591602001919060010190611f8c565b50611fb3929150611fb7565b5090565b5b80821115611fb35760008155600101611fb8565b600060208284031215611fde57600080fd5b81356001600160e01b031981168114610e1257600080fd5b6000806020838503121561200957600080fd5b823567ffffffffffffffff8082111561202157600080fd5b818501915085601f83011261203557600080fd5b81358181111561204457600080fd5b8660208260061b850101111561205957600080fd5b60209290920196919550909350505050565b60006020828403121561207d57600080fd5b5035919050565b60005b8381101561209f578181015183820152602001612087565b838111156106525750506000910152565b60208152600082518060208401526120cf816040850160208701612084565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146120fa57600080fd5b919050565b6000806040838503121561211257600080fd5b61211b836120e3565b946020939093013593505050565b60008060006060848603121561213e57600080fd5b612147846120e3565b9250612155602085016120e3565b9150604084013590509250925092565b6000806040838503121561217857600080fd5b82359150612188602084016120e3565b90509250929050565b6000602082840312156121a357600080fd5b610e12826120e3565b634e487b7160e01b600052604160045260246000fd5b60405160c0810167ffffffffffffffff811182821017156121e5576121e56121ac565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715612214576122146121ac565b604052919050565b8015158114611f3057600080fd5b6000602080838503121561223d57600080fd5b823567ffffffffffffffff8082111561225557600080fd5b818501915085601f83011261226957600080fd5b81358181111561227b5761227b6121ac565b612289848260051b016121eb565b818152848101925060c09182028401850191888311156122a857600080fd5b938501935b828510156123445780858a0312156122c55760008081fd5b6122cd6121c2565b85356122d88161221c565b8152858701356122e78161221c565b818801526040868101356122fa8161221c565b9082015260608681013561230d8161221c565b908201526080868101356123208161221c565b9082015260a06123318782016120e3565b90820152845293840193928501926122ad565b50979650505050505050565b6000806040838503121561236357600080fd5b50508035926020909101359150565b600080600080600080600060e0888a03121561238d57600080fd5b612396886120e3565b96506123a4602089016120e3565b95506040880135945060608801359350608088013560ff811681146123c857600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156123f857600080fd5b612401836120e3565b9150612188602084016120e3565b60008083601f84011261242157600080fd5b50813567ffffffffffffffff81111561243957600080fd5b60208301915083602082850101111561245157600080fd5b9250929050565b6000806000806040858703121561246e57600080fd5b843567ffffffffffffffff8082111561248657600080fd5b6124928883890161240f565b909650945060208701359150808211156124ab57600080fd5b506124b88782880161240f565b95989497509550505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612504576125046124da565b5060010190565b600181811c9082168061251f57607f821691505b602082108114156118fe57634e487b7160e01b600052602260045260246000fd5b602080825260099082015268150e881c185d5cd95960ba1b604082015260600190565b6020808252600890820152672a1d1010b13ab93760c11b604082015260600190565b600082821015612597576125976124da565b500390565b600082198211156125af576125af6124da565b500190565b602080825282518282018190526000919060409081850190868401855b82811015612632578151805115158552868101511515878601528581015115158686015260608082015115159086015260808082015115159086015260a0908101516001600160a01b03169085015260c090930192908501906001016125d1565b5091979650505050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612677816017850160208801612084565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516126a8816028840160208801612084565b01602801949350505050565b6000604082840312156126c657600080fd5b6040516040810181811067ffffffffffffffff821117156126e9576126e96121ac565b60405282516126f78161221c565b815260208301516127078161221c565b60208201529392505050565b600081600019048311821515161561272d5761272d6124da565b500290565b600081612741576127416124da565b506000190190565b634e487b7160e01b600052603160045260246000fdfeb5b5a86cc252b1b75a439c6ff372933ceb0690188924e6461150adeb00ab80d802a8464c3e212c8f1064432774c6cc3e76f14bd7ccdafd9a1d1cf9b43b51e524233299fc8224c0cb5b2b8b651b93354cf11d5245f1374bb37773608ffa1913c1aeaef46186eb59f884e36929b6d682a6ae35e1e43d8f05f058dcefb92b601461a2646970667358221220ba03d8de51171bf66f6c164a69887bb858b499c4d76750815e0325403586ca6c64736f6c634300080a0033

Deployed ByteCode Sourcemap

63497:1768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51810:227;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;51810:227:0;;;;;;;;56739:68;;-1:-1:-1;;;;;;;;;;;56739:68:0;;;;;643:25:1;;;631:2;616:18;56739:68:0;497:177:1;48131:237:0;;;;;;:::i;:::-;;:::i;:::-;;64943:166;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1678:32:1;;;1660:51;;1648:2;1633:18;64943:166:0;1514:203:1;33386:100:0;;;:::i;:::-;;;;;;;:::i;35522:169::-;;;;;;:::i;:::-;;:::i;61853:264::-;;;;;;:::i;:::-;;:::i;34506:153::-;34635:16;;34506:153;;62717:269;;;;;;:::i;:::-;;:::i;65121:141::-;65233:14;:21;65121:141;;61583:258;;;;;;:::i;:::-;;:::i;59921:537::-;;;;;;:::i;:::-;;:::i;47595:123::-;;;;;;:::i;:::-;47661:7;47688:12;;;;;;;;;;:22;;;;47595:123;53181:165;;;;;;:::i;:::-;;:::i;34348:93::-;;;34431:2;3911:36:1;;3899:2;3884:18;34348:93:0;3769:184:1;63281:126:0;63386:13;63281:126;;41654:115;;;:::i;53704:174::-;;;;;;:::i;:::-;;:::i;36697:215::-;;;;;;:::i;:::-;;:::i;59360:139::-;;;:::i;56593:62::-;;-1:-1:-1;;;;;;;;;;;56593:62:0;;62446:263;;;;;;:::i;:::-;;:::i;34722:131::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34823:22:0;34796:7;34823:22;;;:13;:22;;;;;;;34722:131;63846:1085;;;;;;:::i;:::-;;:::i;41396:128::-;;;;;;:::i;:::-;;:::i;56662:70::-;;-1:-1:-1;;;;;;;;;;;56662:70:0;;52636:145;;;;;;:::i;:::-;;:::i;46593:139::-;;;;;;:::i;:::-;;:::i;56524:62::-;;-1:-1:-1;;;;;;;;;;;56524:62:0;;33605:104;;;:::i;60808:328::-;;;;;;:::i;:::-;;:::i;37415:377::-;;;;;;:::i;:::-;;:::i;59661:248::-;;;;;;:::i;:::-;;:::i;57039:20::-;;;;;;;;;60470:326;;;;;;:::i;:::-;;:::i;59511:138::-;;;:::i;52955:134::-;;;;;;:::i;:::-;;:::i;44566:41::-;;44603:4;44566:41;;40559:771;;;;;;:::i;:::-;;:::i;53439:170::-;;;;;;:::i;:::-;;:::i;35224:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35340:18:0;;;35313:7;35340:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35224:151;59154:194;;;;;;:::i;:::-;;:::i;51810:227::-;51895:4;-1:-1:-1;;;;;;51919:57:0;;-1:-1:-1;;;51919:57:0;;:110;;;51993:36;52017:11;51993:23;:36::i;:::-;51912:117;51810:227;-1:-1:-1;;51810:227:0:o;48131:237::-;44603:4;46162:30;44603:4;31026:10;46162;:30::i;:::-;48252:6:::1;48248:113;48264:14:::0;;::::1;48248:113;;;48309:40;48320:5;;48326:1;48320:8;;;;;;;:::i;:::-;;;;;;:13;;;48335:5;;48341:1;48335:8;;;;;;;:::i;:::-;;;;;;:13;;;;;;;;;;:::i;:::-;48309:10;:40::i;:::-;48280:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48248:113;;;;48131:237:::0;;;:::o;64943:166::-;65050:7;65082:14;65097:3;65082:19;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;65082:19:0;;64943:166;-1:-1:-1;;64943:166:0:o;33386:100::-;33440:13;33473:5;33466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33386:100;:::o;35522:169::-;35605:4;35622:39;31026:10;35645:7;35654:6;35622:8;:39::i;:::-;-1:-1:-1;35679:4:0;35522:169;;;;:::o;61853:264::-;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56562:24:::0;31026:10;46162;:30::i;:::-:1;62010:42:::2;62028:2;62032:19;62010:17;:42::i;:::-;62068:41;::::0;;-1:-1:-1;;;;;10575:32:1;;10557:51;;10639:2;10624:18;;10617:34;;;62068:41:0::2;::::0;10530:18:1;62068:41:0::2;;;;;;;;58592:1:::1;61853:264:::0;;:::o;62717:269::-;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56631:24:::0;31026:10;46162;:30::i;:::-:1;62875:44:::2;62893:4;62899:19;62875:17;:44::i;:::-;62935:43;::::0;;-1:-1:-1;;;;;10575:32:1;;10557:51;;10639:2;10624:18;;10617:34;;;62935:43:0::2;::::0;10530:18:1;62935:43:0::2;10383:274:1::0;61583:258:0;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56562:24:::0;31026:10;46162;:30::i;:::-:1;61736:42:::2;61754:2;61758:19;61736:17;:42::i;:::-;61794:39;::::0;;-1:-1:-1;;;;;10575:32:1;;10557:51;;10639:2;10624:18;;10617:34;;;61794:39:0::2;::::0;10530:18:1;61794:39:0::2;10383:274:1::0;59921:537:0;58536:8;;60140:4;;58536:8;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;60074:9;-1:-1:-1;;;;;58835:25:0;::::1;58813:83;;;;-1:-1:-1::0;;;58813:83:0::1;;;;;;;:::i;:::-;60163:36:::2;60173:6;60181:9;60192:6;60163:9;:36::i;:::-;-1:-1:-1::0;;;;;60239:19:0;::::2;60212:24;60239:19:::0;;;:11:::2;:19;::::0;;;;;;;31026:10;60239:33;;;;;;;;60291:26;;::::2;;60283:75;;;::::0;-1:-1:-1;;;60283:75:0;;11200:2:1;60283:75:0::2;::::0;::::2;11182:21:1::0;11239:2;11219:18;;;11212:30;11278:34;11258:18;;;11251:62;-1:-1:-1;;;11329:18:1;;;11322:34;11373:19;;60283:75:0::2;10998:400:1::0;60283:75:0::2;60369:57;60378:6:::0;31026:10;60400:25:::2;60419:6:::0;60400:16;:25:::2;:::i;:::-;60369:8;:57::i;:::-;-1:-1:-1::0;60446:4:0::2;::::0;59921:537;-1:-1:-1;;;;;59921:537:0:o;53181:165::-;53266:30;53282:4;53288:7;53266:15;:30::i;:::-;53307:18;;;;:12;:18;;;;;:31;;53330:7;53307:22;:31::i;:::-;;53181:165;;:::o;41654:115::-;41714:7;41741:20;:18;:20::i;:::-;41734:27;;41654:115;:::o;53704:174::-;53792:33;53811:4;53817:7;53792:18;:33::i;:::-;53836:18;;;;:12;:18;;;;;:34;;53862:7;53836:25;:34::i;36697:215::-;31026:10;36785:4;36834:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36834:34:0;;;;;;;;;;36785:4;;36802:80;;36825:7;;36834:47;;36871:10;;36834:47;:::i;59360:139::-;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;44603:4:::1;46162:30;44603:4:::0;31026:10;46162;:30::i;:::-:1;-1:-1:-1::0;59476:8:0::2;:15:::0;;-1:-1:-1;;59476:15:0::2;59487:4;59476:15;::::0;;59360:139::o;62446:263::-;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56631:24:::0;31026:10;46162;:30::i;:::-:1;62600:44:::2;62618:4;62624:19;62600:17;:44::i;:::-;62660:41;::::0;;-1:-1:-1;;;;;10575:32:1;;10557:51;;10639:2;10624:18;;10617:34;;;62660:41:0::2;::::0;10530:18:1;62660:41:0::2;10383:274:1::0;63846:1085:0;44603:4;46162:30;44603:4;31026:10;46162;:30::i;:::-;63982:6:::1;63978:304;63998:14;:21:::0;63994:25;::::1;63978:304;;;64050:42;-1:-1:-1::0;;;;;;;;;;;64074:14:0::1;64089:1;64074:17;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;64074:17:0::1;64050:10;:42::i;:::-;64107;-1:-1:-1::0;;;;;;;;;;;64131:14:0::1;64146:1;64131:17;;;;;;;;:::i;64107:42::-;64164:46;-1:-1:-1::0;;;;;;;;;;;64192:14:0::1;64207:1;64192:17;;;;;;;;:::i;64164:46::-;64225:45;-1:-1:-1::0;;;;;;;;;;;64252:14:0::1;64267:1;64252:17;;;;;;;;:::i;64225:45::-;64021:3:::0;::::1;::::0;::::1;:::i;:::-;;;;63978:304;;;-1:-1:-1::0;64292:21:0::1;64299:14;;64292:21;:::i;:::-;64338:6;64334:527;64354:14;:21;64350:1;:25;64334:527;;;64410:14;64425:1;64410:17;;;;;;;;:::i;:::-;;;;;;;:26;;;64406:78;;;64438:46;-1:-1:-1::0;;;;;;;;;;;64461:14:0::1;64476:1;64461:17;;;;;;;;:::i;:::-;;;;;;;:22;;;64438:9;:46::i;:::-;64503:14;64518:1;64503:17;;;;;;;;:::i;:::-;;;;;;;:26;;;64499:78;;;64531:46;-1:-1:-1::0;;;;;;;;;;;64554:14:0::1;64569:1;64554:17;;;;;;;;:::i;64531:46::-;64596:14;64611:1;64596:17;;;;;;;;:::i;:::-;;;;;;;:30;;;64592:86;;;64628:50;-1:-1:-1::0;;;;;;;;;;;64655:14:0::1;64670:1;64655:17;;;;;;;;:::i;64628:50::-;64697:14;64712:1;64697:17;;;;;;;;:::i;:::-;;;;;;;:29;;;64693:84;;;64728:49;-1:-1:-1::0;;;;;;;;;;;64754:14:0::1;64769:1;64754:17;;;;;;;;:::i;64728:49::-;64806:14;64826;64841:1;64826:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;:22:::1;;::::0;64806:43;;::::1;::::0;::::1;::::0;;-1:-1:-1;64806:43:0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;64806:43:0::1;-1:-1:-1::0;;;;;64806:43:0;;::::1;::::0;;;::::1;::::0;;64377:3;::::1;::::0;::::1;:::i;:::-;;;;64334:527;;;;64886:37;64908:14;64886:37;;;;;;:::i;:::-;;;;;;;;63846:1085:::0;;:::o;41396:128::-;-1:-1:-1;;;;;41492:14:0;;41465:7;41492:14;;;:7;:14;;;;;964;41492:24;872:114;52636:145;52718:7;52745:18;;;:12;:18;;;;;:28;;52767:5;52745:21;:28::i;:::-;52738:35;52636:145;-1:-1:-1;;;52636:145:0:o;46593:139::-;46671:4;46695:12;;;;;;;;;;;-1:-1:-1;;;;;46695:29:0;;;;;;;;;;;;;;;46593:139::o;33605:104::-;33661:13;33694:7;33687:14;;;;;:::i;60808:328::-;58536:8;;;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56704:28:::0;31026:10;46162;:30::i;:::-:1;60998:9:::0;-1:-1:-1;;;;;58835:25:0;::::2;58813:83;;;;-1:-1:-1::0;;;58813:83:0::2;;;;;;;:::i;:::-;61025:36:::3;61035:6;61043:9;61054:6;61025:9;:36::i;:::-;61087:41;::::0;;-1:-1:-1;;;;;13132:15:1;;;13114:34;;13184:15;;13179:2;13164:18;;13157:43;13216:18;;;13209:34;;;61087:41:0::3;::::0;13064:2:1;13049:18;61087:41:0::3;;;;;;;46203:1:::2;58592::::1;60808:328:::0;;;:::o;37415:377::-;31026:10;37508:4;37552:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;37552:34:0;;;;;;;;;;37605:35;;;;37597:85;;;;-1:-1:-1;;;37597:85:0;;13456:2:1;37597:85:0;;;13438:21:1;13495:2;13475:18;;;13468:30;13534:34;13514:18;;;13507:62;-1:-1:-1;;;13585:18:1;;;13578:35;13630:19;;37597:85:0;13254:401:1;37597:85:0;37693:67;31026:10;37716:7;37725:34;37744:15;37725:16;:34;:::i;37693:67::-;-1:-1:-1;37780:4:0;;37415:377;-1:-1:-1;;;37415:377:0:o;59661:248::-;58536:8;;59814:4;;58536:8;;58535:9;58513:68;;;;-1:-1:-1;;;58513:68:0;;;;;;;:::i;:::-;59837:42:::1;31026:10:::0;59861:9:::1;59872:6;59837:9;:42::i;60470:326::-:0;58670:8;;60705:4;;58670:8;;58648:68;;;;-1:-1:-1;;;58648:68:0;;13862:2:1;58648:68:0;;;13844:21:1;13901:2;13881:18;;;13874:30;-1:-1:-1;;;13920:18:1;;;13913:40;13970:18;;58648:68:0;13660:334:1;58648:68:0;-1:-1:-1;;;;;;;;;;;46162:30:0::1;56780:27:::0;31026:10;46162;:30::i;:::-:1;60676:9:::0;-1:-1:-1;;;;;58835:25:0;::::2;58813:83;;;;-1:-1:-1::0;;;58813:83:0::2;;;;;;;:::i;:::-;60728:36:::3;60738:6;60746:9;60757:6;60728:9;:36::i;59511:138::-:0;58670:8;;;;58648:68;;;;-1:-1:-1;;;58648:68:0;;13862:2:1;58648:68:0;;;13844:21:1;13901:2;13881:18;;;13874:30;-1:-1:-1;;;13920:18:1;;;13913:40;13970:18;;58648:68:0;13660:334:1;58648:68:0;44603:4:::1;46162:30;44603:4:::0;31026:10;46162;:30::i;:::-:1;-1:-1:-1::0;59625:8:0::2;:16:::0;;-1:-1:-1;;59625:16:0::2;::::0;;59511:138::o;52955:134::-;53027:7;53054:18;;;:12;:18;;;;;:27;;:25;:27::i;40559:771::-;40788:8;40769:15;:27;;40761:69;;;;-1:-1:-1;;;40761:69:0;;14201:2:1;40761:69:0;;;14183:21:1;14240:2;14220:18;;;14213:30;14279:31;14259:18;;;14252:59;14328:18;;40761:69:0;13999:353:1;40761:69:0;40843:18;40917:16;40952:5;40976:7;41002:5;41026:16;41036:5;41026:9;:16::i;:::-;40888:196;;;;;;14644:25:1;;;;-1:-1:-1;;;;;14743:15:1;;;14723:18;;;14716:43;14795:15;;;;14775:18;;;14768:43;14827:18;;;14820:34;14870:19;;;14863:35;14914:19;;;14907:35;;;14616:19;;40888:196:0;;;;;;;;;;;;40864:231;;;;;;40843:252;;41108:12;41123:28;41140:10;41123:16;:28::i;:::-;41108:43;;41164:14;41181:28;41195:4;41201:1;41204;41207;41181:13;:28::i;:::-;41164:45;;41238:5;-1:-1:-1;;;;;41228:15:0;:6;-1:-1:-1;;;;;41228:15:0;;41220:58;;;;-1:-1:-1;;;41220:58:0;;15155:2:1;41220:58:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:32;15213:18;;;15206:60;15283:18;;41220:58:0;14953:354:1;41220:58:0;41291:31;41300:5;41307:7;41316:5;41291:8;:31::i;:::-;40695:635;;;40559:771;;;;;;;:::o;53439:170::-;53525:31;53542:4;53548:7;53525:16;:31::i;59154:194::-;44603:4;46162:30;44603:4;31026:10;46162;:30::i;:::-;59297:14:::1;:5;59305:6:::0;;59297:14:::1;:::i;:::-;-1:-1:-1::0;59322:18:0::1;:7;59332:8:::0;;59322:18:::1;:::i;:::-;;59154:194:::0;;;;;:::o;50070:112::-;50149:25;50160:4;50166:7;50149:10;:25::i;:::-;50070:112;;:::o;23345:152::-;23415:4;23439:50;23444:3;-1:-1:-1;;;;;23464:23:0;;23439:4;:50::i;46284:217::-;46369:4;-1:-1:-1;;;;;;46393:47:0;;-1:-1:-1;;;46393:47:0;;:100;;-1:-1:-1;;;;;;;;;;28181:40:0;;;46457:36;28072:157;47022:384;47102:22;47110:4;47116:7;47102;:22::i;:::-;47098:301;;47234:41;47262:7;-1:-1:-1;;;;;47234:41:0;47272:2;47234:19;:41::i;:::-;47332:38;47360:4;47367:2;47332:19;:38::i;:::-;47155:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;47155:230:0;;;;;;;;;;-1:-1:-1;;;47141:246:0;;;;;;;:::i;53971:169::-;54059:31;54076:4;54082:7;54059:16;:31::i;38812:346::-;-1:-1:-1;;;;;38914:19:0;;38906:68;;;;-1:-1:-1;;;38906:68:0;;16305:2:1;38906:68:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:34;16478:19;;38906:68:0;16103:400:1;38906:68:0;-1:-1:-1;;;;;38993:21:0;;38985:68;;;;-1:-1:-1;;;38985:68:0;;16710:2:1;38985:68:0;;;16692:21:1;16749:2;16729:18;;;16722:30;16788:34;16768:18;;;16761:62;-1:-1:-1;;;16839:18:1;;;16832:32;16881:19;;38985:68:0;16508:398:1;38985:68:0;-1:-1:-1;;;;;39066:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39118:32;;643:25:1;;;39118:32:0;;616:18:1;39118:32:0;;;;;;;;38812:346;;;:::o;62129:309::-;62247:2;-1:-1:-1;;;;;58835:25:0;;58813:83;;;;-1:-1:-1;;;58813:83:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62267:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:40;;62288:19;;62267:17;:40:::1;::::0;62288:19;;62267:40:::1;:::i;:::-;;;;;;;;62338:19;62318:16;;:39;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;62383:47:0::1;::::0;643:25:1;;;-1:-1:-1;;;;;62383:47:0;::::1;::::0;57022:3:::1;::::0;62383:47:::1;::::0;631:2:1;616:18;62383:47:0::1;497:177:1::0;62994:275:0;-1:-1:-1;;;;;63094:19:0;;;;;;:13;:19;;;;;:42;;63117:19;;63094;:42;;63117:19;;63094:42;:::i;:::-;;;;;;;;63167:19;63147:16;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;;63212:49:0;;643:25:1;;;57022:3:0;;-1:-1:-1;;;;;63212:49:0;;;;;631:2:1;616:18;63212:49:0;;;;;;;62994:275;;:::o;61148:423::-;61295:9;-1:-1:-1;;;;;58835:25:0;;58813:83;;;;-1:-1:-1;;;58813:83:0;;;;;;;:::i;:::-;61332:6:::1;61340:9;61351:14;58084:37;58157:54;56877:1;58157:21;:54::i;:::-;-1:-1:-1::0;;;;;58378:24:0;;::::1;;::::0;;;:13:::1;:24;::::0;;;;;;;58233:210;;-1:-1:-1;;;58233:210:0;;56933:42:::1;58233:210;::::0;::::1;17208:34:1::0;17278:15;;;17258:18;;;17251:43;17310:18;;;17303:43;;;;17362:18;;;17355:34;17405:19;;;17398:35;;;58084:138:0;;-1:-1:-1;58233:39:0;::::1;::::0;::::1;::::0;17142:19:1;;58233:210:0::1;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;61402:21:0;::::2;;::::0;;;:13:::2;:21;::::0;;;;:39;;61427:14;;61402:21;:39:::2;::::0;61427:14;;61402:39:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;61452:24:0;::::2;;::::0;;;:13:::2;:24;::::0;;;;:42;;61480:14;;61452:24;:42:::2;::::0;61480:14;;61452:42:::2;:::i;:::-;;;;;;;;61537:9;-1:-1:-1::0;;;;;61520:43:0::2;61529:6;-1:-1:-1::0;;;;;61520:43:0::2;;61548:14;61520:43;;;;643:25:1::0;;631:2;616:18;;497:177;61520:43:0::2;;;;;;;;58073:390:::1;58907:1;;;61148:423:::0;;;;:::o;47980:139::-;44603:4;46162:30;44603:4;31026:10;46162;:30::i;:::-;48086:25:::1;48097:4;48103:7;48086:10;:25::i;9749:281::-:0;9802:7;9843:16;9826:13;:33;9822:201;;;-1:-1:-1;9883:24:0;;9749:281::o;9822:201::-;-1:-1:-1;10191:165:0;;;9969:10;10191:165;;;;21004:25:1;;;;9981:12:0;21045:18:1;;;21038:34;9995:15:0;21088:18:1;;;21081:34;10296:13:0;21131:18:1;;;21124:34;10336:4:0;21174:19:1;;;;21167:61;;;;10191:165:0;;;;;;;;;;20976:19:1;;;;10191:165:0;;;10167:200;;;;;;41654:115::o;49269:218::-;-1:-1:-1;;;;;49365:23:0;;31026:10;49365:23;49357:83;;;;-1:-1:-1;;;49357:83:0;;18294:2:1;49357:83:0;;;18276:21:1;18333:2;18313:18;;;18306:30;18372:34;18352:18;;;18345:62;-1:-1:-1;;;18423:18:1;;;18416:45;18478:19;;49357:83:0;18092:411:1;49357:83:0;49453:26;49465:4;49471:7;49453:11;:26::i;23673:158::-;23746:4;23770:53;23778:3;-1:-1:-1;;;;;23798:23:0;;23770:7;:53::i;24631:158::-;24705:7;24756:22;24760:3;24772:5;24756:3;:22::i;24170:117::-;24233:7;24260:19;24268:3;21011:18;;20928:109;41907:207;-1:-1:-1;;;;;42028:14:0;;41967:15;42028:14;;;:7;:14;;;;;964;;1101:1;1083:19;;;;964:14;42089:17;41984:130;41907:207;;;:::o;11017:167::-;11094:7;11121:55;11143:20;:18;:20::i;:::-;11165:10;6617:57;;-1:-1:-1;;;6617:57:0;;;21629:27:1;21672:11;;;21665:27;;;21708:12;;;21701:28;;;6580:7:0;;21745:12:1;;6617:57:0;;;;;;;;;;;;6607:68;;;;;;6600:75;;6487:196;;;;;4136:1432;4221:7;5146:66;5132:80;;;5124:127;;;;-1:-1:-1;;;5124:127:0;;18710:2:1;5124:127:0;;;18692:21:1;18749:2;18729:18;;;18722:30;18788:34;18768:18;;;18761:62;-1:-1:-1;;;18839:18:1;;;18832:32;18881:19;;5124:127:0;18508:398:1;5124:127:0;5270:1;:7;;5275:2;5270:7;:18;;;;5281:1;:7;;5286:2;5281:7;5270:18;5262:65;;;;-1:-1:-1;;;5262:65:0;;19113:2:1;5262:65:0;;;19095:21:1;19152:2;19132:18;;;19125:30;19191:34;19171:18;;;19164:62;-1:-1:-1;;;19242:18:1;;;19235:32;19284:19;;5262:65:0;18911:398:1;5262:65:0;5442:24;;;5425:14;5442:24;;;;;;;;;19541:25:1;;;19614:4;19602:17;;19582:18;;;19575:45;;;;19636:18;;;19629:34;;;19679:18;;;19672:34;;;5442:24:0;;19513:19:1;;5442:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5442:24:0;;-1:-1:-1;;5442:24:0;;;-1:-1:-1;;;;;;;5485:20:0;;5477:57;;;;-1:-1:-1;;;5477:57:0;;19919:2:1;5477:57:0;;;19901:21:1;19958:2;19938:18;;;19931:30;19997:26;19977:18;;;19970:54;20041:18;;5477:57:0;19717:348:1;5477:57:0;5554:6;4136:1432;-1:-1:-1;;;;;4136:1432:0:o;48613:149::-;47661:7;47688:12;;;;;;;;;;:22;;;46162:30;46173:4;31026:10;46162;:30::i;:::-;48728:26:::1;48740:4;48746:7;48728:11;:26::i;50517:229::-:0;50592:22;50600:4;50606:7;50592;:22::i;:::-;50587:152;;50631:6;:12;;;;;;;;;;;-1:-1:-1;;;;;50631:29:0;;;;;;;;;:36;;-1:-1:-1;;50631:36:0;50663:4;50631:36;;;50714:12;31026:10;;30946:98;50714:12;-1:-1:-1;;;;;50687:40:0;50705:7;-1:-1:-1;;;;;50687:40:0;50699:4;50687:40;;;;;;;;;;50517:229;;:::o;18630:414::-;18693:4;20810:19;;;:12;;;:19;;;;;;18710:327;;-1:-1:-1;18753:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;18936:18;;18914:19;;;:12;;;:19;;;;;;:40;;;;18969:11;;18710:327;-1:-1:-1;19020:5:0;19013:12;;29855:447;29930:13;29956:19;29988:10;29992:6;29988:1;:10;:::i;:::-;:14;;30001:1;29988:14;:::i;:::-;29978:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29978:25:0;;29956:47;;-1:-1:-1;;;30014:6:0;30021:1;30014:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;30014:15:0;;;;;;;;;-1:-1:-1;;;30040:6:0;30047:1;30040:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;30040:15:0;;;;;;;;-1:-1:-1;30071:9:0;30083:10;30087:6;30083:1;:10;:::i;:::-;:14;;30096:1;30083:14;:::i;:::-;30071:26;;30066:131;30103:1;30099;:5;30066:131;;;-1:-1:-1;;;30147:5:0;30155:3;30147:11;30138:21;;;;;;;:::i;:::-;;;;30126:6;30133:1;30126:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;30126:33:0;;;;;;;;-1:-1:-1;30184:1:0;30174:11;;;;;30106:3;;;:::i;:::-;;;30066:131;;;-1:-1:-1;30215:10:0;;30207:55;;;;-1:-1:-1;;;30207:55:0;;20586:2:1;30207:55:0;;;20568:21:1;;;20605:18;;;20598:30;20664:34;20644:18;;;20637:62;20716:18;;30207:55:0;20384:356:1;50754:230:0;50829:22;50837:4;50843:7;50829;:22::i;:::-;50825:152;;;50900:5;50868:12;;;;;;;;;;;-1:-1:-1;;;;;50868:29:0;;;;;;;;;;:37;;-1:-1:-1;;50868:37:0;;;50925:40;31026:10;;50868:12;;50925:40;;50900:5;50925:40;50754:230;;:::o;19220:1407::-;19286:4;19425:19;;;:12;;;:19;;;;;;19461:15;;19457:1163;;19823:21;19847:14;19860:1;19847:10;:14;:::i;:::-;19896:18;;19823:38;;-1:-1:-1;19876:17:0;;19896:22;;19917:1;;19896:22;:::i;:::-;19876:42;;19952:13;19939:9;:26;19935:405;;19986:17;20006:3;:11;;20018:9;20006:22;;;;;;;;:::i;:::-;;;;;;;;;19986:42;;20160:9;20131:3;:11;;20143:13;20131:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;20245:23;;;:12;;;:23;;;;;:36;;;19935:405;20421:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20516:3;:12;;:19;20529:5;20516:19;;;;;;;;;;;20509:26;;;20559:4;20552:11;;;;;;;19457:1163;20603:5;20596:12;;;;;21381:120;21448:7;21475:3;:11;;21487:5;21475:18;;;;;;;;:::i;:::-;;;;;;;;;21468:25;;21381:120;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:286:1;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;679:645;795:6;803;856:2;844:9;835:7;831:23;827:32;824:52;;;872:1;869;862:12;824:52;912:9;899:23;941:18;982:2;974:6;971:14;968:34;;;998:1;995;988:12;968:34;1036:6;1025:9;1021:22;1011:32;;1081:7;1074:4;1070:2;1066:13;1062:27;1052:55;;1103:1;1100;1093:12;1052:55;1143:2;1130:16;1169:2;1161:6;1158:14;1155:34;;;1185:1;1182;1175:12;1155:34;1238:7;1233:2;1223:6;1220:1;1216:14;1212:2;1208:23;1204:32;1201:45;1198:65;;;1259:1;1256;1249:12;1198:65;1290:2;1282:11;;;;;1312:6;;-1:-1:-1;679:645:1;;-1:-1:-1;;;;679:645:1:o;1329:180::-;1388:6;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;-1:-1:-1;1480:23:1;;1329:180;-1:-1:-1;1329:180:1:o;1722:258::-;1794:1;1804:113;1818:6;1815:1;1812:13;1804:113;;;1894:11;;;1888:18;1875:11;;;1868:39;1840:2;1833:10;1804:113;;;1935:6;1932:1;1929:13;1926:48;;;-1:-1:-1;;1970:1:1;1952:16;;1945:27;1722:258::o;1985:383::-;2134:2;2123:9;2116:21;2097:4;2166:6;2160:13;2209:6;2204:2;2193:9;2189:18;2182:34;2225:66;2284:6;2279:2;2268:9;2264:18;2259:2;2251:6;2247:15;2225:66;:::i;:::-;2352:2;2331:15;-1:-1:-1;;2327:29:1;2312:45;;;;2359:2;2308:54;;1985:383;-1:-1:-1;;1985:383:1:o;2373:173::-;2441:20;;-1:-1:-1;;;;;2490:31:1;;2480:42;;2470:70;;2536:1;2533;2526:12;2470:70;2373:173;;;:::o;2551:254::-;2619:6;2627;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;2719:29;2738:9;2719:29;:::i;:::-;2709:39;2795:2;2780:18;;;;2767:32;;-1:-1:-1;;;2551:254:1:o;2992:328::-;3069:6;3077;3085;3138:2;3126:9;3117:7;3113:23;3109:32;3106:52;;;3154:1;3151;3144:12;3106:52;3177:29;3196:9;3177:29;:::i;:::-;3167:39;;3225:38;3259:2;3248:9;3244:18;3225:38;:::i;:::-;3215:48;;3310:2;3299:9;3295:18;3282:32;3272:42;;2992:328;;;;;:::o;3510:254::-;3578:6;3586;3639:2;3627:9;3618:7;3614:23;3610:32;3607:52;;;3655:1;3652;3645:12;3607:52;3691:9;3678:23;3668:33;;3720:38;3754:2;3743:9;3739:18;3720:38;:::i;:::-;3710:48;;3510:254;;;;;:::o;3958:186::-;4017:6;4070:2;4058:9;4049:7;4045:23;4041:32;4038:52;;;4086:1;4083;4076:12;4038:52;4109:29;4128:9;4109:29;:::i;4149:127::-;4210:10;4205:3;4201:20;4198:1;4191:31;4241:4;4238:1;4231:15;4265:4;4262:1;4255:15;4281:253;4353:2;4347:9;4395:4;4383:17;;4430:18;4415:34;;4451:22;;;4412:62;4409:88;;;4477:18;;:::i;:::-;4513:2;4506:22;4281:253;:::o;4539:275::-;4610:2;4604:9;4675:2;4656:13;;-1:-1:-1;;4652:27:1;4640:40;;4710:18;4695:34;;4731:22;;;4692:62;4689:88;;;4757:18;;:::i;:::-;4793:2;4786:22;4539:275;;-1:-1:-1;4539:275:1:o;4819:118::-;4905:5;4898:13;4891:21;4884:5;4881:32;4871:60;;4927:1;4924;4917:12;4942:2015;5058:6;5089:2;5132;5120:9;5111:7;5107:23;5103:32;5100:52;;;5148:1;5145;5138:12;5100:52;5188:9;5175:23;5217:18;5258:2;5250:6;5247:14;5244:34;;;5274:1;5271;5264:12;5244:34;5312:6;5301:9;5297:22;5287:32;;5357:7;5350:4;5346:2;5342:13;5338:27;5328:55;;5379:1;5376;5369:12;5328:55;5415:2;5402:16;5437:2;5433;5430:10;5427:36;;;5443:18;;:::i;:::-;5483:36;5515:2;5510;5507:1;5503:10;5499:19;5483:36;:::i;:::-;5553:15;;;5584:12;;;;-1:-1:-1;5615:4:1;5654:11;;;5646:20;;5642:29;;;5683:19;;;5680:39;;;5715:1;5712;5705:12;5680:39;5739:11;;;;5759:1168;5775:6;5770:3;5767:15;5759:1168;;;5855:2;5849:3;5840:7;5836:17;5832:26;5829:116;;;5899:1;5928:2;5924;5917:14;5829:116;5971:22;;:::i;:::-;6034:3;6021:17;6051:30;6073:7;6051:30;:::i;:::-;6094:22;;6157:12;;;6144:26;6183:30;6144:26;6183:30;:::i;:::-;6233:14;;;6226:31;6280:2;6323:12;;;6310:26;6349:30;6310:26;6349:30;:::i;:::-;6399:14;;;6392:31;6446:2;6489:12;;;6476:26;6515:30;6476:26;6515:30;:::i;:::-;6565:14;;;6558:31;6612:3;6656:12;;;6643:26;6682:30;6643:26;6682:30;:::i;:::-;6732:14;;;6725:31;6780:3;6820:33;6839:13;;;6820:33;:::i;:::-;6803:15;;;6796:58;6867:18;;5792:12;;;;6905;;;;5759:1168;;;-1:-1:-1;6946:5:1;4942:2015;-1:-1:-1;;;;;;;4942:2015:1:o;6962:248::-;7030:6;7038;7091:2;7079:9;7070:7;7066:23;7062:32;7059:52;;;7107:1;7104;7097:12;7059:52;-1:-1:-1;;7130:23:1;;;7200:2;7185:18;;;7172:32;;-1:-1:-1;6962:248:1:o;7215:693::-;7326:6;7334;7342;7350;7358;7366;7374;7427:3;7415:9;7406:7;7402:23;7398:33;7395:53;;;7444:1;7441;7434:12;7395:53;7467:29;7486:9;7467:29;:::i;:::-;7457:39;;7515:38;7549:2;7538:9;7534:18;7515:38;:::i;:::-;7505:48;;7600:2;7589:9;7585:18;7572:32;7562:42;;7651:2;7640:9;7636:18;7623:32;7613:42;;7705:3;7694:9;7690:19;7677:33;7750:4;7743:5;7739:16;7732:5;7729:27;7719:55;;7770:1;7767;7760:12;7719:55;7215:693;;;;-1:-1:-1;7215:693:1;;;;7793:5;7845:3;7830:19;;7817:33;;-1:-1:-1;7897:3:1;7882:19;;;7869:33;;7215:693;-1:-1:-1;;7215:693:1:o;7913:260::-;7981:6;7989;8042:2;8030:9;8021:7;8017:23;8013:32;8010:52;;;8058:1;8055;8048:12;8010:52;8081:29;8100:9;8081:29;:::i;:::-;8071:39;;8129:38;8163:2;8152:9;8148:18;8129:38;:::i;8178:348::-;8230:8;8240:6;8294:3;8287:4;8279:6;8275:17;8271:27;8261:55;;8312:1;8309;8302:12;8261:55;-1:-1:-1;8335:20:1;;8378:18;8367:30;;8364:50;;;8410:1;8407;8400:12;8364:50;8447:4;8439:6;8435:17;8423:29;;8499:3;8492:4;8483:6;8475;8471:19;8467:30;8464:39;8461:59;;;8516:1;8513;8506:12;8461:59;8178:348;;;;;:::o;8531:721::-;8623:6;8631;8639;8647;8700:2;8688:9;8679:7;8675:23;8671:32;8668:52;;;8716:1;8713;8706:12;8668:52;8756:9;8743:23;8785:18;8826:2;8818:6;8815:14;8812:34;;;8842:1;8839;8832:12;8812:34;8881:59;8932:7;8923:6;8912:9;8908:22;8881:59;:::i;:::-;8959:8;;-1:-1:-1;8855:85:1;-1:-1:-1;9047:2:1;9032:18;;9019:32;;-1:-1:-1;9063:16:1;;;9060:36;;;9092:1;9089;9082:12;9060:36;;9131:61;9184:7;9173:8;9162:9;9158:24;9131:61;:::i;:::-;8531:721;;;;-1:-1:-1;9211:8:1;-1:-1:-1;;;;8531:721:1:o;9257:127::-;9318:10;9313:3;9309:20;9306:1;9299:31;9349:4;9346:1;9339:15;9373:4;9370:1;9363:15;9389:127;9450:10;9445:3;9441:20;9438:1;9431:31;9481:4;9478:1;9471:15;9505:4;9502:1;9495:15;9521:135;9560:3;-1:-1:-1;;9581:17:1;;9578:43;;;9601:18;;:::i;:::-;-1:-1:-1;9648:1:1;9637:13;;9521:135::o;9661:380::-;9740:1;9736:12;;;;9783;;;9804:61;;9858:4;9850:6;9846:17;9836:27;;9804:61;9911:2;9903:6;9900:14;9880:18;9877:38;9874:161;;;9957:10;9952:3;9948:20;9945:1;9938:31;9992:4;9989:1;9982:15;10020:4;10017:1;10010:15;10046:332;10248:2;10230:21;;;10287:1;10267:18;;;10260:29;-1:-1:-1;;;10320:2:1;10305:18;;10298:39;10369:2;10354:18;;10046:332::o;10662:331::-;10864:2;10846:21;;;10903:1;10883:18;;;10876:29;-1:-1:-1;;;10936:2:1;10921:18;;10914:38;10984:2;10969:18;;10662:331::o;11403:125::-;11443:4;11471:1;11468;11465:8;11462:34;;;11476:18;;:::i;:::-;-1:-1:-1;11513:9:1;;11403:125::o;11533:128::-;11573:3;11604:1;11600:6;11597:1;11594:13;11591:39;;;11610:18;;:::i;:::-;-1:-1:-1;11646:9:1;;11533:128::o;11666:1203::-;11901:2;11953:21;;;12023:13;;11926:18;;;12045:22;;;11872:4;;11901:2;12086;;12104:18;;;;12145:15;;;11872:4;12188:655;12202:6;12199:1;12196:13;12188:655;;;12261:13;;12313:9;;12306:17;12299:25;12287:38;;12379:11;;;12373:18;12366:26;12359:34;12345:12;;;12338:56;12448:11;;;12442:18;12435:26;12428:34;12414:12;;;12407:56;12486:4;12544:11;;;12538:18;12531:26;12524:34;12510:12;;;12503:56;12582:4;12640:11;;;12634:18;12627:26;12620:34;12606:12;;;12599:56;12678:4;12726:11;;;12720:18;-1:-1:-1;;;;;12716:44:1;12702:12;;;12695:66;12790:4;12781:14;;;;12818:15;;;;12757:1;12217:9;12188:655;;;-1:-1:-1;12860:3:1;;11666:1203;-1:-1:-1;;;;;;;11666:1203:1:o;15312:786::-;15723:25;15718:3;15711:38;15693:3;15778:6;15772:13;15794:62;15849:6;15844:2;15839:3;15835:12;15828:4;15820:6;15816:17;15794:62;:::i;:::-;-1:-1:-1;;;15915:2:1;15875:16;;;15907:11;;;15900:40;15965:13;;15987:63;15965:13;16036:2;16028:11;;16021:4;16009:17;;15987:63;:::i;:::-;16070:17;16089:2;16066:26;;15312:786;-1:-1:-1;;;;15312:786:1:o;17444:643::-;17547:6;17600:2;17588:9;17579:7;17575:23;17571:32;17568:52;;;17616:1;17613;17606:12;17568:52;17649:2;17643:9;17691:2;17683:6;17679:15;17760:6;17748:10;17745:22;17724:18;17712:10;17709:34;17706:62;17703:88;;;17771:18;;:::i;:::-;17807:2;17800:22;17844:16;;17869:28;17844:16;17869:28;:::i;:::-;17906:21;;17972:2;17957:18;;17951:25;17985:30;17951:25;17985:30;:::i;:::-;18043:2;18031:15;;18024:32;18035:6;17444:643;-1:-1:-1;;;17444:643:1:o;20070:168::-;20110:7;20176:1;20172;20168:6;20164:14;20161:1;20158:21;20153:1;20146:9;20139:17;20135:45;20132:71;;;20183:18;;:::i;:::-;-1:-1:-1;20223:9:1;;20070:168::o;20243:136::-;20282:3;20310:5;20300:39;;20319:18;;:::i;:::-;-1:-1:-1;;;20355:18:1;;20243:136::o;21239:127::-;21300:10;21295:3;21291:20;21288:1;21281:31;21331:4;21328:1;21321:15;21355:4;21352:1;21345:15

Swarm Source

ipfs://ba03d8de51171bf66f6c164a69887bb858b499c4d76750815e0325403586ca6c
Loading