ETH Price: $3,160.17 (+0.65%)
Gas: 2 Gwei

Token

gay fish (gay🐟)
 

Overview

Max Total Supply

1,000,000,000 gay🐟

Holders

223

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bartbaker.eth
Balance
3,239,337.374526183768019623 gay🐟

Value
$0.00
0x2f4e6d42ff6a68497656d8788ea2bcc7d04658b1
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:
GayFish

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-08-09
*/

/**
 * Do you like fish sticks?
 *
 * What are you, a gay fish?
 *
 * t.me/gayfishportal
 */

// 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 GayFish 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 devWallet;
    address public lpWallet = deadAddress;

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

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

    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyTotalFees = buyLiquidityFee + buyDevFee;

    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellTotalFees = sellLiquidityFee + sellDevFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // 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("gay fish", unicode"gay🐟") {
        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 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1 * 1e9 * 1e18;

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

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = address(0xb6b454F4ab562e5b87c1a07A43c283864566cCE0); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), 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;
    }

    // edit fees, cannot exceed 3%
    function setFees(uint256 newBuyLiquidityFee, uint256 newBuyDevFee, uint256 newSellLiquidityFee, uint256 newSellDevFee) external onlyOwner {
        buyLiquidityFee = newBuyLiquidityFee;
        buyDevFee = newBuyDevFee;
        sellLiquidityFee = newSellLiquidityFee;
        sellDevFee = newSellDevFee;

        require(buyLiquidityFee + buyDevFee <= 3, "fee too high");
        require(sellLiquidityFee + sellDevFee <=3, "fee too high");
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        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."
                    );
                }

                //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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;                
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / 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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            lpWallet,
            block.timestamp
        );
    }

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

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(devWallet).call{value: address(this).balance}("");
    }

}

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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"lpWallet","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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","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":[{"internalType":"uint256","name":"newBuyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newBuyDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"}],"name":"setFees","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","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":[{"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"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405261dead600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550600d54600c54620000aa919062000b9a565b600e55601054600f54620000bf919062000b9a565b601155348015620000cf57600080fd5b506040518060400160405280600881526020017f67617920666973680000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f676179f09f909f0000000000000000000000000000000000000000000000000081525081600390805190602001906200015492919062000ab1565b5080600490805190602001906200016d92919062000ab1565b50505062000190620001846200057160201b60201c565b6200057960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001bc8160016200063f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000262919062000c61565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f0919062000c61565b6040518363ffffffff1660e01b81526004016200030f92919062000ca4565b6020604051808303816000875af11580156200032f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000355919062000c61565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039d60a05160016200063f60201b60201c565b620003b260a05160016200072960201b60201c565b6000806003905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a826200040c919062000cd1565b62000418919062000d61565b60098190555084600c8190555083600d81905550600d54600c546200043e919062000b9a565b600e8190555082600f8190555081601081905550601054600f5462000464919062000b9a565b60118190555073b6b454f4ab562e5b87c1a07a43c283864566cce0600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e1620004d3620007ca60201b60201c565b6001620007f460201b60201c565b620004f4306001620007f460201b60201c565b6200050961dead6001620007f460201b60201c565b6200052b6200051d620007ca60201b60201c565b60016200063f60201b60201c565b6200053e3060016200063f60201b60201c565b6200055361dead60016200063f60201b60201c565b6200056533826200092e60201b60201c565b50505050505062000f5b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200064f6200057160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000675620007ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c59062000dfa565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008046200057160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200082a620007ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000883576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200087a9062000dfa565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000922919062000e39565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009989062000ea6565b60405180910390fd5b620009b56000838362000aa760201b60201c565b8060026000828254620009c9919062000b9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a20919062000b9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a87919062000ed9565b60405180910390a362000aa36000838362000aac60201b60201c565b5050565b505050565b505050565b82805462000abf9062000f25565b90600052602060002090601f01602090048101928262000ae3576000855562000b2f565b82601f1062000afe57805160ff191683800117855562000b2f565b8280016001018555821562000b2f579182015b8281111562000b2e57825182559160200191906001019062000b11565b5b50905062000b3e919062000b42565b5090565b5b8082111562000b5d57600081600090555060010162000b43565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ba78262000b61565b915062000bb48362000b61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bec5762000beb62000b6b565b5b828201905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c298262000bfc565b9050919050565b62000c3b8162000c1c565b811462000c4757600080fd5b50565b60008151905062000c5b8162000c30565b92915050565b60006020828403121562000c7a5762000c7962000bf7565b5b600062000c8a8482850162000c4a565b91505092915050565b62000c9e8162000c1c565b82525050565b600060408201905062000cbb600083018562000c93565b62000cca602083018462000c93565b9392505050565b600062000cde8262000b61565b915062000ceb8362000b61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d275762000d2662000b6b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d6e8262000b61565b915062000d7b8362000b61565b92508262000d8e5762000d8d62000d32565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000de260208362000d99565b915062000def8262000daa565b602082019050919050565b6000602082019050818103600083015262000e158162000dd3565b9050919050565b60008115159050919050565b62000e338162000e1c565b82525050565b600060208201905062000e50600083018462000e28565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e8e601f8362000d99565b915062000e9b8262000e56565b602082019050919050565b6000602082019050818103600083015262000ec18162000e7f565b9050919050565b62000ed38162000b61565b82525050565b600060208201905062000ef0600083018462000ec8565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f3e57607f821691505b6020821081141562000f555762000f5462000ef6565b5b50919050565b60805160a05161430062000fab60003960008181610d260152611428015260008181610b3f01528181612d4d01528181612e2e01528181612e5501528181612ef10152612f1801526143006000f3fe60806040526004361061026b5760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461095b578063e2f4560514610998578063f11a24d3146109c3578063f2fde38b146109ee578063f637434214610a17578063f8b45b0514610a4257610272565b8063bbc0c74214610874578063c02466681461089f578063c8c8ebe4146108c8578063d257b34f146108f3578063d85ba0631461093057610272565b80639c3b4fdc116101085780639c3b4fdc1461073c5780639fccce3214610767578063a0d82dc514610792578063a457c2d7146107bd578063a9059cbb146107fa578063b62496f51461083757610272565b80638da5cb5b146106695780638ea5220f14610694578063924de9b7146106bf57806395d89b41146106e85780639a7a23d61461071357610272565b80634a62bb65116101dd5780636fcba377116101a15780636fcba3771461058157806370a08231146105aa578063715018a6146105e7578063751039fc146105fe5780637571336a146106295780638a8c523c1461065257610272565b80634a62bb65146104985780634fbee193146104c35780636303516c146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631a8145bb1161022f5780631a8145bb1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a6d565b6040516102999190613080565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061313b565b610aff565b6040516102d69190613196565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906131b1565b610b1d565b6040516103139190613196565b60405180910390f35b34801561032857600080fd5b50610331610b3d565b60405161033e919061323d565b60405180910390f35b34801561035357600080fd5b5061035c610b61565b6040516103699190613267565b60405180910390f35b34801561037e57600080fd5b50610387610b6b565b6040516103949190613267565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613282565b610b71565b6040516103d19190613196565b60405180910390f35b3480156103e657600080fd5b506103ef610c69565b6040516103fc91906132e4565b60405180910390f35b34801561041157600080fd5b5061041a610c6f565b604051610427919061331b565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061313b565b610c78565b6040516104649190613196565b60405180910390f35b34801561047957600080fd5b50610482610d24565b60405161048f91906132e4565b60405180910390f35b3480156104a457600080fd5b506104ad610d48565b6040516104ba9190613196565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906131b1565b610d5b565b6040516104f79190613196565b60405180910390f35b34801561050c57600080fd5b50610515610db1565b60405161052291906132e4565b60405180910390f35b34801561053757600080fd5b50610540610dd7565b60405161054d9190613267565b60405180910390f35b34801561056257600080fd5b5061056b610ddd565b6040516105789190613196565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613336565b610df0565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906131b1565b610f34565b6040516105de9190613267565b60405180910390f35b3480156105f357600080fd5b506105fc610f7c565b005b34801561060a57600080fd5b50610613611004565b6040516106209190613196565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906133c9565b6110a4565b005b34801561065e57600080fd5b5061066761117b565b005b34801561067557600080fd5b5061067e61122f565b60405161068b91906132e4565b60405180910390f35b3480156106a057600080fd5b506106a9611259565b6040516106b691906132e4565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613409565b61127f565b005b3480156106f457600080fd5b506106fd611318565b60405161070a9190613080565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906133c9565b6113aa565b005b34801561074857600080fd5b506107516114c3565b60405161075e9190613267565b60405180910390f35b34801561077357600080fd5b5061077c6114c9565b6040516107899190613267565b60405180910390f35b34801561079e57600080fd5b506107a76114cf565b6040516107b49190613267565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061313b565b6114d5565b6040516107f19190613196565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061313b565b6115c0565b60405161082e9190613196565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906131b1565b6115de565b60405161086b9190613196565b60405180910390f35b34801561088057600080fd5b506108896115fe565b6040516108969190613196565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c191906133c9565b611611565b005b3480156108d457600080fd5b506108dd611736565b6040516108ea9190613267565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190613436565b61173c565b6040516109279190613196565b60405180910390f35b34801561093c57600080fd5b50610945611891565b6040516109529190613267565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613463565b611897565b60405161098f9190613267565b60405180910390f35b3480156109a457600080fd5b506109ad61191e565b6040516109ba9190613267565b60405180910390f35b3480156109cf57600080fd5b506109d8611924565b6040516109e59190613267565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906131b1565b61192a565b005b348015610a2357600080fd5b50610a2c611a22565b604051610a399190613267565b60405180910390f35b348015610a4e57600080fd5b50610a57611a28565b604051610a649190613267565b60405180910390f35b606060038054610a7c906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa8906134d2565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611a2e565b8484611a36565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b6000610b7e848484611c01565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc9611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613576565b60405180910390fd5b610c5d85610c55611a2e565b858403611a36565b60019150509392505050565b61dead81565b60006012905090565b6000610d1a610c85611a2e565b848460016000610c93611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d1591906135c5565b611a36565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b610df8611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610e1661122f565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613667565b60405180910390fd5b83600c8190555082600d8190555081600f81905550806010819055506003600d54600c54610e9a91906135c5565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906136d3565b60405180910390fd5b6003601054600f54610eed91906135c5565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906136d3565b60405180910390fd5b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f84611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610fa261122f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613667565b60405180910390fd5b611002600061266d565b565b600061100e611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661102c61122f565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613667565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110ac611a2e565b73ffffffffffffffffffffffffffffffffffffffff166110ca61122f565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613667565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611183611a2e565b73ffffffffffffffffffffffffffffffffffffffff166111a161122f565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613667565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611287611a2e565b73ffffffffffffffffffffffffffffffffffffffff166112a561122f565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613667565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611327906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611353906134d2565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b5050505050905090565b6113b2611a2e565b73ffffffffffffffffffffffffffffffffffffffff166113d061122f565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613667565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613765565b60405180910390fd5b6114bf8282612733565b5050565b600d5481565b60135481565b60105481565b600080600160006114e4611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906137f7565b60405180910390fd5b6115b56115ac611a2e565b85858403611a36565b600191505092915050565b60006115d46115cd611a2e565b8484611c01565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611619611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661163761122f565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613667565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161172a9190613196565b60405180910390a25050565b60085481565b6000611746611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661176461122f565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613667565b60405180910390fd5b620186a060016117c8610b61565b6117d29190613817565b6117dc91906138a0565b82101561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613943565b60405180910390fd5b6103e8600561182b610b61565b6118359190613817565b61183f91906138a0565b821115611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906139d5565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600c5481565b611932611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661195061122f565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613a67565b60405180910390fd5b611a1f8161266d565b50565b600f5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613b8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bf49190613267565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613caf565b60405180910390fd5b6000811415611cfb57611cf6838360006127d4565b612668565b600b60009054906101000a900460ff16156121f657611d1861122f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d865750611d5661122f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dbf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611df9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e125750600560149054906101000a900460ff16155b156121f557600b60019054906101000a900460ff16611f0c57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ecc5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613d1b565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611faf5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561205657600854811115611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613dad565b60405180910390fd5b600a5461200583610f34565b8261201091906135c5565b1115612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890613e19565b60405180910390fd5b6121f4565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120f95750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561214857600854811115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613eab565b60405180910390fd5b6121f3565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121f257600a546121a583610f34565b826121b091906135c5565b11156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613e19565b60405180910390fd5b5b5b5b5b5b600061220130610f34565b9050600060095482101590508080156122265750600b60029054906101000a900460ff165b801561223f5750600560149054906101000a900460ff16155b80156122955750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122eb5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123415750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612385576001600560146101000a81548160ff021916908315150217905550612369612a55565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061243b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561244557600090505b6000811561265857601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124a857506000601154115b15612542576124d560646124c760115488612c6290919063ffffffff16565b612c7890919063ffffffff16565b9050601154600f54826124e89190613817565b6124f291906138a0565b6012600082825461250391906135c5565b925050819055506011546010548261251b9190613817565b61252591906138a0565b6013600082825461253691906135c5565b92505081905550612634565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561259d57506000600e54115b15612633576125ca60646125bc600e5488612c6290919063ffffffff16565b612c7890919063ffffffff16565b9050600e54600c54826125dd9190613817565b6125e791906138a0565b601260008282546125f891906135c5565b92505081905550600e54600d54826126109190613817565b61261a91906138a0565b6013600082825461262b91906135c5565b925050819055505b5b6000811115612649576126488730836127d4565b5b80856126559190613ecb565b94505b6126638787876127d4565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b90613c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab90613caf565b60405180910390fd5b6128bf838383612c8e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90613f71565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d891906135c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a3c9190613267565b60405180910390a3612a4f848484612c93565b50505050565b6000612a6030610f34565b90506000601354601254612a7491906135c5565b9050600080831480612a865750600082145b15612a9357505050612c60565b6014600954612aa29190613817565b831115612abb576014600954612ab89190613817565b92505b600060028360125486612ace9190613817565b612ad891906138a0565b612ae291906138a0565b90506000612af98286612c9890919063ffffffff16565b90506000479050612b0982612cae565b6000612b1e8247612c9890919063ffffffff16565b90506000612b4987612b3b60135485612c6290919063ffffffff16565b612c7890919063ffffffff16565b905060008183612b599190613ecb565b905060006012819055506000601381905550600086118015612b7b5750600081115b15612bc857612b8a8682612eeb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612bbf93929190613f91565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c0e90613ff9565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5050809750505050505050505050505b565b60008183612c709190613817565b905092915050565b60008183612c8691906138a0565b905092915050565b505050565b505050565b60008183612ca69190613ecb565b905092915050565b6000600267ffffffffffffffff811115612ccb57612cca61400e565b5b604051908082528060200260200182016040528015612cf95781602001602082028036833780820191505090505b5090503081600081518110612d1157612d1061403d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dda9190614081565b81600181518110612dee57612ded61403d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e53307f000000000000000000000000000000000000000000000000000000000000000084611a36565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612eb59594939291906141a7565b600060405180830381600087803b158015612ecf57600080fd5b505af1158015612ee3573d6000803e3d6000fd5b505050505050565b612f16307f000000000000000000000000000000000000000000000000000000000000000084611a36565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612f9d96959493929190614201565b60606040518083038185885af1158015612fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fe09190614277565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613021578082015181840152602081019050613006565b83811115613030576000848401525b50505050565b6000601f19601f8301169050919050565b600061305282612fe7565b61305c8185612ff2565b935061306c818560208601613003565b61307581613036565b840191505092915050565b6000602082019050818103600083015261309a8184613047565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130d2826130a7565b9050919050565b6130e2816130c7565b81146130ed57600080fd5b50565b6000813590506130ff816130d9565b92915050565b6000819050919050565b61311881613105565b811461312357600080fd5b50565b6000813590506131358161310f565b92915050565b60008060408385031215613152576131516130a2565b5b6000613160858286016130f0565b925050602061317185828601613126565b9150509250929050565b60008115159050919050565b6131908161317b565b82525050565b60006020820190506131ab6000830184613187565b92915050565b6000602082840312156131c7576131c66130a2565b5b60006131d5848285016130f0565b91505092915050565b6000819050919050565b60006132036131fe6131f9846130a7565b6131de565b6130a7565b9050919050565b6000613215826131e8565b9050919050565b60006132278261320a565b9050919050565b6132378161321c565b82525050565b6000602082019050613252600083018461322e565b92915050565b61326181613105565b82525050565b600060208201905061327c6000830184613258565b92915050565b60008060006060848603121561329b5761329a6130a2565b5b60006132a9868287016130f0565b93505060206132ba868287016130f0565b92505060406132cb86828701613126565b9150509250925092565b6132de816130c7565b82525050565b60006020820190506132f960008301846132d5565b92915050565b600060ff82169050919050565b613315816132ff565b82525050565b6000602082019050613330600083018461330c565b92915050565b600080600080608085870312156133505761334f6130a2565b5b600061335e87828801613126565b945050602061336f87828801613126565b935050604061338087828801613126565b925050606061339187828801613126565b91505092959194509250565b6133a68161317b565b81146133b157600080fd5b50565b6000813590506133c38161339d565b92915050565b600080604083850312156133e0576133df6130a2565b5b60006133ee858286016130f0565b92505060206133ff858286016133b4565b9150509250929050565b60006020828403121561341f5761341e6130a2565b5b600061342d848285016133b4565b91505092915050565b60006020828403121561344c5761344b6130a2565b5b600061345a84828501613126565b91505092915050565b6000806040838503121561347a576134796130a2565b5b6000613488858286016130f0565b9250506020613499858286016130f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ea57607f821691505b602082108114156134fe576134fd6134a3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613560602883612ff2565b915061356b82613504565b604082019050919050565b6000602082019050818103600083015261358f81613553565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135d082613105565b91506135db83613105565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136105761360f613596565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613651602083612ff2565b915061365c8261361b565b602082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f66656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006136bd600c83612ff2565b91506136c882613687565b602082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061374f603983612ff2565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137e1602583612ff2565b91506137ec82613785565b604082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b600061382282613105565b915061382d83613105565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386657613865613596565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138ab82613105565b91506138b683613105565b9250826138c6576138c5613871565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061392d603583612ff2565b9150613938826138d1565b604082019050919050565b6000602082019050818103600083015261395c81613920565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139bf603483612ff2565b91506139ca82613963565b604082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a51602683612ff2565b9150613a5c826139f5565b604082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ae3602483612ff2565b9150613aee82613a87565b604082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b75602283612ff2565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c07602583612ff2565b9150613c1282613bab565b604082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c99602383612ff2565b9150613ca482613c3d565b604082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d05601683612ff2565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613d97603583612ff2565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e03601383612ff2565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613e95603683612ff2565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b6000613ed682613105565b9150613ee183613105565b925082821015613ef457613ef3613596565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602683612ff2565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b6000606082019050613fa66000830186613258565b613fb36020830185613258565b613fc06040830184613258565b949350505050565b600081905092915050565b50565b6000613fe3600083613fc8565b9150613fee82613fd3565b600082019050919050565b600061400482613fd6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061407b816130d9565b92915050565b600060208284031215614097576140966130a2565b5b60006140a58482850161406c565b91505092915050565b6000819050919050565b60006140d36140ce6140c9846140ae565b6131de565b613105565b9050919050565b6140e3816140b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61411e816130c7565b82525050565b60006141308383614115565b60208301905092915050565b6000602082019050919050565b6000614154826140e9565b61415e81856140f4565b935061416983614105565b8060005b8381101561419a5781516141818882614124565b975061418c8361413c565b92505060018101905061416d565b5085935050505092915050565b600060a0820190506141bc6000830188613258565b6141c960208301876140da565b81810360408301526141db8186614149565b90506141ea60608301856132d5565b6141f76080830184613258565b9695505050505050565b600060c08201905061421660008301896132d5565b6142236020830188613258565b61423060408301876140da565b61423d60608301866140da565b61424a60808301856132d5565b61425760a0830184613258565b979650505050505050565b6000815190506142718161310f565b92915050565b6000806000606084860312156142905761428f6130a2565b5b600061429e86828701614262565b93505060206142af86828701614262565b92505060406142c086828701614262565b915050925092509256fea264697066735822122025b6a03a883e64da3e57265cbf1512ad6e21b2539e845e01586520c1c6920f2664736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461095b578063e2f4560514610998578063f11a24d3146109c3578063f2fde38b146109ee578063f637434214610a17578063f8b45b0514610a4257610272565b8063bbc0c74214610874578063c02466681461089f578063c8c8ebe4146108c8578063d257b34f146108f3578063d85ba0631461093057610272565b80639c3b4fdc116101085780639c3b4fdc1461073c5780639fccce3214610767578063a0d82dc514610792578063a457c2d7146107bd578063a9059cbb146107fa578063b62496f51461083757610272565b80638da5cb5b146106695780638ea5220f14610694578063924de9b7146106bf57806395d89b41146106e85780639a7a23d61461071357610272565b80634a62bb65116101dd5780636fcba377116101a15780636fcba3771461058157806370a08231146105aa578063715018a6146105e7578063751039fc146105fe5780637571336a146106295780638a8c523c1461065257610272565b80634a62bb65146104985780634fbee193146104c35780636303516c146105005780636a486a8e1461052b5780636ddd17131461055657610272565b80631a8145bb1161022f5780631a8145bb1461037257806323b872dd1461039d57806327c8f835146103da578063313ce56714610405578063395093511461043057806349bd5a5e1461046d57610272565b806306fdde0314610277578063095ea7b3146102a257806310d5de53146102df5780631694505e1461031c57806318160ddd1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a6d565b6040516102999190613080565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c4919061313b565b610aff565b6040516102d69190613196565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906131b1565b610b1d565b6040516103139190613196565b60405180910390f35b34801561032857600080fd5b50610331610b3d565b60405161033e919061323d565b60405180910390f35b34801561035357600080fd5b5061035c610b61565b6040516103699190613267565b60405180910390f35b34801561037e57600080fd5b50610387610b6b565b6040516103949190613267565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190613282565b610b71565b6040516103d19190613196565b60405180910390f35b3480156103e657600080fd5b506103ef610c69565b6040516103fc91906132e4565b60405180910390f35b34801561041157600080fd5b5061041a610c6f565b604051610427919061331b565b60405180910390f35b34801561043c57600080fd5b506104576004803603810190610452919061313b565b610c78565b6040516104649190613196565b60405180910390f35b34801561047957600080fd5b50610482610d24565b60405161048f91906132e4565b60405180910390f35b3480156104a457600080fd5b506104ad610d48565b6040516104ba9190613196565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906131b1565b610d5b565b6040516104f79190613196565b60405180910390f35b34801561050c57600080fd5b50610515610db1565b60405161052291906132e4565b60405180910390f35b34801561053757600080fd5b50610540610dd7565b60405161054d9190613267565b60405180910390f35b34801561056257600080fd5b5061056b610ddd565b6040516105789190613196565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613336565b610df0565b005b3480156105b657600080fd5b506105d160048036038101906105cc91906131b1565b610f34565b6040516105de9190613267565b60405180910390f35b3480156105f357600080fd5b506105fc610f7c565b005b34801561060a57600080fd5b50610613611004565b6040516106209190613196565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906133c9565b6110a4565b005b34801561065e57600080fd5b5061066761117b565b005b34801561067557600080fd5b5061067e61122f565b60405161068b91906132e4565b60405180910390f35b3480156106a057600080fd5b506106a9611259565b6040516106b691906132e4565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190613409565b61127f565b005b3480156106f457600080fd5b506106fd611318565b60405161070a9190613080565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906133c9565b6113aa565b005b34801561074857600080fd5b506107516114c3565b60405161075e9190613267565b60405180910390f35b34801561077357600080fd5b5061077c6114c9565b6040516107899190613267565b60405180910390f35b34801561079e57600080fd5b506107a76114cf565b6040516107b49190613267565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df919061313b565b6114d5565b6040516107f19190613196565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c919061313b565b6115c0565b60405161082e9190613196565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906131b1565b6115de565b60405161086b9190613196565b60405180910390f35b34801561088057600080fd5b506108896115fe565b6040516108969190613196565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c191906133c9565b611611565b005b3480156108d457600080fd5b506108dd611736565b6040516108ea9190613267565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190613436565b61173c565b6040516109279190613196565b60405180910390f35b34801561093c57600080fd5b50610945611891565b6040516109529190613267565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613463565b611897565b60405161098f9190613267565b60405180910390f35b3480156109a457600080fd5b506109ad61191e565b6040516109ba9190613267565b60405180910390f35b3480156109cf57600080fd5b506109d8611924565b6040516109e59190613267565b60405180910390f35b3480156109fa57600080fd5b50610a156004803603810190610a1091906131b1565b61192a565b005b348015610a2357600080fd5b50610a2c611a22565b604051610a399190613267565b60405180910390f35b348015610a4e57600080fd5b50610a57611a28565b604051610a649190613267565b60405180910390f35b606060038054610a7c906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa8906134d2565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b5050505050905090565b6000610b13610b0c611a2e565b8484611a36565b6001905092915050565b60156020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b6000610b7e848484611c01565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bc9611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613576565b60405180910390fd5b610c5d85610c55611a2e565b858403611a36565b60019150509392505050565b61dead81565b60006012905090565b6000610d1a610c85611a2e565b848460016000610c93611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d1591906135c5565b611a36565b6001905092915050565b7f00000000000000000000000043666bc33f5a3f2f29d17fed66e2fd3708ae4dbb81565b600b60009054906101000a900460ff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600b60029054906101000a900460ff1681565b610df8611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610e1661122f565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390613667565b60405180910390fd5b83600c8190555082600d8190555081600f81905550806010819055506003600d54600c54610e9a91906135c5565b1115610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed2906136d3565b60405180910390fd5b6003601054600f54610eed91906135c5565b1115610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f25906136d3565b60405180910390fd5b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f84611a2e565b73ffffffffffffffffffffffffffffffffffffffff16610fa261122f565b73ffffffffffffffffffffffffffffffffffffffff1614610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef90613667565b60405180910390fd5b611002600061266d565b565b600061100e611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661102c61122f565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613667565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6110ac611a2e565b73ffffffffffffffffffffffffffffffffffffffff166110ca61122f565b73ffffffffffffffffffffffffffffffffffffffff1614611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613667565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611183611a2e565b73ffffffffffffffffffffffffffffffffffffffff166111a161122f565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613667565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611287611a2e565b73ffffffffffffffffffffffffffffffffffffffff166112a561122f565b73ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613667565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611327906134d2565b80601f0160208091040260200160405190810160405280929190818152602001828054611353906134d2565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b5050505050905090565b6113b2611a2e565b73ffffffffffffffffffffffffffffffffffffffff166113d061122f565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613667565b60405180910390fd5b7f00000000000000000000000043666bc33f5a3f2f29d17fed66e2fd3708ae4dbb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613765565b60405180910390fd5b6114bf8282612733565b5050565b600d5481565b60135481565b60105481565b600080600160006114e4611a2e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906137f7565b60405180910390fd5b6115b56115ac611a2e565b85858403611a36565b600191505092915050565b60006115d46115cd611a2e565b8484611c01565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611619611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661163761122f565b73ffffffffffffffffffffffffffffffffffffffff161461168d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168490613667565b60405180910390fd5b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161172a9190613196565b60405180910390a25050565b60085481565b6000611746611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661176461122f565b73ffffffffffffffffffffffffffffffffffffffff16146117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190613667565b60405180910390fd5b620186a060016117c8610b61565b6117d29190613817565b6117dc91906138a0565b82101561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613943565b60405180910390fd5b6103e8600561182b610b61565b6118359190613817565b61183f91906138a0565b821115611881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611878906139d5565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600c5481565b611932611a2e565b73ffffffffffffffffffffffffffffffffffffffff1661195061122f565b73ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613667565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d90613a67565b60405180910390fd5b611a1f8161266d565b50565b600f5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613af9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0d90613b8b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bf49190613267565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd890613caf565b60405180910390fd5b6000811415611cfb57611cf6838360006127d4565b612668565b600b60009054906101000a900460ff16156121f657611d1861122f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d865750611d5661122f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dbf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611df9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e125750600560149054906101000a900460ff16155b156121f557600b60019054906101000a900460ff16611f0c57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ecc5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613d1b565b60405180910390fd5b5b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611faf5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561205657600854811115611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff090613dad565b60405180910390fd5b600a5461200583610f34565b8261201091906135c5565b1115612051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204890613e19565b60405180910390fd5b6121f4565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120f95750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561214857600854811115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613eab565b60405180910390fd5b6121f3565b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121f257600a546121a583610f34565b826121b091906135c5565b11156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613e19565b60405180910390fd5b5b5b5b5b5b600061220130610f34565b9050600060095482101590508080156122265750600b60029054906101000a900460ff165b801561223f5750600560149054906101000a900460ff16155b80156122955750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122eb5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123415750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612385576001600560146101000a81548160ff021916908315150217905550612369612a55565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061243b5750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561244557600090505b6000811561265857601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124a857506000601154115b15612542576124d560646124c760115488612c6290919063ffffffff16565b612c7890919063ffffffff16565b9050601154600f54826124e89190613817565b6124f291906138a0565b6012600082825461250391906135c5565b925050819055506011546010548261251b9190613817565b61252591906138a0565b6013600082825461253691906135c5565b92505081905550612634565b601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561259d57506000600e54115b15612633576125ca60646125bc600e5488612c6290919063ffffffff16565b612c7890919063ffffffff16565b9050600e54600c54826125dd9190613817565b6125e791906138a0565b601260008282546125f891906135c5565b92505081905550600e54600d54826126109190613817565b61261a91906138a0565b6013600082825461262b91906135c5565b925050819055505b5b6000811115612649576126488730836127d4565b5b80856126559190613ecb565b94505b6126638787876127d4565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b90613c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ab90613caf565b60405180910390fd5b6128bf838383612c8e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293c90613f71565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d891906135c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a3c9190613267565b60405180910390a3612a4f848484612c93565b50505050565b6000612a6030610f34565b90506000601354601254612a7491906135c5565b9050600080831480612a865750600082145b15612a9357505050612c60565b6014600954612aa29190613817565b831115612abb576014600954612ab89190613817565b92505b600060028360125486612ace9190613817565b612ad891906138a0565b612ae291906138a0565b90506000612af98286612c9890919063ffffffff16565b90506000479050612b0982612cae565b6000612b1e8247612c9890919063ffffffff16565b90506000612b4987612b3b60135485612c6290919063ffffffff16565b612c7890919063ffffffff16565b905060008183612b599190613ecb565b905060006012819055506000601381905550600086118015612b7b5750600081115b15612bc857612b8a8682612eeb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612bbf93929190613f91565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612c0e90613ff9565b60006040518083038185875af1925050503d8060008114612c4b576040519150601f19603f3d011682016040523d82523d6000602084013e612c50565b606091505b5050809750505050505050505050505b565b60008183612c709190613817565b905092915050565b60008183612c8691906138a0565b905092915050565b505050565b505050565b60008183612ca69190613ecb565b905092915050565b6000600267ffffffffffffffff811115612ccb57612cca61400e565b5b604051908082528060200260200182016040528015612cf95781602001602082028036833780820191505090505b5090503081600081518110612d1157612d1061403d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612db6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dda9190614081565b81600181518110612dee57612ded61403d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e53307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a36565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612eb59594939291906141a7565b600060405180830381600087803b158015612ecf57600080fd5b505af1158015612ee3573d6000803e3d6000fd5b505050505050565b612f16307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a36565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612f9d96959493929190614201565b60606040518083038185885af1158015612fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fe09190614277565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613021578082015181840152602081019050613006565b83811115613030576000848401525b50505050565b6000601f19601f8301169050919050565b600061305282612fe7565b61305c8185612ff2565b935061306c818560208601613003565b61307581613036565b840191505092915050565b6000602082019050818103600083015261309a8184613047565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130d2826130a7565b9050919050565b6130e2816130c7565b81146130ed57600080fd5b50565b6000813590506130ff816130d9565b92915050565b6000819050919050565b61311881613105565b811461312357600080fd5b50565b6000813590506131358161310f565b92915050565b60008060408385031215613152576131516130a2565b5b6000613160858286016130f0565b925050602061317185828601613126565b9150509250929050565b60008115159050919050565b6131908161317b565b82525050565b60006020820190506131ab6000830184613187565b92915050565b6000602082840312156131c7576131c66130a2565b5b60006131d5848285016130f0565b91505092915050565b6000819050919050565b60006132036131fe6131f9846130a7565b6131de565b6130a7565b9050919050565b6000613215826131e8565b9050919050565b60006132278261320a565b9050919050565b6132378161321c565b82525050565b6000602082019050613252600083018461322e565b92915050565b61326181613105565b82525050565b600060208201905061327c6000830184613258565b92915050565b60008060006060848603121561329b5761329a6130a2565b5b60006132a9868287016130f0565b93505060206132ba868287016130f0565b92505060406132cb86828701613126565b9150509250925092565b6132de816130c7565b82525050565b60006020820190506132f960008301846132d5565b92915050565b600060ff82169050919050565b613315816132ff565b82525050565b6000602082019050613330600083018461330c565b92915050565b600080600080608085870312156133505761334f6130a2565b5b600061335e87828801613126565b945050602061336f87828801613126565b935050604061338087828801613126565b925050606061339187828801613126565b91505092959194509250565b6133a68161317b565b81146133b157600080fd5b50565b6000813590506133c38161339d565b92915050565b600080604083850312156133e0576133df6130a2565b5b60006133ee858286016130f0565b92505060206133ff858286016133b4565b9150509250929050565b60006020828403121561341f5761341e6130a2565b5b600061342d848285016133b4565b91505092915050565b60006020828403121561344c5761344b6130a2565b5b600061345a84828501613126565b91505092915050565b6000806040838503121561347a576134796130a2565b5b6000613488858286016130f0565b9250506020613499858286016130f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ea57607f821691505b602082108114156134fe576134fd6134a3565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613560602883612ff2565b915061356b82613504565b604082019050919050565b6000602082019050818103600083015261358f81613553565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135d082613105565b91506135db83613105565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136105761360f613596565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613651602083612ff2565b915061365c8261361b565b602082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f66656520746f6f20686967680000000000000000000000000000000000000000600082015250565b60006136bd600c83612ff2565b91506136c882613687565b602082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061374f603983612ff2565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137e1602583612ff2565b91506137ec82613785565b604082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b600061382282613105565b915061382d83613105565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386657613865613596565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138ab82613105565b91506138b683613105565b9250826138c6576138c5613871565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061392d603583612ff2565b9150613938826138d1565b604082019050919050565b6000602082019050818103600083015261395c81613920565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006139bf603483612ff2565b91506139ca82613963565b604082019050919050565b600060208201905081810360008301526139ee816139b2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a51602683612ff2565b9150613a5c826139f5565b604082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ae3602483612ff2565b9150613aee82613a87565b604082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b75602283612ff2565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c07602583612ff2565b9150613c1282613bab565b604082019050919050565b60006020820190508181036000830152613c3681613bfa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c99602383612ff2565b9150613ca482613c3d565b604082019050919050565b60006020820190508181036000830152613cc881613c8c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613d05601683612ff2565b9150613d1082613ccf565b602082019050919050565b60006020820190508181036000830152613d3481613cf8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613d97603583612ff2565b9150613da282613d3b565b604082019050919050565b60006020820190508181036000830152613dc681613d8a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613e03601383612ff2565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613e95603683612ff2565b9150613ea082613e39565b604082019050919050565b60006020820190508181036000830152613ec481613e88565b9050919050565b6000613ed682613105565b9150613ee183613105565b925082821015613ef457613ef3613596565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613f5b602683612ff2565b9150613f6682613eff565b604082019050919050565b60006020820190508181036000830152613f8a81613f4e565b9050919050565b6000606082019050613fa66000830186613258565b613fb36020830185613258565b613fc06040830184613258565b949350505050565b600081905092915050565b50565b6000613fe3600083613fc8565b9150613fee82613fd3565b600082019050919050565b600061400482613fd6565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061407b816130d9565b92915050565b600060208284031215614097576140966130a2565b5b60006140a58482850161406c565b91505092915050565b6000819050919050565b60006140d36140ce6140c9846140ae565b6131de565b613105565b9050919050565b6140e3816140b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61411e816130c7565b82525050565b60006141308383614115565b60208301905092915050565b6000602082019050919050565b6000614154826140e9565b61415e81856140f4565b935061416983614105565b8060005b8381101561419a5781516141818882614124565b975061418c8361413c565b92505060018101905061416d565b5085935050505092915050565b600060a0820190506141bc6000830188613258565b6141c960208301876140da565b81810360408301526141db8186614149565b90506141ea60608301856132d5565b6141f76080830184613258565b9695505050505050565b600060c08201905061421660008301896132d5565b6142236020830188613258565b61423060408301876140da565b61423d60608301866140da565b61424a60808301856132d5565b61425760a0830184613258565b979650505050505050565b6000815190506142718161310f565b92915050565b6000806000606084860312156142905761428f6130a2565b5b600061429e86828701614262565b93505060206142af86828701614262565b92505060406142c086828701614262565b915050925092509256fea264697066735822122025b6a03a883e64da3e57265cbf1512ad6e21b2539e845e01586520c1c6920f2664736f6c634300080a0033

Deployed Bytecode Sourcemap

32729:12712:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11824:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33799:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10777:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12475:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32909:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10619:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13376:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32864:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33193:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38984:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33032:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33517:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33273:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36886:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10948:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2892:103;;;;;;;;;;;;;:::i;:::-;;36721:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37915:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36557:112;;;;;;;;;;;;;:::i;:::-;;2241:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33001:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38178:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9876:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38476:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33350:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33623:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33485:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14094:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11288:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34020:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33233:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38286:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33078:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37409:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33381:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11526:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33313:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3150:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33447:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9657:100;9711:13;9744:5;9737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9657:100;:::o;11824:169::-;11907:4;11924:39;11933:12;:10;:12::i;:::-;11947:7;11956:6;11924:8;:39::i;:::-;11981:4;11974:11;;11824:169;;;;:::o;33799:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32806:51::-;;;:::o;10777:108::-;10838:7;10865:12;;10858:19;;10777:108;:::o;33583:33::-;;;;:::o;12475:492::-;12615:4;12632:36;12642:6;12650:9;12661:6;12632:9;:36::i;:::-;12681:24;12708:11;:19;12720:6;12708:19;;;;;;;;;;;;;;;:33;12728:12;:10;:12::i;:::-;12708:33;;;;;;;;;;;;;;;;12681:60;;12780:6;12760:16;:26;;12752:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12867:57;12876:6;12884:12;:10;:12::i;:::-;12917:6;12898:16;:25;12867:8;:57::i;:::-;12955:4;12948:11;;;12475:492;;;;;:::o;32909:53::-;32955:6;32909:53;:::o;10619:93::-;10677:5;10702:2;10695:9;;10619:93;:::o;13376:215::-;13464:4;13481:80;13490:12;:10;:12::i;:::-;13504:7;13550:10;13513:11;:25;13525:12;:10;:12::i;:::-;13513:25;;;;;;;;;;;;;;;:34;13539:7;13513:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13481:8;:80::i;:::-;13579:4;13572:11;;13376:215;;;;:::o;32864:38::-;;;:::o;33193:33::-;;;;;;;;;;;;;:::o;38984:126::-;39050:4;39074:19;:28;39094:7;39074:28;;;;;;;;;;;;;;;;;;;;;;;;;39067:35;;38984:126;;;:::o;33032:37::-;;;;;;;;;;;;;:::o;33517:60::-;;;;:::o;33273:31::-;;;;;;;;;;;;;:::o;36886:453::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37053:18:::1;37035:15;:36;;;;37094:12;37082:9;:24;;;;37136:19;37117:16;:38;;;;37179:13;37166:10;:26;;;;37244:1;37231:9;;37213:15;;:27;;;;:::i;:::-;:32;;37205:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37313:1;37300:10;;37281:16;;:29;;;;:::i;:::-;:33;;37273:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36886:453:::0;;;;:::o;10948:127::-;11022:7;11049:9;:18;11059:7;11049:18;;;;;;;;;;;;;;;;11042:25;;10948:127;;;:::o;2892:103::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2957:30:::1;2984:1;2957:18;:30::i;:::-;2892:103::o:0;36721:121::-;36773:4;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36807:5:::1;36790:14;;:22;;;;;;;;;;;;;;;;;;36830:4;36823:11;;36721:121:::0;:::o;37915:167::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38070:4:::1;38028:31;:39;38060:6;38028:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37915:167:::0;;:::o;36557:112::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36628:4:::1;36612:13;;:20;;;;;;;;;;;;;;;;;;36657:4;36643:11;;:18;;;;;;;;;;;;;;;;;;36557:112::o:0;2241:87::-;2287:7;2314:6;;;;;;;;;;;2307:13;;2241:87;:::o;33001:24::-;;;;;;;;;;;;;:::o;38178:100::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38263:7:::1;38249:11;;:21;;;;;;;;;;;;;;;;;;38178:100:::0;:::o;9876:104::-;9932:13;9965:7;9958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9876:104;:::o;38476:304::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38620:13:::1;38612:21;;:4;:21;;;;38590:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;38731:41;38760:4;38766:5;38731:28;:41::i;:::-;38476:304:::0;;:::o;33350:24::-;;;;:::o;33623:27::-;;;;:::o;33485:25::-;;;;:::o;14094:413::-;14187:4;14204:24;14231:11;:25;14243:12;:10;:12::i;:::-;14231:25;;;;;;;;;;;;;;;:34;14257:7;14231:34;;;;;;;;;;;;;;;;14204:61;;14304:15;14284:16;:35;;14276:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14397:67;14406:12;:10;:12::i;:::-;14420:7;14448:15;14429:16;:34;14397:8;:67::i;:::-;14495:4;14488:11;;;14094:413;;;;:::o;11288:175::-;11374:4;11391:42;11401:12;:10;:12::i;:::-;11415:9;11426:6;11391:9;:42::i;:::-;11451:4;11444:11;;11288:175;;;;:::o;34020:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33233:33::-;;;;;;;;;;;;;:::o;38286:182::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38402:8:::1;38371:19;:28;38391:7;38371:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38442:7;38426:34;;;38451:8;38426:34;;;;;;:::i;:::-;;;;;;;;38286:182:::0;;:::o;33078:35::-;;;;:::o;37409:497::-;37517:4;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37596:6:::1;37591:1;37575:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37574:28;;;;:::i;:::-;37561:9;:41;;37539:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37751:4;37746:1;37730:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37729:26;;;;:::i;:::-;37716:9;:39;;37694:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37867:9;37846:18;:30;;;;37894:4;37887:11;;37409:497:::0;;;:::o;33381:57::-;;;;:::o;11526:151::-;11615:7;11642:11;:18;11654:5;11642:18;;;;;;;;;;;;;;;:27;11661:7;11642:27;;;;;;;;;;;;;;;;11635:34;;11526:151;;;;:::o;33120:33::-;;;;:::o;33313:30::-;;;;:::o;3150:201::-;2472:12;:10;:12::i;:::-;2461:23;;:7;:5;:7::i;:::-;:23;;;2453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3259:1:::1;3239:22;;:8;:22;;;;3231:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3315:28;3334:8;3315:18;:28::i;:::-;3150:201:::0;:::o;33447:31::-;;;;:::o;33160:24::-;;;;:::o;914:98::-;967:7;994:10;987:17;;914:98;:::o;17778:380::-;17931:1;17914:19;;:5;:19;;;;17906:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18012:1;17993:21;;:7;:21;;;;17985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18096:6;18066:11;:18;18078:5;18066:18;;;;;;;;;;;;;;;:27;18085:7;18066:27;;;;;;;;;;;;;;;:36;;;;18134:7;18118:32;;18127:5;18118:32;;;18143:6;18118:32;;;;;;:::i;:::-;;;;;;;;17778:380;;;:::o;39118:3778::-;39266:1;39250:18;;:4;:18;;;;39242:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39343:1;39329:16;;:2;:16;;;;39321:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39412:1;39402:6;:11;39398:93;;;39430:28;39446:4;39452:2;39456:1;39430:15;:28::i;:::-;39473:7;;39398:93;39507:14;;;;;;;;;;;39503:1694;;;39568:7;:5;:7::i;:::-;39560:15;;:4;:15;;;;:49;;;;;39602:7;:5;:7::i;:::-;39596:13;;:2;:13;;;;39560:49;:86;;;;;39644:1;39630:16;;:2;:16;;;;39560:86;:128;;;;;39681:6;39667:21;;:2;:21;;;;39560:128;:158;;;;;39710:8;;;;;;;;;;;39709:9;39560:158;39538:1648;;;39758:13;;;;;;;;;;;39753:223;;39830:19;:25;39850:4;39830:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39859:19;:23;39879:2;39859:23;;;;;;;;;;;;;;;;;;;;;;;;;39830:52;39796:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;39753:223;40050:25;:31;40076:4;40050:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40107:31;:35;40139:2;40107:35;;;;;;;;;;;;;;;;;;;;;;;;;40106:36;40050:92;40024:1147;;;40229:20;;40219:6;:30;;40185:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40437:9;;40420:13;40430:2;40420:9;:13::i;:::-;40411:6;:22;;;;:::i;:::-;:35;;40377:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40024:1147;;;40615:25;:29;40641:2;40615:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40670:31;:37;40702:4;40670:37;;;;;;;;;;;;;;;;;;;;;;;;;40669:38;40615:92;40589:582;;;40794:20;;40784:6;:30;;40750:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40589:582;;;40951:31;:35;40983:2;40951:35;;;;;;;;;;;;;;;;;;;;;;;;;40946:225;;41071:9;;41054:13;41064:2;41054:9;:13::i;:::-;41045:6;:22;;;;:::i;:::-;:35;;41011:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40946:225;40589:582;40024:1147;39538:1648;39503:1694;41209:28;41240:24;41258:4;41240:9;:24::i;:::-;41209:55;;41277:12;41316:18;;41292:20;:42;;41277:57;;41365:7;:35;;;;;41389:11;;;;;;;;;;;41365:35;:61;;;;;41418:8;;;;;;;;;;;41417:9;41365:61;:110;;;;;41444:25;:31;41470:4;41444:31;;;;;;;;;;;;;;;;;;;;;;;;;41443:32;41365:110;:153;;;;;41493:19;:25;41513:4;41493:25;;;;;;;;;;;;;;;;;;;;;;;;;41492:26;41365:153;:194;;;;;41536:19;:23;41556:2;41536:23;;;;;;;;;;;;;;;;;;;;;;;;;41535:24;41365:194;41347:326;;;41597:4;41586:8;;:15;;;;;;;;;;;;;;;;;;41618:10;:8;:10::i;:::-;41656:5;41645:8;;:16;;;;;;;;;;;;;;;;;;41347:326;41685:12;41701:8;;;;;;;;;;;41700:9;41685:24;;41811:19;:25;41831:4;41811:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41840:19;:23;41860:2;41840:23;;;;;;;;;;;;;;;;;;;;;;;;;41811:52;41807:100;;;41890:5;41880:15;;41807:100;41919:12;42024:7;42020:823;;;42076:25;:29;42102:2;42076:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42125:1;42109:13;;:17;42076:50;42072:622;;;42154:34;42184:3;42154:25;42165:13;;42154:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42147:41;;42257:13;;42237:16;;42230:4;:23;;;;:::i;:::-;42229:41;;;;:::i;:::-;42207:18;;:63;;;;;;;:::i;:::-;;;;;;;;42327:13;;42313:10;;42306:4;:17;;;;:::i;:::-;42305:35;;;;:::i;:::-;42289:12;;:51;;;;;;;:::i;:::-;;;;;;;;42072:622;;;42418:25;:31;42444:4;42418:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42468:1;42453:12;;:16;42418:51;42414:280;;;42497:33;42526:3;42497:24;42508:12;;42497:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42490:40;;42598:12;;42579:15;;42572:4;:22;;;;:::i;:::-;42571:39;;;;:::i;:::-;42549:18;;:61;;;;;;;:::i;:::-;;;;;;;;42666:12;;42653:9;;42646:4;:16;;;;:::i;:::-;42645:33;;;;:::i;:::-;42629:12;;:49;;;;;;;:::i;:::-;;;;;;;;42414:280;42072:622;42721:1;42714:4;:8;42710:91;;;42743:42;42759:4;42773;42780;42743:15;:42::i;:::-;42710:91;42827:4;42817:14;;;;;:::i;:::-;;;42020:823;42855:33;42871:4;42877:2;42881:6;42855:15;:33::i;:::-;39231:3665;;;;39118:3778;;;;:::o;3511:191::-;3585:16;3604:6;;;;;;;;;;;3585:25;;3630:8;3621:6;;:17;;;;;;;;;;;;;;;;;;3685:8;3654:40;;3675:8;3654:40;;;;;;;;;;;;3574:128;3511:191;:::o;38788:188::-;38905:5;38871:25;:31;38897:4;38871:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38962:5;38928:40;;38956:4;38928:40;;;;;;;;;;;;38788:188;;:::o;14997:733::-;15155:1;15137:20;;:6;:20;;;;15129:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15239:1;15218:23;;:9;:23;;;;15210:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15294:47;15315:6;15323:9;15334:6;15294:20;:47::i;:::-;15354:21;15378:9;:17;15388:6;15378:17;;;;;;;;;;;;;;;;15354:41;;15431:6;15414:13;:23;;15406:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15552:6;15536:13;:22;15516:9;:17;15526:6;15516:17;;;;;;;;;;;;;;;:42;;;;15604:6;15580:9;:20;15590:9;15580:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15645:9;15628:35;;15637:6;15628:35;;;15656:6;15628:35;;;;;;:::i;:::-;;;;;;;;15676:46;15696:6;15704:9;15715:6;15676:19;:46::i;:::-;15118:612;14997:733;;;:::o;44023:1413::-;44062:23;44088:24;44106:4;44088:9;:24::i;:::-;44062:50;;44123:25;44172:12;;44151:18;;:33;;;;:::i;:::-;44123:61;;44195:12;44243:1;44224:15;:20;:46;;;;44269:1;44248:17;:22;44224:46;44220:85;;;44287:7;;;;;44220:85;44360:2;44339:18;;:23;;;;:::i;:::-;44321:15;:41;44317:115;;;44418:2;44397:18;;:23;;;;:::i;:::-;44379:41;;44317:115;44493:23;44580:1;44560:17;44538:18;;44520:15;:36;;;;:::i;:::-;44519:58;;;;:::i;:::-;:62;;;;:::i;:::-;44493:88;;44592:26;44621:36;44641:15;44621;:19;;:36;;;;:::i;:::-;44592:65;;44670:25;44698:21;44670:49;;44732:36;44749:18;44732:16;:36::i;:::-;44781:18;44802:44;44828:17;44802:21;:25;;:44;;;;:::i;:::-;44781:65;;44860:17;44880:51;44913:17;44880:28;44895:12;;44880:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44860:71;;44944:23;44983:9;44970:10;:22;;;;:::i;:::-;44944:48;;45026:1;45005:18;:22;;;;45053:1;45038:12;:16;;;;45089:1;45071:15;:19;:42;;;;;45112:1;45094:15;:19;45071:42;45067:278;;;45130:46;45143:15;45160;45130:12;:46::i;:::-;45196:137;45229:18;45266:15;45300:18;;45196:137;;;;;;;;:::i;:::-;;;;;;;;45067:278;45379:9;;;;;;;;;;;45371:23;;45402:21;45371:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45357:71;;;;;44051:1385;;;;;;;;;44023:1413;:::o;23231:98::-;23289:7;23320:1;23316;:5;;;;:::i;:::-;23309:12;;23231:98;;;;:::o;23630:::-;23688:7;23719:1;23715;:5;;;;:::i;:::-;23708:12;;23630:98;;;;:::o;18758:125::-;;;;:::o;19487:124::-;;;;:::o;22874:98::-;22932:7;22963:1;22959;:5;;;;:::i;:::-;22952:12;;22874:98;;;;:::o;42904:589::-;43030:21;43068:1;43054:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43030:40;;43099:4;43081;43086:1;43081:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43125:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43115:4;43120:1;43115:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43160:62;43177:4;43192:15;43210:11;43160:8;:62::i;:::-;43261:15;:66;;;43342:11;43368:1;43412:4;43439;43459:15;43261:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42959:534;42904:589;:::o;43501:514::-;43649:62;43666:4;43681:15;43699:11;43649:8;:62::i;:::-;43754:15;:31;;;43793:9;43826:4;43846:11;43872:1;43915;43958:8;;;;;;;;;;;43981:15;43754:253;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43501:514;;:::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:765::-;6652:6;6660;6668;6676;6725:3;6713:9;6704:7;6700:23;6696:33;6693:120;;;6732:79;;:::i;:::-;6693:120;6852:1;6877:53;6922:7;6913:6;6902:9;6898:22;6877:53;:::i;:::-;6867:63;;6823:117;6979:2;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6950:118;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;7235:2;7261:53;7306:7;7297:6;7286:9;7282:22;7261:53;:::i;:::-;7251:63;;7206:118;6566:765;;;;;;;:::o;7337:116::-;7407:21;7422:5;7407:21;:::i;:::-;7400:5;7397:32;7387:60;;7443:1;7440;7433:12;7387:60;7337:116;:::o;7459:133::-;7502:5;7540:6;7527:20;7518:29;;7556:30;7580:5;7556:30;:::i;:::-;7459:133;;;;:::o;7598:468::-;7663:6;7671;7720:2;7708:9;7699:7;7695:23;7691:32;7688:119;;;7726:79;;:::i;:::-;7688:119;7846:1;7871:53;7916:7;7907:6;7896:9;7892:22;7871:53;:::i;:::-;7861:63;;7817:117;7973:2;7999:50;8041:7;8032:6;8021:9;8017:22;7999:50;:::i;:::-;7989:60;;7944:115;7598:468;;;;;:::o;8072:323::-;8128:6;8177:2;8165:9;8156:7;8152:23;8148:32;8145:119;;;8183:79;;:::i;:::-;8145:119;8303:1;8328:50;8370:7;8361:6;8350:9;8346:22;8328:50;:::i;:::-;8318:60;;8274:114;8072:323;;;;:::o;8401:329::-;8460:6;8509:2;8497:9;8488:7;8484:23;8480:32;8477:119;;;8515:79;;:::i;:::-;8477:119;8635:1;8660:53;8705:7;8696:6;8685:9;8681:22;8660:53;:::i;:::-;8650:63;;8606:117;8401:329;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:227::-;9868:34;9864:1;9856:6;9852:14;9845:58;9937:10;9932:2;9924:6;9920:15;9913:35;9728:227;:::o;9961:366::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:419::-;10499:4;10537:2;10526:9;10522:18;10514:26;;10586:9;10580:4;10576:20;10572:1;10561:9;10557:17;10550:47;10614:131;10740:4;10614:131;:::i;:::-;10606:139;;10333:419;;;:::o;10758:180::-;10806:77;10803:1;10796:88;10903:4;10900:1;10893:15;10927:4;10924:1;10917:15;10944:305;10984:3;11003:20;11021:1;11003:20;:::i;:::-;10998:25;;11037:20;11055:1;11037:20;:::i;:::-;11032:25;;11191:1;11123:66;11119:74;11116:1;11113:81;11110:107;;;11197:18;;:::i;:::-;11110:107;11241:1;11238;11234:9;11227:16;;10944:305;;;;:::o;11255:182::-;11395:34;11391:1;11383:6;11379:14;11372:58;11255:182;:::o;11443:366::-;11585:3;11606:67;11670:2;11665:3;11606:67;:::i;:::-;11599:74;;11682:93;11771:3;11682:93;:::i;:::-;11800:2;11795:3;11791:12;11784:19;;11443:366;;;:::o;11815:419::-;11981:4;12019:2;12008:9;12004:18;11996:26;;12068:9;12062:4;12058:20;12054:1;12043:9;12039:17;12032:47;12096:131;12222:4;12096:131;:::i;:::-;12088:139;;11815:419;;;:::o;12240:162::-;12380:14;12376:1;12368:6;12364:14;12357:38;12240:162;:::o;12408:366::-;12550:3;12571:67;12635:2;12630:3;12571:67;:::i;:::-;12564:74;;12647:93;12736:3;12647:93;:::i;:::-;12765:2;12760:3;12756:12;12749:19;;12408:366;;;:::o;12780:419::-;12946:4;12984:2;12973:9;12969:18;12961:26;;13033:9;13027:4;13023:20;13019:1;13008:9;13004:17;12997:47;13061:131;13187:4;13061:131;:::i;:::-;13053:139;;12780:419;;;:::o;13205:244::-;13345:34;13341:1;13333:6;13329:14;13322:58;13414:27;13409:2;13401:6;13397:15;13390:52;13205:244;:::o;13455:366::-;13597:3;13618:67;13682:2;13677:3;13618:67;:::i;:::-;13611:74;;13694:93;13783:3;13694:93;:::i;:::-;13812:2;13807:3;13803:12;13796:19;;13455:366;;;:::o;13827:419::-;13993:4;14031:2;14020:9;14016:18;14008:26;;14080:9;14074:4;14070:20;14066:1;14055:9;14051:17;14044:47;14108:131;14234:4;14108:131;:::i;:::-;14100:139;;13827:419;;;:::o;14252:224::-;14392:34;14388:1;14380:6;14376:14;14369:58;14461:7;14456:2;14448:6;14444:15;14437:32;14252:224;:::o;14482:366::-;14624:3;14645:67;14709:2;14704:3;14645:67;:::i;:::-;14638:74;;14721:93;14810:3;14721:93;:::i;:::-;14839:2;14834:3;14830:12;14823:19;;14482:366;;;:::o;14854:419::-;15020:4;15058:2;15047:9;15043:18;15035:26;;15107:9;15101:4;15097:20;15093:1;15082:9;15078:17;15071:47;15135:131;15261:4;15135:131;:::i;:::-;15127:139;;14854:419;;;:::o;15279:348::-;15319:7;15342:20;15360:1;15342:20;:::i;:::-;15337:25;;15376:20;15394:1;15376:20;:::i;:::-;15371:25;;15564:1;15496:66;15492:74;15489:1;15486:81;15481:1;15474:9;15467:17;15463:105;15460:131;;;15571:18;;:::i;:::-;15460:131;15619:1;15616;15612:9;15601:20;;15279:348;;;;:::o;15633:180::-;15681:77;15678:1;15671:88;15778:4;15775:1;15768:15;15802:4;15799:1;15792:15;15819:185;15859:1;15876:20;15894:1;15876:20;:::i;:::-;15871:25;;15910:20;15928:1;15910:20;:::i;:::-;15905:25;;15949:1;15939:35;;15954:18;;:::i;:::-;15939:35;15996:1;15993;15989:9;15984:14;;15819:185;;;;:::o;16010:240::-;16150:34;16146:1;16138:6;16134:14;16127:58;16219:23;16214:2;16206:6;16202:15;16195:48;16010:240;:::o;16256:366::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:419::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16881:9;16875:4;16871:20;16867:1;16856:9;16852:17;16845:47;16909:131;17035:4;16909:131;:::i;:::-;16901:139;;16628:419;;;:::o;17053:239::-;17193:34;17189:1;17181:6;17177:14;17170:58;17262:22;17257:2;17249:6;17245:15;17238:47;17053:239;:::o;17298:366::-;17440:3;17461:67;17525:2;17520:3;17461:67;:::i;:::-;17454:74;;17537:93;17626:3;17537:93;:::i;:::-;17655:2;17650:3;17646:12;17639:19;;17298:366;;;:::o;17670:419::-;17836:4;17874:2;17863:9;17859:18;17851:26;;17923:9;17917:4;17913:20;17909:1;17898:9;17894:17;17887:47;17951:131;18077:4;17951:131;:::i;:::-;17943:139;;17670:419;;;:::o;18095:225::-;18235:34;18231:1;18223:6;18219:14;18212:58;18304:8;18299:2;18291:6;18287:15;18280:33;18095:225;:::o;18326:366::-;18468:3;18489:67;18553:2;18548:3;18489:67;:::i;:::-;18482:74;;18565:93;18654:3;18565:93;:::i;:::-;18683:2;18678:3;18674:12;18667:19;;18326:366;;;:::o;18698:419::-;18864:4;18902:2;18891:9;18887:18;18879:26;;18951:9;18945:4;18941:20;18937:1;18926:9;18922:17;18915:47;18979:131;19105:4;18979:131;:::i;:::-;18971:139;;18698:419;;;:::o;19123:223::-;19263:34;19259:1;19251:6;19247:14;19240:58;19332:6;19327:2;19319:6;19315:15;19308:31;19123:223;:::o;19352:366::-;19494:3;19515:67;19579:2;19574:3;19515:67;:::i;:::-;19508:74;;19591:93;19680:3;19591:93;:::i;:::-;19709:2;19704:3;19700:12;19693:19;;19352:366;;;:::o;19724:419::-;19890:4;19928:2;19917:9;19913:18;19905:26;;19977:9;19971:4;19967:20;19963:1;19952:9;19948:17;19941:47;20005:131;20131:4;20005:131;:::i;:::-;19997:139;;19724:419;;;:::o;20149:221::-;20289:34;20285:1;20277:6;20273:14;20266:58;20358:4;20353:2;20345:6;20341:15;20334:29;20149:221;:::o;20376:366::-;20518:3;20539:67;20603:2;20598:3;20539:67;:::i;:::-;20532:74;;20615:93;20704:3;20615:93;:::i;:::-;20733:2;20728:3;20724:12;20717:19;;20376:366;;;:::o;20748:419::-;20914:4;20952:2;20941:9;20937:18;20929:26;;21001:9;20995:4;20991:20;20987:1;20976:9;20972:17;20965:47;21029:131;21155:4;21029:131;:::i;:::-;21021:139;;20748:419;;;:::o;21173:224::-;21313:34;21309:1;21301:6;21297:14;21290:58;21382:7;21377:2;21369:6;21365:15;21358:32;21173:224;:::o;21403:366::-;21545:3;21566:67;21630:2;21625:3;21566:67;:::i;:::-;21559:74;;21642:93;21731:3;21642:93;:::i;:::-;21760:2;21755:3;21751:12;21744:19;;21403:366;;;:::o;21775:419::-;21941:4;21979:2;21968:9;21964:18;21956:26;;22028:9;22022:4;22018:20;22014:1;22003:9;21999:17;21992:47;22056:131;22182:4;22056:131;:::i;:::-;22048:139;;21775:419;;;:::o;22200:222::-;22340:34;22336:1;22328:6;22324:14;22317:58;22409:5;22404:2;22396:6;22392:15;22385:30;22200:222;:::o;22428:366::-;22570:3;22591:67;22655:2;22650:3;22591:67;:::i;:::-;22584:74;;22667:93;22756:3;22667:93;:::i;:::-;22785:2;22780:3;22776:12;22769:19;;22428:366;;;:::o;22800:419::-;22966:4;23004:2;22993:9;22989:18;22981:26;;23053:9;23047:4;23043:20;23039:1;23028:9;23024:17;23017:47;23081:131;23207:4;23081:131;:::i;:::-;23073:139;;22800:419;;;:::o;23225:172::-;23365:24;23361:1;23353:6;23349:14;23342:48;23225:172;:::o;23403:366::-;23545:3;23566:67;23630:2;23625:3;23566:67;:::i;:::-;23559:74;;23642:93;23731:3;23642:93;:::i;:::-;23760:2;23755:3;23751:12;23744:19;;23403:366;;;:::o;23775:419::-;23941:4;23979:2;23968:9;23964:18;23956:26;;24028:9;24022:4;24018:20;24014:1;24003:9;23999:17;23992:47;24056:131;24182:4;24056:131;:::i;:::-;24048:139;;23775:419;;;:::o;24200:240::-;24340:34;24336:1;24328:6;24324:14;24317:58;24409:23;24404:2;24396:6;24392:15;24385:48;24200:240;:::o;24446:366::-;24588:3;24609:67;24673:2;24668:3;24609:67;:::i;:::-;24602:74;;24685:93;24774:3;24685:93;:::i;:::-;24803:2;24798:3;24794:12;24787:19;;24446:366;;;:::o;24818:419::-;24984:4;25022:2;25011:9;25007:18;24999:26;;25071:9;25065:4;25061:20;25057:1;25046:9;25042:17;25035:47;25099:131;25225:4;25099:131;:::i;:::-;25091:139;;24818:419;;;:::o;25243:169::-;25383:21;25379:1;25371:6;25367:14;25360:45;25243:169;:::o;25418:366::-;25560:3;25581:67;25645:2;25640:3;25581:67;:::i;:::-;25574:74;;25657:93;25746:3;25657:93;:::i;:::-;25775:2;25770:3;25766:12;25759:19;;25418:366;;;:::o;25790:419::-;25956:4;25994:2;25983:9;25979:18;25971:26;;26043:9;26037:4;26033:20;26029:1;26018:9;26014:17;26007:47;26071:131;26197:4;26071:131;:::i;:::-;26063:139;;25790:419;;;:::o;26215:241::-;26355:34;26351:1;26343:6;26339:14;26332:58;26424:24;26419:2;26411:6;26407:15;26400:49;26215:241;:::o;26462:366::-;26604:3;26625:67;26689:2;26684:3;26625:67;:::i;:::-;26618:74;;26701:93;26790:3;26701:93;:::i;:::-;26819:2;26814:3;26810:12;26803:19;;26462:366;;;:::o;26834:419::-;27000:4;27038:2;27027:9;27023:18;27015:26;;27087:9;27081:4;27077:20;27073:1;27062:9;27058:17;27051:47;27115:131;27241:4;27115:131;:::i;:::-;27107:139;;26834:419;;;:::o;27259:191::-;27299:4;27319:20;27337:1;27319:20;:::i;:::-;27314:25;;27353:20;27371:1;27353:20;:::i;:::-;27348:25;;27392:1;27389;27386:8;27383:34;;;27397:18;;:::i;:::-;27383:34;27442:1;27439;27435:9;27427:17;;27259:191;;;;:::o;27456:225::-;27596:34;27592:1;27584:6;27580:14;27573:58;27665:8;27660:2;27652:6;27648:15;27641:33;27456:225;:::o;27687:366::-;27829:3;27850:67;27914:2;27909:3;27850:67;:::i;:::-;27843:74;;27926:93;28015:3;27926:93;:::i;:::-;28044:2;28039:3;28035:12;28028:19;;27687:366;;;:::o;28059:419::-;28225:4;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28059:419;;;:::o;28484:442::-;28633:4;28671:2;28660:9;28656:18;28648:26;;28684:71;28752:1;28741:9;28737:17;28728:6;28684:71;:::i;:::-;28765:72;28833:2;28822:9;28818:18;28809:6;28765:72;:::i;:::-;28847;28915:2;28904:9;28900:18;28891:6;28847:72;:::i;:::-;28484:442;;;;;;:::o;28932:147::-;29033:11;29070:3;29055:18;;28932:147;;;;:::o;29085:114::-;;:::o;29205:398::-;29364:3;29385:83;29466:1;29461:3;29385:83;:::i;:::-;29378:90;;29477:93;29566:3;29477:93;:::i;:::-;29595:1;29590:3;29586:11;29579:18;;29205:398;;;:::o;29609:379::-;29793:3;29815:147;29958:3;29815:147;:::i;:::-;29808:154;;29979:3;29972:10;;29609:379;;;:::o;29994:180::-;30042:77;30039:1;30032:88;30139:4;30136:1;30129:15;30163:4;30160:1;30153:15;30180:180;30228:77;30225:1;30218:88;30325:4;30322:1;30315:15;30349:4;30346:1;30339:15;30366:143;30423:5;30454:6;30448:13;30439:22;;30470:33;30497:5;30470:33;:::i;:::-;30366:143;;;;:::o;30515:351::-;30585:6;30634:2;30622:9;30613:7;30609:23;30605:32;30602:119;;;30640:79;;:::i;:::-;30602:119;30760:1;30785:64;30841:7;30832:6;30821:9;30817:22;30785:64;:::i;:::-;30775:74;;30731:128;30515:351;;;;:::o;30872:85::-;30917:7;30946:5;30935:16;;30872:85;;;:::o;30963:158::-;31021:9;31054:61;31072:42;31081:32;31107:5;31081:32;:::i;:::-;31072:42;:::i;:::-;31054:61;:::i;:::-;31041:74;;30963:158;;;:::o;31127:147::-;31222:45;31261:5;31222:45;:::i;:::-;31217:3;31210:58;31127:147;;:::o;31280:114::-;31347:6;31381:5;31375:12;31365:22;;31280:114;;;:::o;31400:184::-;31499:11;31533:6;31528:3;31521:19;31573:4;31568:3;31564:14;31549:29;;31400:184;;;;:::o;31590:132::-;31657:4;31680:3;31672:11;;31710:4;31705:3;31701:14;31693:22;;31590:132;;;:::o;31728:108::-;31805:24;31823:5;31805:24;:::i;:::-;31800:3;31793:37;31728:108;;:::o;31842:179::-;31911:10;31932:46;31974:3;31966:6;31932:46;:::i;:::-;32010:4;32005:3;32001:14;31987:28;;31842:179;;;;:::o;32027:113::-;32097:4;32129;32124:3;32120:14;32112:22;;32027:113;;;:::o;32176:732::-;32295:3;32324:54;32372:5;32324:54;:::i;:::-;32394:86;32473:6;32468:3;32394:86;:::i;:::-;32387:93;;32504:56;32554:5;32504:56;:::i;:::-;32583:7;32614:1;32599:284;32624:6;32621:1;32618:13;32599:284;;;32700:6;32694:13;32727:63;32786:3;32771:13;32727:63;:::i;:::-;32720:70;;32813:60;32866:6;32813:60;:::i;:::-;32803:70;;32659:224;32646:1;32643;32639:9;32634:14;;32599:284;;;32603:14;32899:3;32892:10;;32300:608;;;32176:732;;;;:::o;32914:831::-;33177:4;33215:3;33204:9;33200:19;33192:27;;33229:71;33297:1;33286:9;33282:17;33273:6;33229:71;:::i;:::-;33310:80;33386:2;33375:9;33371:18;33362:6;33310:80;:::i;:::-;33437:9;33431:4;33427:20;33422:2;33411:9;33407:18;33400:48;33465:108;33568:4;33559:6;33465:108;:::i;:::-;33457:116;;33583:72;33651:2;33640:9;33636:18;33627:6;33583:72;:::i;:::-;33665:73;33733:3;33722:9;33718:19;33709:6;33665:73;:::i;:::-;32914:831;;;;;;;;:::o;33751:807::-;34000:4;34038:3;34027:9;34023:19;34015:27;;34052:71;34120:1;34109:9;34105:17;34096:6;34052:71;:::i;:::-;34133:72;34201:2;34190:9;34186:18;34177:6;34133:72;:::i;:::-;34215:80;34291:2;34280:9;34276:18;34267:6;34215:80;:::i;:::-;34305;34381:2;34370:9;34366:18;34357:6;34305:80;:::i;:::-;34395:73;34463:3;34452:9;34448:19;34439:6;34395:73;:::i;:::-;34478;34546:3;34535:9;34531:19;34522:6;34478:73;:::i;:::-;33751:807;;;;;;;;;:::o;34564:143::-;34621:5;34652:6;34646:13;34637:22;;34668:33;34695:5;34668:33;:::i;:::-;34564:143;;;;:::o;34713:663::-;34801:6;34809;34817;34866:2;34854:9;34845:7;34841:23;34837:32;34834:119;;;34872:79;;:::i;:::-;34834:119;34992:1;35017:64;35073:7;35064:6;35053:9;35049:22;35017:64;:::i;:::-;35007:74;;34963:128;35130:2;35156:64;35212:7;35203:6;35192:9;35188:22;35156:64;:::i;:::-;35146:74;;35101:129;35269:2;35295:64;35351:7;35342:6;35331:9;35327:22;35295:64;:::i;:::-;35285:74;;35240:129;34713:663;;;;;:::o

Swarm Source

ipfs://25b6a03a883e64da3e57265cbf1512ad6e21b2539e845e01586520c1c6920f26
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.