ETH Price: $3,108.62 (+1.22%)
Gas: 3 Gwei

Token

Eggplant Inu (๐Ÿ†)
 

Overview

Max Total Supply

69,000,000 ๐Ÿ†

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
314,982.505438050847068737 ๐Ÿ†

Value
$0.00
0xb4d2956b58ade98c8c633f34013f92f3879cadeb
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:
Eggplant

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

/*

    https://t.me/EggplantInuPortal
    https://eggplantinu.com/

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Eggplant is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public teamWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyTeamFee;
    uint256 public buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellTeamFee;
    uint256 public sellMarketingFee;

	uint256 public tokensForTeam;
    uint256 public tokensForMarketing;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Eggplant Inu", "\xF0\x9F\x8D\x86") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyTeamFee = 1;
        uint256 _buyMarketingFee = 4;

        uint256 _sellTeamFee = 1;
        uint256 _sellMarketingFee = 4;

        uint256 totalSupply = 69000000 * 1e18;

        maxTransactionAmount = 1380000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 1380000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyMarketingFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellMarketingFee + sellTeamFee;

        marketingWallet = address(0xc8c50a13b7438a4B272f909Ead8463eaF9CaFad4); // set as marketing wallet
        teamWallet = address(0xc038E6372353EB88C1a6B0C0C7601EbE384c1112); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(teamWallet,true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(teamWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    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 (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing + tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap);

        (success, ) = address(teamWallet).call{value: ethForTeam}("");                
        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
        
        tokensForMarketing = 0;
        tokensForTeam = 0;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600c81526020017f456767706c616e7420496e7500000000000000000000000000000000000000008152506040518060400160405280600481526020017ff09f8d860000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b8c565b5080600490805190602001906200011b92919062000b8c565b5050506200013e620001326200064c60201b60201c565b6200065460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200071a60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000ca6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000ca6565b6040518363ffffffff1660e01b8152600401620002bd92919062000ce9565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000ca6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200071a60201b60201c565b6200036060a05160016200080460201b60201c565b60006001905060006004905060006001905060006004905060006a3913517ebd3c0c6500000090506a012439f32cbea4168000006008819055506a012439f32cbea416800000600a81905550612710600a82620003be919062000d4f565b620003ca919062000ddf565b6009819055508360108190555084600f81905550600f54601054620003f0919062000e17565b600e81905550816013819055508260128190555060125460135462000416919062000e17565b60118190555073c8c50a13b7438a4b272f909ead8463eaf9cafad4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c038e6372353eb88c1a6b0c0c7601ebe384c1112600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e8620004da620008a560201b60201c565b6001620008cf60201b60201c565b6200051d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008cf60201b60201c565b62000552600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008cf60201b60201c565b62000565306001620008cf60201b60201c565b6200057a61dead6001620008cf60201b60201c565b6200059c6200058e620008a560201b60201c565b60016200071a60201b60201c565b620005d1600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200071a60201b60201c565b62000606600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200071a60201b60201c565b620006193060016200071a60201b60201c565b6200062e61dead60016200071a60201b60201c565b62000640338262000a0960201b60201c565b50505050505062001036565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200072a6200064c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000750620008a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a09062000ed5565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008df6200064c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000905620008a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009559062000ed5565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009fd919062000f14565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a739062000f81565b60405180910390fd5b62000a906000838362000b8260201b60201c565b806002600082825462000aa4919062000e17565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000afb919062000e17565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b62919062000fb4565b60405180910390a362000b7e6000838362000b8760201b60201c565b5050565b505050565b505050565b82805462000b9a9062001000565b90600052602060002090601f01602090048101928262000bbe576000855562000c0a565b82601f1062000bd957805160ff191683800117855562000c0a565b8280016001018555821562000c0a579182015b8281111562000c0957825182559160200191906001019062000bec565b5b50905062000c19919062000c1d565b5090565b5b8082111562000c3857600081600090555060010162000c1e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c6e8262000c41565b9050919050565b62000c808162000c61565b811462000c8c57600080fd5b50565b60008151905062000ca08162000c75565b92915050565b60006020828403121562000cbf5762000cbe62000c3c565b5b600062000ccf8482850162000c8f565b91505092915050565b62000ce38162000c61565b82525050565b600060408201905062000d00600083018562000cd8565b62000d0f602083018462000cd8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d5c8262000d16565b915062000d698362000d16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000da55762000da462000d20565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dec8262000d16565b915062000df98362000d16565b92508262000e0c5762000e0b62000db0565b5b828204905092915050565b600062000e248262000d16565b915062000e318362000d16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e695762000e6862000d20565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ebd60208362000e74565b915062000eca8262000e85565b602082019050919050565b6000602082019050818103600083015262000ef08162000eae565b9050919050565b60008115159050919050565b62000f0e8162000ef7565b82525050565b600060208201905062000f2b600083018462000f03565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f69601f8362000e74565b915062000f768262000f31565b602082019050919050565b6000602082019050818103600083015262000f9c8162000f5a565b9050919050565b62000fae8162000d16565b82525050565b600060208201905062000fcb600083018462000fa3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200101957607f821691505b6020821081141562001030576200102f62000fd1565b5b50919050565b60805160a051613f486200108660003960008181610d16015281816112e00152611dc3015260008181610b2f01528181611d6b01528181612ce701528181612dc80152612def0152613f486000f3fe60806040526004361061026b5760003560e01c80638a8c523c11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461094b578063e2f4560514610988578063e884f260146109b3578063f2fde38b146109de578063f8b45b0514610a07578063fde83a3414610a3257610272565b8063c024666814610876578063c876d0b91461089f578063c8c8ebe4146108ca578063d729715f146108f5578063d85ba0631461092057610272565b80639a7a23d6116101085780639a7a23d6146107405780639c2e4ac614610769578063a457c2d714610794578063a9059cbb146107d1578063b62496f51461080e578063bbc0c7421461084b57610272565b80638a8c523c1461067f5780638da5cb5b1461069657806392136913146106c1578063924de9b7146106ec57806395d89b411461071557610272565b80634a62bb65116101dd57806370a08231116101a157806370a0823114610581578063715018a6146105be578063751039fc146105d55780637571336a1461060057806375f0a874146106295780637bce5a041461065457610272565b80634a62bb65146104985780634fbee193146104c357806359927044146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631f3fed8f1161022f5780631f3fed8f1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a5d565b6040516102999190612f34565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612fef565b610aef565b6040516102d6919061304a565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613065565b610b0d565b604051610313919061304a565b60405180910390f35b34801561032857600080fd5b50610331610b2d565b60405161033e91906130f1565b60405180910390f35b34801561035357600080fd5b5061035c610b51565b604051610369919061311b565b60405180910390f35b34801561037e57600080fd5b50610387610b5b565b604051610394919061311b565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613136565b610b61565b6040516103d1919061304a565b60405180910390f35b3480156103e657600080fd5b506103ef610c59565b6040516103fc9190613198565b60405180910390f35b34801561041157600080fd5b5061041a610c5f565b60405161042791906131cf565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612fef565b610c68565b604051610464919061304a565b60405180910390f35b34801561047957600080fd5b50610482610d14565b60405161048f9190613198565b60405180910390f35b3480156104a457600080fd5b506104ad610d38565b6040516104ba919061304a565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613065565b610d4b565b6040516104f7919061304a565b60405180910390f35b34801561050c57600080fd5b50610515610da1565b6040516105229190613198565b60405180910390f35b34801561053757600080fd5b50610540610dc7565b60405161054d919061311b565b60405180910390f35b34801561056257600080fd5b5061056b610dcd565b604051610578919061304a565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613065565b610de0565b6040516105b5919061311b565b60405180910390f35b3480156105ca57600080fd5b506105d3610e28565b005b3480156105e157600080fd5b506105ea610eb0565b6040516105f7919061304a565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613216565b610f50565b005b34801561063557600080fd5b5061063e611027565b60405161064b9190613198565b60405180910390f35b34801561066057600080fd5b5061066961104d565b604051610676919061311b565b60405180910390f35b34801561068b57600080fd5b50610694611053565b005b3480156106a257600080fd5b506106ab611107565b6040516106b89190613198565b60405180910390f35b3480156106cd57600080fd5b506106d6611131565b6040516106e3919061311b565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190613256565b611137565b005b34801561072157600080fd5b5061072a6111d0565b6040516107379190612f34565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613216565b611262565b005b34801561077557600080fd5b5061077e61137b565b60405161078b919061311b565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190612fef565b611381565b6040516107c8919061304a565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612fef565b61146c565b604051610805919061304a565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613065565b61148a565b604051610842919061304a565b60405180910390f35b34801561085757600080fd5b506108606114aa565b60405161086d919061304a565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613216565b6114bd565b005b3480156108ab57600080fd5b506108b46115e2565b6040516108c1919061304a565b60405180910390f35b3480156108d657600080fd5b506108df6115f5565b6040516108ec919061311b565b60405180910390f35b34801561090157600080fd5b5061090a6115fb565b604051610917919061311b565b60405180910390f35b34801561092c57600080fd5b50610935611601565b604051610942919061311b565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613283565b611607565b60405161097f919061311b565b60405180910390f35b34801561099457600080fd5b5061099d61168e565b6040516109aa919061311b565b60405180910390f35b3480156109bf57600080fd5b506109c8611694565b6040516109d5919061304a565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613065565b611734565b005b348015610a1357600080fd5b50610a1c61182c565b604051610a29919061311b565b60405180910390f35b348015610a3e57600080fd5b50610a47611832565b604051610a54919061311b565b60405180910390f35b606060038054610a6c906132f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a98906132f2565b8015610ae55780601f10610aba57610100808354040283529160200191610ae5565b820191906000526020600020905b815481529060010190602001808311610ac857829003601f168201915b5050505050905090565b6000610b03610afc611838565b8484611840565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60155481565b6000610b6e848484611a0b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bb9611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613396565b60405180910390fd5b610c4d85610c45611838565b858403611840565b60019150509392505050565b61dead81565b60006012905090565b6000610d0a610c75611838565b848460016000610c83611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d0591906133e5565b611840565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e30611838565b73ffffffffffffffffffffffffffffffffffffffff16610e4e611107565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613487565b60405180910390fd5b610eae600061263f565b565b6000610eba611838565b73ffffffffffffffffffffffffffffffffffffffff16610ed8611107565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613487565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f58611838565b73ffffffffffffffffffffffffffffffffffffffff16610f76611107565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613487565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61105b611838565b73ffffffffffffffffffffffffffffffffffffffff16611079611107565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613487565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b61113f611838565b73ffffffffffffffffffffffffffffffffffffffff1661115d611107565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613487565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546111df906132f2565b80601f016020809104026020016040519081016040528092919081815260200182805461120b906132f2565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b5050505050905090565b61126a611838565b73ffffffffffffffffffffffffffffffffffffffff16611288611107565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613487565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613519565b60405180910390fd5b6113778282612705565b5050565b600f5481565b60008060016000611390611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561144d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611444906135ab565b60405180910390fd5b611461611458611838565b85858403611840565b600191505092915050565b6000611480611479611838565b8484611a0b565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6114c5611838565b73ffffffffffffffffffffffffffffffffffffffff166114e3611107565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613487565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115d6919061304a565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b60125481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061169e611838565b73ffffffffffffffffffffffffffffffffffffffff166116bc611107565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613487565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61173c611838565b73ffffffffffffffffffffffffffffffffffffffff1661175a611107565b73ffffffffffffffffffffffffffffffffffffffff16146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790613487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061363d565b60405180910390fd5b6118298161263f565b50565b600a5481565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a7906136cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613761565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119fe919061311b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906137f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613885565b60405180910390fd5b6000811415611b0557611b00838360006127a6565b61263a565b600b60009054906101000a900460ff16156121c857611b22611107565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b905750611b60611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bc95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c03575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1c5750600560149054906101000a900460ff16155b156121c757600b60019054906101000a900460ff16611d1657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cd65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906138f1565b60405180910390fd5b5b600d60009054906101000a900460ff1615611ede57611d33611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611dba57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611edd5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906139a9565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f815750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561202857600854811115611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613a3b565b60405180910390fd5b600a54611fd783610de0565b82611fe291906133e5565b1115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613aa7565b60405180910390fd5b6121c6565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120cb5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211a57600854811115612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90613b39565b60405180910390fd5b6121c5565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121c457600a5461217783610de0565b8261218291906133e5565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613aa7565b60405180910390fd5b5b5b5b5b5b60006121d330610de0565b9050600060095482101590508080156121f85750600b60029054906101000a900460ff165b80156122115750600560149054906101000a900460ff16155b80156122675750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122bd5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123135750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612357576001600560146101000a81548160ff02191690831515021790555061233b612a27565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061240d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241757600090505b6000811561262a57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561247a57506000601154115b15612514576124a7606461249960115488612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050601154601254826124ba9190613b59565b6124c49190613be2565b601460008282546124d591906133e5565b92505081905550601154601354826124ed9190613b59565b6124f79190613be2565b6015600082825461250891906133e5565b92505081905550612606565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561256f57506000600e54115b156126055761259c606461258e600e5488612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050600e54600f54826125af9190613b59565b6125b99190613be2565b601460008282546125ca91906133e5565b92505081905550600e54601054826125e29190613b59565b6125ec9190613be2565b601560008282546125fd91906133e5565b925050819055505b5b600081111561261b5761261a8730836127a6565b5b80856126279190613c13565b94505b6126358787876127a6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280d906137f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d90613885565b60405180910390fd5b612891838383612c3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290e90613cb9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129aa91906133e5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a0e919061311b565b60405180910390a3612a21848484612c43565b50505050565b6000612a3230610de0565b90506000601454601554612a4691906133e5565b9050600080831480612a585750600082145b15612a6557505050612c10565b6014600954612a749190613b59565b831115612a8d576014600954612a8a9190613b59565b92505b6000479050612a9b84612c48565b6000612ab08247612e8590919063ffffffff16565b90506000612adb85612acd60145485612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b2390613d0a565b60006040518083038185875af1925050503d8060008114612b60576040519150601f19603f3d011682016040523d82523d6000602084013e612b65565b606091505b505080945050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bb190613d0a565b60006040518083038185875af1925050503d8060008114612bee576040519150601f19603f3d011682016040523d82523d6000602084013e612bf3565b606091505b505080945050600060158190555060006014819055505050505050505b565b60008183612c209190613b59565b905092915050565b60008183612c369190613be2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c6557612c64613d1f565b5b604051908082528060200260200182016040528015612c935781602001602082028036833780820191505090505b5090503081600081518110612cab57612caa613d4e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d749190613d92565b81600181518110612d8857612d87613d4e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ded307f000000000000000000000000000000000000000000000000000000000000000084611840565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e4f959493929190613eb8565b600060405180830381600087803b158015612e6957600080fd5b505af1158015612e7d573d6000803e3d6000fd5b505050505050565b60008183612e939190613c13565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed5578082015181840152602081019050612eba565b83811115612ee4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0682612e9b565b612f108185612ea6565b9350612f20818560208601612eb7565b612f2981612eea565b840191505092915050565b60006020820190508181036000830152612f4e8184612efb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8682612f5b565b9050919050565b612f9681612f7b565b8114612fa157600080fd5b50565b600081359050612fb381612f8d565b92915050565b6000819050919050565b612fcc81612fb9565b8114612fd757600080fd5b50565b600081359050612fe981612fc3565b92915050565b6000806040838503121561300657613005612f56565b5b600061301485828601612fa4565b925050602061302585828601612fda565b9150509250929050565b60008115159050919050565b6130448161302f565b82525050565b600060208201905061305f600083018461303b565b92915050565b60006020828403121561307b5761307a612f56565b5b600061308984828501612fa4565b91505092915050565b6000819050919050565b60006130b76130b26130ad84612f5b565b613092565b612f5b565b9050919050565b60006130c98261309c565b9050919050565b60006130db826130be565b9050919050565b6130eb816130d0565b82525050565b600060208201905061310660008301846130e2565b92915050565b61311581612fb9565b82525050565b6000602082019050613130600083018461310c565b92915050565b60008060006060848603121561314f5761314e612f56565b5b600061315d86828701612fa4565b935050602061316e86828701612fa4565b925050604061317f86828701612fda565b9150509250925092565b61319281612f7b565b82525050565b60006020820190506131ad6000830184613189565b92915050565b600060ff82169050919050565b6131c9816131b3565b82525050565b60006020820190506131e460008301846131c0565b92915050565b6131f38161302f565b81146131fe57600080fd5b50565b600081359050613210816131ea565b92915050565b6000806040838503121561322d5761322c612f56565b5b600061323b85828601612fa4565b925050602061324c85828601613201565b9150509250929050565b60006020828403121561326c5761326b612f56565b5b600061327a84828501613201565b91505092915050565b6000806040838503121561329a57613299612f56565b5b60006132a885828601612fa4565b92505060206132b985828601612fa4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330a57607f821691505b6020821081141561331e5761331d6132c3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613380602883612ea6565b915061338b82613324565b604082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f082612fb9565b91506133fb83612fb9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134305761342f6133b6565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613471602083612ea6565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613503603983612ea6565b915061350e826134a7565b604082019050919050565b60006020820190508181036000830152613532816134f6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613595602583612ea6565b91506135a082613539565b604082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613627602683612ea6565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136b9602483612ea6565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061374b602283612ea6565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dd602583612ea6565b91506137e882613781565b604082019050919050565b6000602082019050818103600083015261380c816137d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386f602383612ea6565b915061387a82613813565b604082019050919050565b6000602082019050818103600083015261389e81613862565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138db601683612ea6565b91506138e6826138a5565b602082019050919050565b6000602082019050818103600083015261390a816138ce565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613993604983612ea6565b915061399e82613911565b606082019050919050565b600060208201905081810360008301526139c281613986565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613a25603583612ea6565b9150613a30826139c9565b604082019050919050565b60006020820190508181036000830152613a5481613a18565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613a91601383612ea6565b9150613a9c82613a5b565b602082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613b23603683612ea6565b9150613b2e82613ac7565b604082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b6000613b6482612fb9565b9150613b6f83612fb9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba857613ba76133b6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bed82612fb9565b9150613bf883612fb9565b925082613c0857613c07613bb3565b5b828204905092915050565b6000613c1e82612fb9565b9150613c2983612fb9565b925082821015613c3c57613c3b6133b6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ca3602683612ea6565b9150613cae82613c47565b604082019050919050565b60006020820190508181036000830152613cd281613c96565b9050919050565b600081905092915050565b50565b6000613cf4600083613cd9565b9150613cff82613ce4565b600082019050919050565b6000613d1582613ce7565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613d8c81612f8d565b92915050565b600060208284031215613da857613da7612f56565b5b6000613db684828501613d7d565b91505092915050565b6000819050919050565b6000613de4613ddf613dda84613dbf565b613092565b612fb9565b9050919050565b613df481613dc9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e2f81612f7b565b82525050565b6000613e418383613e26565b60208301905092915050565b6000602082019050919050565b6000613e6582613dfa565b613e6f8185613e05565b9350613e7a83613e16565b8060005b83811015613eab578151613e928882613e35565b9750613e9d83613e4d565b925050600181019050613e7e565b5085935050505092915050565b600060a082019050613ecd600083018861310c565b613eda6020830187613deb565b8181036040830152613eec8186613e5a565b9050613efb6060830185613189565b613f08608083018461310c565b969550505050505056fea26469706673582212204ecc9401d90f72fbce532aac5c017b1fffac01122cbf86c2da693d6c738deaed64736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638a8c523c11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e1461094b578063e2f4560514610988578063e884f260146109b3578063f2fde38b146109de578063f8b45b0514610a07578063fde83a3414610a3257610272565b8063c024666814610876578063c876d0b91461089f578063c8c8ebe4146108ca578063d729715f146108f5578063d85ba0631461092057610272565b80639a7a23d6116101085780639a7a23d6146107405780639c2e4ac614610769578063a457c2d714610794578063a9059cbb146107d1578063b62496f51461080e578063bbc0c7421461084b57610272565b80638a8c523c1461067f5780638da5cb5b1461069657806392136913146106c1578063924de9b7146106ec57806395d89b411461071557610272565b80634a62bb65116101dd57806370a08231116101a157806370a0823114610581578063715018a6146105be578063751039fc146105d55780637571336a1461060057806375f0a874146106295780637bce5a041461065457610272565b80634a62bb65146104985780634fbee193146104c357806359927044146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631f3fed8f1161022f5780631f3fed8f1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a5d565b6040516102999190612f34565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612fef565b610aef565b6040516102d6919061304a565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613065565b610b0d565b604051610313919061304a565b60405180910390f35b34801561032857600080fd5b50610331610b2d565b60405161033e91906130f1565b60405180910390f35b34801561035357600080fd5b5061035c610b51565b604051610369919061311b565b60405180910390f35b34801561037e57600080fd5b50610387610b5b565b604051610394919061311b565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613136565b610b61565b6040516103d1919061304a565b60405180910390f35b3480156103e657600080fd5b506103ef610c59565b6040516103fc9190613198565b60405180910390f35b34801561041157600080fd5b5061041a610c5f565b60405161042791906131cf565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612fef565b610c68565b604051610464919061304a565b60405180910390f35b34801561047957600080fd5b50610482610d14565b60405161048f9190613198565b60405180910390f35b3480156104a457600080fd5b506104ad610d38565b6040516104ba919061304a565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190613065565b610d4b565b6040516104f7919061304a565b60405180910390f35b34801561050c57600080fd5b50610515610da1565b6040516105229190613198565b60405180910390f35b34801561053757600080fd5b50610540610dc7565b60405161054d919061311b565b60405180910390f35b34801561056257600080fd5b5061056b610dcd565b604051610578919061304a565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613065565b610de0565b6040516105b5919061311b565b60405180910390f35b3480156105ca57600080fd5b506105d3610e28565b005b3480156105e157600080fd5b506105ea610eb0565b6040516105f7919061304a565b60405180910390f35b34801561060c57600080fd5b5061062760048036038101906106229190613216565b610f50565b005b34801561063557600080fd5b5061063e611027565b60405161064b9190613198565b60405180910390f35b34801561066057600080fd5b5061066961104d565b604051610676919061311b565b60405180910390f35b34801561068b57600080fd5b50610694611053565b005b3480156106a257600080fd5b506106ab611107565b6040516106b89190613198565b60405180910390f35b3480156106cd57600080fd5b506106d6611131565b6040516106e3919061311b565b60405180910390f35b3480156106f857600080fd5b50610713600480360381019061070e9190613256565b611137565b005b34801561072157600080fd5b5061072a6111d0565b6040516107379190612f34565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613216565b611262565b005b34801561077557600080fd5b5061077e61137b565b60405161078b919061311b565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190612fef565b611381565b6040516107c8919061304a565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190612fef565b61146c565b604051610805919061304a565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190613065565b61148a565b604051610842919061304a565b60405180910390f35b34801561085757600080fd5b506108606114aa565b60405161086d919061304a565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190613216565b6114bd565b005b3480156108ab57600080fd5b506108b46115e2565b6040516108c1919061304a565b60405180910390f35b3480156108d657600080fd5b506108df6115f5565b6040516108ec919061311b565b60405180910390f35b34801561090157600080fd5b5061090a6115fb565b604051610917919061311b565b60405180910390f35b34801561092c57600080fd5b50610935611601565b604051610942919061311b565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613283565b611607565b60405161097f919061311b565b60405180910390f35b34801561099457600080fd5b5061099d61168e565b6040516109aa919061311b565b60405180910390f35b3480156109bf57600080fd5b506109c8611694565b6040516109d5919061304a565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613065565b611734565b005b348015610a1357600080fd5b50610a1c61182c565b604051610a29919061311b565b60405180910390f35b348015610a3e57600080fd5b50610a47611832565b604051610a54919061311b565b60405180910390f35b606060038054610a6c906132f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a98906132f2565b8015610ae55780601f10610aba57610100808354040283529160200191610ae5565b820191906000526020600020905b815481529060010190602001808311610ac857829003601f168201915b5050505050905090565b6000610b03610afc611838565b8484611840565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60155481565b6000610b6e848484611a0b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bb9611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613396565b60405180910390fd5b610c4d85610c45611838565b858403611840565b60019150509392505050565b61dead81565b60006012905090565b6000610d0a610c75611838565b848460016000610c83611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d0591906133e5565b611840565b6001905092915050565b7f0000000000000000000000009701e712ea5e2c7b3c9acf19cfa9f890caccb5e481565b600b60009054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e30611838565b73ffffffffffffffffffffffffffffffffffffffff16610e4e611107565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90613487565b60405180910390fd5b610eae600061263f565b565b6000610eba611838565b73ffffffffffffffffffffffffffffffffffffffff16610ed8611107565b73ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590613487565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b610f58611838565b73ffffffffffffffffffffffffffffffffffffffff16610f76611107565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613487565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61105b611838565b73ffffffffffffffffffffffffffffffffffffffff16611079611107565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613487565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b61113f611838565b73ffffffffffffffffffffffffffffffffffffffff1661115d611107565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613487565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546111df906132f2565b80601f016020809104026020016040519081016040528092919081815260200182805461120b906132f2565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b5050505050905090565b61126a611838565b73ffffffffffffffffffffffffffffffffffffffff16611288611107565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613487565b60405180910390fd5b7f0000000000000000000000009701e712ea5e2c7b3c9acf19cfa9f890caccb5e473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490613519565b60405180910390fd5b6113778282612705565b5050565b600f5481565b60008060016000611390611838565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561144d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611444906135ab565b60405180910390fd5b611461611458611838565b85858403611840565b600191505092915050565b6000611480611479611838565b8484611a0b565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6114c5611838565b73ffffffffffffffffffffffffffffffffffffffff166114e3611107565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613487565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115d6919061304a565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b60125481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061169e611838565b73ffffffffffffffffffffffffffffffffffffffff166116bc611107565b73ffffffffffffffffffffffffffffffffffffffff1614611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990613487565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61173c611838565b73ffffffffffffffffffffffffffffffffffffffff1661175a611107565b73ffffffffffffffffffffffffffffffffffffffff16146117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790613487565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061363d565b60405180910390fd5b6118298161263f565b50565b600a5481565b60145481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a7906136cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790613761565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119fe919061311b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906137f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613885565b60405180910390fd5b6000811415611b0557611b00838360006127a6565b61263a565b600b60009054906101000a900460ff16156121c857611b22611107565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611b905750611b60611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611bc95750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c03575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1c5750600560149054906101000a900460ff16155b156121c757600b60019054906101000a900460ff16611d1657601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611cd65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906138f1565b60405180910390fd5b5b600d60009054906101000a900460ff1615611ede57611d33611107565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611dba57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e1257507f0000000000000000000000009701e712ea5e2c7b3c9acf19cfa9f890caccb5e473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611edd5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f906139a9565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611f815750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561202857600854811115611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc290613a3b565b60405180910390fd5b600a54611fd783610de0565b82611fe291906133e5565b1115612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90613aa7565b60405180910390fd5b6121c6565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120cb5750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561211a57600854811115612115576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210c90613b39565b60405180910390fd5b6121c5565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121c457600a5461217783610de0565b8261218291906133e5565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613aa7565b60405180910390fd5b5b5b5b5b5b60006121d330610de0565b9050600060095482101590508080156121f85750600b60029054906101000a900460ff165b80156122115750600560149054906101000a900460ff16155b80156122675750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122bd5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123135750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612357576001600560146101000a81548160ff02191690831515021790555061233b612a27565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061240d5750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561241757600090505b6000811561262a57601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561247a57506000601154115b15612514576124a7606461249960115488612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050601154601254826124ba9190613b59565b6124c49190613be2565b601460008282546124d591906133e5565b92505081905550601154601354826124ed9190613b59565b6124f79190613be2565b6015600082825461250891906133e5565b92505081905550612606565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561256f57506000600e54115b156126055761259c606461258e600e5488612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050600e54600f54826125af9190613b59565b6125b99190613be2565b601460008282546125ca91906133e5565b92505081905550600e54601054826125e29190613b59565b6125ec9190613be2565b601560008282546125fd91906133e5565b925050819055505b5b600081111561261b5761261a8730836127a6565b5b80856126279190613c13565b94505b6126358787876127a6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280d906137f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287d90613885565b60405180910390fd5b612891838383612c3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290e90613cb9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129aa91906133e5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a0e919061311b565b60405180910390a3612a21848484612c43565b50505050565b6000612a3230610de0565b90506000601454601554612a4691906133e5565b9050600080831480612a585750600082145b15612a6557505050612c10565b6014600954612a749190613b59565b831115612a8d576014600954612a8a9190613b59565b92505b6000479050612a9b84612c48565b6000612ab08247612e8590919063ffffffff16565b90506000612adb85612acd60145485612c1290919063ffffffff16565b612c2890919063ffffffff16565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b2390613d0a565b60006040518083038185875af1925050503d8060008114612b60576040519150601f19603f3d011682016040523d82523d6000602084013e612b65565b606091505b505080945050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612bb190613d0a565b60006040518083038185875af1925050503d8060008114612bee576040519150601f19603f3d011682016040523d82523d6000602084013e612bf3565b606091505b505080945050600060158190555060006014819055505050505050505b565b60008183612c209190613b59565b905092915050565b60008183612c369190613be2565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c6557612c64613d1f565b5b604051908082528060200260200182016040528015612c935781602001602082028036833780820191505090505b5090503081600081518110612cab57612caa613d4e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d749190613d92565b81600181518110612d8857612d87613d4e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ded307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611840565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e4f959493929190613eb8565b600060405180830381600087803b158015612e6957600080fd5b505af1158015612e7d573d6000803e3d6000fd5b505050505050565b60008183612e939190613c13565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed5578082015181840152602081019050612eba565b83811115612ee4576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0682612e9b565b612f108185612ea6565b9350612f20818560208601612eb7565b612f2981612eea565b840191505092915050565b60006020820190508181036000830152612f4e8184612efb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f8682612f5b565b9050919050565b612f9681612f7b565b8114612fa157600080fd5b50565b600081359050612fb381612f8d565b92915050565b6000819050919050565b612fcc81612fb9565b8114612fd757600080fd5b50565b600081359050612fe981612fc3565b92915050565b6000806040838503121561300657613005612f56565b5b600061301485828601612fa4565b925050602061302585828601612fda565b9150509250929050565b60008115159050919050565b6130448161302f565b82525050565b600060208201905061305f600083018461303b565b92915050565b60006020828403121561307b5761307a612f56565b5b600061308984828501612fa4565b91505092915050565b6000819050919050565b60006130b76130b26130ad84612f5b565b613092565b612f5b565b9050919050565b60006130c98261309c565b9050919050565b60006130db826130be565b9050919050565b6130eb816130d0565b82525050565b600060208201905061310660008301846130e2565b92915050565b61311581612fb9565b82525050565b6000602082019050613130600083018461310c565b92915050565b60008060006060848603121561314f5761314e612f56565b5b600061315d86828701612fa4565b935050602061316e86828701612fa4565b925050604061317f86828701612fda565b9150509250925092565b61319281612f7b565b82525050565b60006020820190506131ad6000830184613189565b92915050565b600060ff82169050919050565b6131c9816131b3565b82525050565b60006020820190506131e460008301846131c0565b92915050565b6131f38161302f565b81146131fe57600080fd5b50565b600081359050613210816131ea565b92915050565b6000806040838503121561322d5761322c612f56565b5b600061323b85828601612fa4565b925050602061324c85828601613201565b9150509250929050565b60006020828403121561326c5761326b612f56565b5b600061327a84828501613201565b91505092915050565b6000806040838503121561329a57613299612f56565b5b60006132a885828601612fa4565b92505060206132b985828601612fa4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330a57607f821691505b6020821081141561331e5761331d6132c3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613380602883612ea6565b915061338b82613324565b604082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006133f082612fb9565b91506133fb83612fb9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134305761342f6133b6565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613471602083612ea6565b915061347c8261343b565b602082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613503603983612ea6565b915061350e826134a7565b604082019050919050565b60006020820190508181036000830152613532816134f6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613595602583612ea6565b91506135a082613539565b604082019050919050565b600060208201905081810360008301526135c481613588565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613627602683612ea6565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136b9602483612ea6565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061374b602283612ea6565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dd602583612ea6565b91506137e882613781565b604082019050919050565b6000602082019050818103600083015261380c816137d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386f602383612ea6565b915061387a82613813565b604082019050919050565b6000602082019050818103600083015261389e81613862565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006138db601683612ea6565b91506138e6826138a5565b602082019050919050565b6000602082019050818103600083015261390a816138ce565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000613993604983612ea6565b915061399e82613911565b606082019050919050565b600060208201905081810360008301526139c281613986565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613a25603583612ea6565b9150613a30826139c9565b604082019050919050565b60006020820190508181036000830152613a5481613a18565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613a91601383612ea6565b9150613a9c82613a5b565b602082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613b23603683612ea6565b9150613b2e82613ac7565b604082019050919050565b60006020820190508181036000830152613b5281613b16565b9050919050565b6000613b6482612fb9565b9150613b6f83612fb9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ba857613ba76133b6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bed82612fb9565b9150613bf883612fb9565b925082613c0857613c07613bb3565b5b828204905092915050565b6000613c1e82612fb9565b9150613c2983612fb9565b925082821015613c3c57613c3b6133b6565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ca3602683612ea6565b9150613cae82613c47565b604082019050919050565b60006020820190508181036000830152613cd281613c96565b9050919050565b600081905092915050565b50565b6000613cf4600083613cd9565b9150613cff82613ce4565b600082019050919050565b6000613d1582613ce7565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613d8c81612f8d565b92915050565b600060208284031215613da857613da7612f56565b5b6000613db684828501613d7d565b91505092915050565b6000819050919050565b6000613de4613ddf613dda84613dbf565b613092565b612fb9565b9050919050565b613df481613dc9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e2f81612f7b565b82525050565b6000613e418383613e26565b60208301905092915050565b6000602082019050919050565b6000613e6582613dfa565b613e6f8185613e05565b9350613e7a83613e16565b8060005b83811015613eab578151613e928882613e35565b9750613e9d83613e4d565b925050600181019050613e7e565b5085935050505092915050565b600060a082019050613ecd600083018861310c565b613eda6020830187613deb565b8181036040830152613eec8186613e5a565b9050613efb6060830185613189565b613f08608083018461310c565b969550505050505056fea26469706673582212204ecc9401d90f72fbce532aac5c017b1fffac01122cbf86c2da693d6c738deaed64736f6c634300080a0033

Deployed Bytecode Sourcemap

32707:12135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11802:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33939:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32785:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10755:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33757:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12453:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32888:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10597:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13354:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32843:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33166:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38584:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33017:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33617:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33246:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10926:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2870:103;;;;;;;;;;;;;:::i;:::-;;37190:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37515:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32980:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33578;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37026:112;;;;;;;;;;;;;:::i;:::-;;2219:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33685:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37778:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9854:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38076:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33546:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14072:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11266:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34160:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33206:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37886:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33464:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33051:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33652:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11504:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33093:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37372:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3128:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33133:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33722:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9635:100;9689:13;9722:5;9715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:100;:::o;11802:169::-;11885:4;11902:39;11911:12;:10;:12::i;:::-;11925:7;11934:6;11902:8;:39::i;:::-;11959:4;11952:11;;11802:169;;;;:::o;33939:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32785:51::-;;;:::o;10755:108::-;10816:7;10843:12;;10836:19;;10755:108;:::o;33757:33::-;;;;:::o;12453:492::-;12593:4;12610:36;12620:6;12628:9;12639:6;12610:9;:36::i;:::-;12659:24;12686:11;:19;12698:6;12686:19;;;;;;;;;;;;;;;:33;12706:12;:10;:12::i;:::-;12686:33;;;;;;;;;;;;;;;;12659:60;;12758:6;12738:16;:26;;12730:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12845:57;12854:6;12862:12;:10;:12::i;:::-;12895:6;12876:16;:25;12845:8;:57::i;:::-;12933:4;12926:11;;;12453:492;;;;;:::o;32888:53::-;32934:6;32888:53;:::o;10597:93::-;10655:5;10680:2;10673:9;;10597:93;:::o;13354:215::-;13442:4;13459:80;13468:12;:10;:12::i;:::-;13482:7;13528:10;13491:11;:25;13503:12;:10;:12::i;:::-;13491:25;;;;;;;;;;;;;;;:34;13517:7;13491:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13459:8;:80::i;:::-;13557:4;13550:11;;13354:215;;;;:::o;32843:38::-;;;:::o;33166:33::-;;;;;;;;;;;;;:::o;38584:126::-;38650:4;38674:19;:28;38694:7;38674:28;;;;;;;;;;;;;;;;;;;;;;;;;38667:35;;38584:126;;;:::o;33017:25::-;;;;;;;;;;;;;:::o;33617:28::-;;;;:::o;33246:31::-;;;;;;;;;;;;;:::o;10926:127::-;11000:7;11027:9;:18;11037:7;11027:18;;;;;;;;;;;;;;;;11020:25;;10926:127;;;:::o;2870:103::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2935:30:::1;2962:1;2935:18;:30::i;:::-;2870:103::o:0;37190:121::-;37242:4;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37276:5:::1;37259:14;;:22;;;;;;;;;;;;;;;;;;37299:4;37292:11;;37190:121:::0;:::o;37515:167::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37670:4:::1;37628:31;:39;37660:6;37628:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37515:167:::0;;:::o;32980:30::-;;;;;;;;;;;;;:::o;33578:::-;;;;:::o;37026:112::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37097:4:::1;37081:13;;:20;;;;;;;;;;;;;;;;;;37126:4;37112:11;;:18;;;;;;;;;;;;;;;;;;37026:112::o:0;2219:87::-;2265:7;2292:6;;;;;;;;;;;2285:13;;2219:87;:::o;33685:31::-;;;;:::o;37778:100::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37863:7:::1;37849:11;;:21;;;;;;;;;;;;;;;;;;37778:100:::0;:::o;9854:104::-;9910:13;9943:7;9936:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9854:104;:::o;38076:304::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38220:13:::1;38212:21;;:4;:21;;;;38190:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38331:41;38360:4;38366:5;38331:28;:41::i;:::-;38076:304:::0;;:::o;33546:25::-;;;;:::o;14072:413::-;14165:4;14182:24;14209:11;:25;14221:12;:10;:12::i;:::-;14209:25;;;;;;;;;;;;;;;:34;14235:7;14209:34;;;;;;;;;;;;;;;;14182:61;;14282:15;14262:16;:35;;14254:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14375:67;14384:12;:10;:12::i;:::-;14398:7;14426:15;14407:16;:34;14375:8;:67::i;:::-;14473:4;14466:11;;;14072:413;;;;:::o;11266:175::-;11352:4;11369:42;11379:12;:10;:12::i;:::-;11393:9;11404:6;11369:9;:42::i;:::-;11429:4;11422:11;;11266:175;;;;:::o;34160:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33206:33::-;;;;;;;;;;;;;:::o;37886:182::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38002:8:::1;37971:19;:28;37991:7;37971:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38042:7;38026:34;;;38051:8;38026:34;;;;;;:::i;:::-;;;;;;;;37886:182:::0;;:::o;33464:39::-;;;;;;;;;;;;;:::o;33051:35::-;;;;:::o;33652:26::-;;;;:::o;33512:27::-;;;;:::o;11504:151::-;11593:7;11620:11;:18;11632:5;11620:18;;;;;;;;;;;;;;;:27;11639:7;11620:27;;;;;;;;;;;;;;;;11613:34;;11504:151;;;;:::o;33093:33::-;;;;:::o;37372:135::-;37432:4;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37472:5:::1;37449:20;;:28;;;;;;;;;;;;;;;;;;37495:4;37488:11;;37372:135:::0;:::o;3128:201::-;2450:12;:10;:12::i;:::-;2439:23;;:7;:5;:7::i;:::-;:23;;;2431:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3237:1:::1;3217:22;;:8;:22;;;;3209:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3293:28;3312:8;3293:18;:28::i;:::-;3128:201:::0;:::o;33133:24::-;;;;:::o;33722:28::-;;;;:::o;892:98::-;945:7;972:10;965:17;;892:98;:::o;17756:380::-;17909:1;17892:19;;:5;:19;;;;17884:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17990:1;17971:21;;:7;:21;;;;17963:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18074:6;18044:11;:18;18056:5;18044:18;;;;;;;;;;;;;;;:27;18063:7;18044:27;;;;;;;;;;;;;;;:36;;;;18112:7;18096:32;;18105:5;18096:32;;;18121:6;18096:32;;;;;;:::i;:::-;;;;;;;;17756:380;;;:::o;38718:4575::-;38866:1;38850:18;;:4;:18;;;;38842:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38943:1;38929:16;;:2;:16;;;;38921:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39012:1;39002:6;:11;38998:93;;;39030:28;39046:4;39052:2;39056:1;39030:15;:28::i;:::-;39073:7;;38998:93;39107:14;;;;;;;;;;;39103:2487;;;39168:7;:5;:7::i;:::-;39160:15;;:4;:15;;;;:49;;;;;39202:7;:5;:7::i;:::-;39196:13;;:2;:13;;;;39160:49;:86;;;;;39244:1;39230:16;;:2;:16;;;;39160:86;:128;;;;;39281:6;39267:21;;:2;:21;;;;39160:128;:158;;;;;39310:8;;;;;;;;;;;39309:9;39160:158;39138:2441;;;39358:13;;;;;;;;;;;39353:223;;39430:19;:25;39450:4;39430:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39459:19;:23;39479:2;39459:23;;;;;;;;;;;;;;;;;;;;;;;;;39430:52;39396:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39353:223;39732:20;;;;;;;;;;;39728:641;;;39813:7;:5;:7::i;:::-;39807:13;;:2;:13;;;;:72;;;;;39863:15;39849:30;;:2;:30;;;;39807:72;:129;;;;;39922:13;39908:28;;:2;:28;;;;39807:129;39777:573;;;40100:12;40025:28;:39;40054:9;40025:39;;;;;;;;;;;;;;;;:87;39987:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;40314:12;40272:28;:39;40301:9;40272:39;;;;;;;;;;;;;;;:54;;;;39777:573;39728:641;40443:25;:31;40469:4;40443:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40500:31;:35;40532:2;40500:35;;;;;;;;;;;;;;;;;;;;;;;;;40499:36;40443:92;40417:1147;;;40622:20;;40612:6;:30;;40578:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40830:9;;40813:13;40823:2;40813:9;:13::i;:::-;40804:6;:22;;;;:::i;:::-;:35;;40770:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40417:1147;;;41008:25;:29;41034:2;41008:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41063:31;:37;41095:4;41063:37;;;;;;;;;;;;;;;;;;;;;;;;;41062:38;41008:92;40982:582;;;41187:20;;41177:6;:30;;41143:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40982:582;;;41344:31;:35;41376:2;41344:35;;;;;;;;;;;;;;;;;;;;;;;;;41339:225;;41464:9;;41447:13;41457:2;41447:9;:13::i;:::-;41438:6;:22;;;;:::i;:::-;:35;;41404:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41339:225;40982:582;40417:1147;39138:2441;39103:2487;41602:28;41633:24;41651:4;41633:9;:24::i;:::-;41602:55;;41670:12;41709:18;;41685:20;:42;;41670:57;;41758:7;:35;;;;;41782:11;;;;;;;;;;;41758:35;:61;;;;;41811:8;;;;;;;;;;;41810:9;41758:61;:110;;;;;41837:25;:31;41863:4;41837:31;;;;;;;;;;;;;;;;;;;;;;;;;41836:32;41758:110;:153;;;;;41886:19;:25;41906:4;41886:25;;;;;;;;;;;;;;;;;;;;;;;;;41885:26;41758:153;:194;;;;;41929:19;:23;41949:2;41929:23;;;;;;;;;;;;;;;;;;;;;;;;;41928:24;41758:194;41740:326;;;41990:4;41979:8;;:15;;;;;;;;;;;;;;;;;;42011:10;:8;:10::i;:::-;42049:5;42038:8;;:16;;;;;;;;;;;;;;;;;;41740:326;42078:12;42094:8;;;;;;;;;;;42093:9;42078:24;;42204:19;:25;42224:4;42204:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42233:19;:23;42253:2;42233:23;;;;;;;;;;;;;;;;;;;;;;;;;42204:52;42200:100;;;42283:5;42273:15;;42200:100;42312:12;42417:7;42413:827;;;42469:25;:29;42495:2;42469:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42518:1;42502:13;;:17;42469:50;42465:626;;;42547:34;42577:3;42547:25;42558:13;;42547:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42540:41;;42640:13;;42625:11;;42618:4;:18;;;;:::i;:::-;42617:36;;;;:::i;:::-;42600:13;;:53;;;;;;;:::i;:::-;;;;;;;;42722:13;;42702:16;;42695:4;:23;;;;:::i;:::-;42694:41;;;;:::i;:::-;42672:18;;:63;;;;;;;:::i;:::-;;;;;;;;42465:626;;;42813:25;:31;42839:4;42813:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42863:1;42848:12;;:16;42813:51;42809:282;;;42892:33;42921:3;42892:24;42903:12;;42892:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42885:40;;42983:12;;42969:10;;42962:4;:17;;;;:::i;:::-;42961:34;;;;:::i;:::-;42944:13;;:51;;;;;;;:::i;:::-;;;;;;;;43063:12;;43044:15;;43037:4;:22;;;;:::i;:::-;43036:39;;;;:::i;:::-;43014:18;;:61;;;;;;;:::i;:::-;;;;;;;;42809:282;42465:626;43118:1;43111:4;:8;43107:91;;;43140:42;43156:4;43170;43177;43140:15;:42::i;:::-;43107:91;43224:4;43214:14;;;;;:::i;:::-;;;42413:827;43252:33;43268:4;43274:2;43278:6;43252:15;:33::i;:::-;38831:4462;;;;38718:4575;;;;:::o;3489:191::-;3563:16;3582:6;;;;;;;;;;;3563:25;;3608:8;3599:6;;:17;;;;;;;;;;;;;;;;;;3663:8;3632:40;;3653:8;3632:40;;;;;;;;;;;;3552:128;3489:191;:::o;38388:188::-;38505:5;38471:25;:31;38497:4;38471:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38562:5;38528:40;;38556:4;38528:40;;;;;;;;;;;;38388:188;;:::o;14975:733::-;15133:1;15115:20;;:6;:20;;;;15107:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15217:1;15196:23;;:9;:23;;;;15188:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15272:47;15293:6;15301:9;15312:6;15272:20;:47::i;:::-;15332:21;15356:9;:17;15366:6;15356:17;;;;;;;;;;;;;;;;15332:41;;15409:6;15392:13;:23;;15384:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15530:6;15514:13;:22;15494:9;:17;15504:6;15494:17;;;;;;;;;;;;;;;:42;;;;15582:6;15558:9;:20;15568:9;15558:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15623:9;15606:35;;15615:6;15606:35;;;15634:6;15606:35;;;;;;:::i;:::-;;;;;;;;15654:46;15674:6;15682:9;15693:6;15654:19;:46::i;:::-;15096:612;14975:733;;;:::o;43898:939::-;43937:23;43963:24;43981:4;43963:9;:24::i;:::-;43937:50;;43998:25;44047:13;;44026:18;;:34;;;;:::i;:::-;43998:62;;44071:12;44119:1;44100:15;:20;:46;;;;44145:1;44124:17;:22;44100:46;44096:85;;;44163:7;;;;;44096:85;44236:2;44215:18;;:23;;;;:::i;:::-;44197:15;:41;44193:115;;;44294:2;44273:18;;:23;;;;:::i;:::-;44255:41;;44193:115;44320:25;44348:21;44320:49;;44382:33;44399:15;44382:16;:33::i;:::-;44428:18;44449:44;44475:17;44449:21;:25;;:44;;;;:::i;:::-;44428:65;;44507:18;44528:52;44562:17;44528:29;44543:13;;44528:10;:14;;:29;;;;:::i;:::-;:33;;:52;;;;:::i;:::-;44507:73;;44615:10;;;;;;;;;;;44607:24;;44639:10;44607:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44593:61;;;;;44703:15;;;;;;;;;;;44695:29;;44732:21;44695:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44681:77;;;;;44800:1;44779:18;:22;;;;44828:1;44812:13;:17;;;;43926:911;;;;;;43898:939;:::o;23209:98::-;23267:7;23298:1;23294;:5;;;;:::i;:::-;23287:12;;23209:98;;;;:::o;23608:::-;23666:7;23697:1;23693;:5;;;;:::i;:::-;23686:12;;23608:98;;;;:::o;18736:125::-;;;;:::o;19465:124::-;;;;:::o;43301:589::-;43427:21;43465:1;43451:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43427:40;;43496:4;43478;43483:1;43478:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43522:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43512:4;43517:1;43512:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43557:62;43574:4;43589:15;43607:11;43557:8;:62::i;:::-;43658:15;:66;;;43739:11;43765:1;43809:4;43836;43856:15;43658:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43356:534;43301:589;:::o;22852:98::-;22910:7;22941:1;22937;:5;;;;:::i;:::-;22930:12;;22852:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:323::-;7357:6;7406:2;7394:9;7385:7;7381:23;7377:32;7374:119;;;7412:79;;:::i;:::-;7374:119;7532:1;7557:50;7599:7;7590:6;7579:9;7575:22;7557:50;:::i;:::-;7547:60;;7503:114;7301:323;;;;:::o;7630:474::-;7698:6;7706;7755:2;7743:9;7734:7;7730:23;7726:32;7723:119;;;7761:79;;:::i;:::-;7723:119;7881:1;7906:53;7951:7;7942:6;7931:9;7927:22;7906:53;:::i;:::-;7896:63;;7852:117;8008:2;8034:53;8079:7;8070:6;8059:9;8055:22;8034:53;:::i;:::-;8024:63;;7979:118;7630:474;;;;;:::o;8110:180::-;8158:77;8155:1;8148:88;8255:4;8252:1;8245:15;8279:4;8276:1;8269:15;8296:320;8340:6;8377:1;8371:4;8367:12;8357:22;;8424:1;8418:4;8414:12;8445:18;8435:81;;8501:4;8493:6;8489:17;8479:27;;8435:81;8563:2;8555:6;8552:14;8532:18;8529:38;8526:84;;;8582:18;;:::i;:::-;8526:84;8347:269;8296:320;;;:::o;8622:227::-;8762:34;8758:1;8750:6;8746:14;8739:58;8831:10;8826:2;8818:6;8814:15;8807:35;8622:227;:::o;8855:366::-;8997:3;9018:67;9082:2;9077:3;9018:67;:::i;:::-;9011:74;;9094:93;9183:3;9094:93;:::i;:::-;9212:2;9207:3;9203:12;9196:19;;8855:366;;;:::o;9227:419::-;9393:4;9431:2;9420:9;9416:18;9408:26;;9480:9;9474:4;9470:20;9466:1;9455:9;9451:17;9444:47;9508:131;9634:4;9508:131;:::i;:::-;9500:139;;9227:419;;;:::o;9652:180::-;9700:77;9697:1;9690:88;9797:4;9794:1;9787:15;9821:4;9818:1;9811:15;9838:305;9878:3;9897:20;9915:1;9897:20;:::i;:::-;9892:25;;9931:20;9949:1;9931:20;:::i;:::-;9926:25;;10085:1;10017:66;10013:74;10010:1;10007:81;10004:107;;;10091:18;;:::i;:::-;10004:107;10135:1;10132;10128:9;10121:16;;9838:305;;;;:::o;10149:182::-;10289:34;10285:1;10277:6;10273:14;10266:58;10149:182;:::o;10337:366::-;10479:3;10500:67;10564:2;10559:3;10500:67;:::i;:::-;10493:74;;10576:93;10665:3;10576:93;:::i;:::-;10694:2;10689:3;10685:12;10678:19;;10337:366;;;:::o;10709:419::-;10875:4;10913:2;10902:9;10898:18;10890:26;;10962:9;10956:4;10952:20;10948:1;10937:9;10933:17;10926:47;10990:131;11116:4;10990:131;:::i;:::-;10982:139;;10709:419;;;:::o;11134:244::-;11274:34;11270:1;11262:6;11258:14;11251:58;11343:27;11338:2;11330:6;11326:15;11319:52;11134:244;:::o;11384:366::-;11526:3;11547:67;11611:2;11606:3;11547:67;:::i;:::-;11540:74;;11623:93;11712:3;11623:93;:::i;:::-;11741:2;11736:3;11732:12;11725:19;;11384:366;;;:::o;11756:419::-;11922:4;11960:2;11949:9;11945:18;11937:26;;12009:9;12003:4;11999:20;11995:1;11984:9;11980:17;11973:47;12037:131;12163:4;12037:131;:::i;:::-;12029:139;;11756:419;;;:::o;12181:224::-;12321:34;12317:1;12309:6;12305:14;12298:58;12390:7;12385:2;12377:6;12373:15;12366:32;12181:224;:::o;12411:366::-;12553:3;12574:67;12638:2;12633:3;12574:67;:::i;:::-;12567:74;;12650:93;12739:3;12650:93;:::i;:::-;12768:2;12763:3;12759:12;12752:19;;12411:366;;;:::o;12783:419::-;12949:4;12987:2;12976:9;12972:18;12964:26;;13036:9;13030:4;13026:20;13022:1;13011:9;13007:17;13000:47;13064:131;13190:4;13064:131;:::i;:::-;13056:139;;12783:419;;;:::o;13208:225::-;13348:34;13344:1;13336:6;13332:14;13325:58;13417:8;13412:2;13404:6;13400:15;13393:33;13208:225;:::o;13439:366::-;13581:3;13602:67;13666:2;13661:3;13602:67;:::i;:::-;13595:74;;13678:93;13767:3;13678:93;:::i;:::-;13796:2;13791:3;13787:12;13780:19;;13439:366;;;:::o;13811:419::-;13977:4;14015:2;14004:9;14000:18;13992:26;;14064:9;14058:4;14054:20;14050:1;14039:9;14035:17;14028:47;14092:131;14218:4;14092:131;:::i;:::-;14084:139;;13811:419;;;:::o;14236:223::-;14376:34;14372:1;14364:6;14360:14;14353:58;14445:6;14440:2;14432:6;14428:15;14421:31;14236:223;:::o;14465:366::-;14607:3;14628:67;14692:2;14687:3;14628:67;:::i;:::-;14621:74;;14704:93;14793:3;14704:93;:::i;:::-;14822:2;14817:3;14813:12;14806:19;;14465:366;;;:::o;14837:419::-;15003:4;15041:2;15030:9;15026:18;15018:26;;15090:9;15084:4;15080:20;15076:1;15065:9;15061:17;15054:47;15118:131;15244:4;15118:131;:::i;:::-;15110:139;;14837:419;;;:::o;15262:221::-;15402:34;15398:1;15390:6;15386:14;15379:58;15471:4;15466:2;15458:6;15454:15;15447:29;15262:221;:::o;15489:366::-;15631:3;15652:67;15716:2;15711:3;15652:67;:::i;:::-;15645:74;;15728:93;15817:3;15728:93;:::i;:::-;15846:2;15841:3;15837:12;15830:19;;15489:366;;;:::o;15861:419::-;16027:4;16065:2;16054:9;16050:18;16042:26;;16114:9;16108:4;16104:20;16100:1;16089:9;16085:17;16078:47;16142:131;16268:4;16142:131;:::i;:::-;16134:139;;15861:419;;;:::o;16286:224::-;16426:34;16422:1;16414:6;16410:14;16403:58;16495:7;16490:2;16482:6;16478:15;16471:32;16286:224;:::o;16516:366::-;16658:3;16679:67;16743:2;16738:3;16679:67;:::i;:::-;16672:74;;16755:93;16844:3;16755:93;:::i;:::-;16873:2;16868:3;16864:12;16857:19;;16516:366;;;:::o;16888:419::-;17054:4;17092:2;17081:9;17077:18;17069:26;;17141:9;17135:4;17131:20;17127:1;17116:9;17112:17;17105:47;17169:131;17295:4;17169:131;:::i;:::-;17161:139;;16888:419;;;:::o;17313:222::-;17453:34;17449:1;17441:6;17437:14;17430:58;17522:5;17517:2;17509:6;17505:15;17498:30;17313:222;:::o;17541:366::-;17683:3;17704:67;17768:2;17763:3;17704:67;:::i;:::-;17697:74;;17780:93;17869:3;17780:93;:::i;:::-;17898:2;17893:3;17889:12;17882:19;;17541:366;;;:::o;17913:419::-;18079:4;18117:2;18106:9;18102:18;18094:26;;18166:9;18160:4;18156:20;18152:1;18141:9;18137:17;18130:47;18194:131;18320:4;18194:131;:::i;:::-;18186:139;;17913:419;;;:::o;18338:172::-;18478:24;18474:1;18466:6;18462:14;18455:48;18338:172;:::o;18516:366::-;18658:3;18679:67;18743:2;18738:3;18679:67;:::i;:::-;18672:74;;18755:93;18844:3;18755:93;:::i;:::-;18873:2;18868:3;18864:12;18857:19;;18516:366;;;:::o;18888:419::-;19054:4;19092:2;19081:9;19077:18;19069:26;;19141:9;19135:4;19131:20;19127:1;19116:9;19112:17;19105:47;19169:131;19295:4;19169:131;:::i;:::-;19161:139;;18888:419;;;:::o;19313:297::-;19453:34;19449:1;19441:6;19437:14;19430:58;19522:34;19517:2;19509:6;19505:15;19498:59;19591:11;19586:2;19578:6;19574:15;19567:36;19313:297;:::o;19616:366::-;19758:3;19779:67;19843:2;19838:3;19779:67;:::i;:::-;19772:74;;19855:93;19944:3;19855:93;:::i;:::-;19973:2;19968:3;19964:12;19957:19;;19616:366;;;:::o;19988:419::-;20154:4;20192:2;20181:9;20177:18;20169:26;;20241:9;20235:4;20231:20;20227:1;20216:9;20212:17;20205:47;20269:131;20395:4;20269:131;:::i;:::-;20261:139;;19988:419;;;:::o;20413:240::-;20553:34;20549:1;20541:6;20537:14;20530:58;20622:23;20617:2;20609:6;20605:15;20598:48;20413:240;:::o;20659:366::-;20801:3;20822:67;20886:2;20881:3;20822:67;:::i;:::-;20815:74;;20898:93;20987:3;20898:93;:::i;:::-;21016:2;21011:3;21007:12;21000:19;;20659:366;;;:::o;21031:419::-;21197:4;21235:2;21224:9;21220:18;21212:26;;21284:9;21278:4;21274:20;21270:1;21259:9;21255:17;21248:47;21312:131;21438:4;21312:131;:::i;:::-;21304:139;;21031:419;;;:::o;21456:169::-;21596:21;21592:1;21584:6;21580:14;21573:45;21456:169;:::o;21631:366::-;21773:3;21794:67;21858:2;21853:3;21794:67;:::i;:::-;21787:74;;21870:93;21959:3;21870:93;:::i;:::-;21988:2;21983:3;21979:12;21972:19;;21631:366;;;:::o;22003:419::-;22169:4;22207:2;22196:9;22192:18;22184:26;;22256:9;22250:4;22246:20;22242:1;22231:9;22227:17;22220:47;22284:131;22410:4;22284:131;:::i;:::-;22276:139;;22003:419;;;:::o;22428:241::-;22568:34;22564:1;22556:6;22552:14;22545:58;22637:24;22632:2;22624:6;22620:15;22613:49;22428:241;:::o;22675:366::-;22817:3;22838:67;22902:2;22897:3;22838:67;:::i;:::-;22831:74;;22914:93;23003:3;22914:93;:::i;:::-;23032:2;23027:3;23023:12;23016:19;;22675:366;;;:::o;23047:419::-;23213:4;23251:2;23240:9;23236:18;23228:26;;23300:9;23294:4;23290:20;23286:1;23275:9;23271:17;23264:47;23328:131;23454:4;23328:131;:::i;:::-;23320:139;;23047:419;;;:::o;23472:348::-;23512:7;23535:20;23553:1;23535:20;:::i;:::-;23530:25;;23569:20;23587:1;23569:20;:::i;:::-;23564:25;;23757:1;23689:66;23685:74;23682:1;23679:81;23674:1;23667:9;23660:17;23656:105;23653:131;;;23764:18;;:::i;:::-;23653:131;23812:1;23809;23805:9;23794:20;;23472:348;;;;:::o;23826:180::-;23874:77;23871:1;23864:88;23971:4;23968:1;23961:15;23995:4;23992:1;23985:15;24012:185;24052:1;24069:20;24087:1;24069:20;:::i;:::-;24064:25;;24103:20;24121:1;24103:20;:::i;:::-;24098:25;;24142:1;24132:35;;24147:18;;:::i;:::-;24132:35;24189:1;24186;24182:9;24177:14;;24012:185;;;;:::o;24203:191::-;24243:4;24263:20;24281:1;24263:20;:::i;:::-;24258:25;;24297:20;24315:1;24297:20;:::i;:::-;24292:25;;24336:1;24333;24330:8;24327:34;;;24341:18;;:::i;:::-;24327:34;24386:1;24383;24379:9;24371:17;;24203:191;;;;:::o;24400:225::-;24540:34;24536:1;24528:6;24524:14;24517:58;24609:8;24604:2;24596:6;24592:15;24585:33;24400:225;:::o;24631:366::-;24773:3;24794:67;24858:2;24853:3;24794:67;:::i;:::-;24787:74;;24870:93;24959:3;24870:93;:::i;:::-;24988:2;24983:3;24979:12;24972:19;;24631:366;;;:::o;25003:419::-;25169:4;25207:2;25196:9;25192:18;25184:26;;25256:9;25250:4;25246:20;25242:1;25231:9;25227:17;25220:47;25284:131;25410:4;25284:131;:::i;:::-;25276:139;;25003:419;;;:::o;25428:147::-;25529:11;25566:3;25551:18;;25428:147;;;;:::o;25581:114::-;;:::o;25701:398::-;25860:3;25881:83;25962:1;25957:3;25881:83;:::i;:::-;25874:90;;25973:93;26062:3;25973:93;:::i;:::-;26091:1;26086:3;26082:11;26075:18;;25701:398;;;:::o;26105:379::-;26289:3;26311:147;26454:3;26311:147;:::i;:::-;26304:154;;26475:3;26468:10;;26105:379;;;:::o;26490:180::-;26538:77;26535:1;26528:88;26635:4;26632:1;26625:15;26659:4;26656:1;26649:15;26676:180;26724:77;26721:1;26714:88;26821:4;26818:1;26811:15;26845:4;26842:1;26835:15;26862:143;26919:5;26950:6;26944:13;26935:22;;26966:33;26993:5;26966:33;:::i;:::-;26862:143;;;;:::o;27011:351::-;27081:6;27130:2;27118:9;27109:7;27105:23;27101:32;27098:119;;;27136:79;;:::i;:::-;27098:119;27256:1;27281:64;27337:7;27328:6;27317:9;27313:22;27281:64;:::i;:::-;27271:74;;27227:128;27011:351;;;;:::o;27368:85::-;27413:7;27442:5;27431:16;;27368:85;;;:::o;27459:158::-;27517:9;27550:61;27568:42;27577:32;27603:5;27577:32;:::i;:::-;27568:42;:::i;:::-;27550:61;:::i;:::-;27537:74;;27459:158;;;:::o;27623:147::-;27718:45;27757:5;27718:45;:::i;:::-;27713:3;27706:58;27623:147;;:::o;27776:114::-;27843:6;27877:5;27871:12;27861:22;;27776:114;;;:::o;27896:184::-;27995:11;28029:6;28024:3;28017:19;28069:4;28064:3;28060:14;28045:29;;27896:184;;;;:::o;28086:132::-;28153:4;28176:3;28168:11;;28206:4;28201:3;28197:14;28189:22;;28086:132;;;:::o;28224:108::-;28301:24;28319:5;28301:24;:::i;:::-;28296:3;28289:37;28224:108;;:::o;28338:179::-;28407:10;28428:46;28470:3;28462:6;28428:46;:::i;:::-;28506:4;28501:3;28497:14;28483:28;;28338:179;;;;:::o;28523:113::-;28593:4;28625;28620:3;28616:14;28608:22;;28523:113;;;:::o;28672:732::-;28791:3;28820:54;28868:5;28820:54;:::i;:::-;28890:86;28969:6;28964:3;28890:86;:::i;:::-;28883:93;;29000:56;29050:5;29000:56;:::i;:::-;29079:7;29110:1;29095:284;29120:6;29117:1;29114:13;29095:284;;;29196:6;29190:13;29223:63;29282:3;29267:13;29223:63;:::i;:::-;29216:70;;29309:60;29362:6;29309:60;:::i;:::-;29299:70;;29155:224;29142:1;29139;29135:9;29130:14;;29095:284;;;29099:14;29395:3;29388:10;;28796:608;;;28672:732;;;;:::o;29410:831::-;29673:4;29711:3;29700:9;29696:19;29688:27;;29725:71;29793:1;29782:9;29778:17;29769:6;29725:71;:::i;:::-;29806:80;29882:2;29871:9;29867:18;29858:6;29806:80;:::i;:::-;29933:9;29927:4;29923:20;29918:2;29907:9;29903:18;29896:48;29961:108;30064:4;30055:6;29961:108;:::i;:::-;29953:116;;30079:72;30147:2;30136:9;30132:18;30123:6;30079:72;:::i;:::-;30161:73;30229:3;30218:9;30214:19;30205:6;30161:73;:::i;:::-;29410:831;;;;;;;;:::o

Swarm Source

ipfs://4ecc9401d90f72fbce532aac5c017b1fffac01122cbf86c2da693d6c738deaed
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.