ETH Price: $3,268.86 (+0.80%)
Gas: 1 Gwei

Token

Ether Goats (BAAA)
 

Overview

Max Total Supply

525,000 BAAA

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 BAAA

Value
$0.00
0xfb6852d98304657cf888dc59fcdf167a20721e42
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EtherGoats

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-25
*/

// Telegram :  https://t.me/ethergoats
// Twitter : https://twitter.com/ethergoats
//SPDX-License-Identifier:UNLICENSE
pragma solidity 0.8.4;


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

pragma solidity 0.8.4;

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

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

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

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

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

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

pragma solidity 0.8.4;

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

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

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

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

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

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

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

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

pragma solidity 0.8.4;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

pragma solidity 0.8.4;

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

pragma solidity 0.8.4;

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

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

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

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

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

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    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}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

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

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

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

pragma solidity 0.8.4;

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

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

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

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

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

pragma solidity 0.8.4;

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

pragma solidity 0.8.4;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }


    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

pragma solidity 0.8.4;

contract EtherGoats is ERC20, AccessControl {
    using SafeMath for uint256;
      mapping(address => bool) public Limtcheck;

    IUniswapV2Router02 public uniswapV2Router;

    bytes32 private constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH");
    bytes32 private constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH");
    bytes32 private constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH");
    
    address public ownedBy;
    uint constant DENOMINATOR = 10000;
    uint public sellerFee = 400;
     uint public buyerFee = 400;
    uint public txFee = 0;
    uint public maxWallet=52500e18; 
    bool public inSwapAndLiquify = false;

    address public uniswapV2Pair;

    address public marketting_address=0x9ec583670070fFe884EDC90Ade9D8E3161D4392A;
    

    event SwapTokensForETH(
        uint256 amountIn,
        address[] path
    );

    constructor() ERC20("Ether Goats", "BAAA") {
        _mint(_msgSender(), 525000 * 10 ** decimals()); 
        _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER);
        _setupRole(DEFAULT_OWNER,_msgSender()); 
        _setupRole(EXCLUDED_HASH,_msgSender());
        _setupRole(EXCLUDED_HASH,address(this)); 
        ownedBy = _msgSender();
        _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); 
        Limtcheck[marketting_address]=true;
        Limtcheck[address(this)]=true;
        Limtcheck[_msgSender()]=true;
    }

    receive() external payable {
    }

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

  
    function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) {
        require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address");
        require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role");
        _setupRole(PAIR_HASH,pair);
    }

 
    function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role");
        _setupRole(EXCLUDED_HASH,account);
    }

    function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) {
        Limtcheck[_addr]=_status;
    }

   
    function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) {
        require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role");
        _revokeRole(PAIR_HASH,pair);
    }

    /**
     * @dev include to tax deduction
     */
    function includeTo(address account) external onlyRole(DEFAULT_OWNER) {
       require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role");
       _revokeRole(EXCLUDED_HASH,account);
    }

    /**
     * @dev transfers ownership - grant owner role for newOwner
     */
    function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) {
        require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)");
        require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,newOwner);
        ownedBy = newOwner;
    }

     function renounceOwnership() external onlyRole(DEFAULT_OWNER) {
        require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role");
        _revokeRole(DEFAULT_OWNER,_msgSender());
        _setupRole(DEFAULT_OWNER,address(0));
        ownedBy = address(0);
    }

    




    /**
     * @dev overrids transfer function 
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if(!Limtcheck[to]) {
            require(maxWallet >=  balanceOf(to).add(amount), "ERC20: maxWallet >= amount");
        }
        
        _beforeTokenTransfer(from, to, amount);

        uint256[3] memory _amounts;
        _amounts[0] = _balances[from];

        bool[2] memory status; 
        status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender()));
        status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to));
        
        require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance");        

        if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) {
            uint contractBalance = balanceOf(address(this));
            if(contractBalance > 0) {
                  if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) {
                    contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100);
                }
                _swapCollectedTokensToETH(contractBalance);
            }
        }

        if(status[0] && !status[1] && !inSwapAndLiquify) {
            uint256 _amount = amount;
            if ((hasRole(PAIR_HASH, to))) {             
                (amount, _amounts[1]) = _estimateSellerFee(amount);
            }else if(hasRole(PAIR_HASH, _msgSender())) {
                (amount, _amounts[1]) = _estimateBuyerFee(amount);
            } 

            _amounts[2] = _estimateTxFee(_amount);

            if(amount >= _amounts[2]) {
                amount -= _amounts[2];
            }
        }

        unchecked {
            _balances[from] = _amounts[0] - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);
         
        if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _payFee(from, _amounts[1]);
        }

        if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) {
            _burn(from, _amounts[2]);
        }

        _afterTokenTransfer(from, to, amount);
    }

   
    function _burn(address account, uint256 amount) internal override {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

 
    function _createPair(address _router) private {
        uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this), 
            uniswapV2Router.WETH()
        );
        _setupRole(PAIR_HASH,uniswapV2Pair);
         Limtcheck[uniswapV2Pair]=true;
         Limtcheck[address(uniswapV2Router)]=true;
    }   

 
    function _payFee(address _from, uint256 _amount) private {
        if(_amount > 0) {
            super._transfer(_from, address(this), _amount);
        }
    }


    function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketting_address,            block.timestamp
        );

        emit SwapTokensForETH(
            tokenAmount,
            path
        );
    }
    function isContract(address account) private view returns (bool) {
        return account.code.length > 0;
    }

 
    function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) {
        _transferAmount =  _value * (DENOMINATOR - sellerFee) / DENOMINATOR;
        _burnAmount =  _value * sellerFee / DENOMINATOR;
    }

       function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) {
        _transferAmount =  _value * (DENOMINATOR - buyerFee) / DENOMINATOR;
        _taxAmount =  _value * buyerFee / DENOMINATOR;
    }


    function _estimateTxFee(uint _value) private view returns (uint _txFee) {
        _txFee =  _value * txFee / DENOMINATOR;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","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":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","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":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","outputs":[],"stateMutability":"nonpayable","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":"marketting_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526101906009819055600a556000600b55690b1e07dc231427d00000600c55600d805460ff19169055600e80546001600160a01b031916739ec583670070ffe884edc90ade9d8e3161d4392a1790553480156200005f57600080fd5b50604080518082018252600b81526a457468657220476f61747360a81b6020808301918252835180850190945260048452634241414160e01b908401528151919291620000af9160039162000657565b508051620000c590600490602084019062000657565b505050620000ff620000dc6200021060201b60201c565b620000ea6012600a62000791565b620000f990620802c862000850565b62000214565b6200011b600060008051602062002c49833981519152620002fd565b6200013660008051602062002c498339815191523362000348565b6200015160008051602062002c298339815191523362000348565b6200016c60008051602062002c298339815191523062000348565b600880546001600160a01b031916331790556200019d737a250d5630b4cf539739df2c5dacb4c659f2488d62000354565b600e546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001e23390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008c5565b3390565b6001600160a01b0382166200026f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200028391906200072d565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b29084906200072d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620002f98282620005a0565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003a957600080fd5b505afa158015620003be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e49190620006fd565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044257600080fd5b505afa15801562000457573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200047d9190620006fd565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004c657600080fd5b505af1158015620004db573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005019190620006fd565b600d8054610100600160a81b0319166101006001600160a01b03938416810291909117918290556200055a927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d92919091041662000348565b50600d5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005ac82826200062a565b620002f95760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005e63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b828054620006659062000872565b90600052602060002090601f016020900481019282620006895760008555620006d4565b82601f10620006a457805160ff1916838001178555620006d4565b82800160010185558215620006d4579182015b82811115620006d4578251825591602001919060010190620006b7565b50620006e2929150620006e6565b5090565b5b80821115620006e25760008155600101620006e7565b6000602082840312156200070f578081fd5b81516001600160a01b038116811462000726578182fd5b9392505050565b60008219821115620007435762000743620008af565b500190565b600181815b80851115620007895781600019048211156200076d576200076d620008af565b808516156200077b57918102915b93841c93908002906200074d565b509250929050565b60006200072660ff841683600082620007ad5750600162000651565b81620007bc5750600062000651565b8160018114620007d55760028114620007e05762000800565b600191505062000651565b60ff841115620007f457620007f4620008af565b50506001821b62000651565b5060208310610133831016604e8410600b841016171562000825575081810a62000651565b62000831838362000748565b8060001904821115620008485762000848620008af565b029392505050565b60008160001904831182151516156200086d576200086d620008af565b500290565b600181811c908216806200088757607f821691505b60208210811415620008a957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61235480620008d56000396000f3fe6080604052600436106101f25760003560e01c8063711e9d651161010d578063addcf55f116100a0578063da8303361161006f578063da830336146105aa578063dd62ed3e146105ca578063e1f3d55a146105ea578063f2fde38b14610600578063f8b45b051461062057600080fd5b8063addcf55f14610534578063b6dd049214610554578063cf82046114610574578063d096cd081461058a57600080fd5b806395d89b41116100dc57806395d89b41146104ca578063a217fddf146104df578063a457c2d7146104f4578063a9059cbb1461051457600080fd5b8063711e9d6514610445578063715018a61461046557806372b7685d1461047a57806391d14854146104aa57600080fd5b8063313ce5671161018557806347061add1161015457806347061add146103b457806349bd5a5e146103d45780635de6c42f146103f957806370a082311461040f57600080fd5b8063313ce567146103365780633515b1af1461035257806336568abe14610374578063395093511461039457600080fd5b806318160ddd116101c157806318160ddd146102ad578063220f6696146102cc57806323b872dd146102e6578063248a9ca31461030657600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063095ea7b3146102555780631694505e1461027557600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b5061021e610219366004611f15565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861066d565b60405161022a9190611ff5565b34801561026157600080fd5b5061021e610270366004611eae565b6106ff565b34801561028157600080fd5b50600754610295906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b3480156102b957600080fd5b506002545b60405190815260200161022a565b3480156102d857600080fd5b50600d5461021e9060ff1681565b3480156102f257600080fd5b5061021e610301366004611e3d565b610717565b34801561031257600080fd5b506102be610321366004611ed9565b60009081526005602052604090206001015490565b34801561034257600080fd5b506040516012815260200161022a565b34801561035e57600080fd5b5061037261036d366004611dcd565b61073b565b005b34801561038057600080fd5b5061037261038f366004611ef1565b6107eb565b3480156103a057600080fd5b5061021e6103af366004611eae565b610865565b3480156103c057600080fd5b506103726103cf366004611dcd565b610887565b3480156103e057600080fd5b50600d546102959061010090046001600160a01b031681565b34801561040557600080fd5b506102be600a5481565b34801561041b57600080fd5b506102be61042a366004611dcd565b6001600160a01b031660009081526020819052604090205490565b34801561045157600080fd5b50600e54610295906001600160a01b031681565b34801561047157600080fd5b506103726109b2565b34801561048657600080fd5b5061021e610495366004611dcd565b60066020526000908152604090205460ff1681565b3480156104b657600080fd5b5061021e6104c5366004611ef1565b610a44565b3480156104d657600080fd5b50610248610a6f565b3480156104eb57600080fd5b506102be600081565b34801561050057600080fd5b5061021e61050f366004611eae565b610a7e565b34801561052057600080fd5b5061021e61052f366004611eae565b610af9565b34801561054057600080fd5b50600854610295906001600160a01b031681565b34801561056057600080fd5b5061037261056f366004611dcd565b610b07565b34801561058057600080fd5b506102be600b5481565b34801561059657600080fd5b506103726105a5366004611dcd565b610ba9565b3480156105b657600080fd5b506103726105c5366004611e7d565b610c53565b3480156105d657600080fd5b506102be6105e5366004611e05565b610c97565b3480156105f657600080fd5b506102be60095481565b34801561060c57600080fd5b5061037261061b366004611dcd565b610cc2565b34801561062c57600080fd5b506102be600c5481565b60006001600160e01b0319821663830d5e4960e01b148061066757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461067c90612258565b80601f01602080910402602001604051908101604052809291908181526020018280546106a890612258565b80156106f55780601f106106ca576101008083540402835291602001916106f5565b820191906000526020600020905b8154815290600101906020018083116106d857829003601f168201915b5050505050905090565b60003361070d818585610dd4565b5060019392505050565b600033610725858285610ef8565b610730858585610f72565b506001949350505050565b6000805160206122df833981519152610753816113d2565b61076b6000805160206122ff83398151915283610a44565b6107cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b6107e76000805160206122ff833981519152836113df565b5050565b6001600160a01b038116331461085b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107c6565b6107e782826113df565b60003361070d8185856108788383610c97565b61088291906121a7565b610dd4565b6000805160206122df83398151915261089f816113d2565b6001600160a01b0382163b61091c5760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e747261637420616464726573730000000000000060648201526084016107c6565b6109346000805160206122ff83398151915283610a44565b1561099a5760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b60648201526084016107c6565b6107e76000805160206122ff83398151915283611446565b6000805160206122df8339815191526109ca816113d2565b6109e36000805160206122df8339815191526000610a44565b15610a005760405162461bcd60e51b81526004016107c6906120b1565b610a186000805160206122df833981519152336113df565b610a316000805160206122df8339815191526000611446565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461067c90612258565b60003381610a8c8286610c97565b905083811015610aec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c6565b6107308286868403610dd4565b60003361070d818585610f72565b6000805160206122df833981519152610b1f816113d2565b610b376000805160206122bf83398151915283610a44565b610b915760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b60648201526084016107c6565b6107e76000805160206122bf833981519152836113df565b6000805160206122df833981519152610bc1816113d2565b610bd96000805160206122bf83398151915283610a44565b15610c3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b60648201526084016107c6565b6107e76000805160206122bf83398151915283611446565b6000805160206122df833981519152610c6b816113d2565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206122df833981519152610cda816113d2565b6001600160a01b038216610d4c5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b60648201526084016107c6565b610d646000805160206122df83398151915283610a44565b15610d815760405162461bcd60e51b81526004016107c6906120b1565b610d996000805160206122df833981519152336113df565b610db16000805160206122df83398151915283611446565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c6565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f048484610c97565b90506000198114610f6c5781811015610f5f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c6565b610f6c8484848403610dd4565b50505050565b6001600160a01b038316610f985760405162461bcd60e51b81526004016107c690612105565b6001600160a01b038216610fbe5760405162461bcd60e51b81526004016107c690612028565b6001600160a01b03821660009081526006602052604090205460ff166110585761100781611001846001600160a01b031660009081526020819052604090205490565b90611450565b600c5410156110585760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e7400000000000060448201526064016107c6565b611060611d91565b6001600160a01b0384166000908152602081905260409020548152611083611daf565b61109b6000805160206122df83398151915286610a44565b1580156110bd57506110bb6000805160206122df83398151915285610a44565b155b80156110de57506110dc6000805160206122df83398151915233610a44565b155b151581526110fa6000805160206122bf83398151915286610a44565b8061111857506111186000805160206122bf83398151915285610a44565b1515602082015281518311156111405760405162461bcd60e51b81526004016107c69061206b565b6111586000805160206122ff83398151915285610a44565b80156111675750600d5460ff16155b156112055730600090815260208190526040902054801561120357600d5461010090046001600160a01b03166000908152602081905260409020546111bd906064906111b7906002905b906114b6565b90611535565b8111156111fa57600d5461010090046001600160a01b03166000908152602081905260409020546111f7906064906111b7906002906111b1565b90505b61120381611577565b505b8051801561121557506020810151155b80156112245750600d5460ff16155b156112b457826112426000805160206122ff83398151915286610a44565b1561125c5761125084611750565b6020850152935061128a565b6112746000805160206122ff83398151915233610a44565b1561128a576112828461179e565b602085015293505b611293816117db565b6040840181905284106112b25760408301516112af90856121fe565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906112ef9084906121a7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161133b91815260200190565b60405180910390a3602082015115801590611354575080515b801561136257506020810151155b80156113715750600d5460ff16155b15611387576113878583600160200201516117f8565b604082015115801590611398575080515b80156113a657506020810151155b80156113b55750600d5460ff16155b156113cb576113cb858360026020020151611809565b5050505050565b6113dc8133611979565b50565b6113e98282610a44565b156107e75760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6107e782826119dd565b60008061145d83856121a7565b9050838110156114af5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107c6565b9392505050565b6000826114c557506000610667565b60006114d183856121df565b9050826114de85836121bf565b146114af5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107c6565b60006114af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a63565b600d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115c757634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561161b57600080fd5b505afa15801561162f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116539190611de9565b8160018151811061167457634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461169a9130911684610dd4565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116d79287926000928892911690429060040161216b565b600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161173a92919061214a565b60405180910390a15050600d805460ff19169055565b60008061271060095461271061176691906121fe565b61177090856121df565b61177a91906121bf565b91506127106009548461178d91906121df565b61179791906121bf565b9050915091565b600080612710600a546127106117b491906121fe565b6117be90856121df565b6117c891906121bf565b9150612710600a548461178d91906121df565b6000612710600b54836117ee91906121df565b61066791906121bf565b80156107e7576107e7823083611a9a565b6001600160a01b0382166118695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107c6565b6001600160a01b038216600090815260208190526040902054818110156118dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107c6565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5805484929061192e9084906121a7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6119838282610a44565b6107e75761199b816001600160a01b03166014611baf565b6119a6836020611baf565b6040516020016119b7929190611f80565b60408051601f198184030181529082905262461bcd60e51b82526107c691600401611ff5565b6119e78282610a44565b6107e75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611a1f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611a845760405162461bcd60e51b81526004016107c69190611ff5565b506000611a9184866121bf565b95945050505050565b6001600160a01b038316611ac05760405162461bcd60e51b81526004016107c690612105565b6001600160a01b038216611ae65760405162461bcd60e51b81526004016107c690612028565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b81526004016107c69061206b565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b569084906121a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3610f6c565b60606000611bbe8360026121df565b611bc99060026121a7565b67ffffffffffffffff811115611bef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c19576020820181803683370190505b509050600360fc1b81600081518110611c4257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611c7f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611ca38460026121df565b611cae9060016121a7565b90505b6001811115611d42576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611cf057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611d1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611d3b81612241565b9050611cb1565b5083156114af5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107c6565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611dde578081fd5b81356114af816122a9565b600060208284031215611dfa578081fd5b81516114af816122a9565b60008060408385031215611e17578081fd5b8235611e22816122a9565b91506020830135611e32816122a9565b809150509250929050565b600080600060608486031215611e51578081fd5b8335611e5c816122a9565b92506020840135611e6c816122a9565b929592945050506040919091013590565b60008060408385031215611e8f578182fd5b8235611e9a816122a9565b915060208301358015158114611e32578182fd5b60008060408385031215611ec0578182fd5b8235611ecb816122a9565b946020939093013593505050565b600060208284031215611eea578081fd5b5035919050565b60008060408385031215611f03578182fd5b823591506020830135611e32816122a9565b600060208284031215611f26578081fd5b81356001600160e01b0319811681146114af578182fd5b6000815180845260208085019450808401835b83811015611f755781516001600160a01b031687529582019590820190600101611f50565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611fb8816017850160208801612215565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611fe9816028840160208801612215565b01602801949350505050565b6020815260008251806020840152612014816040850160208701612215565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8281526040602082015260006121636040830184611f3d565b949350505050565b85815284602082015260a06040820152600061218a60a0830186611f3d565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156121ba576121ba612293565b500190565b6000826121da57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156121f9576121f9612293565b500290565b60008282101561221057612210612293565b500390565b60005b83811015612230578181015183820152602001612218565b83811115610f6c5750506000910152565b60008161225057612250612293565b506000190190565b600181811c9082168061226c57607f821691505b6020821081141561228d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146113dc57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212208df72de91b399885184298d2b292e7771c2b50a9dec93e7c02e55a543bb3bddd64736f6c63430008040033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3

Deployed Bytecode

0x6080604052600436106101f25760003560e01c8063711e9d651161010d578063addcf55f116100a0578063da8303361161006f578063da830336146105aa578063dd62ed3e146105ca578063e1f3d55a146105ea578063f2fde38b14610600578063f8b45b051461062057600080fd5b8063addcf55f14610534578063b6dd049214610554578063cf82046114610574578063d096cd081461058a57600080fd5b806395d89b41116100dc57806395d89b41146104ca578063a217fddf146104df578063a457c2d7146104f4578063a9059cbb1461051457600080fd5b8063711e9d6514610445578063715018a61461046557806372b7685d1461047a57806391d14854146104aa57600080fd5b8063313ce5671161018557806347061add1161015457806347061add146103b457806349bd5a5e146103d45780635de6c42f146103f957806370a082311461040f57600080fd5b8063313ce567146103365780633515b1af1461035257806336568abe14610374578063395093511461039457600080fd5b806318160ddd116101c157806318160ddd146102ad578063220f6696146102cc57806323b872dd146102e6578063248a9ca31461030657600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063095ea7b3146102555780631694505e1461027557600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b5061021e610219366004611f15565b610636565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861066d565b60405161022a9190611ff5565b34801561026157600080fd5b5061021e610270366004611eae565b6106ff565b34801561028157600080fd5b50600754610295906001600160a01b031681565b6040516001600160a01b03909116815260200161022a565b3480156102b957600080fd5b506002545b60405190815260200161022a565b3480156102d857600080fd5b50600d5461021e9060ff1681565b3480156102f257600080fd5b5061021e610301366004611e3d565b610717565b34801561031257600080fd5b506102be610321366004611ed9565b60009081526005602052604090206001015490565b34801561034257600080fd5b506040516012815260200161022a565b34801561035e57600080fd5b5061037261036d366004611dcd565b61073b565b005b34801561038057600080fd5b5061037261038f366004611ef1565b6107eb565b3480156103a057600080fd5b5061021e6103af366004611eae565b610865565b3480156103c057600080fd5b506103726103cf366004611dcd565b610887565b3480156103e057600080fd5b50600d546102959061010090046001600160a01b031681565b34801561040557600080fd5b506102be600a5481565b34801561041b57600080fd5b506102be61042a366004611dcd565b6001600160a01b031660009081526020819052604090205490565b34801561045157600080fd5b50600e54610295906001600160a01b031681565b34801561047157600080fd5b506103726109b2565b34801561048657600080fd5b5061021e610495366004611dcd565b60066020526000908152604090205460ff1681565b3480156104b657600080fd5b5061021e6104c5366004611ef1565b610a44565b3480156104d657600080fd5b50610248610a6f565b3480156104eb57600080fd5b506102be600081565b34801561050057600080fd5b5061021e61050f366004611eae565b610a7e565b34801561052057600080fd5b5061021e61052f366004611eae565b610af9565b34801561054057600080fd5b50600854610295906001600160a01b031681565b34801561056057600080fd5b5061037261056f366004611dcd565b610b07565b34801561058057600080fd5b506102be600b5481565b34801561059657600080fd5b506103726105a5366004611dcd565b610ba9565b3480156105b657600080fd5b506103726105c5366004611e7d565b610c53565b3480156105d657600080fd5b506102be6105e5366004611e05565b610c97565b3480156105f657600080fd5b506102be60095481565b34801561060c57600080fd5b5061037261061b366004611dcd565b610cc2565b34801561062c57600080fd5b506102be600c5481565b60006001600160e01b0319821663830d5e4960e01b148061066757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461067c90612258565b80601f01602080910402602001604051908101604052809291908181526020018280546106a890612258565b80156106f55780601f106106ca576101008083540402835291602001916106f5565b820191906000526020600020905b8154815290600101906020018083116106d857829003601f168201915b5050505050905090565b60003361070d818585610dd4565b5060019392505050565b600033610725858285610ef8565b610730858585610f72565b506001949350505050565b6000805160206122df833981519152610753816113d2565b61076b6000805160206122ff83398151915283610a44565b6107cf5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b6107e76000805160206122ff833981519152836113df565b5050565b6001600160a01b038116331461085b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107c6565b6107e782826113df565b60003361070d8185856108788383610c97565b61088291906121a7565b610dd4565b6000805160206122df83398151915261089f816113d2565b6001600160a01b0382163b61091c5760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e747261637420616464726573730000000000000060648201526084016107c6565b6109346000805160206122ff83398151915283610a44565b1561099a5760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b60648201526084016107c6565b6107e76000805160206122ff83398151915283611446565b6000805160206122df8339815191526109ca816113d2565b6109e36000805160206122df8339815191526000610a44565b15610a005760405162461bcd60e51b81526004016107c6906120b1565b610a186000805160206122df833981519152336113df565b610a316000805160206122df8339815191526000611446565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461067c90612258565b60003381610a8c8286610c97565b905083811015610aec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c6565b6107308286868403610dd4565b60003361070d818585610f72565b6000805160206122df833981519152610b1f816113d2565b610b376000805160206122bf83398151915283610a44565b610b915760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b60648201526084016107c6565b6107e76000805160206122bf833981519152836113df565b6000805160206122df833981519152610bc1816113d2565b610bd96000805160206122bf83398151915283610a44565b15610c3b5760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b60648201526084016107c6565b6107e76000805160206122bf83398151915283611446565b6000805160206122df833981519152610c6b816113d2565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206122df833981519152610cda816113d2565b6001600160a01b038216610d4c5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b60648201526084016107c6565b610d646000805160206122df83398151915283610a44565b15610d815760405162461bcd60e51b81526004016107c6906120b1565b610d996000805160206122df833981519152336113df565b610db16000805160206122df83398151915283611446565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c6565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f048484610c97565b90506000198114610f6c5781811015610f5f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c6565b610f6c8484848403610dd4565b50505050565b6001600160a01b038316610f985760405162461bcd60e51b81526004016107c690612105565b6001600160a01b038216610fbe5760405162461bcd60e51b81526004016107c690612028565b6001600160a01b03821660009081526006602052604090205460ff166110585761100781611001846001600160a01b031660009081526020819052604090205490565b90611450565b600c5410156110585760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e7400000000000060448201526064016107c6565b611060611d91565b6001600160a01b0384166000908152602081905260409020548152611083611daf565b61109b6000805160206122df83398151915286610a44565b1580156110bd57506110bb6000805160206122df83398151915285610a44565b155b80156110de57506110dc6000805160206122df83398151915233610a44565b155b151581526110fa6000805160206122bf83398151915286610a44565b8061111857506111186000805160206122bf83398151915285610a44565b1515602082015281518311156111405760405162461bcd60e51b81526004016107c69061206b565b6111586000805160206122ff83398151915285610a44565b80156111675750600d5460ff16155b156112055730600090815260208190526040902054801561120357600d5461010090046001600160a01b03166000908152602081905260409020546111bd906064906111b7906002905b906114b6565b90611535565b8111156111fa57600d5461010090046001600160a01b03166000908152602081905260409020546111f7906064906111b7906002906111b1565b90505b61120381611577565b505b8051801561121557506020810151155b80156112245750600d5460ff16155b156112b457826112426000805160206122ff83398151915286610a44565b1561125c5761125084611750565b6020850152935061128a565b6112746000805160206122ff83398151915233610a44565b1561128a576112828461179e565b602085015293505b611293816117db565b6040840181905284106112b25760408301516112af90856121fe565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906112ef9084906121a7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161133b91815260200190565b60405180910390a3602082015115801590611354575080515b801561136257506020810151155b80156113715750600d5460ff16155b15611387576113878583600160200201516117f8565b604082015115801590611398575080515b80156113a657506020810151155b80156113b55750600d5460ff16155b156113cb576113cb858360026020020151611809565b5050505050565b6113dc8133611979565b50565b6113e98282610a44565b156107e75760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6107e782826119dd565b60008061145d83856121a7565b9050838110156114af5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107c6565b9392505050565b6000826114c557506000610667565b60006114d183856121df565b9050826114de85836121bf565b146114af5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107c6565b60006114af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a63565b600d805460ff1916600117905560408051600280825260608201835260009260208301908036833701905050905030816000815181106115c757634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561161b57600080fd5b505afa15801561162f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116539190611de9565b8160018151811061167457634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461169a9130911684610dd4565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac947926116d79287926000928892911690429060040161216b565b600060405180830381600087803b1580156116f157600080fd5b505af1158015611705573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a7828260405161173a92919061214a565b60405180910390a15050600d805460ff19169055565b60008061271060095461271061176691906121fe565b61177090856121df565b61177a91906121bf565b91506127106009548461178d91906121df565b61179791906121bf565b9050915091565b600080612710600a546127106117b491906121fe565b6117be90856121df565b6117c891906121bf565b9150612710600a548461178d91906121df565b6000612710600b54836117ee91906121df565b61066791906121bf565b80156107e7576107e7823083611a9a565b6001600160a01b0382166118695760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107c6565b6001600160a01b038216600090815260208190526040902054818110156118dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107c6565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5805484929061192e9084906121a7565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6119838282610a44565b6107e75761199b816001600160a01b03166014611baf565b6119a6836020611baf565b6040516020016119b7929190611f80565b60408051601f198184030181529082905262461bcd60e51b82526107c691600401611ff5565b6119e78282610a44565b6107e75760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611a1f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611a845760405162461bcd60e51b81526004016107c69190611ff5565b506000611a9184866121bf565b95945050505050565b6001600160a01b038316611ac05760405162461bcd60e51b81526004016107c690612105565b6001600160a01b038216611ae65760405162461bcd60e51b81526004016107c690612028565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b81526004016107c69061206b565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b569084906121a7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3610f6c565b60606000611bbe8360026121df565b611bc99060026121a7565b67ffffffffffffffff811115611bef57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c19576020820181803683370190505b509050600360fc1b81600081518110611c4257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611c7f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611ca38460026121df565b611cae9060016121a7565b90505b6001811115611d42576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611cf057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611d1457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611d3b81612241565b9050611cb1565b5083156114af5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107c6565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611dde578081fd5b81356114af816122a9565b600060208284031215611dfa578081fd5b81516114af816122a9565b60008060408385031215611e17578081fd5b8235611e22816122a9565b91506020830135611e32816122a9565b809150509250929050565b600080600060608486031215611e51578081fd5b8335611e5c816122a9565b92506020840135611e6c816122a9565b929592945050506040919091013590565b60008060408385031215611e8f578182fd5b8235611e9a816122a9565b915060208301358015158114611e32578182fd5b60008060408385031215611ec0578182fd5b8235611ecb816122a9565b946020939093013593505050565b600060208284031215611eea578081fd5b5035919050565b60008060408385031215611f03578182fd5b823591506020830135611e32816122a9565b600060208284031215611f26578081fd5b81356001600160e01b0319811681146114af578182fd5b6000815180845260208085019450808401835b83811015611f755781516001600160a01b031687529582019590820190600101611f50565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611fb8816017850160208801612215565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611fe9816028840160208801612215565b01602801949350505050565b6020815260008251806020840152612014816040850160208701612215565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8281526040602082015260006121636040830184611f3d565b949350505050565b85815284602082015260a06040820152600061218a60a0830186611f3d565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156121ba576121ba612293565b500190565b6000826121da57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156121f9576121f9612293565b500290565b60008282101561221057612210612293565b500390565b60005b83811015612230578181015183820152602001612218565b83811115610f6c5750506000910152565b60008161225057612250612293565b506000190190565b600181811c9082168061226c57607f821691505b6020821081141561228d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146113dc57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da26469706673582212208df72de91b399885184298d2b292e7771c2b50a9dec93e7c02e55a543bb3bddd64736f6c63430008040033

Deployed Bytecode Sourcemap

32304:8637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10747:204;;;;;;;;;;-1:-1:-1;10747:204:0;;;;;:::i;:::-;;:::i;:::-;;;4655:14:1;;4648:22;4630:41;;4618:2;4603:18;10747:204:0;;;;;;;;19927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22278:201::-;;;;;;;;;;-1:-1:-1;22278:201:0;;;;;:::i;:::-;;:::i;32440:41::-;;;;;;;;;;-1:-1:-1;32440:41:0;;;;-1:-1:-1;;;;;32440:41:0;;;;;;-1:-1:-1;;;;;4446:32:1;;;4428:51;;4416:2;4401:18;32440:41:0;4383:102:1;21047:108:0;;;;;;;;;;-1:-1:-1;21135:12:0;;21047:108;;;4828:25:1;;;4816:2;4801:18;21047:108:0;4783:76:1;32936:36:0;;;;;;;;;;-1:-1:-1;32936:36:0;;;;;;;;23059:295;;;;;;;;;;-1:-1:-1;23059:295:0;;;;;:::i;:::-;;:::i;12583:131::-;;;;;;;;;;-1:-1:-1;12583:131:0;;;;;:::i;:::-;12657:7;12684:12;;;:6;:12;;;;;:22;;;;12583:131;20889:93;;;;;;;;;;-1:-1:-1;20889:93:0;;20972:2;15132:36:1;;15120:2;15105:18;20889:93:0;15087:87:1;34609:207:0;;;;;;;;;;-1:-1:-1;34609:207:0;;;;;:::i;:::-;;:::i;:::-;;13221:218;;;;;;;;;;-1:-1:-1;13221:218:0;;;;;:::i;:::-;;:::i;23763:238::-;;;;;;;;;;-1:-1:-1;23763:238:0;;;;;:::i;:::-;;:::i;33913:311::-;;;;;;;;;;-1:-1:-1;33913:311:0;;;;;:::i;:::-;;:::i;32981:28::-;;;;;;;;;;-1:-1:-1;32981:28:0;;;;;;;-1:-1:-1;;;;;32981:28:0;;;32837:26;;;;;;;;;;;;;;;;21218:127;;;;;;;;;;-1:-1:-1;21218:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21319:18:0;21292:7;21319:18;;;;;;;;;;;;21218:127;33018:76;;;;;;;;;;-1:-1:-1;33018:76:0;;;;-1:-1:-1;;;;;33018:76:0;;;35608:309;;;;;;;;;;;;;:::i;32390:41::-;;;;;;;;;;-1:-1:-1;32390:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11043:147;;;;;;;;;;-1:-1:-1;11043:147:0;;;;;:::i;:::-;;:::i;20146:104::-;;;;;;;;;;;;;:::i;10148:49::-;;;;;;;;;;-1:-1:-1;10148:49:0;10193:4;10148:49;;24504:436;;;;;;;;;;-1:-1:-1;24504:436:0;;;;;:::i;:::-;;:::i;21551:193::-;;;;;;;;;;-1:-1:-1;21551:193:0;;;;;:::i;:::-;;:::i;32733:22::-;;;;;;;;;;-1:-1:-1;32733:22:0;;;;-1:-1:-1;;;;;32733:22:0;;;34880:212;;;;;;;;;;-1:-1:-1;34880:212:0;;;;;:::i;:::-;;:::i;32870:21::-;;;;;;;;;;;;;;;;34235:223;;;;;;;;;;-1:-1:-1;34235:223:0;;;;;:::i;:::-;;:::i;34466:130::-;;;;;;;;;;-1:-1:-1;34466:130:0;;;;;:::i;:::-;;:::i;21807:151::-;;;;;;;;;;-1:-1:-1;21807:151:0;;;;;:::i;:::-;;:::i;32802:27::-;;;;;;;;;;;;;;;;35183:416;;;;;;;;;;-1:-1:-1;35183:416:0;;;;;:::i;:::-;;:::i;32898:30::-;;;;;;;;;;;;;;;;10747:204;10832:4;-1:-1:-1;;;;;;10856:47:0;;-1:-1:-1;;;10856:47:0;;:87;;-1:-1:-1;;;;;;;;;;8265:40:0;;;10907:36;10849:94;10747:204;-1:-1:-1;;10747:204:0:o;19927:100::-;19981:13;20014:5;20007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19927:100;:::o;22278:201::-;22361:4;7298:10;22417:32;7298:10;22433:7;22442:6;22417:8;:32::i;:::-;-1:-1:-1;22467:4:0;;22278:201;-1:-1:-1;;;22278:201:0:o;23059:295::-;23190:4;7298:10;23248:38;23264:4;7298:10;23279:6;23248:15;:38::i;:::-;23297:27;23307:4;23313:2;23317:6;23297:9;:27::i;:::-;-1:-1:-1;23342:4:0;;23059:295;-1:-1:-1;;;;23059:295:0:o;34609:207::-;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;34699:24:::1;-1:-1:-1::0;;;;;;;;;;;34718:4:0::1;34699:7;:24::i;:::-;34691:79;;;::::0;-1:-1:-1;;;34691:79:0;;12853:2:1;34691:79:0::1;::::0;::::1;12835:21:1::0;12892:2;12872:18;;;12865:30;12931:34;12911:18;;;12904:62;-1:-1:-1;;;12982:18:1;;;12975:40;13032:19;;34691:79:0::1;;;;;;;;;34781:27;-1:-1:-1::0;;;;;;;;;;;34803:4:0::1;34781:11;:27::i;:::-;34609:207:::0;;:::o;13221:218::-;-1:-1:-1;;;;;13317:23:0;;7298:10;13317:23;13309:83;;;;-1:-1:-1;;;13309:83:0;;13670:2:1;13309:83:0;;;13652:21:1;13709:2;13689:18;;;13682:30;13748:34;13728:18;;;13721:62;-1:-1:-1;;;13799:18:1;;;13792:45;13854:19;;13309:83:0;13642:237:1;13309:83:0;13405:26;13417:4;13423:7;13405:11;:26::i;23763:238::-;23851:4;7298:10;23907:64;7298:10;23923:7;23960:10;23932:25;7298:10;23923:7;23932:9;:25::i;:::-;:38;;;;:::i;:::-;23907:8;:64::i;33913:311::-;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;-1:-1:-1;;;;;40255:19:0;;;33996:86:::1;;;::::0;-1:-1:-1;;;33996:86:0;;6856:2:1;33996:86:0::1;::::0;::::1;6838:21:1::0;6895:2;6875:18;;;6868:30;6934:34;6914:18;;;6907:62;7005:27;6985:18;;;6978:55;7050:19;;33996:86:0::1;6828:247:1::0;33996:86:0::1;34102:24;-1:-1:-1::0;;;;;;;;;;;34121:4:0::1;34102:7;:24::i;:::-;34101:25;34093:86;;;::::0;-1:-1:-1;;;34093:86:0;;10400:2:1;34093:86:0::1;::::0;::::1;10382:21:1::0;10439:2;10419:18;;;10412:30;10478:34;10458:18;;;10451:62;-1:-1:-1;;;10529:18:1;;;10522:46;10585:19;;34093:86:0::1;10372:238:1::0;34093:86:0::1;34190:26;-1:-1:-1::0;;;;;;;;;;;34211:4:0::1;34190:10;:26::i;35608:309::-:0;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;35690:34:::1;-1:-1:-1::0;;;;;;;;;;;35721:1:0::1;35690:7;:34::i;:::-;35689:35;35681:100;;;;-1:-1:-1::0;;;35681:100:0::1;;;;;;;:::i;:::-;35792:39;-1:-1:-1::0;;;;;;;;;;;7298:10:0;35792:11:::1;:39::i;:::-;35842:36;-1:-1:-1::0;;;;;;;;;;;35875:1:0::1;35842:10;:36::i;:::-;-1:-1:-1::0;35889:7:0::1;:20:::0;;-1:-1:-1;;;;;;35889:20:0::1;::::0;;35608:309::o;11043:147::-;11129:4;11153:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11153:29:0;;;;;;;;;;;;;;;11043:147::o;20146:104::-;20202:13;20235:7;20228:14;;;;;:::i;24504:436::-;24597:4;7298:10;24597:4;24680:25;7298:10;24697:7;24680:9;:25::i;:::-;24653:52;;24744:15;24724:16;:35;;24716:85;;;;-1:-1:-1;;;24716:85:0;;13264:2:1;24716:85:0;;;13246:21:1;13303:2;13283:18;;;13276:30;13342:34;13322:18;;;13315:62;-1:-1:-1;;;13393:18:1;;;13386:35;13438:19;;24716:85:0;13236:227:1;24716:85:0;24837:60;24846:5;24853:7;24881:15;24862:16;:34;24837:8;:60::i;21551:193::-;21630:4;7298:10;21686:28;7298:10;21703:2;21707:6;21686:9;:28::i;34880:212::-;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;34967:31:::1;-1:-1:-1::0;;;;;;;;;;;34990:7:0::1;34967;:31::i;:::-;34959:81;;;::::0;-1:-1:-1;;;34959:81:0;;9174:2:1;34959:81:0::1;::::0;::::1;9156:21:1::0;9213:2;9193:18;;;9186:30;9252:34;9232:18;;;9225:62;-1:-1:-1;;;9303:18:1;;;9296:35;9348:19;;34959:81:0::1;9146:227:1::0;34959:81:0::1;35050:34;-1:-1:-1::0;;;;;;;;;;;35076:7:0::1;35050:11;:34::i;34235:223::-:0;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;34326:31:::1;-1:-1:-1::0;;;;;;;;;;;34349:7:0::1;34326;:31::i;:::-;34325:32;34317:89;;;::::0;-1:-1:-1;;;34317:89:0;;9987:2:1;34317:89:0::1;::::0;::::1;9969:21:1::0;10026:2;10006:18;;;9999:30;10065:34;10045:18;;;10038:62;-1:-1:-1;;;10116:18:1;;;10109:42;10168:19;;34317:89:0::1;9959:234:1::0;34317:89:0::1;34417:33;-1:-1:-1::0;;;;;;;;;;;34442:7:0::1;34417:10;:33::i;34466:130::-:0;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;-1:-1:-1;;;;;;34564:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;34564:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34466:130::o;21807:151::-;-1:-1:-1;;;;;21923:18:0;;;21896:7;21923:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21807:151::o;35183:416::-;-1:-1:-1;;;;;;;;;;;10639:16:0;10650:4;10639:10;:16::i;:::-;-1:-1:-1;;;;;35280:22:0;::::1;35272:86;;;::::0;-1:-1:-1;;;35272:86:0;;8754:2:1;35272:86:0::1;::::0;::::1;8736:21:1::0;8793:2;8773:18;;;8766:30;8832:34;8812:18;;;8805:62;-1:-1:-1;;;8883:18:1;;;8876:49;8942:19;;35272:86:0::1;8726:241:1::0;35272:86:0::1;35378:32;-1:-1:-1::0;;;;;;;;;;;35401:8:0::1;35378:7;:32::i;:::-;35377:33;35369:98;;;;-1:-1:-1::0;;;35369:98:0::1;;;;;;;:::i;:::-;35478:39;-1:-1:-1::0;;;;;;;;;;;7298:10:0;35792:11:::1;:39::i;35478:::-;35528:34;-1:-1:-1::0;;;;;;;;;;;35553:8:0::1;35528:10;:34::i;:::-;-1:-1:-1::0;35573:7:0::1;:18:::0;;-1:-1:-1;;;;;;35573:18:0::1;-1:-1:-1::0;;;;;35573:18:0;;;::::1;::::0;;;::::1;::::0;;35183:416::o;28138:380::-;-1:-1:-1;;;;;28274:19:0;;28266:68;;;;-1:-1:-1;;;28266:68:0;;12448:2:1;28266:68:0;;;12430:21:1;12487:2;12467:18;;;12460:30;12526:34;12506:18;;;12499:62;-1:-1:-1;;;12577:18:1;;;12570:34;12621:19;;28266:68:0;12420:226:1;28266:68:0;-1:-1:-1;;;;;28353:21:0;;28345:68;;;;-1:-1:-1;;;28345:68:0;;7282:2:1;28345:68:0;;;7264:21:1;7321:2;7301:18;;;7294:30;7360:34;7340:18;;;7333:62;-1:-1:-1;;;7411:18:1;;;7404:32;7453:19;;28345:68:0;7254:224:1;28345:68:0;-1:-1:-1;;;;;28426:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28478:32;;4828:25:1;;;28478:32:0;;4801:18:1;28478:32:0;;;;;;;28138:380;;;:::o;28809:453::-;28944:24;28971:25;28981:5;28988:7;28971:9;:25::i;:::-;28944:52;;-1:-1:-1;;29011:16:0;:37;29007:248;;29093:6;29073:16;:26;;29065:68;;;;-1:-1:-1;;;29065:68:0;;8396:2:1;29065:68:0;;;8378:21:1;8435:2;8415:18;;;8408:30;8474:31;8454:18;;;8447:59;8523:18;;29065:68:0;8368:179:1;29065:68:0;29177:51;29186:5;29193:7;29221:6;29202:16;:25;29177:8;:51::i;:::-;28809:453;;;;:::o;35998:2358::-;-1:-1:-1;;;;;36130:18:0;;36122:68;;;;-1:-1:-1;;;36122:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36209:16:0;;36201:64;;;;-1:-1:-1;;;36201:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36282:13:0;;;;;;:9;:13;;;;;;;;36278:124;;36334:25;36352:6;36334:13;36344:2;-1:-1:-1;;;;;21319:18:0;21292:7;21319:18;;;;;;;;;;;;21218:127;36334:13;:17;;:25::i;:::-;36320:9;;:39;;36312:78;;;;-1:-1:-1;;;36312:78:0;;7685:2:1;36312:78:0;;;7667:21:1;7724:2;7704:18;;;7697:30;7763:28;7743:18;;;7736:56;7809:18;;36312:78:0;7657:176:1;36312:78:0;36473:26;;:::i;:::-;-1:-1:-1;;;;;36524:15:0;;:9;:15;;;;;;;;;;;36510:29;;36552:21;;:::i;:::-;36599:28;-1:-1:-1;;;;;;;;;;;36622:4:0;36599:7;:28::i;:::-;36598:29;36597:64;;;;;36634:26;-1:-1:-1;;;;;;;;;;;36657:2:0;36634:7;:26::i;:::-;36633:27;36597:64;:107;;;;-1:-1:-1;36667:36:0;-1:-1:-1;;;;;;;;;;;7298:10:0;11043:147;:::i;36667:36::-;36666:37;36597:107;36585:119;;;;36728:28;-1:-1:-1;;;;;;;;;;;36751:4:0;36728:7;:28::i;:::-;36727:62;;;;36762:26;-1:-1:-1;;;;;;;;;;;36785:2:0;36762:7;:26::i;:::-;36715:74;;:9;;;:74;36818:11;;:21;-1:-1:-1;36818:21:0;36810:72;;;;-1:-1:-1;;;36810:72:0;;;;;;;:::i;:::-;36906:22;-1:-1:-1;;;;;;;;;;;36925:2:0;36906:7;:22::i;:::-;:43;;;;-1:-1:-1;36933:16:0;;;;36932:17;36906:43;36903:421;;;37007:4;36966:20;21319:18;;;;;;;;;;;37031:19;;37028:285;;37104:13;;;;;-1:-1:-1;;;;;37104:13:0;21292:7;21319:18;;;;;;;;;;;37094:40;;37130:3;;37094:31;;37123:1;;37094:24;:28;;:31::i;:::-;:35;;:40::i;:::-;37076:15;:58;37073:164;;;37187:13;;;;;-1:-1:-1;;;;;37187:13:0;21292:7;21319:18;;;;;;;;;;;37177:40;;37213:3;;37177:31;;37206:1;;37177:24;21218:127;37177:40;37159:58;;37073:164;37255:42;37281:15;37255:25;:42::i;:::-;36903:421;;37339:9;;:23;;;;-1:-1:-1;37353:9:0;;;;37352:10;37339:23;:44;;;;-1:-1:-1;37367:16:0;;;;37366:17;37339:44;37336:521;;;37418:6;37444:22;-1:-1:-1;;;;;;;;;;;37463:2:0;37444:7;:22::i;:::-;37439:254;;;37525:26;37544:6;37525:18;:26::i;:::-;37510:11;;;37501:50;;-1:-1:-1;37439:254:0;;;37575:32;-1:-1:-1;;;;;;;;;;;7298:10:0;11043:147;:::i;37575:32::-;37572:121;;;37652:25;37670:6;37652:17;:25::i;:::-;37637:11;;;37628:49;;-1:-1:-1;37572:121:0;37724:23;37739:7;37724:14;:23::i;:::-;37710:11;;;:37;;;37767:21;;37764:82;;37819:11;;;;37809:21;;;;:::i;:::-;;;37764:82;37336:521;;37912:11;;-1:-1:-1;;;;;37894:15:0;;;37921:1;37894:15;;;37912:11;37894:15;;;;;;;37912:20;;;;37894:38;;;37954:13;;;;;;;;:23;;37926:6;;37921:1;37954:23;;37926:6;;37954:23;:::i;:::-;;;;;;;;38010:2;-1:-1:-1;;;;;37995:26:0;38004:4;-1:-1:-1;;;;;37995:26:0;;38014:6;37995:26;;;;4828:25:1;;4816:2;4801:18;;4783:76;37995:26:0;;;;;;;;38047:11;;;;:15;;;;38046:30;;-1:-1:-1;38067:9:0;;38046:30;:44;;;;-1:-1:-1;38081:9:0;;;;38080:10;38046:44;:65;;;;-1:-1:-1;38095:16:0;;;;38094:17;38046:65;38043:123;;;38128:26;38136:4;38142:8;38151:1;38142:11;;;;38128:7;:26::i;:::-;38182:11;;;;:15;;;;38181:30;;-1:-1:-1;38202:9:0;;38181:30;:44;;;;-1:-1:-1;38216:9:0;;;;38215:10;38181:44;:65;;;;-1:-1:-1;38230:16:0;;;;38229:17;38181:65;38178:121;;;38263:24;38269:4;38275:8;38284:1;38275:11;;;;38263:5;:24::i;:::-;35998:2358;;;;;:::o;11494:105::-;11561:30;11572:4;7298:10;11561;:30::i;:::-;11494:105;:::o;15092:239::-;15176:22;15184:4;15190:7;15176;:22::i;:::-;15172:152;;;15247:5;15215:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15215:29:0;;;;;;;;;;:37;;-1:-1:-1;;15215:37:0;;;15272:40;7298:10;;15215:12;;15272:40;;15247:5;15272:40;15092:239;;:::o;14098:112::-;14177:25;14188:4;14194:7;14177:10;:25::i;30748:181::-;30806:7;;30838:5;30842:1;30838;:5;:::i;:::-;30826:17;;30867:1;30862;:6;;30854:46;;;;-1:-1:-1;;;30854:46:0;;8040:2:1;30854:46:0;;;8022:21:1;8079:2;8059:18;;;8052:30;8118:29;8098:18;;;8091:57;8165:18;;30854:46:0;8012:177:1;30854:46:0;30920:1;30748:181;-1:-1:-1;;;30748:181:0:o;31281:250::-;31339:7;31363:6;31359:47;;-1:-1:-1;31393:1:0;31386:8;;31359:47;31418:9;31430:5;31434:1;31430;:5;:::i;:::-;31418:17;-1:-1:-1;31463:1:0;31454:5;31458:1;31418:17;31454:5;:::i;:::-;:10;31446:56;;;;-1:-1:-1;;;31446:56:0;;10817:2:1;31446:56:0;;;10799:21:1;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:1;;;10939:31;10987:19;;31446:56:0;10789:223:1;31541:132:0;31599:7;31626:39;31630:1;31633;31626:39;;;;;;;;;;;;;;;;;:3;:39::i;39577:589::-;33823:16;:23;;-1:-1:-1;;33823:23:0;33842:4;33823:23;;;39688:16:::1;::::0;;39702:1:::1;39688:16:::0;;;;;::::1;::::0;;-1:-1:-1;;39688:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39688:16:0::1;39664:40;;39733:4;39715;39720:1;39715:7;;;;;;-1:-1:-1::0;;;39715:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;39715:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;39759:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;39759:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;39715:7;;39759:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39749:4;39754:1;39749:7;;;;;;-1:-1:-1::0;;;39749:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;39749:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;39826:15:::1;::::0;39794:62:::1;::::0;39811:4:::1;::::0;39826:15:::1;39844:11:::0;39794:8:::1;:62::i;:::-;39869:15;::::0;40011:18:::1;::::0;39869:199:::1;::::0;-1:-1:-1;;;39869:199:0;;-1:-1:-1;;;;;39869:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;39950:11;;39869:15:::1;::::0;39992:4;;40011:18;::::1;::::0;40042:15:::1;::::0;39869:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40086:72;40117:11;40143:4;40086:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33869:16:0;:24;;-1:-1:-1;;33869:24:0;;;39577:589::o;40297:247::-;40360:20;40382:16;32790:5;40454:9;;32790:5;40440:23;;;;:::i;:::-;40430:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;40411:67;;32790:5;40513:9;;40504:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;40489:47;;40297:247;;;:::o;40555:242::-;40617:20;40639:15;32790:5;40710:8;;32790:5;40696:22;;;;:::i;:::-;40686:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;40667:66;;32790:5;40767:8;;40758:6;:17;;;;:::i;40807:129::-;40866:11;32790:5;40909;;40900:6;:14;;;;:::i;:::-;:28;;;;:::i;39403:164::-;39474:11;;39471:89;;39502:46;39518:5;39533:4;39540:7;39502:15;:46::i;38369:601::-;-1:-1:-1;;;;;38454:21:0;;38446:67;;;;-1:-1:-1;;;38446:67:0;;11640:2:1;38446:67:0;;;11622:21:1;11679:2;11659:18;;;11652:30;11718:34;11698:18;;;11691:62;-1:-1:-1;;;11769:18:1;;;11762:31;11810:19;;38446:67:0;11612:223:1;38446:67:0;-1:-1:-1;;;;;38613:18:0;;38588:22;38613:18;;;;;;;;;;;38650:24;;;;38642:71;;;;-1:-1:-1;;;38642:71:0;;6453:2:1;38642:71:0;;;6435:21:1;6492:2;6472:18;;;6465:30;6531:34;6511:18;;;6504:62;-1:-1:-1;;;6582:18:1;;;6575:32;6624:19;;38642:71:0;6425:224:1;38642:71:0;-1:-1:-1;;;;;38749:18:0;;:9;:18;;;;;;;;;;38770:23;;;38749:44;;38815:21;;;;:31;;38787:6;;38749:9;38815:31;;38787:6;;38815:31;:::i;:::-;;;;-1:-1:-1;;38864:37:0;;4828:25:1;;;38890:1:0;;-1:-1:-1;;;;;38864:37:0;;;;;4816:2:1;4801:18;38864:37:0;;;;;;;29862:125;;;:::o;11889:505::-;11978:22;11986:4;11992:7;11978;:22::i;:::-;11973:414;;12166:41;12194:7;-1:-1:-1;;;;;12166:41:0;12204:2;12166:19;:41::i;:::-;12280:38;12308:4;12315:2;12280:19;:38::i;:::-;12071:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12071:270:0;;;;;;;;;;-1:-1:-1;;;12017:358:0;;;;;;;:::i;14722:238::-;14806:22;14814:4;14820:7;14806;:22::i;:::-;14801:152;;14845:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14845:29:0;;;;;;;;;:36;;-1:-1:-1;;14845:36:0;14877:4;14845:36;;;14928:12;7298:10;;7218:98;14928:12;-1:-1:-1;;;;;14901:40:0;14919:7;-1:-1:-1;;;;;14901:40:0;14913:4;14901:40;;;;;;;;;;14722:238;;:::o;31681:278::-;31767:7;31802:12;31795:5;31787:28;;;;-1:-1:-1;;;31787:28:0;;;;;;;;:::i;:::-;-1:-1:-1;31826:9:0;31838:5;31842:1;31838;:5;:::i;:::-;31826:17;31681:278;-1:-1:-1;;;;;31681:278:0:o;25419:671::-;-1:-1:-1;;;;;25550:18:0;;25542:68;;;;-1:-1:-1;;;25542:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25629:16:0;;25621:64;;;;-1:-1:-1;;;25621:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25771:15:0;;25749:19;25771:15;;;;;;;;;;;25805:21;;;;25797:72;;;;-1:-1:-1;;;25797:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25905:15:0;;;:9;:15;;;;;;;;;;;25923:20;;;25905:38;;25965:13;;;;;;;;:23;;25937:6;;25905:9;25965:23;;25937:6;;25965:23;:::i;:::-;;;;;;;;26021:2;-1:-1:-1;;;;;26006:26:0;26015:4;-1:-1:-1;;;;;26006:26:0;;26025:6;26006:26;;;;4828:25:1;;4816:2;4801:18;;4783:76;26006:26:0;;;;;;;;26045:37;29862:125;16891:451;16966:13;16992:19;17024:10;17028:6;17024:1;:10;:::i;:::-;:14;;17037:1;17024:14;:::i;:::-;17014:25;;;;;;-1:-1:-1;;;17014:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17014:25:0;;16992:47;;-1:-1:-1;;;17050:6:0;17057:1;17050:9;;;;;;-1:-1:-1;;;17050:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17050:15:0;;;;;;;;;-1:-1:-1;;;17076:6:0;17083:1;17076:9;;;;;;-1:-1:-1;;;17076:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17076:15:0;;;;;;;;-1:-1:-1;17107:9:0;17119:10;17123:6;17119:1;:10;:::i;:::-;:14;;17132:1;17119:14;:::i;:::-;17107:26;;17102:135;17139:1;17135;:5;17102:135;;;-1:-1:-1;;;17187:5:0;17195:3;17187:11;17174:25;;;;;-1:-1:-1;;;17174:25:0;;;;;;;;;;;;17162:6;17169:1;17162:9;;;;;;-1:-1:-1;;;17162:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;17162:37:0;;;;;;;;-1:-1:-1;17224:1:0;17214:11;;;;;17142:3;;;:::i;:::-;;;17102:135;;;-1:-1:-1;17255:10:0;;17247:55;;;;-1:-1:-1;;;17247:55:0;;5688:2:1;17247:55:0;;;5670:21:1;;;5707:18;;;5700:30;5766:34;5746:18;;;5739:62;5818:18;;17247:55:0;5660:182:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:436::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1775:15;;1768:23;1756:36;;1746:2;;1811:6;1803;1796:22;1857:325;1925:6;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:2;;;2007:6;1999;1992:22;1954:2;2051:9;2038:23;2070:31;2095:5;2070:31;:::i;:::-;2120:5;2172:2;2157:18;;;;2144:32;;-1:-1:-1;;;1944:238:1:o;2187:190::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:2;;;2320:6;2312;2305:22;2267:2;-1:-1:-1;2348:23:1;;2257:120;-1:-1:-1;2257:120:1:o;2382:325::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:2;;;2532:6;2524;2517:22;2479:2;2573:9;2560:23;2550:33;;2633:2;2622:9;2618:18;2605:32;2646:31;2671:5;2646:31;:::i;2712:306::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:2;;;2844:6;2836;2829:22;2791:2;2875:23;;-1:-1:-1;;;;;;2927:32:1;;2917:43;;2907:2;;2979:6;2971;2964:22;3023:463;3076:3;3114:5;3108:12;3141:6;3136:3;3129:19;3167:4;3196:2;3191:3;3187:12;3180:19;;3233:2;3226:5;3222:14;3254:3;3266:195;3280:6;3277:1;3274:13;3266:195;;;3345:13;;-1:-1:-1;;;;;3341:39:1;3329:52;;3401:12;;;;3436:15;;;;3377:1;3295:9;3266:195;;;-1:-1:-1;3477:3:1;;3084:402;-1:-1:-1;;;;;3084:402:1:o;3491:786::-;3902:25;3897:3;3890:38;3872:3;3957:6;3951:13;3973:62;4028:6;4023:2;4018:3;4014:12;4007:4;3999:6;3995:17;3973:62;:::i;:::-;-1:-1:-1;;;4094:2:1;4054:16;;;4086:11;;;4079:40;4144:13;;4166:63;4144:13;4215:2;4207:11;;4200:4;4188:17;;4166:63;:::i;:::-;4249:17;4268:2;4245:26;;3880:397;-1:-1:-1;;;;3880:397:1:o;5098:383::-;5247:2;5236:9;5229:21;5210:4;5279:6;5273:13;5322:6;5317:2;5306:9;5302:18;5295:34;5338:66;5397:6;5392:2;5381:9;5377:18;5372:2;5364:6;5360:15;5338:66;:::i;:::-;5465:2;5444:15;-1:-1:-1;;5440:29:1;5425:45;;;;5472:2;5421:54;;5219:262;-1:-1:-1;;5219:262:1:o;5847:399::-;6049:2;6031:21;;;6088:2;6068:18;;;6061:30;6127:34;6122:2;6107:18;;6100:62;-1:-1:-1;;;6193:2:1;6178:18;;6171:33;6236:3;6221:19;;6021:225::o;9378:402::-;9580:2;9562:21;;;9619:2;9599:18;;;9592:30;9658:34;9653:2;9638:18;;9631:62;-1:-1:-1;;;9724:2:1;9709:18;;9702:36;9770:3;9755:19;;9552:228::o;11017:416::-;11219:2;11201:21;;;11258:2;11238:18;;;11231:30;11297:34;11292:2;11277:18;;11270:62;-1:-1:-1;;;11363:2:1;11348:18;;11341:50;11423:3;11408:19;;11191:242::o;11840:401::-;12042:2;12024:21;;;12081:2;12061:18;;;12054:30;12120:34;12115:2;12100:18;;12093:62;-1:-1:-1;;;12186:2:1;12171:18;;12164:35;12231:3;12216:19;;12014:227::o;14066:332::-;14273:6;14262:9;14255:25;14316:2;14311;14300:9;14296:18;14289:30;14236:4;14336:56;14388:2;14377:9;14373:18;14365:6;14336:56;:::i;:::-;14328:64;14245:153;-1:-1:-1;;;;14245:153:1:o;14403:582::-;14702:6;14691:9;14684:25;14745:6;14740:2;14729:9;14725:18;14718:34;14788:3;14783:2;14772:9;14768:18;14761:31;14665:4;14809:57;14861:3;14850:9;14846:19;14838:6;14809:57;:::i;:::-;-1:-1:-1;;;;;14902:32:1;;;;14897:2;14882:18;;14875:60;-1:-1:-1;14966:3:1;14951:19;14944:35;14801:65;14674:311;-1:-1:-1;;;14674:311:1:o;15179:128::-;15219:3;15250:1;15246:6;15243:1;15240:13;15237:2;;;15256:18;;:::i;:::-;-1:-1:-1;15292:9:1;;15227:80::o;15312:217::-;15352:1;15378;15368:2;;-1:-1:-1;;;15403:31:1;;15457:4;15454:1;15447:15;15485:4;15410:1;15475:15;15368:2;-1:-1:-1;15514:9:1;;15358:171::o;15534:168::-;15574:7;15640:1;15636;15632:6;15628:14;15625:1;15622:21;15617:1;15610:9;15603:17;15599:45;15596:2;;;15647:18;;:::i;:::-;-1:-1:-1;15687:9:1;;15586:116::o;15707:125::-;15747:4;15775:1;15772;15769:8;15766:2;;;15780:18;;:::i;:::-;-1:-1:-1;15817:9:1;;15756:76::o;15837:258::-;15909:1;15919:113;15933:6;15930:1;15927:13;15919:113;;;16009:11;;;16003:18;15990:11;;;15983:39;15955:2;15948:10;15919:113;;;16050:6;16047:1;16044:13;16041:2;;;-1:-1:-1;;16085:1:1;16067:16;;16060:27;15890:205::o;16100:136::-;16139:3;16167:5;16157:2;;16176:18;;:::i;:::-;-1:-1:-1;;;16212:18:1;;16147:89::o;16241:380::-;16320:1;16316:12;;;;16363;;;16384:2;;16438:4;16430:6;16426:17;16416:27;;16384:2;16491;16483:6;16480:14;16460:18;16457:38;16454:2;;;16537:10;16532:3;16528:20;16525:1;16518:31;16572:4;16569:1;16562:15;16600:4;16597:1;16590:15;16454:2;;16296:325;;;:::o;16626:127::-;16687:10;16682:3;16678:20;16675:1;16668:31;16718:4;16715:1;16708:15;16742:4;16739:1;16732:15;16758:131;-1:-1:-1;;;;;16833:31:1;;16823:42;;16813:2;;16879:1;16876;16869:12

Swarm Source

ipfs://8df72de91b399885184298d2b292e7771c2b50a9dec93e7c02e55a543bb3bddd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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