ETH Price: $3,458.20 (-0.72%)
Gas: 2 Gwei

Token

Caitlyn Jenner ($Jenner)
 

Overview

Max Total Supply

1,000,000,000 $Jenner

Holders

1,785 ( 0.224%)

Market

Price

$0.01 @ 0.000002 ETH (+12.33%)

Onchain Market Cap

$5,475,250.00

Circulating Supply Market Cap

$5,471,808.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
glimbolina.eth
Balance
0.000000000066055291 $Jenner

Value
$0.00 ( ~0 Eth) [0.0000%]
0x91d5482f54f2dfddf21caf8f5528f689397ae223
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:
CaitlynJenner

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-29
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.17;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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.
 * 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
// 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 subtraction 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;
        }
    }
}
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
        return true;
    }
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        _beforeTokenTransfer(from, to, amount);
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        emit Transfer(from, to, amount);
        _afterTokenTransfer(from, to, amount);
    }
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _beforeTokenTransfer(address(0), account, amount);
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
        emit Transfer(account, address(0), amount);
        _afterTokenTransfer(account, address(0), amount);
    }
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
contract CaitlynJenner is Context, ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;
    mapping (address => bool) private _excludedFees;
    mapping (address => bool) private _excludedMaxTx;
    mapping (address => bool) private _isBot;
    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled = false;
    uint256 private constant _tSupply = 1000000000 * (10**18);
    uint256 public maxBuyAmount = _tSupply;
    uint256 public maxSellAmount = _tSupply;
    uint256 public maxWalletAmount = _tSupply;
    uint256 public constant FEE_DIVISOR = 1000;
    uint256 private _totalFees;
    uint256 private _mktgFee;
    uint256 private _devFee;
    uint256 private _liqFee;
    uint256 public buyMktgFee = 10;
    uint256 private _previousBuyMktgFee = buyMktgFee;
    uint256 public buyDevFee = 10;
    uint256 private _previousBuyDevFee = buyDevFee;
    uint256 public buyLiqFee = 10;
    uint256 private _previousBuyLiqFee = buyLiqFee;
    uint256 public sellMktgFee = 10;
    uint256 private _previousSellMktgFee = sellMktgFee;
    uint256 public sellDevFee = 10;
    uint256 private _previousSellDevFee = sellDevFee;
    uint256 public sellLiqFee = 10;
    uint256 private _previousSellLiqFee = sellLiqFee;
    uint256 private _tokensForMktg;
    uint256 private _tokensForDev;
    uint256 private _tokensForLiq;
    uint256 private _swapTokensAtAmount = 0;
    address payable private _mktgWallet = payable(0xC152A863312F4AB4C5B6a52447abe8bFDD741aa2);
    address payable private _devWallet = payable(0xB41aF5Ce8C1b86e0204a0Bc6625041376c70Ba81);
    address payable private _liqWallet = payable(0xedc3D54605d6d25cF405f214B56d63b7bCD80d1f);
    address private uniswapV2Pair;
    address constant private DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant private ZERO = 0x0000000000000000000000000000000000000000;
    
    constructor() ERC20("Caitlyn Jenner", "$Jenner") {
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tSupply);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        _excludedFees[owner()] = true;
        _excludedFees[address(this)] = true;
        _excludedFees[DEAD] = true;
        _excludedFees[_mktgWallet] = true;
        _excludedFees[_liqWallet] = true;
        _excludedMaxTx[owner()] = true;
        _excludedMaxTx[address(this)] = true;
        _excludedMaxTx[DEAD] = true;
        _excludedMaxTx[_mktgWallet] = true;
        _excludedMaxTx[_liqWallet] = true;
        _mint(owner(), _tSupply);
    }
    function _transfer(address from, address to, uint256 amount) internal override {
        require(from != ZERO, "ERC20: transfer from the zero address");
        require(to != ZERO, "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        bool takeFee = true;
        bool shouldSwap = false;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            require(!_isBot[from] && !_isBot[to], "Bot.");
            if(!tradingOpen) require(_excludedFees[from] || _excludedFees[to], "Trading is not allowed yet.");
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludedMaxTx[to]) {
                require(amount <= maxBuyAmount, "Transfer amount exceeds the maxBuyAmount.");
                require(balanceOf(to) + amount <= maxWalletAmount, "Exceeds maximum wallet token amount.");
            }
            
            if (to == uniswapV2Pair && from != address(uniswapV2Router) && !_excludedMaxTx[from]) {
                require(amount <= maxSellAmount, "Transfer amount exceeds the maxSellAmount.");
                shouldSwap = true;
            }
        }
        if(_excludedFees[from] || _excludedFees[to]) takeFee = false;
        if(from != uniswapV2Pair && to != uniswapV2Pair) takeFee = false;  
        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap;
        if (canSwap && swapEnabled && !_swapping && !_excludedFees[from] && !_excludedFees[to]) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }
        _tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }
    function _swapBack(uint256 contractBalance) internal {
        uint256 totalTokensToSwap =  _tokensForMktg.add(_tokensForDev).add(_tokensForLiq);
        bool success;
        
        if (contractBalance == 0 || totalTokensToSwap == 0) return;
        if (contractBalance > _swapTokensAtAmount.mul(5)) contractBalance = _swapTokensAtAmount.mul(5);
        uint256 liquidityTokens = contractBalance.mul(_tokensForLiq).div(totalTokensToSwap).div(2);
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        swapTokensForETH(amountToSwapForETH);
        
        uint256 ETHBalance = address(this).balance.sub(initialETHBalance);
        uint256 ETHForMktg = ETHBalance.mul(_tokensForMktg).div(totalTokensToSwap);
        uint256 ETHForDev = ETHBalance.mul(_tokensForDev).div(totalTokensToSwap);
        uint256 ETHForLiq = ETHBalance.sub(ETHForMktg).sub(ETHForDev);
        
        _tokensForMktg = 0;
        _tokensForDev = 0;
        _tokensForLiq = 0;
        if(liquidityTokens > 0 && ETHForLiq > 0) _addLiquidity(liquidityTokens, ETHForLiq);
        (success,) = address(_devWallet).call{value: ETHForDev}("");
        (success,) = address(_mktgWallet).call{value: address(this).balance}("");
    }
    function swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function _addLiquidity(uint256 tokenAmount, uint256 ETHAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            _liqWallet,
            block.timestamp
        );
    }
        
    function sendETHToFee(uint256 amount) internal {
        _mktgWallet.transfer(amount.div(2));
        _devWallet.transfer(amount.div(2));
    }
    function isBot(address wallet) external view returns (bool) {
        return _isBot[wallet];
    }
    function openTrading() public onlyOwner {
        require(!tradingOpen, "Trading is already open");
        swapEnabled = true;
        maxBuyAmount = _tSupply;
        maxSellAmount = _tSupply;
        maxWalletAmount = _tSupply;
        _swapTokensAtAmount = _tSupply.mul(5).div(10000);
        tradingOpen = true;
    }
    function setSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }
    function setMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner {
        require(_maxBuyAmount >= (totalSupply().mul(1).div(1000)), "Max buy amount cannot be lower than 0.1% total supply.");
        maxBuyAmount = _maxBuyAmount;
    }
    function setMaxSellAmount(uint256 _maxSellAmount) public onlyOwner {
        require(_maxSellAmount >= (totalSupply().mul(1).div(1000)), "Max sell amount cannot be lower than 0.1% total supply.");
        maxSellAmount = _maxSellAmount;
    }
    
    function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        require(_maxWalletAmount >= (totalSupply().mul(1).div(1000)), "Max wallet amount cannot be lower than 0.1% total supply.");
        maxWalletAmount = _maxWalletAmount;
    }
    
    function setSwapTokensAtAmount(uint256 swapTokensAtAmount) public onlyOwner {
        require(swapTokensAtAmount >= (totalSupply().mul(1).div(100000)), "Swap amount cannot be lower than 0.001% total supply.");
        require(swapTokensAtAmount <= (totalSupply().mul(5).div(1000)), "Swap amount cannot be higher than 1% total supply.");
        _swapTokensAtAmount = swapTokensAtAmount;
    }
    function setMktgWallet(address mktgWallet) public onlyOwner {
        require(mktgWallet != ZERO, "_mktgWallet address cannot be 0");
        _excludedFees[_mktgWallet] = false;
        _excludedMaxTx[_mktgWallet] = false;
        _mktgWallet = payable(mktgWallet);
        _excludedFees[_mktgWallet] = true;
        _excludedMaxTx[_mktgWallet] = true;
    }
    function setDevWallet(address devWallet) public onlyOwner {
        require(devWallet != ZERO, "_devWallet address cannot be 0");
        _excludedFees[_devWallet] = false;
        _excludedMaxTx[_devWallet] = false;
        _devWallet = payable(devWallet);
        _excludedFees[_devWallet] = true;
        _excludedMaxTx[_devWallet] = true;
    }
    function setLiqWallet(address liqWallet) public onlyOwner {
        require(liqWallet != ZERO, "_liqWallet address cannot be 0");
        _excludedFees[_liqWallet] = false;
        _excludedMaxTx[_liqWallet] = false;
        _liqWallet = payable(liqWallet);
        _excludedFees[_liqWallet] = true;
        _excludedMaxTx[_liqWallet] = true;
    }
    function excludeFees(address[] memory accounts, bool exclude) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _excludedFees[accounts[i]] = exclude;
    }
    
    function excludeMaxTx(address[] memory accounts, bool exclude) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _excludedMaxTx[accounts[i]] = exclude;
    }
    
    function bots(address[] memory accounts, bool bl) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            if((accounts[i] != uniswapV2Pair) && (accounts[i] != address(this)) && (accounts[i] != address(uniswapV2Router))) _isBot[accounts[i]] = bl;
        }
    }
    function buyFee(uint256 _buyMktgFee, uint256 _buyDevFee, uint256 _buyLiqFee) public onlyOwner {
        require(_buyMktgFee.add(_buyDevFee).add(_buyLiqFee) <= 300, "Must keep buy taxes below 30%");
        buyMktgFee = _buyMktgFee;
        buyDevFee = _buyDevFee;
        buyLiqFee = _buyLiqFee;
    }
    function sellFee(uint256 _sellMktgFee, uint256 _sellDevFee, uint256 _sellLiqFee) public onlyOwner {
        require(_sellMktgFee.add(_sellDevFee).add(_sellLiqFee) <= 300, "Must keep sell taxes below 30%");
        sellMktgFee = _sellMktgFee;
        sellDevFee = _sellDevFee;
        sellLiqFee = _sellLiqFee;
    }
    function removeAllFee() internal {
        if (buyMktgFee == 0 && buyDevFee == 0 && buyLiqFee == 0 && sellMktgFee == 0 && sellDevFee == 0 && sellLiqFee == 0) return;
        _previousBuyMktgFee = buyMktgFee;
        _previousBuyDevFee = buyDevFee;
        _previousBuyLiqFee = buyLiqFee;
        _previousSellMktgFee = sellMktgFee;
        _previousSellDevFee = sellDevFee;
        _previousSellLiqFee = sellLiqFee;
        
        buyMktgFee = 0;
        buyDevFee = 0;
        buyLiqFee = 0;
        sellMktgFee = 0;
        sellDevFee = 0;
        sellLiqFee = 0;
    }
    
    function restoreAllFee() internal {
        buyMktgFee = _previousBuyMktgFee;
        buyDevFee = _previousBuyDevFee;
        buyLiqFee = _previousBuyLiqFee;
        sellMktgFee = _previousSellMktgFee;
        sellDevFee = _previousSellDevFee;
        sellLiqFee = _previousSellLiqFee;
    }
        
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool isSell) internal {
        if (!takeFee) removeAllFee();
        else amount = _takeFees(sender, amount, isSell);
        super._transfer(sender, recipient, amount);
        
        if (!takeFee) restoreAllFee();
    }
    function _takeFees(address sender, uint256 amount, bool isSell) internal returns (uint256) {
        if (isSell) _setSell();
        else _setBuy();
        
        uint256 fees;
        if (_totalFees > 0) {
            fees = amount.mul(_totalFees).div(FEE_DIVISOR);
            _tokensForMktg += fees * _mktgFee / _totalFees;
            _tokensForDev += fees * _devFee / _totalFees;
            _tokensForLiq += fees * _devFee / _totalFees;
        }
        if (fees > 0) super._transfer(sender, address(this), fees);
        return amount -= fees;
    }
    function _setSell() internal {
        _mktgFee = sellMktgFee;
        _devFee = sellDevFee;
        _liqFee = sellLiqFee;
        _totalFees = _mktgFee.add(_devFee).add(_liqFee);
    }
    function _setBuy() internal {
        _mktgFee = buyMktgFee;
        _devFee = buyDevFee;
        _liqFee = buyLiqFee;
        _totalFees = _mktgFee.add(_devFee).add(_liqFee);
    }
    
    function unclog() public onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForETH(contractBalance);
    }
    
    function sendFees() public onlyOwner {
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }
    function rescueETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }
    function rescueForeignTokens(address tkn) public onlyOwner {
        require(tkn != address(this), "Cannot withdraw this token");
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }
    function removeLimits() public onlyOwner {
        maxBuyAmount = _tSupply;
        maxSellAmount = _tSupply;
        maxWalletAmount = _tSupply;
    }
    receive() external payable {}
    fallback() external payable {}
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"bl","type":"bool"}],"name":"bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyMktgFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiqFee","type":"uint256"}],"name":"buyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeMaxTx","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":"wallet","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"rescueForeignTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellMktgFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiqFee","type":"uint256"}],"name":"sellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiqFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liqWallet","type":"address"}],"name":"setLiqWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mktgWallet","type":"address"}],"name":"setMktgWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600a805462ff0000191681556b033b2e3c9fd0803ce8000000600b819055600c819055600d5560128190556013819055601481905560158190556016819055601781905560188190556019819055601a819055601b819055601c819055601d556000602155602280546001600160a01b031990811673c152a863312f4ab4c5b6a52447abe8bfdd741aa21790915560238054821673b41af5ce8c1b86e0204a0bc6625041376c70ba811790556024805490911673edc3d54605d6d25cf405f214b56d63b7bcd80d1f179055348015620000dc57600080fd5b506040518060400160405280600e81526020016d21b0b4ba363cb7102532b73732b960911b81525060405180604001604052806007815260200166122532b73732b960c91b81525081600390816200013591906200081e565b5060046200014482826200081e565b505050620001616200015b6200053060201b60201c565b62000534565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155620001a49030906b033b2e3c9fd0803ce800000062000586565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021e9190620008ea565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000281573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a79190620008ea565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031b9190620008ea565b602580546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b81529216600483015260001960248301529063095ea7b3906044016020604051808303816000875af115801562000383573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a991906200091c565b50600160076000620003c36005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260079093528183208054851660019081179091557fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80548616821790556022548216845282842080548616821790556024549091168352908220805490931681179092556008906200046e6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260089093528183208054851660019081179091557f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd0933429980548616821790556022548216845282842080548616821790556024549091168352912080549092161790556200052a620005176005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620006b2565b62000968565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620005ee5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620006515760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620005e5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200070a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005e5565b80600260008282546200071e919062000940565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a557607f821691505b602082108103620007c657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200077557600081815260208120601f850160051c81016020861015620007f55750805b601f850160051c820191505b81811015620008165782815560010162000801565b505050505050565b81516001600160401b038111156200083a576200083a6200077a565b62000852816200084b845462000790565b84620007cc565b602080601f8311600181146200088a5760008415620008715750858301515b600019600386901b1c1916600185901b17855562000816565b600085815260208120601f198616915b82811015620008bb578886015182559484019460019091019084016200089a565b5085821015620008da5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008fd57600080fd5b81516001600160a01b03811681146200091557600080fd5b9392505050565b6000602082840312156200092f57600080fd5b815180151581146200091557600080fd5b808201808211156200096257634e487b7160e01b600052601160045260246000fd5b92915050565b612ae280620009786000396000f3fe6080604052600436106102695760003560e01c80638da5cb5b11610143578063c04a894c116100bb578063dff90b5b11610077578063dff90b5b14610719578063e01af92c1461072e578063e99c9d091461074e578063f2fde38b1461076e578063f34eb0b81461078e578063ffb54a99146107ae57005b8063c04a894c14610678578063c0f17acd14610698578063c1aea0c3146106ae578063c9567bf9146106c4578063d077b48f146106d9578063dd62ed3e146106f957005b8063a457c2d71161010a578063a457c2d7146105cc578063a9059cbb146105ec578063aa4bde281461060c578063ac0a18a214610622578063afa4f3b214610642578063b6cf8ce61461066257005b80638da5cb5b1461054d57806395d89b41146105755780639c3b4fdc1461058a5780639e93ad8e146105a0578063a0d82dc5146105b657005b8063313ce567116101e15780636ddd17131161019d5780636ddd17131461049757806370a08231146104b7578063715018a6146104ed578063743fdd7214610502578063751039fc1461052257806388e765ff1461053757005b8063313ce567146103d757806339509351146103f35780633bbac5791461041357806366d602ae1461044c57806367c45349146104625780636d6591811461047757005b80631f110500116102305780631f1105001461032c5780631f53ac021461034c57806320800a001461036c57806323b872dd1461038157806327a14fc2146103a1578063312394a0146103c157005b806306fdde0314610272578063095ea7b31461029d5780630a3d5b55146102cd5780630b01aa51146102ed57806318160ddd1461030d57005b3661027057005b005b34801561027e57600080fd5b506102876107c8565b60405161029491906125b6565b60405180910390f35b3480156102a957600080fd5b506102bd6102b8366004612629565b61085a565b6040519015158152602001610294565b3480156102d957600080fd5b506102706102e8366004612684565b610874565b3480156102f957600080fd5b5061027061030836600461275b565b6108e8565b34801561031957600080fd5b506002545b604051908152602001610294565b34801561033857600080fd5b50610270610347366004612684565b6109c9565b34801561035857600080fd5b5061027061036736600461275b565b610a38565b34801561037857600080fd5b50610270610b14565b34801561038d57600080fd5b506102bd61039c366004612778565b610b69565b3480156103ad57600080fd5b506102706103bc3660046127b9565b610b8d565b3480156103cd57600080fd5b5061031e60185481565b3480156103e357600080fd5b5060405160128152602001610294565b3480156103ff57600080fd5b506102bd61040e366004612629565b610c2f565b34801561041f57600080fd5b506102bd61042e36600461275b565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561045857600080fd5b5061031e600c5481565b34801561046e57600080fd5b50610270610c51565b34801561048357600080fd5b506102706104923660046127d2565b610c75565b3480156104a357600080fd5b50600a546102bd9062010000900460ff1681565b3480156104c357600080fd5b5061031e6104d236600461275b565b6001600160a01b031660009081526020819052604090205490565b3480156104f957600080fd5b50610270610cf0565b34801561050e57600080fd5b5061027061051d36600461275b565b610d04565b34801561052e57600080fd5b50610270610de0565b34801561054357600080fd5b5061031e600b5481565b34801561055957600080fd5b506005546040516001600160a01b039091168152602001610294565b34801561058157600080fd5b50610287610e04565b34801561059657600080fd5b5061031e60145481565b3480156105ac57600080fd5b5061031e6103e881565b3480156105c257600080fd5b5061031e601a5481565b3480156105d857600080fd5b506102bd6105e7366004612629565b610e13565b3480156105f857600080fd5b506102bd610607366004612629565b610e8e565b34801561061857600080fd5b5061031e600d5481565b34801561062e57600080fd5b5061027061063d3660046127d2565b610e9c565b34801561064e57600080fd5b5061027061065d3660046127b9565b610f11565b34801561066e57600080fd5b5061031e601c5481565b34801561068457600080fd5b50610270610693366004612684565b61101e565b3480156106a457600080fd5b5061031e60125481565b3480156106ba57600080fd5b5061031e60165481565b3480156106d057600080fd5b5061027061114b565b3480156106e557600080fd5b506102706106f436600461275b565b6111f8565b34801561070557600080fd5b5061031e6107143660046127fe565b6113db565b34801561072557600080fd5b50610270611406565b34801561073a57600080fd5b50610270610749366004612837565b611418565b34801561075a57600080fd5b506102706107693660046127b9565b61143c565b34801561077a57600080fd5b5061027061078936600461275b565b6114d2565b34801561079a57600080fd5b506102706107a93660046127b9565b611548565b3480156107ba57600080fd5b50600a546102bd9060ff1681565b6060600380546107d790612854565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612854565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b6000336108688185856115d7565b60019150505b92915050565b61087c6116fb565b60005b82518110156108e357816008600085848151811061089f5761089f61288e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108db816128ba565b91505061087f565b505050565b6108f06116fb565b6001600160a01b03811661094b5760405162461bcd60e51b815260206004820152601e60248201527f5f6c697157616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b602480546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6109d16116fb565b60005b82518110156108e35781600760008584815181106109f4576109f461288e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a30816128ba565b9150506109d4565b610a406116fb565b6001600160a01b038116610a965760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f74206265203000006044820152606401610942565b602380546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610b1c6116fb565b604051600090339047908381818185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b50505050565b600033610b77858285611755565b610b828585856117c9565b506001949350505050565b610b956116fb565b610bb56103e8610baf6001610ba960025490565b90611d5f565b90611d72565b811015610c2a5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610942565b600d55565b600033610868818585610c4283836113db565b610c4c91906128d3565b6115d7565b610c596116fb565b30600090815260208190526040902054610c7281611d7e565b50565b610c7d6116fb565b61012c610c9482610c8e8686611ed8565b90611ed8565b1115610ce25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203330250000006044820152606401610942565b601292909255601455601655565b610cf86116fb565b610d026000611ee4565b565b610d0c6116fb565b6001600160a01b038116610d625760405162461bcd60e51b815260206004820152601f60248201527f5f6d6b746757616c6c657420616464726573732063616e6e6f742062652030006044820152606401610942565b602280546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610de86116fb565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b6060600480546107d790612854565b60003381610e2182866113db565b905083811015610e815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610942565b610b8282868684036115d7565b6000336108688185856117c9565b610ea46116fb565b61012c610eb582610c8e8686611ed8565b1115610f035760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772033302500006044820152606401610942565b601892909255601a55601c55565b610f196116fb565b610f2e620186a0610baf6001610ba960025490565b811015610f9b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610942565b610faf6103e8610baf6005610ba960025490565b8111156110195760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610942565b602155565b6110266116fb565b60005b82518110156108e35760255483516001600160a01b03909116908490839081106110555761105561288e565b60200260200101516001600160a01b03161415801561109f5750306001600160a01b031683828151811061108b5761108b61288e565b60200260200101516001600160a01b031614155b80156110dd575060065483516001600160a01b03909116908490839081106110c9576110c961288e565b60200260200101516001600160a01b031614155b156111395781600960008584815181106110f9576110f961288e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611143816128ba565b915050611029565b6111536116fb565b600a5460ff16156111a65760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610942565b600a805462ff00001916620100001790556b033b2e3c9fd0803ce8000000600b819055600c819055600d8190556111e69061271090610baf906005611d5f565b602155600a805460ff19166001179055565b6112006116fb565b306001600160a01b038216036112585760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610942565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561129f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c391906128e6565b116112fc5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610942565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611343573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136791906128e6565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e391906128ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61140e6116fb565b47610c7281611f36565b6114206116fb565b600a8054911515620100000262ff000019909216919091179055565b6114446116fb565b6114586103e8610baf6001610ba960025490565b8110156114cd5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610942565b600c55565b6114da6116fb565b6001600160a01b03811661153f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610942565b610c7281611ee4565b6115506116fb565b6115646103e8610baf6001610ba960025490565b8110156115d25760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610942565b600b55565b6001600160a01b0383166116395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610942565b6001600160a01b03821661169a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610942565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610942565b600061176184846113db565b90506000198114610b6357818110156117bc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610942565b610b6384848484036115d7565b6001600160a01b0383166117ef5760405162461bcd60e51b81526004016109429061291c565b6001600160a01b0382166118155760405162461bcd60e51b815260040161094290612961565b600081116118775760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610942565b6001600061188d6005546001600160a01b031690565b6001600160a01b0316856001600160a01b0316141580156118bc57506005546001600160a01b03858116911614155b80156118d057506001600160a01b03841615155b80156118e757506001600160a01b03841661dead14155b80156118fb5750600a54610100900460ff16155b15611c0a576001600160a01b03851660009081526009602052604090205460ff1615801561194257506001600160a01b03841660009081526009602052604090205460ff16155b6119775760405162461bcd60e51b8152600401610942906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff16611a0c576001600160a01b03851660009081526007602052604090205460ff16806119c057506001600160a01b03841660009081526007602052604090205460ff165b611a0c5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610942565b6025546001600160a01b038681169116148015611a3757506006546001600160a01b03858116911614155b8015611a5c57506001600160a01b03841660009081526008602052604090205460ff16155b15611b4c57600b54831115611ac55760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610942565b600d5483611ae8866001600160a01b031660009081526020819052604090205490565b611af291906128d3565b1115611b4c5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610942565b6025546001600160a01b038581169116148015611b7757506006546001600160a01b03868116911614155b8015611b9c57506001600160a01b03851660009081526008602052604090205460ff16155b15611c0a57600c54831115611c065760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610942565b5060015b6001600160a01b03851660009081526007602052604090205460ff1680611c4957506001600160a01b03841660009081526007602052604090205460ff165b15611c5357600091505b6025546001600160a01b03868116911614801590611c7f57506025546001600160a01b03858116911614155b15611c8957600091505b306000908152602081905260408120549050600060215482118015611cab5750825b9050808015611cc25750600a5462010000900460ff165b8015611cd65750600a54610100900460ff16155b8015611cfb57506001600160a01b03871660009081526007602052604090205460ff16155b8015611d2057506001600160a01b03861660009081526007602052604090205460ff16155b15611d4957600a805461ff001916610100179055611d3d82611fbf565b600a805461ff00191690555b611d56878787878761219a565b50505050505050565b6000611d6b82846129a4565b9392505050565b6000611d6b82846129bb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db357611db361288e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3091906129dd565b81600181518110611e4357611e4361288e565b6001600160a01b039283166020918202929092010152600654611e6991309116846115d7565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ea29085906000908690309042906004016129fa565b600060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050505050565b6000611d6b82846128d3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6022546001600160a01b03166108fc611f50836002611d72565b6040518115909202916000818181858888f19350505050158015611f78573d6000803e3d6000fd5b506023546001600160a01b03166108fc611f93836002611d72565b6040518115909202916000818181858888f19350505050158015611fbb573d6000803e3d6000fd5b5050565b6000611fde602054610c8e601f54601e54611ed890919063ffffffff16565b90506000821580611fed575081155b15611ff757505050565b602154612005906005611d5f565b83111561201d5760215461201a906005611d5f565b92505b600061203d6002610baf85610baf60205489611d5f90919063ffffffff16565b9050600061204b85836121fa565b90504761205782611d7e565b600061206347836121fa565b9050600061208087610baf601e5485611d5f90919063ffffffff16565b9050600061209d88610baf601f5486611d5f90919063ffffffff16565b905060006120b5826120af86866121fa565b906121fa565b6000601e819055601f819055602055905086158015906120d55750600081115b156120e4576120e48782612206565b6023546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612131576040519150601f19603f3d011682016040523d82523d6000602084013e612136565b606091505b50506022546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b50505050505050505050505050565b816121ac576121a76122b4565b6121ba565b6121b785848361233c565b92505b6121c5858585612437565b816121f3576121f3601354601255601554601455601754601655601954601855601b54601a55601d54601c55565b5050505050565b6000611d6b8284612a6b565b60065461221e9030906001600160a01b0316846115d7565b6006546024805460405163f305d71960e01b815230600482015291820185905260006044830181905260648301526001600160a01b0390811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561228f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121f39190612a7e565b6012541580156122c45750601454155b80156122d05750601654155b80156122dc5750601854155b80156122e85750601a54155b80156122f45750601c54155b156122fb57565b60128054601355601480546015556016805460175560188054601955601a8054601b55601c8054601d55600095869055938590559184905583905582905555565b600081156123515761234c612561565b612359565b61235961258e565b600e54600090156124135761237f6103e8610baf600e5487611d5f90919063ffffffff16565b9050600e54600f548261239291906129a4565b61239c91906129bb565b601e60008282546123ad91906128d3565b9091555050600e546010546123c290836129a4565b6123cc91906129bb565b601f60008282546123dd91906128d3565b9091555050600e546010546123f290836129a4565b6123fc91906129bb565b6020600082825461240d91906128d3565b90915550505b801561242457612424853083612437565b61242e8185612a6b565b95945050505050565b6001600160a01b03831661245d5760405162461bcd60e51b81526004016109429061291c565b6001600160a01b0382166124835760405162461bcd60e51b815260040161094290612961565b6001600160a01b038316600090815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610942565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b63565b601854600f819055601a546010819055601c546011819055612589929091610c8e9190611ed8565b600e55565b601254600f81905560145460108190556016546011819055612589929091610c8e9190611ed8565b600060208083528351808285015260005b818110156125e3578581018301518582016040015282016125c7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c7257600080fd5b803561262481612604565b919050565b6000806040838503121561263c57600080fd5b823561264781612604565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610c7257600080fd5b80356126248161266b565b6000806040838503121561269757600080fd5b823567ffffffffffffffff808211156126af57600080fd5b818501915085601f8301126126c357600080fd5b81356020828211156126d7576126d7612655565b8160051b604051601f19603f830116810181811086821117156126fc576126fc612655565b60405292835281830193508481018201928984111561271a57600080fd5b948201945b8386101561273f5761273086612619565b8552948201949382019361271f565b965061274e9050878201612679565b9450505050509250929050565b60006020828403121561276d57600080fd5b8135611d6b81612604565b60008060006060848603121561278d57600080fd5b833561279881612604565b925060208401356127a881612604565b929592945050506040919091013590565b6000602082840312156127cb57600080fd5b5035919050565b6000806000606084860312156127e757600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561281157600080fd5b823561281c81612604565b9150602083013561282c81612604565b809150509250929050565b60006020828403121561284957600080fd5b8135611d6b8161266b565b600181811c9082168061286857607f821691505b60208210810361288857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128cc576128cc6128a4565b5060010190565b8082018082111561086e5761086e6128a4565b6000602082840312156128f857600080fd5b5051919050565b60006020828403121561291157600080fd5b8151611d6b8161266b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761086e5761086e6128a4565b6000826129d857634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156129ef57600080fd5b8151611d6b81612604565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a4a5784516001600160a01b031683529383019391830191600101612a25565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561086e5761086e6128a4565b600080600060608486031215612a9357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b48f21a72be1d741009fc4f46120bca3a76c6f8006094d0a93a6ae88c4dbbeeb64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102695760003560e01c80638da5cb5b11610143578063c04a894c116100bb578063dff90b5b11610077578063dff90b5b14610719578063e01af92c1461072e578063e99c9d091461074e578063f2fde38b1461076e578063f34eb0b81461078e578063ffb54a99146107ae57005b8063c04a894c14610678578063c0f17acd14610698578063c1aea0c3146106ae578063c9567bf9146106c4578063d077b48f146106d9578063dd62ed3e146106f957005b8063a457c2d71161010a578063a457c2d7146105cc578063a9059cbb146105ec578063aa4bde281461060c578063ac0a18a214610622578063afa4f3b214610642578063b6cf8ce61461066257005b80638da5cb5b1461054d57806395d89b41146105755780639c3b4fdc1461058a5780639e93ad8e146105a0578063a0d82dc5146105b657005b8063313ce567116101e15780636ddd17131161019d5780636ddd17131461049757806370a08231146104b7578063715018a6146104ed578063743fdd7214610502578063751039fc1461052257806388e765ff1461053757005b8063313ce567146103d757806339509351146103f35780633bbac5791461041357806366d602ae1461044c57806367c45349146104625780636d6591811461047757005b80631f110500116102305780631f1105001461032c5780631f53ac021461034c57806320800a001461036c57806323b872dd1461038157806327a14fc2146103a1578063312394a0146103c157005b806306fdde0314610272578063095ea7b31461029d5780630a3d5b55146102cd5780630b01aa51146102ed57806318160ddd1461030d57005b3661027057005b005b34801561027e57600080fd5b506102876107c8565b60405161029491906125b6565b60405180910390f35b3480156102a957600080fd5b506102bd6102b8366004612629565b61085a565b6040519015158152602001610294565b3480156102d957600080fd5b506102706102e8366004612684565b610874565b3480156102f957600080fd5b5061027061030836600461275b565b6108e8565b34801561031957600080fd5b506002545b604051908152602001610294565b34801561033857600080fd5b50610270610347366004612684565b6109c9565b34801561035857600080fd5b5061027061036736600461275b565b610a38565b34801561037857600080fd5b50610270610b14565b34801561038d57600080fd5b506102bd61039c366004612778565b610b69565b3480156103ad57600080fd5b506102706103bc3660046127b9565b610b8d565b3480156103cd57600080fd5b5061031e60185481565b3480156103e357600080fd5b5060405160128152602001610294565b3480156103ff57600080fd5b506102bd61040e366004612629565b610c2f565b34801561041f57600080fd5b506102bd61042e36600461275b565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561045857600080fd5b5061031e600c5481565b34801561046e57600080fd5b50610270610c51565b34801561048357600080fd5b506102706104923660046127d2565b610c75565b3480156104a357600080fd5b50600a546102bd9062010000900460ff1681565b3480156104c357600080fd5b5061031e6104d236600461275b565b6001600160a01b031660009081526020819052604090205490565b3480156104f957600080fd5b50610270610cf0565b34801561050e57600080fd5b5061027061051d36600461275b565b610d04565b34801561052e57600080fd5b50610270610de0565b34801561054357600080fd5b5061031e600b5481565b34801561055957600080fd5b506005546040516001600160a01b039091168152602001610294565b34801561058157600080fd5b50610287610e04565b34801561059657600080fd5b5061031e60145481565b3480156105ac57600080fd5b5061031e6103e881565b3480156105c257600080fd5b5061031e601a5481565b3480156105d857600080fd5b506102bd6105e7366004612629565b610e13565b3480156105f857600080fd5b506102bd610607366004612629565b610e8e565b34801561061857600080fd5b5061031e600d5481565b34801561062e57600080fd5b5061027061063d3660046127d2565b610e9c565b34801561064e57600080fd5b5061027061065d3660046127b9565b610f11565b34801561066e57600080fd5b5061031e601c5481565b34801561068457600080fd5b50610270610693366004612684565b61101e565b3480156106a457600080fd5b5061031e60125481565b3480156106ba57600080fd5b5061031e60165481565b3480156106d057600080fd5b5061027061114b565b3480156106e557600080fd5b506102706106f436600461275b565b6111f8565b34801561070557600080fd5b5061031e6107143660046127fe565b6113db565b34801561072557600080fd5b50610270611406565b34801561073a57600080fd5b50610270610749366004612837565b611418565b34801561075a57600080fd5b506102706107693660046127b9565b61143c565b34801561077a57600080fd5b5061027061078936600461275b565b6114d2565b34801561079a57600080fd5b506102706107a93660046127b9565b611548565b3480156107ba57600080fd5b50600a546102bd9060ff1681565b6060600380546107d790612854565b80601f016020809104026020016040519081016040528092919081815260200182805461080390612854565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b6000336108688185856115d7565b60019150505b92915050565b61087c6116fb565b60005b82518110156108e357816008600085848151811061089f5761089f61288e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108db816128ba565b91505061087f565b505050565b6108f06116fb565b6001600160a01b03811661094b5760405162461bcd60e51b815260206004820152601e60248201527f5f6c697157616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b602480546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b6109d16116fb565b60005b82518110156108e35781600760008584815181106109f4576109f461288e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a30816128ba565b9150506109d4565b610a406116fb565b6001600160a01b038116610a965760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f74206265203000006044820152606401610942565b602380546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610b1c6116fb565b604051600090339047908381818185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b50505050565b600033610b77858285611755565b610b828585856117c9565b506001949350505050565b610b956116fb565b610bb56103e8610baf6001610ba960025490565b90611d5f565b90611d72565b811015610c2a5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610942565b600d55565b600033610868818585610c4283836113db565b610c4c91906128d3565b6115d7565b610c596116fb565b30600090815260208190526040902054610c7281611d7e565b50565b610c7d6116fb565b61012c610c9482610c8e8686611ed8565b90611ed8565b1115610ce25760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203330250000006044820152606401610942565b601292909255601455601655565b610cf86116fb565b610d026000611ee4565b565b610d0c6116fb565b6001600160a01b038116610d625760405162461bcd60e51b815260206004820152601f60248201527f5f6d6b746757616c6c657420616464726573732063616e6e6f742062652030006044820152606401610942565b602280546001600160a01b039081166000908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b610de86116fb565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b6060600480546107d790612854565b60003381610e2182866113db565b905083811015610e815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610942565b610b8282868684036115d7565b6000336108688185856117c9565b610ea46116fb565b61012c610eb582610c8e8686611ed8565b1115610f035760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772033302500006044820152606401610942565b601892909255601a55601c55565b610f196116fb565b610f2e620186a0610baf6001610ba960025490565b811015610f9b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610942565b610faf6103e8610baf6005610ba960025490565b8111156110195760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101892903a37ba30b61039bab838363c9760711b6064820152608401610942565b602155565b6110266116fb565b60005b82518110156108e35760255483516001600160a01b03909116908490839081106110555761105561288e565b60200260200101516001600160a01b03161415801561109f5750306001600160a01b031683828151811061108b5761108b61288e565b60200260200101516001600160a01b031614155b80156110dd575060065483516001600160a01b03909116908490839081106110c9576110c961288e565b60200260200101516001600160a01b031614155b156111395781600960008584815181106110f9576110f961288e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80611143816128ba565b915050611029565b6111536116fb565b600a5460ff16156111a65760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610942565b600a805462ff00001916620100001790556b033b2e3c9fd0803ce8000000600b819055600c819055600d8190556111e69061271090610baf906005611d5f565b602155600a805460ff19166001179055565b6112006116fb565b306001600160a01b038216036112585760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610942565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561129f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c391906128e6565b116112fc5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610942565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611343573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136791906128e6565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e391906128ff565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61140e6116fb565b47610c7281611f36565b6114206116fb565b600a8054911515620100000262ff000019909216919091179055565b6114446116fb565b6114586103e8610baf6001610ba960025490565b8110156114cd5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610942565b600c55565b6114da6116fb565b6001600160a01b03811661153f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610942565b610c7281611ee4565b6115506116fb565b6115646103e8610baf6001610ba960025490565b8110156115d25760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610942565b600b55565b6001600160a01b0383166116395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610942565b6001600160a01b03821661169a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610942565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610942565b600061176184846113db565b90506000198114610b6357818110156117bc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610942565b610b6384848484036115d7565b6001600160a01b0383166117ef5760405162461bcd60e51b81526004016109429061291c565b6001600160a01b0382166118155760405162461bcd60e51b815260040161094290612961565b600081116118775760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610942565b6001600061188d6005546001600160a01b031690565b6001600160a01b0316856001600160a01b0316141580156118bc57506005546001600160a01b03858116911614155b80156118d057506001600160a01b03841615155b80156118e757506001600160a01b03841661dead14155b80156118fb5750600a54610100900460ff16155b15611c0a576001600160a01b03851660009081526009602052604090205460ff1615801561194257506001600160a01b03841660009081526009602052604090205460ff16155b6119775760405162461bcd60e51b8152600401610942906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff16611a0c576001600160a01b03851660009081526007602052604090205460ff16806119c057506001600160a01b03841660009081526007602052604090205460ff165b611a0c5760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610942565b6025546001600160a01b038681169116148015611a3757506006546001600160a01b03858116911614155b8015611a5c57506001600160a01b03841660009081526008602052604090205460ff16155b15611b4c57600b54831115611ac55760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610942565b600d5483611ae8866001600160a01b031660009081526020819052604090205490565b611af291906128d3565b1115611b4c5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610942565b6025546001600160a01b038581169116148015611b7757506006546001600160a01b03868116911614155b8015611b9c57506001600160a01b03851660009081526008602052604090205460ff16155b15611c0a57600c54831115611c065760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610942565b5060015b6001600160a01b03851660009081526007602052604090205460ff1680611c4957506001600160a01b03841660009081526007602052604090205460ff165b15611c5357600091505b6025546001600160a01b03868116911614801590611c7f57506025546001600160a01b03858116911614155b15611c8957600091505b306000908152602081905260408120549050600060215482118015611cab5750825b9050808015611cc25750600a5462010000900460ff165b8015611cd65750600a54610100900460ff16155b8015611cfb57506001600160a01b03871660009081526007602052604090205460ff16155b8015611d2057506001600160a01b03861660009081526007602052604090205460ff16155b15611d4957600a805461ff001916610100179055611d3d82611fbf565b600a805461ff00191690555b611d56878787878761219a565b50505050505050565b6000611d6b82846129a4565b9392505050565b6000611d6b82846129bb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611db357611db361288e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e3091906129dd565b81600181518110611e4357611e4361288e565b6001600160a01b039283166020918202929092010152600654611e6991309116846115d7565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611ea29085906000908690309042906004016129fa565b600060405180830381600087803b158015611ebc57600080fd5b505af1158015611ed0573d6000803e3d6000fd5b505050505050565b6000611d6b82846128d3565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6022546001600160a01b03166108fc611f50836002611d72565b6040518115909202916000818181858888f19350505050158015611f78573d6000803e3d6000fd5b506023546001600160a01b03166108fc611f93836002611d72565b6040518115909202916000818181858888f19350505050158015611fbb573d6000803e3d6000fd5b5050565b6000611fde602054610c8e601f54601e54611ed890919063ffffffff16565b90506000821580611fed575081155b15611ff757505050565b602154612005906005611d5f565b83111561201d5760215461201a906005611d5f565b92505b600061203d6002610baf85610baf60205489611d5f90919063ffffffff16565b9050600061204b85836121fa565b90504761205782611d7e565b600061206347836121fa565b9050600061208087610baf601e5485611d5f90919063ffffffff16565b9050600061209d88610baf601f5486611d5f90919063ffffffff16565b905060006120b5826120af86866121fa565b906121fa565b6000601e819055601f819055602055905086158015906120d55750600081115b156120e4576120e48782612206565b6023546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612131576040519150601f19603f3d011682016040523d82523d6000602084013e612136565b606091505b50506022546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b50505050505050505050505050565b816121ac576121a76122b4565b6121ba565b6121b785848361233c565b92505b6121c5858585612437565b816121f3576121f3601354601255601554601455601754601655601954601855601b54601a55601d54601c55565b5050505050565b6000611d6b8284612a6b565b60065461221e9030906001600160a01b0316846115d7565b6006546024805460405163f305d71960e01b815230600482015291820185905260006044830181905260648301526001600160a01b0390811660848301524260a48301529091169063f305d71990839060c40160606040518083038185885af115801561228f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121f39190612a7e565b6012541580156122c45750601454155b80156122d05750601654155b80156122dc5750601854155b80156122e85750601a54155b80156122f45750601c54155b156122fb57565b60128054601355601480546015556016805460175560188054601955601a8054601b55601c8054601d55600095869055938590559184905583905582905555565b600081156123515761234c612561565b612359565b61235961258e565b600e54600090156124135761237f6103e8610baf600e5487611d5f90919063ffffffff16565b9050600e54600f548261239291906129a4565b61239c91906129bb565b601e60008282546123ad91906128d3565b9091555050600e546010546123c290836129a4565b6123cc91906129bb565b601f60008282546123dd91906128d3565b9091555050600e546010546123f290836129a4565b6123fc91906129bb565b6020600082825461240d91906128d3565b90915550505b801561242457612424853083612437565b61242e8185612a6b565b95945050505050565b6001600160a01b03831661245d5760405162461bcd60e51b81526004016109429061291c565b6001600160a01b0382166124835760405162461bcd60e51b815260040161094290612961565b6001600160a01b038316600090815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610942565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b63565b601854600f819055601a546010819055601c546011819055612589929091610c8e9190611ed8565b600e55565b601254600f81905560145460108190556016546011819055612589929091610c8e9190611ed8565b600060208083528351808285015260005b818110156125e3578581018301518582016040015282016125c7565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c7257600080fd5b803561262481612604565b919050565b6000806040838503121561263c57600080fd5b823561264781612604565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610c7257600080fd5b80356126248161266b565b6000806040838503121561269757600080fd5b823567ffffffffffffffff808211156126af57600080fd5b818501915085601f8301126126c357600080fd5b81356020828211156126d7576126d7612655565b8160051b604051601f19603f830116810181811086821117156126fc576126fc612655565b60405292835281830193508481018201928984111561271a57600080fd5b948201945b8386101561273f5761273086612619565b8552948201949382019361271f565b965061274e9050878201612679565b9450505050509250929050565b60006020828403121561276d57600080fd5b8135611d6b81612604565b60008060006060848603121561278d57600080fd5b833561279881612604565b925060208401356127a881612604565b929592945050506040919091013590565b6000602082840312156127cb57600080fd5b5035919050565b6000806000606084860312156127e757600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561281157600080fd5b823561281c81612604565b9150602083013561282c81612604565b809150509250929050565b60006020828403121561284957600080fd5b8135611d6b8161266b565b600181811c9082168061286857607f821691505b60208210810361288857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128cc576128cc6128a4565b5060010190565b8082018082111561086e5761086e6128a4565b6000602082840312156128f857600080fd5b5051919050565b60006020828403121561291157600080fd5b8151611d6b8161266b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761086e5761086e6128a4565b6000826129d857634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156129ef57600080fd5b8151611d6b81612604565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a4a5784516001600160a01b031683529383019391830191600101612a25565b50506001600160a01b03969096166060850152505050608001529392505050565b8181038181111561086e5761086e6128a4565b600080600060608486031215612a9357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220b48f21a72be1d741009fc4f46120bca3a76c6f8006094d0a93a6ae88c4dbbeeb64736f6c63430008110033

Deployed Bytecode Sourcemap

32305:14335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15668:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18005:201;;;;;;;;;;-1:-1:-1;18005:201:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;18005:201:0;1162:187:1;42271:179:0;;;;;;;;;;-1:-1:-1;42271:179:0;;;;;:::i;:::-;;:::i;41721:355::-;;;;;;;;;;-1:-1:-1;41721:355:0;;;;;:::i;:::-;;:::i;16782:108::-;;;;;;;;;;-1:-1:-1;16870:12:0;;16782:108;;;3336:25:1;;;3324:2;3309:18;16782:108:0;3190:177:1;42082::0;;;;;;;;;;-1:-1:-1;42082:177:0;;;;;:::i;:::-;;:::i;41360:355::-;;;;;;;;;;-1:-1:-1;41360:355:0;;;;;:::i;:::-;;:::i;45926:151::-;;;;;;;;;;;;;:::i;18784:295::-;;;;;;;;;;-1:-1:-1;18784:295:0;;;;;:::i;:::-;;:::i;40318:257::-;;;;;;;;;;-1:-1:-1;40318:257:0;;;;;:::i;:::-;;:::i;33343:31::-;;;;;;;;;;;;;;;;16626:93;;;;;;;;;;-1:-1:-1;16626:93:0;;16709:2;4160:36:1;;4148:2;4133:18;16626:93:0;4018:184:1;19486:238:0;;;;;;;;;;-1:-1:-1;19486:238:0;;;;;:::i;:::-;;:::i;39277:100::-;;;;;;;;;;-1:-1:-1;39277:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;39355:14:0;39331:4;39355:14;;;:6;:14;;;;;;;;;39277:100;32806:39;;;;;;;;;;;;;;;;45611:148;;;;;;;;;;;;;:::i;42761:306::-;;;;;;;;;;-1:-1:-1;42761:306:0;;;;;:::i;:::-;;:::i;32659:31::-;;;;;;;;;;-1:-1:-1;32659:31:0;;;;;;;;;;;16951:127;;;;;;;;;;-1:-1:-1;16951:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17052:18:0;17025:7;17052:18;;;;;;;;;;;;16951:127;2505:103;;;;;;;;;;;;;:::i;40989:365::-;;;;;;;;;;-1:-1:-1;40989:365:0;;;;;:::i;:::-;;:::i;46411:155::-;;;;;;;;;;;;;:::i;32761:38::-;;;;;;;;;;;;;;;;1861:87;;;;;;;;;;-1:-1:-1;1934:6:0;;1861:87;;-1:-1:-1;;;;;1934:6:0;;;4674:51:1;;4662:2;4647:18;1861:87:0;4528:203:1;15885:104:0;;;;;;;;;;;;;:::i;33165:29::-;;;;;;;;;;;;;;;;32900:42;;;;;;;;;;;;32938:4;32900:42;;33438:30;;;;;;;;;;;;;;;;20225:434;;;;;;;;;;-1:-1:-1;20225:434:0;;;;;:::i;:::-;;:::i;17282:193::-;;;;;;;;;;-1:-1:-1;17282:193:0;;;;;:::i;:::-;;:::i;32852:41::-;;;;;;;;;;;;;;;;43073:320;;;;;;;;;;-1:-1:-1;43073:320:0;;;;;:::i;:::-;;:::i;40587:396::-;;;;;;;;;;-1:-1:-1;40587:396:0;;;;;:::i;:::-;;:::i;33530:30::-;;;;;;;;;;;;;;;;42462:293;;;;;;;;;;-1:-1:-1;42462:293:0;;;;;:::i;:::-;;:::i;33073:30::-;;;;;;;;;;;;;;;;33254:29;;;;;;;;;;;;;;;;39383:330;;;;;;;;;;;;;:::i;46083:322::-;;;;;;;;;;-1:-1:-1;46083:322:0;;;;;:::i;:::-;;:::i;17536:151::-;;;;;;;;;;-1:-1:-1;17536:151:0;;;;;:::i;:::-;;:::i;45771:149::-;;;;;;;;;;;;;:::i;39719:91::-;;;;;;;;;;-1:-1:-1;39719:91:0;;;;;:::i;:::-;;:::i;40061:245::-;;;;;;;;;;-1:-1:-1;40061:245:0;;;;;:::i;:::-;;:::i;2761:201::-;;;;;;;;;;-1:-1:-1;2761:201:0;;;;;:::i;:::-;;:::i;39816:239::-;;;;;;;;;;-1:-1:-1;39816:239:0;;;;;:::i;:::-;;:::i;32600:23::-;;;;;;;;;;-1:-1:-1;32600:23:0;;;;;;;;15668:100;15722:13;15755:5;15748:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15668:100;:::o;18005:201::-;18088:4;733:10;18144:32;733:10;18160:7;18169:6;18144:8;:32::i;:::-;18194:4;18187:11;;;18005:201;;;;;:::o;42271:179::-;1749:13;:11;:13::i;:::-;42367:6:::1;42362:80;42383:8;:15;42379:1;:19;42362:80;;;42435:7;42405:14;:27;42420:8;42429:1;42420:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42405:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42405:27:0;:37;;-1:-1:-1;;42405:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42400:3;::::1;::::0;::::1;:::i;:::-;;;;42362:80;;;;42271:179:::0;;:::o;41721:355::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;41798:17:0;::::1;41790:60;;;::::0;-1:-1:-1;;;41790:60:0;;6366:2:1;41790:60:0::1;::::0;::::1;6348:21:1::0;6405:2;6385:18;;;6378:30;6444:32;6424:18;;;6417:60;6494:18;;41790:60:0::1;;;;;;;;;41875:10;::::0;;-1:-1:-1;;;;;41875:10:0;;::::1;41889:5;41861:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;41861:33:0;;::::1;::::0;;;41920:10;;;::::1;41905:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;41950:31;;-1:-1:-1;;;;;;41950:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;41992:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;41992:32:0;;::::1;::::0;;;42050:10;;;;::::1;42035:26:::0;;;;;;;:33;;;;::::1;;::::0;;41721:355::o;42082:177::-;1749:13;:11;:13::i;:::-;42177:6:::1;42172:79;42193:8;:15;42189:1;:19;42172:79;;;42244:7;42215:13;:26;42229:8;42238:1;42229:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42215:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42215:26:0;:36;;-1:-1:-1;;42215:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42210:3;::::1;::::0;::::1;:::i;:::-;;;;42172:79;;41360:355:::0;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;41437:17:0;::::1;41429:60;;;::::0;-1:-1:-1;;;41429:60:0;;6725:2:1;41429:60:0::1;::::0;::::1;6707:21:1::0;6764:2;6744:18;;;6737:30;6803:32;6783:18;;;6776:60;6853:18;;41429:60:0::1;6523:354:1::0;41429:60:0::1;41514:10;::::0;;-1:-1:-1;;;;;41514:10:0;;::::1;41528:5;41500:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;41500:33:0;;::::1;::::0;;;41559:10;;;::::1;41544:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;41589:31;;-1:-1:-1;;;;;;41589:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;41631:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;41631:32:0;;::::1;::::0;;;41689:10;;;;::::1;41674:26:::0;;;;;;;:33;;;;::::1;;::::0;;41360:355::o;45926:151::-;1749:13;:11;:13::i;:::-;46011:58:::1;::::0;45975:12:::1;::::0;46019:10:::1;::::0;46043:21:::1;::::0;45975:12;46011:58;45975:12;46011:58;46043:21;46019:10;46011:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;45926:151:0:o;18784:295::-;18915:4;733:10;18973:38;18989:4;733:10;19004:6;18973:15;:38::i;:::-;19022:27;19032:4;19038:2;19042:6;19022:9;:27::i;:::-;-1:-1:-1;19067:4:0;;18784:295;-1:-1:-1;;;;18784:295:0:o;40318:257::-;1749:13;:11;:13::i;:::-;40429:30:::1;40454:4;40429:20;40447:1;40429:13;16870:12:::0;;;16782:108;40429:13:::1;:17:::0;::::1;:20::i;:::-;:24:::0;::::1;:30::i;:::-;40408:16;:52;;40400:122;;;::::0;-1:-1:-1;;;40400:122:0;;7294:2:1;40400:122:0::1;::::0;::::1;7276:21:1::0;7333:2;7313:18;;;7306:30;7372:34;7352:18;;;7345:62;7443:27;7423:18;;;7416:55;7488:19;;40400:122:0::1;7092:421:1::0;40400:122:0::1;40533:15;:34:::0;40318:257::o;19486:238::-;19574:4;733:10;19630:64;733:10;19646:7;19683:10;19655:25;733:10;19646:7;19655:9;:25::i;:::-;:38;;;;:::i;:::-;19630:8;:64::i;45611:148::-;1749:13;:11;:13::i;:::-;45701:4:::1;45657:23;17052:18:::0;;;;;;;;;;;45718:33:::1;17052:18:::0;45718:16:::1;:33::i;:::-;45646:113;45611:148::o:0;42761:306::-;1749:13;:11;:13::i;:::-;42921:3:::1;42874:43;42906:10:::0;42874:27:::1;:11:::0;42890:10;42874:15:::1;:27::i;:::-;:31:::0;::::1;:43::i;:::-;:50;;42866:92;;;::::0;-1:-1:-1;;;42866:92:0;;7850:2:1;42866:92:0::1;::::0;::::1;7832:21:1::0;7889:2;7869:18;;;7862:30;7928:31;7908:18;;;7901:59;7977:18;;42866:92:0::1;7648:353:1::0;42866:92:0::1;42969:10;:24:::0;;;;43004:9:::1;:22:::0;43037:9:::1;:22:::0;42761:306::o;2505:103::-;1749:13;:11;:13::i;:::-;2570:30:::1;2597:1;2570:18;:30::i;:::-;2505:103::o:0;40989:365::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;41068:18:0;::::1;41060:62;;;::::0;-1:-1:-1;;;41060:62:0;;8208:2:1;41060:62:0::1;::::0;::::1;8190:21:1::0;8247:2;8227:18;;;8220:30;8286:33;8266:18;;;8259:61;8337:18;;41060:62:0::1;8006:355:1::0;41060:62:0::1;41147:11;::::0;;-1:-1:-1;;;;;41147:11:0;;::::1;41162:5;41133:26:::0;;;:13:::1;:26;::::0;;;;;;;:34;;-1:-1:-1;;41133:34:0;;::::1;::::0;;;41193:11;;;::::1;41178:27:::0;;:14:::1;:27:::0;;;;;;:35;;;::::1;::::0;;41224:33;;-1:-1:-1;;;;;;41224:33:0::1;::::0;;::::1;::::0;;::::1;::::0;;41268:26;;;;;;;;;:33;;;::::1;-1:-1:-1::0;41268:33:0;;::::1;::::0;;;41327:11;;;;::::1;41312:27:::0;;;;;;;:34;;;;::::1;;::::0;;40989:365::o;46411:155::-;1749:13;:11;:13::i;:::-;32733:21:::1;46463:12;:23:::0;;;46497:13:::1;:24:::0;;;46532:15:::1;:26:::0;46411:155::o;15885:104::-;15941:13;15974:7;15967:14;;;;;:::i;20225:434::-;20318:4;733:10;20318:4;20401:25;733:10;20418:7;20401:9;:25::i;:::-;20374:52;;20465:15;20445:16;:35;;20437:85;;;;-1:-1:-1;;;20437:85:0;;8568:2:1;20437:85:0;;;8550:21:1;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;-1:-1:-1;;;8697:18:1;;;8690:35;8742:19;;20437:85:0;8366:401:1;20437:85:0;20558:60;20567:5;20574:7;20602:15;20583:16;:34;20558:8;:60::i;17282:193::-;17361:4;733:10;17417:28;733:10;17434:2;17438:6;17417:9;:28::i;43073:320::-;1749:13;:11;:13::i;:::-;43240:3:::1;43190:46;43224:11:::0;43190:29:::1;:12:::0;43207:11;43190:16:::1;:29::i;:46::-;:53;;43182:96;;;::::0;-1:-1:-1;;;43182:96:0;;8974:2:1;43182:96:0::1;::::0;::::1;8956:21:1::0;9013:2;8993:18;;;8986:30;9052:32;9032:18;;;9025:60;9102:18;;43182:96:0::1;8772:354:1::0;43182:96:0::1;43289:11;:26:::0;;;;43326:10:::1;:24:::0;43361:10:::1;:24:::0;43073:320::o;40587:396::-;1749:13;:11;:13::i;:::-;40705:32:::1;40730:6;40705:20;40723:1;40705:13;16870:12:::0;;;16782:108;40705:32:::1;40682:18;:56;;40674:122;;;::::0;-1:-1:-1;;;40674:122:0;;9333:2:1;40674:122:0::1;::::0;::::1;9315:21:1::0;9372:2;9352:18;;;9345:30;9411:34;9391:18;;;9384:62;-1:-1:-1;;;9462:18:1;;;9455:51;9523:19;;40674:122:0::1;9131:417:1::0;40674:122:0::1;40838:30;40863:4;40838:20;40856:1;40838:13;16870:12:::0;;;16782:108;40838:30:::1;40815:18;:54;;40807:117;;;::::0;-1:-1:-1;;;40807:117:0;;9755:2:1;40807:117:0::1;::::0;::::1;9737:21:1::0;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:48;9942:19;;40807:117:0::1;9553:414:1::0;40807:117:0::1;40935:19;:40:::0;40587:396::o;42462:293::-;1749:13;:11;:13::i;:::-;42545:6:::1;42540:208;42561:8;:15;42557:1;:19;42540:208;;;42617:13;::::0;42602:11;;-1:-1:-1;;;;;42617:13:0;;::::1;::::0;42602:8;;42611:1;;42602:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42602:28:0::1;;;42601:64;;;;;42659:4;-1:-1:-1::0;;;;;42636:28:0::1;:8;42645:1;42636:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42636:28:0::1;;;42601:64;:109;;;;-1:-1:-1::0;42693:15:0::1;::::0;42670:11;;-1:-1:-1;;;;;42693:15:0;;::::1;::::0;42670:8;;42679:1;;42670:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42670:39:0::1;;;42601:109;42598:138;;;42734:2;42712:6;:19;42719:8;42728:1;42719:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42712:19:0::1;-1:-1:-1::0;;;;;42712:19:0::1;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;42598:138;42578:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42540:208;;39383:330:::0;1749:13;:11;:13::i;:::-;39443:11:::1;::::0;::::1;;39442:12;39434:48;;;::::0;-1:-1:-1;;;39434:48:0;;10174:2:1;39434:48:0::1;::::0;::::1;10156:21:1::0;10213:2;10193:18;;;10186:30;10252:25;10232:18;;;10225:53;10295:18;;39434:48:0::1;9972:347:1::0;39434:48:0::1;39493:11;:18:::0;;-1:-1:-1;;39493:18:0::1;::::0;::::1;::::0;;32733:21:::1;39522:12;:23:::0;;;39556:13:::1;:24:::0;;;39591:15:::1;:26:::0;;;39650::::1;::::0;39670:5:::1;::::0;39650:15:::1;::::0;39663:1:::1;39650:12;:15::i;:26::-;39628:19;:48:::0;39687:11:::1;:18:::0;;-1:-1:-1;;39687:18:0::1;39701:4;39687:18;::::0;;39383:330::o;46083:322::-;1749:13;:11;:13::i;:::-;46176:4:::1;-1:-1:-1::0;;;;;46161:20:0;::::1;::::0;46153:59:::1;;;::::0;-1:-1:-1;;;46153:59:0;;10526:2:1;46153:59:0::1;::::0;::::1;10508:21:1::0;10565:2;10545:18;;;10538:30;10604:28;10584:18;;;10577:56;10650:18;;46153:59:0::1;10324:350:1::0;46153:59:0::1;46231:36;::::0;-1:-1:-1;;;46231:36:0;;46261:4:::1;46231:36;::::0;::::1;4674:51:1::0;46270:1:0::1;::::0;-1:-1:-1;;;;;46231:21:0;::::1;::::0;::::1;::::0;4647:18:1;;46231:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;46223:62;;;::::0;-1:-1:-1;;;46223:62:0;;11070:2:1;46223:62:0::1;::::0;::::1;11052:21:1::0;11109:1;11089:18;;;11082:29;-1:-1:-1;;;11127:18:1;;;11120:39;11176:18;;46223:62:0::1;10868:332:1::0;46223:62:0::1;46310:36;::::0;-1:-1:-1;;;46310:36:0;;46340:4:::1;46310:36;::::0;::::1;4674:51:1::0;46296:11:0::1;::::0;-1:-1:-1;;;;;46310:21:0;::::1;::::0;::::1;::::0;4647:18:1;;46310:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46357:40;::::0;-1:-1:-1;;;46357:40:0;;46378:10:::1;46357:40;::::0;::::1;11379:51:1::0;11446:18;;;11439:34;;;46296:50:0;;-1:-1:-1;;;;;;46357:20:0;::::1;::::0;::::1;::::0;11352:18:1;;46357:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;17536:151::-:0;-1:-1:-1;;;;;17652:18:0;;;17625:7;17652:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17536:151::o;45771:149::-;1749:13;:11;:13::i;:::-;45848:21:::1;45880:32;45848:21:::0;45880:12:::1;:32::i;39719:91::-:0;1749:13;:11;:13::i;:::-;39783:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39783:19:0;;::::1;::::0;;;::::1;::::0;;39719:91::o;40061:245::-;1749:13;:11;:13::i;:::-;40166:30:::1;40191:4;40166:20;40184:1;40166:13;16870:12:::0;;;16782:108;40166:30:::1;40147:14;:50;;40139:118;;;::::0;-1:-1:-1;;;40139:118:0;;11936:2:1;40139:118:0::1;::::0;::::1;11918:21:1::0;11975:2;11955:18;;;11948:30;12014:34;11994:18;;;11987:62;12085:25;12065:18;;;12058:53;12128:19;;40139:118:0::1;11734:419:1::0;40139:118:0::1;40268:13;:30:::0;40061:245::o;2761:201::-;1749:13;:11;:13::i;:::-;-1:-1:-1;;;;;2850:22:0;::::1;2842:73;;;::::0;-1:-1:-1;;;2842:73:0;;12360:2:1;2842:73:0::1;::::0;::::1;12342:21:1::0;12399:2;12379:18;;;12372:30;12438:34;12418:18;;;12411:62;-1:-1:-1;;;12489:18:1;;;12482:36;12535:19;;2842:73:0::1;12158:402:1::0;2842:73:0::1;2926:28;2945:8;2926:18;:28::i;39816:239::-:0;1749:13;:11;:13::i;:::-;39918:30:::1;39943:4;39918:20;39936:1;39918:13;16870:12:::0;;;16782:108;39918:30:::1;39900:13;:49;;39892:116;;;::::0;-1:-1:-1;;;39892:116:0;;12767:2:1;39892:116:0::1;::::0;::::1;12749:21:1::0;12806:2;12786:18;;;12779:30;12845:34;12825:18;;;12818:62;-1:-1:-1;;;12896:18:1;;;12889:52;12958:19;;39892:116:0::1;12565:418:1::0;39892:116:0::1;40019:12;:28:::0;39816:239::o;24220:378::-;-1:-1:-1;;;;;24356:19:0;;24348:68;;;;-1:-1:-1;;;24348:68:0;;13190:2:1;24348:68:0;;;13172:21:1;13229:2;13209:18;;;13202:30;13268:34;13248:18;;;13241:62;-1:-1:-1;;;13319:18:1;;;13312:34;13363:19;;24348:68:0;12988:400:1;24348:68:0;-1:-1:-1;;;;;24435:21:0;;24427:68;;;;-1:-1:-1;;;24427:68:0;;13595:2:1;24427:68:0;;;13577:21:1;13634:2;13614:18;;;13607:30;13673:34;13653:18;;;13646:62;-1:-1:-1;;;13724:18:1;;;13717:32;13766:19;;24427:68:0;13393:398:1;24427:68:0;-1:-1:-1;;;;;24506:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24558:32;;3336:25:1;;;24558:32:0;;3309:18:1;24558:32:0;;;;;;;24220:378;;;:::o;2024:132::-;1934:6;;-1:-1:-1;;;;;1934:6:0;733:10;2088:23;2080:68;;;;-1:-1:-1;;;2080:68:0;;13998:2:1;2080:68:0;;;13980:21:1;;;14017:18;;;14010:30;14076:34;14056:18;;;14049:62;14128:18;;2080:68:0;13796:356:1;24887:453:0;25022:24;25049:25;25059:5;25066:7;25049:9;:25::i;:::-;25022:52;;-1:-1:-1;;25089:16:0;:37;25085:248;;25171:6;25151:16;:26;;25143:68;;;;-1:-1:-1;;;25143:68:0;;14359:2:1;25143:68:0;;;14341:21:1;14398:2;14378:18;;;14371:30;14437:31;14417:18;;;14410:59;14486:18;;25143:68:0;14157:353:1;25143:68:0;25255:51;25264:5;25271:7;25299:6;25280:16;:25;25255:8;:51::i;35154:1789::-;-1:-1:-1;;;;;35252:12:0;;35244:62;;;;-1:-1:-1;;;35244:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35325:10:0;;35317:58;;;;-1:-1:-1;;;35317:58:0;;;;;;;:::i;:::-;35403:1;35394:6;:10;35386:64;;;;-1:-1:-1;;;35386:64:0;;15527:2:1;35386:64:0;;;15509:21:1;15566:2;15546:18;;;15539:30;15605:34;15585:18;;;15578:62;-1:-1:-1;;;15656:18:1;;;15649:39;15705:19;;35386:64:0;15325:405:1;35386:64:0;35476:4;35461:12;35537:7;1934:6;;-1:-1:-1;;;;;1934:6:0;;1861:87;35537:7;-1:-1:-1;;;;;35529:15:0;:4;-1:-1:-1;;;;;35529:15:0;;;:32;;;;-1:-1:-1;1934:6:0;;-1:-1:-1;;;;;35548:13:0;;;1934:6;;35548:13;;35529:32;:46;;;;-1:-1:-1;;;;;;35565:10:0;;;;35529:46;:60;;;;-1:-1:-1;;;;;;35579:10:0;;34131:42;35579:10;;35529:60;:74;;;;-1:-1:-1;35594:9:0;;;;;;;35593:10;35529:74;35525:845;;;-1:-1:-1;;;;;35629:12:0;;;;;;:6;:12;;;;;;;;35628:13;:28;;;;-1:-1:-1;;;;;;35646:10:0;;;;;;:6;:10;;;;;;;;35645:11;35628:28;35620:45;;;;-1:-1:-1;;;35620:45:0;;;;;;15937:2:1;15919:21;;;15976:1;15956:18;;;15949:29;-1:-1:-1;;;16009:2:1;15994:18;;15987:34;16053:2;16038:18;;15735:327;35620:45:0;35684:11;;;;35680:97;;-1:-1:-1;;;;;35705:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;35728:17:0;;;;;;:13;:17;;;;;;;;35705:40;35697:80;;;;-1:-1:-1;;;35697:80:0;;16269:2:1;35697:80:0;;;16251:21:1;16308:2;16288:18;;;16281:30;16347:29;16327:18;;;16320:57;16394:18;;35697:80:0;16067:351:1;35697:80:0;35804:13;;-1:-1:-1;;;;;35796:21:0;;;35804:13;;35796:21;:55;;;;-1:-1:-1;35835:15:0;;-1:-1:-1;;;;;35821:30:0;;;35835:15;;35821:30;;35796:55;:78;;;;-1:-1:-1;;;;;;35856:18:0;;;;;;:14;:18;;;;;;;;35855:19;35796:78;35792:304;;;35913:12;;35903:6;:22;;35895:76;;;;-1:-1:-1;;;35895:76:0;;16625:2:1;35895:76:0;;;16607:21:1;16664:2;16644:18;;;16637:30;16703:34;16683:18;;;16676:62;-1:-1:-1;;;16754:18:1;;;16747:39;16803:19;;35895:76:0;16423:405:1;35895:76:0;36024:15;;36014:6;35998:13;36008:2;-1:-1:-1;;;;;17052:18:0;17025:7;17052:18;;;;;;;;;;;;16951:127;35998:13;:22;;;;:::i;:::-;:41;;35990:90;;;;-1:-1:-1;;;35990:90:0;;17035:2:1;35990:90:0;;;17017:21:1;17074:2;17054:18;;;17047:30;17113:34;17093:18;;;17086:62;-1:-1:-1;;;17164:18:1;;;17157:34;17208:19;;35990:90:0;16833:400:1;35990:90:0;36134:13;;-1:-1:-1;;;;;36128:19:0;;;36134:13;;36128:19;:55;;;;-1:-1:-1;36167:15:0;;-1:-1:-1;;;;;36151:32:0;;;36167:15;;36151:32;;36128:55;:80;;;;-1:-1:-1;;;;;;36188:20:0;;;;;;:14;:20;;;;;;;;36187:21;36128:80;36124:235;;;36247:13;;36237:6;:23;;36229:78;;;;-1:-1:-1;;;36229:78:0;;17440:2:1;36229:78:0;;;17422:21:1;17479:2;17459:18;;;17452:30;17518:34;17498:18;;;17491:62;-1:-1:-1;;;17569:18:1;;;17562:40;17619:19;;36229:78:0;17238:406:1;36229:78:0;-1:-1:-1;36339:4:0;36124:235;-1:-1:-1;;;;;36383:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;36406:17:0;;;;;;:13;:17;;;;;;;;36383:40;36380:60;;;36435:5;36425:15;;36380:60;36462:13;;-1:-1:-1;;;;;36454:21:0;;;36462:13;;36454:21;;;;:44;;-1:-1:-1;36485:13:0;;-1:-1:-1;;;;;36479:19:0;;;36485:13;;36479:19;;36454:44;36451:64;;;36510:5;36500:15;;36451:64;36572:4;36528:23;17052:18;;;;;;;;;;;36528:50;;36589:12;36623:19;;36605:15;:37;36604:53;;;;;36647:10;36604:53;36589:68;;36672:7;:22;;;;-1:-1:-1;36683:11:0;;;;;;;36672:22;:36;;;;-1:-1:-1;36699:9:0;;;;;;;36698:10;36672:36;:60;;;;-1:-1:-1;;;;;;36713:19:0;;;;;;:13;:19;;;;;;;;36712:20;36672:60;:82;;;;-1:-1:-1;;;;;;36737:17:0;;;;;;:13;:17;;;;;;;;36736:18;36672:82;36668:204;;;36771:9;:16;;-1:-1:-1;;36771:16:0;;;;;36802:26;36812:15;36802:9;:26::i;:::-;36843:9;:17;;-1:-1:-1;;36843:17:0;;;36668:204;36882:53;36897:4;36903:2;36907:6;36915:7;36924:10;36882:14;:53::i;:::-;35233:1710;;;;35154:1789;;;:::o;6823:98::-;6881:7;6908:5;6912:1;6908;:5;:::i;:::-;6901:12;6823:98;-1:-1:-1;;;6823:98:0:o;7220:::-;7278:7;7305:5;7309:1;7305;:5;:::i;38266:472::-;38357:16;;;38371:1;38357:16;;;;;;;;38333:21;;38357:16;;;;;;;;;;-1:-1:-1;38357:16:0;38333:40;;38402:4;38384;38389:1;38384:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38384:23:0;;;:7;;;;;;;;;;:23;;;;38428:15;;:22;;;-1:-1:-1;;;38428:22:0;;;;:15;;;;;:20;;:22;;;;;38384:7;;38428:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38418:4;38423:1;38418:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38418:32:0;;;:7;;;;;;;;;:32;38493:15;;38461:62;;38478:4;;38493:15;38511:11;38461:8;:62::i;:::-;38534:15;;:196;;-1:-1:-1;;;38534:196:0;;-1:-1:-1;;;;;38534:15:0;;;;:66;;:196;;38615:11;;38534:15;;38657:4;;38684;;38704:15;;38534:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38322:416;38266:472;:::o;6089:98::-;6147:7;6174:5;6178:1;6174;:5;:::i;3120:191::-;3213:6;;;-1:-1:-1;;;;;3230:17:0;;;-1:-1:-1;;;;;;3230:17:0;;;;;;;3263:40;;3213:6;;;3230:17;3213:6;;3263:40;;3194:16;;3263:40;3183:128;3120:191;:::o;39125:146::-;39183:11;;-1:-1:-1;;;;;39183:11:0;:35;39204:13;:6;39215:1;39204:10;:13::i;:::-;39183:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39229:10:0;;-1:-1:-1;;;;;39229:10:0;:34;39249:13;:6;39260:1;39249:10;:13::i;:::-;39229:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39125:146;:::o;36949:1311::-;37013:25;37042:52;37080:13;;37042:33;37061:13;;37042:14;;:18;;:33;;;;:::i;:52::-;37013:81;-1:-1:-1;37105:12:0;37142:20;;;:46;;-1:-1:-1;37166:22:0;;37142:46;37138:59;;;37190:7;;36949:1311;:::o;37138:59::-;37229:19;;:26;;37253:1;37229:23;:26::i;:::-;37211:15;:44;37207:94;;;37275:19;;:26;;37299:1;37275:23;:26::i;:::-;37257:44;;37207:94;37312:23;37338:64;37400:1;37338:57;37377:17;37338:34;37358:13;;37338:15;:19;;:34;;;;:::i;:64::-;37312:90;-1:-1:-1;37413:26:0;37442:36;:15;37312:90;37442:19;:36::i;:::-;37413:65;-1:-1:-1;37517:21:0;37549:36;37413:65;37549:16;:36::i;:::-;37606:18;37627:44;:21;37653:17;37627:25;:44::i;:::-;37606:65;;37682:18;37703:53;37738:17;37703:30;37718:14;;37703:10;:14;;:30;;;;:::i;:53::-;37682:74;;37767:17;37787:52;37821:17;37787:29;37802:13;;37787:10;:14;;:29;;;;:::i;:52::-;37767:72;-1:-1:-1;37850:17:0;37870:41;37767:72;37870:26;:10;37885;37870:14;:26::i;:::-;:30;;:41::i;:::-;37949:1;37932:14;:18;;;37961:13;:17;;;37989:13;:17;37850:61;-1:-1:-1;38020:19:0;;;;;:36;;;38055:1;38043:9;:13;38020:36;38017:82;;;38058:41;38072:15;38089:9;38058:13;:41::i;:::-;38131:10;;38123:46;;-1:-1:-1;;;;;38131:10:0;;;;38155:9;;38123:46;;;;38155:9;38131:10;38123:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38201:11:0;;38193:59;;38110;;-1:-1:-1;;;;;;38201:11:0;;38226:21;;38193:59;;;;38226:21;38201:11;38193:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;36949:1311:0:o;44313:319::-;44440:7;44435:86;;44449:14;:12;:14::i;:::-;44435:86;;;44488:33;44498:6;44506;44514;44488:9;:33::i;:::-;44479:42;;44435:86;44532:42;44548:6;44556:9;44567:6;44532:15;:42::i;:::-;44600:7;44595:29;;44609:15;44057:19;;44044:10;:32;44099:18;;44087:9;:30;44140:18;;44128:9;:30;44183:20;;44169:11;:34;44227:19;;44214:10;:32;44270:19;;44257:10;:32;43999:298;44609:15;44313:319;;;;;:::o;6468:98::-;6526:7;6553:5;6557:1;6553;:5;:::i;38744:365::-;38859:15;;38827:62;;38844:4;;-1:-1:-1;;;;;38859:15:0;38877:11;38827:8;:62::i;:::-;38900:15;;39050:10;;;38900:201;;-1:-1:-1;;;38900:201:0;;38972:4;38900:201;;;19767:34:1;19817:18;;;19810:34;;;38900:15:0;19860:18:1;;;19853:34;;;19903:18;;;19896:34;-1:-1:-1;;;;;39050:10:0;;;19946:19:1;;;19939:44;39075:15:0;19999:19:1;;;19992:35;38900:15:0;;;;:31;;38939:9;;19701:19:1;;38900:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43399:588::-;43447:10;;:15;:33;;;;-1:-1:-1;43466:9:0;;:14;43447:33;:51;;;;-1:-1:-1;43484:9:0;;:14;43447:51;:71;;;;-1:-1:-1;43502:11:0;;:16;43447:71;:90;;;;-1:-1:-1;43522:10:0;;:15;43447:90;:109;;;;-1:-1:-1;43541:10:0;;:15;43447:109;43443:122;;;43399:588::o;43443:122::-;43597:10;;;43575:19;:32;43639:9;;;43618:18;:30;43680:9;;;43659:18;:30;43723:11;;;43700:20;:34;43767:10;;;43745:19;:32;43810:10;;;43788:19;:32;-1:-1:-1;43841:14:0;;;;43866:13;;;;43890;;;;43914:15;;;43940:14;;;43965;43399:588::o;44638:573::-;44720:7;44744:6;44740:47;;;44752:10;:8;:10::i;:::-;44740:47;;;44778:9;:7;:9::i;:::-;44835:10;;44808:12;;44835:14;44831:272;;44873:39;32938:4;44873:22;44884:10;;44873:6;:10;;:22;;;;:::i;:39::-;44866:46;;44963:10;;44952:8;;44945:4;:15;;;;:::i;:::-;:28;;;;:::i;:::-;44927:14;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;45022:10:0;;45012:7;;45005:14;;:4;:14;:::i;:::-;:27;;;;:::i;:::-;44988:13;;:44;;;;;;;:::i;:::-;;;;-1:-1:-1;;45081:10:0;;45071:7;;45064:14;;:4;:14;:::i;:::-;:27;;;;:::i;:::-;45047:13;;:44;;;;;;;:::i;:::-;;;;-1:-1:-1;;44831:272:0;45117:8;;45113:58;;45127:44;45143:6;45159:4;45166;45127:15;:44::i;:::-;45189:14;45199:4;45189:14;;:::i;:::-;;44638:573;-1:-1:-1;;;;;44638:573:0:o;21127:832::-;-1:-1:-1;;;;;21258:18:0;;21250:68;;;;-1:-1:-1;;;21250:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21337:16:0;;21329:64;;;;-1:-1:-1;;;21329:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21475:15:0;;21453:19;21475:15;;;;;;;;;;;21509:21;;;;21501:72;;;;-1:-1:-1;;;21501:72:0;;20551:2:1;21501:72:0;;;20533:21:1;20590:2;20570:18;;;20563:30;20629:34;20609:18;;;20602:62;-1:-1:-1;;;20680:18:1;;;20673:36;20726:19;;21501:72:0;20349:402:1;21501:72:0;-1:-1:-1;;;;;21609:15:0;;;:9;:15;;;;;;;;;;;21627:20;;;21609:38;;21827:13;;;;;;;;;;:23;;;;;;21877:26;;3336:25:1;;;21827:13:0;;21877:26;;3309:18:1;21877:26:0;;;;;;;21914:37;42271:179;45217:190;45268:11;;45257:8;:22;;;45300:10;;45290:7;:20;;;45331:10;;45321:7;:20;;;45365:34;;45331:10;;45365:21;;45268:11;45365:12;:21::i;:34::-;45352:10;:47;45217:190::o;45413:186::-;45463:10;;45452:8;:21;;;45494:9;;45484:7;:19;;;45524:9;;45514:7;:19;;;45557:34;;45524:9;;45557:21;;45463:10;45557:12;:21::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1354:127::-;1415:10;1410:3;1406:20;1403:1;1396:31;1446:4;1443:1;1436:15;1470:4;1467:1;1460:15;1486:118;1572:5;1565:13;1558:21;1551:5;1548:32;1538:60;;1594:1;1591;1584:12;1609:128;1674:20;;1703:28;1674:20;1703:28;:::i;1742:1191::-;1832:6;1840;1893:2;1881:9;1872:7;1868:23;1864:32;1861:52;;;1909:1;1906;1899:12;1861:52;1949:9;1936:23;1978:18;2019:2;2011:6;2008:14;2005:34;;;2035:1;2032;2025:12;2005:34;2073:6;2062:9;2058:22;2048:32;;2118:7;2111:4;2107:2;2103:13;2099:27;2089:55;;2140:1;2137;2130:12;2089:55;2176:2;2163:16;2198:4;2221:2;2217;2214:10;2211:36;;;2227:18;;:::i;:::-;2273:2;2270:1;2266:10;2305:2;2299:9;2368:2;2364:7;2359:2;2355;2351:11;2347:25;2339:6;2335:38;2423:6;2411:10;2408:22;2403:2;2391:10;2388:18;2385:46;2382:72;;;2434:18;;:::i;:::-;2470:2;2463:22;2520:18;;;2554:15;;;;-1:-1:-1;2596:11:1;;;2592:20;;;2624:19;;;2621:39;;;2656:1;2653;2646:12;2621:39;2680:11;;;;2700:148;2716:6;2711:3;2708:15;2700:148;;;2782:23;2801:3;2782:23;:::i;:::-;2770:36;;2733:12;;;;2826;;;;2700:148;;;2867:6;-1:-1:-1;2892:35:1;;-1:-1:-1;2908:18:1;;;2892:35;:::i;:::-;2882:45;;;;;;1742:1191;;;;;:::o;2938:247::-;2997:6;3050:2;3038:9;3029:7;3025:23;3021:32;3018:52;;;3066:1;3063;3056:12;3018:52;3105:9;3092:23;3124:31;3149:5;3124:31;:::i;3372:456::-;3449:6;3457;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3573:9;3560:23;3592:31;3617:5;3592:31;:::i;:::-;3642:5;-1:-1:-1;3699:2:1;3684:18;;3671:32;3712:33;3671:32;3712:33;:::i;:::-;3372:456;;3764:7;;-1:-1:-1;;;3818:2:1;3803:18;;;;3790:32;;3372:456::o;3833:180::-;3892:6;3945:2;3933:9;3924:7;3920:23;3916:32;3913:52;;;3961:1;3958;3951:12;3913:52;-1:-1:-1;3984:23:1;;3833:180;-1:-1:-1;3833:180:1:o;4207:316::-;4284:6;4292;4300;4353:2;4341:9;4332:7;4328:23;4324:32;4321:52;;;4369:1;4366;4359:12;4321:52;-1:-1:-1;;4392:23:1;;;4462:2;4447:18;;4434:32;;-1:-1:-1;4513:2:1;4498:18;;;4485:32;;4207:316;-1:-1:-1;4207:316:1:o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;:::-;5111:7;5101:17;;;4736:388;;;;;:::o;5129:241::-;5185:6;5238:2;5226:9;5217:7;5213:23;5209:32;5206:52;;;5254:1;5251;5244:12;5206:52;5293:9;5280:23;5312:28;5334:5;5312:28;:::i;5375:380::-;5454:1;5450:12;;;;5497;;;5518:61;;5572:4;5564:6;5560:17;5550:27;;5518:61;5625:2;5617:6;5614:14;5594:18;5591:38;5588:161;;5671:10;5666:3;5662:20;5659:1;5652:31;5706:4;5703:1;5696:15;5734:4;5731:1;5724:15;5588:161;;5375:380;;;:::o;5760:127::-;5821:10;5816:3;5812:20;5809:1;5802:31;5852:4;5849:1;5842:15;5876:4;5873:1;5866:15;5892:127;5953:10;5948:3;5944:20;5941:1;5934:31;5984:4;5981:1;5974:15;6008:4;6005:1;5998:15;6024:135;6063:3;6084:17;;;6081:43;;6104:18;;:::i;:::-;-1:-1:-1;6151:1:1;6140:13;;6024:135::o;7518:125::-;7583:9;;;7604:10;;;7601:36;;;7617:18;;:::i;10679:184::-;10749:6;10802:2;10790:9;10781:7;10777:23;10773:32;10770:52;;;10818:1;10815;10808:12;10770:52;-1:-1:-1;10841:16:1;;10679:184;-1:-1:-1;10679:184:1:o;11484:245::-;11551:6;11604:2;11592:9;11583:7;11579:23;11575:32;11572:52;;;11620:1;11617;11610:12;11572:52;11652:9;11646:16;11671:28;11693:5;11671:28;:::i;14515:401::-;14717:2;14699:21;;;14756:2;14736:18;;;14729:30;14795:34;14790:2;14775:18;;14768:62;-1:-1:-1;;;14861:2:1;14846:18;;14839:35;14906:3;14891:19;;14515:401::o;14921:399::-;15123:2;15105:21;;;15162:2;15142:18;;;15135:30;15201:34;15196:2;15181:18;;15174:62;-1:-1:-1;;;15267:2:1;15252:18;;15245:33;15310:3;15295:19;;14921:399::o;17649:168::-;17722:9;;;17753;;17770:15;;;17764:22;;17750:37;17740:71;;17791:18;;:::i;17822:217::-;17862:1;17888;17878:132;;17932:10;17927:3;17923:20;17920:1;17913:31;17967:4;17964:1;17957:15;17995:4;17992:1;17985:15;17878:132;-1:-1:-1;18024:9:1;;17822:217::o;18044:251::-;18114:6;18167:2;18155:9;18146:7;18142:23;18138:32;18135:52;;;18183:1;18180;18173:12;18135:52;18215:9;18209:16;18234:31;18259:5;18234:31;:::i;18300:980::-;18562:4;18610:3;18599:9;18595:19;18641:6;18630:9;18623:25;18667:2;18705:6;18700:2;18689:9;18685:18;18678:34;18748:3;18743:2;18732:9;18728:18;18721:31;18772:6;18807;18801:13;18838:6;18830;18823:22;18876:3;18865:9;18861:19;18854:26;;18915:2;18907:6;18903:15;18889:29;;18936:1;18946:195;18960:6;18957:1;18954:13;18946:195;;;19025:13;;-1:-1:-1;;;;;19021:39:1;19009:52;;19116:15;;;;19081:12;;;;19057:1;18975:9;18946:195;;;-1:-1:-1;;;;;;;19197:32:1;;;;19192:2;19177:18;;19170:60;-1:-1:-1;;;19261:3:1;19246:19;19239:35;19158:3;18300:980;-1:-1:-1;;;18300:980:1:o;19285:128::-;19352:9;;;19373:11;;;19370:37;;;19387:18;;:::i;20038:306::-;20126:6;20134;20142;20195:2;20183:9;20174:7;20170:23;20166:32;20163:52;;;20211:1;20208;20201:12;20163:52;20240:9;20234:16;20224:26;;20290:2;20279:9;20275:18;20269:25;20259:35;;20334:2;20323:9;20319:18;20313:25;20303:35;;20038:306;;;;;:::o

Swarm Source

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