ETH Price: $3,355.79 (-2.85%)
Gas: 1 Gwei

Token

Steve (Steve)
 

Overview

Max Total Supply

420,690,000,000,000 Steve

Holders

1,807

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,000,000,000,000 Steve

Value
$0.00
0xe1b0a86c70a8e5b197b2aea46818c99c6cd5aa95
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:
Steve

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-03
*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity ^0.8.9;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

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 IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to 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 {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


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 Steve is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    address public buyBackWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public maxWallet;
    uint8 private _decimals;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public rescueSwap = false;
    
    uint256 public tradingActiveBlock;
        
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyBuyBackFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellBuyBackFee;
    
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public tokensForBuyBack;
    
    /******************/

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
    
    event buyBackWalletUpdated(address indexed newWallet, address indexed oldWallet);

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

    event BuyBackTriggered(uint256 amount);
    
    event OwnerForcedSwapBack(uint256 timestamp);

    constructor() ERC20("Steve", "Steve") {

        address _owner = 0xF036064D74386409D9eA44F35AD0AedF33fC3949;

        _decimals = 9;

        uint256 totalSupply = 420690000000000 * (10**_decimals);
        
        maxTransactionAmount = totalSupply * 3 / 100; // 3% maxTransactionAmountTxn
        maxWallet = totalSupply * 4 / 100; // 4% maxWallet

        buyMarketingFee = 0;
        buyLiquidityFee = 0;
        buyDevFee = 0;
        buyBuyBackFee = 0;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBuyBackFee;
        
        sellMarketingFee = 0;
        sellLiquidityFee = 0;
        sellDevFee = 0;
        sellBuyBackFee = 0;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBuyBackFee;

        marketingWallet = address(0xb4A4EE33439051A74f17C8f9eF911546575d3C31); // set as marketing wallet
    	devWallet = address(0xb4A4EE33439051A74f17C8f9eF911546575d3C31); // set as dev wallet
    	buyBackWallet = address(0xb4A4EE33439051A74f17C8f9eF911546575d3C31); // set as buyBackWallet


        address currentRouter;
        
        //Adding Variables for all the routers for easier deployment for our customers.
        if (block.chainid == 56) {
            currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router
        } else if (block.chainid == 97) {
            currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet
        } else if (block.chainid == 43114) {
            currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet
        } else if (block.chainid == 137) {
            currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten
        } else if (block.chainid == 250) {
            currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM
        } else if (block.chainid == 3) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Ropsten
        } else if (block.chainid == 1 || block.chainid == 4) {
            currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet
        } else {
            revert();
        }

        //End of Router Variables.

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter);

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(_owner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(_owner, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(_owner, totalSupply);
        transferOwnership(_owner);
    }

    receive() external payable {

  	}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        tradingActiveBlock = block.number;
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
    
    function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){
        require(!tradingActive, "Trading is already active, cannot airdrop after launch.");
        require(airdropWallets.length == amounts.length, "arrays must be the same length");
        require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input.
        for(uint256 i = 0; i < airdropWallets.length; i++){
            address wallet = airdropWallets[i];
            uint256 amount = amounts[i];
            _transfer(msg.sender, wallet, amount);
        }
        return true;
    }
    
    function updateMaxAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%");
        maxTransactionAmount = newNum * (10**_decimals);
    }
    
    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%");
        maxWallet= newNum * (10**_decimals);
    }
    
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }
    
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    // only use this to disable swapback and send tax in form of tokens
    function updateRescueSwap(bool enabled) external onlyOwner(){
        rescueSwap = enabled;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _buyBackFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyBuyBackFee = _buyBackFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBuyBackFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee, uint256 _buyBackFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellBuyBackFee = _buyBackFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBuyBackFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    
    function updateBuyBackWallet(address newWallet) external onlyOwner {
        emit buyBackWalletUpdated(newWallet, buyBackWallet);
        buyBackWallet = newWallet;
    }
    

    function isExcludedFromFees(address account) external view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !(_isExcludedFromFees[from] || _isExcludedFromFees[to]) &&
                !swapping
            ){
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance > 0;

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

            swapping = false;
        }
        
        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            
            if(tradingActiveBlock == block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){
                fees = amount.mul(99).div(100);
                tokensForLiquidity += fees * 33 / 99;
                tokensForBuyBack += fees * 33 / 99;
                tokensForMarketing += fees * 33 / 99;
            }
            // on sell
            else if (automatedMarketMakerPairs[to]){
                if (sellTotalFees > 0){
                    fees = amount.mul(sellTotalFees).div(100);
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                    tokensForDev += fees * sellDevFee / sellTotalFees;
                    tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                    tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees;
                }
            }
            // on buy
            else if(automatedMarketMakerPairs[from]) {
                if (buyTotalFees > 0){
                    fees = amount.mul(buyTotalFees).div(100);
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                    tokensForDev += fees * buyDevFee / buyTotalFees;
                    tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                    tokensForBuyBack += fees * buyBuyBackFee / buyTotalFees;
                }
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
        	
        	amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    function resetTaxAmount() public onlyOwner {
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        tokensForBuyBack = 0;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (rescueSwap){
            if (contractBalance > 0){
                super._transfer(address(this), marketingWallet, contractBalance);
            }
            return;
        }

        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev + tokensForBuyBack;
        bool success;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForBuyBack = ethBalance.mul(tokensForBuyBack).div(totalTokensToSwap);
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev - ethForBuyBack;
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        tokensForBuyBack = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        (success,) = address(buyBackWallet).call{value: ethForBuyBack}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"buyBackWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetTaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBuyBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBuyBackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_buyBackFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateRescueSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_buyBackFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805464ffffffff0019166101001790553480156200002357600080fd5b50604080518082018252600580825264537465766560d81b602080840182815285518087019096529285528401528151919291620000649160039162000943565b5080516200007a90600490602084019062000943565b50505060006200008f6200056260201b60201c565b600580546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062003dd4833981519152908290a350600b805460ff1916600990811790915573f036064d74386409d9ea44f35ad0aedf33fc3949906000906200010290600a62000afc565b620001159066017e9d8602b40062000b14565b905060646200012682600362000b14565b62000132919062000b36565b60095560646200014482600462000b14565b62000150919062000b36565b600a556000600e819055600f819055601081905560118190558062000176818062000b59565b62000182919062000b59565b6200018e919062000b59565b600d556000601381905560148190556015819055601681905580620001b4818062000b59565b620001c0919062000b59565b620001cc919062000b59565b6012556006805473b4a4ee33439051a74f17c8f9ef911546575d3c316001600160a01b0319918216811790925560078054821683179055600880549091169091179055600046603814156200023757507310ed43c718714eb63d5aa57b78b54704e256024e6200032d565b46606114156200025d575073d99d1c33f9fc3444f8101754abc46c52416550d16200032d565b4661a86a14156200028457507360ae616a2155ee3d9a68541ba4544862310933d46200032d565b4660891415620002aa575073a5e0829caced8ffdd4de3c43696c57f7d7a678ff6200032d565b4660fa1415620002d0575073f491e7b69e4244ad4002bc14e878a34207e38c296200032d565b4660031415620002f65750737a250d5630b4cf539739df2c5dacb4c659f2488d6200032d565b4660011480620003065750466004145b15620003285750737a250d5630b4cf539739df2c5dacb4c659f2488d6200032d565b600080fd5b806200033b81600162000566565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200038157600080fd5b505afa15801562000396573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bc919062000b74565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040557600080fd5b505afa1580156200041a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000440919062000b74565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200048957600080fd5b505af11580156200049e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c4919062000b74565b6001600160a01b031660a0819052620004df90600162000566565b60a051620004ef906001620005e0565b620004fc84600162000634565b6200050930600162000634565b6200051861dead600162000634565b6200052584600162000566565b6200053230600162000566565b6200054161dead600162000566565b6200054d8484620006de565b6200055884620007da565b5050505062000bdc565b3390565b6005546001600160a01b03163314620005b55760405162461bcd60e51b8152602060048201819052602482015260008051602062003db483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200067f5760405162461bcd60e51b8152602060048201819052602482015260008051602062003db48339815191526044820152606401620005ac565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005ac565b6200075281600254620008d760201b6200175f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007859183906200175f620008d7821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620008255760405162461bcd60e51b8152602060048201819052602482015260008051602062003db48339815191526044820152606401620005ac565b6001600160a01b0381166200088c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620005ac565b6005546040516001600160a01b0380841692169060008051602062003dd483398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080620008e6838562000b59565b9050838110156200093a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005ac565b90505b92915050565b828054620009519062000b9f565b90600052602060002090601f016020900481019282620009755760008555620009c0565b82601f106200099057805160ff1916838001178555620009c0565b82800160010185558215620009c0579182015b82811115620009c0578251825591602001919060010190620009a3565b50620009ce929150620009d2565b5090565b5b80821115620009ce5760008155600101620009d3565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a4057816000190482111562000a245762000a24620009e9565b8085161562000a3257918102915b93841c939080029062000a04565b509250929050565b60008262000a59575060016200093d565b8162000a68575060006200093d565b816001811462000a81576002811462000a8c5762000aac565b60019150506200093d565b60ff84111562000aa05762000aa0620009e9565b50506001821b6200093d565b5060208310610133831016604e8410600b841016171562000ad1575081810a6200093d565b62000add8383620009ff565b806000190482111562000af45762000af4620009e9565b029392505050565b600062000b0d60ff84168362000a48565b9392505050565b600081600019048311821515161562000b315762000b31620009e9565b500290565b60008262000b5457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b6f5762000b6f620009e9565b500190565b60006020828403121562000b8757600080fd5b81516001600160a01b03811681146200093a57600080fd5b600181811c9082168062000bb457607f821691505b6020821081141562000bd657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161318862000c2c6000396000818161067b01526113a10152600081816104aa01528181612729015281816127f10152818161282d015281816128a7015261290401526131886000f3fe60806040526004361061039b5760003560e01c80637571336a116101dc578063a457c2d711610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ab1578063f2fde38b14610ac7578063f637434214610ae7578063f8b45b0514610afd57600080fd5b8063d85ba06314610a1f578063dd62ed3e14610a35578063e7ad9fcd14610a7b578063ee40166e14610a9b57600080fd5b8063b62496f5116100dc578063b62496f514610999578063bbc0c742146109c9578063c0246668146109e9578063c8c8ebe414610a0957600080fd5b8063a457c2d714610939578063a9059cbb14610959578063aacebbe31461097957600080fd5b8063921369131161017a5780639a7a23d6116101495780639a7a23d6146108d75780639c3b4fdc146108f75780639fccce321461090d578063a0d82dc51461092357600080fd5b8063921369131461086c578063924de9b714610882578063955b225b146108a257806395d89b41146108c257600080fd5b80637dd72e8d116101b65780637dd72e8d146108045780638a8c523c146108195780638da5cb5b1461082e5780638ea5220f1461084c57600080fd5b80637571336a146107ae57806375f0a874146107ce5780637bce5a04146107ee57600080fd5b80632307b441116102c15780634a62bb651161025f5780636ddd17131161022e5780636ddd17131461072d57806370a082311461074e578063715018a614610784578063751039fc1461079957600080fd5b80634a62bb651461069d5780634c24c51d146106bc5780634fbee193146106de5780636a486a8e1461071757600080fd5b80632e6ed7ef1161029b5780632e6ed7ef14610607578063313ce56714610627578063395093511461064957806349bd5a5e1461066957600080fd5b80632307b441146105b157806323b872dd146105d157806327c8f835146105f157600080fd5b806318160ddd116103395780631c499ab0116103085780631c499ab0146105455780631cd348c0146105655780631f3fed8f146105855780631fe70a981461059b57600080fd5b806318160ddd146104e45780631816467f146104f95780631a221dbb146105195780631a8145bb1461052f57600080fd5b80630b166d50116103755780630b166d5014610424578063106b5da11461044857806310d5de53146104685780631694505e1461049857600080fd5b806306e7b14d146103a757806306fdde03146103c9578063095ea7b3146103f457600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c23660046129d4565b610b13565b005b3480156103d557600080fd5b506103de610ba3565b6040516103eb91906129f1565b60405180910390f35b34801561040057600080fd5b5061041461040f366004612a46565b610c35565b60405190151581526020016103eb565b34801561043057600080fd5b5061043a601a5481565b6040519081526020016103eb565b34801561045457600080fd5b506103c7610463366004612a72565b610c4c565b34801561047457600080fd5b506104146104833660046129d4565b601c6020526000908152604090205460ff1681565b3480156104a457600080fd5b506104cc7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103eb565b3480156104f057600080fd5b5060025461043a565b34801561050557600080fd5b506103c76105143660046129d4565b610cf1565b34801561052557600080fd5b5061043a60165481565b34801561053b57600080fd5b5061043a60185481565b34801561055157600080fd5b506103c7610560366004612a72565b610d78565b34801561057157600080fd5b506008546104cc906001600160a01b031681565b34801561059157600080fd5b5061043a60175481565b3480156105a757600080fd5b5061043a60115481565b3480156105bd57600080fd5b506104146105cc366004612b61565b610e1d565b3480156105dd57600080fd5b506104146105ec366004612c23565b610ffc565b3480156105fd57600080fd5b506104cc61dead81565b34801561061357600080fd5b506103c7610622366004612c64565b61105b565b34801561063357600080fd5b50600b5460405160ff90911681526020016103eb565b34801561065557600080fd5b50610414610664366004612a46565b611114565b34801561067557600080fd5b506104cc7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a957600080fd5b50600b5461041490610100900460ff1681565b3480156106c857600080fd5b50600b5461041490640100000000900460ff1681565b3480156106ea57600080fd5b506104146106f93660046129d4565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561072357600080fd5b5061043a60125481565b34801561073957600080fd5b50600b54610414906301000000900460ff1681565b34801561075a57600080fd5b5061043a6107693660046129d4565b6001600160a01b031660009081526020819052604090205490565b34801561079057600080fd5b506103c761114a565b3480156107a557600080fd5b506104146111be565b3480156107ba57600080fd5b506103c76107c9366004612cab565b6111fc565b3480156107da57600080fd5b506006546104cc906001600160a01b031681565b3480156107fa57600080fd5b5061043a600e5481565b34801561081057600080fd5b506103c7611251565b34801561082557600080fd5b506103c7611291565b34801561083a57600080fd5b506005546001600160a01b03166104cc565b34801561085857600080fd5b506007546104cc906001600160a01b031681565b34801561087857600080fd5b5061043a60135481565b34801561088e57600080fd5b506103c761089d366004612ce0565b6112d4565b3480156108ae57600080fd5b506103c76108bd366004612ce0565b61131c565b3480156108ce57600080fd5b506103de611366565b3480156108e357600080fd5b506103c76108f2366004612cab565b611375565b34801561090357600080fd5b5061043a60105481565b34801561091957600080fd5b5061043a60195481565b34801561092f57600080fd5b5061043a60155481565b34801561094557600080fd5b50610414610954366004612a46565b611455565b34801561096557600080fd5b50610414610974366004612a46565b6114a4565b34801561098557600080fd5b506103c76109943660046129d4565b6114b1565b3480156109a557600080fd5b506104146109b43660046129d4565b601d6020526000908152604090205460ff1681565b3480156109d557600080fd5b50600b546104149062010000900460ff1681565b3480156109f557600080fd5b506103c7610a04366004612cab565b611538565b348015610a1557600080fd5b5061043a60095481565b348015610a2b57600080fd5b5061043a600d5481565b348015610a4157600080fd5b5061043a610a50366004612cfb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a8757600080fd5b506103c7610a96366004612c64565b6115c1565b348015610aa757600080fd5b5061043a600c5481565b348015610abd57600080fd5b5061043a600f5481565b348015610ad357600080fd5b506103c7610ae23660046129d4565b611674565b348015610af357600080fd5b5061043a60145481565b348015610b0957600080fd5b5061043a600a5481565b6005546001600160a01b03163314610b465760405162461bcd60e51b8152600401610b3d90612d34565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610bb290612d69565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde90612d69565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c423384846117c5565b5060015b92915050565b6005546001600160a01b03163314610c765760405162461bcd60e51b8152600401610b3d90612d34565b600b54610c879060ff16600a612e9e565b6064610c9260025490565b610c9d906001612ead565b610ca79190612ecc565b610cb19190612ecc565b811015610cd05760405162461bcd60e51b8152600401610b3d90612eee565b600b54610ce19060ff16600a612e9e565b610ceb9082612ead565b60095550565b6005546001600160a01b03163314610d1b5760405162461bcd60e51b8152600401610b3d90612d34565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610da25760405162461bcd60e51b8152600401610b3d90612d34565b600b54610db39060ff16600a612e9e565b6064610dbe60025490565b610dc9906001612ead565b610dd39190612ecc565b610ddd9190612ecc565b811015610dfc5760405162461bcd60e51b8152600401610b3d90612eee565b600b54610e0d9060ff16600a612e9e565b610e179082612ead565b600a5550565b6005546000906001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610b3d90612d34565b600b5462010000900460ff1615610ec95760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610b3d565b8151835114610f1a5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b3d565b60c8835110610f8a5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610b3d565b60005b8351811015610ff2576000848281518110610faa57610faa612f3b565b602002602001015190506000848381518110610fc857610fc8612f3b565b60200260200101519050610fdd3383836118ea565b50508080610fea90612f51565b915050610f8d565b5060019392505050565b60006110098484846118ea565b610ff2843361105685604051806060016040528060288152602001613106602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612162565b6117c5565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610b3d90612d34565b600e849055600f8390556010829055601181905580826110a58587612f6c565b6110af9190612f6c565b6110b99190612f6c565b600d819055600a101561110e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3d565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c42918590611056908661175f565b6005546001600160a01b031633146111745760405162461bcd60e51b8152600401610b3d90612d34565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146111eb5760405162461bcd60e51b8152600401610b3d90612d34565b50600b805461ff0019169055600190565b6005546001600160a01b031633146112265760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461127b5760405162461bcd60e51b8152600401610b3d90612d34565b6000601881905560178190556019819055601a55565b6005546001600160a01b031633146112bb5760405162461bcd60e51b8152600401610b3d90612d34565b600b805463ffff00001916630101000017905543600c55565b6005546001600160a01b031633146112fe5760405162461bcd60e51b8152600401610b3d90612d34565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610b3d90612d34565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610bb290612d69565b6005546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610b3d90612d34565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156114475760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b3d565b611451828261219c565b5050565b6000610c4233846110568560405180606001604052806025815260200161312e602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612162565b6000610c423384846118ea565b6005546001600160a01b031633146114db5760405162461bcd60e51b8152600401610b3d90612d34565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146115625760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115eb5760405162461bcd60e51b8152600401610b3d90612d34565b6013849055601483905560158290556016819055808261160b8587612f6c565b6116159190612f6c565b61161f9190612f6c565b6012819055600a101561110e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3d565b6005546001600160a01b0316331461169e5760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b0381166117035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3d565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061176c8385612f6c565b9050838110156117be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b3d565b9392505050565b6001600160a01b0383166118275760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b3d565b6001600160a01b0382166118885760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b3d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119105760405162461bcd60e51b8152600401610b3d90612f84565b6001600160a01b0382166119365760405162461bcd60e51b8152600401610b3d90612fc9565b600b5462010000900460ff166119ca576001600160a01b0383166000908152601b602052604090205460ff168061198557506001600160a01b0382166000908152601b602052604090205460ff165b6119ca5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b3d565b806119e0576119db838360006121f0565b505050565b600b54610100900460ff1615611cf0576005546001600160a01b03848116911614801590611a1c57506005546001600160a01b03838116911614155b8015611a3057506001600160a01b03821615155b8015611a4757506001600160a01b03821661dead14155b8015611a8f57506001600160a01b0383166000908152601b602052604090205460ff1680611a8d57506001600160a01b0382166000908152601b602052604090205460ff165b155b8015611aa55750600554600160a01b900460ff16155b15611cf0576001600160a01b0383166000908152601d602052604090205460ff168015611aeb57506001600160a01b0382166000908152601c602052604090205460ff16155b15611bcf57600954811115611b605760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b3d565b600a546001600160a01b038316600090815260208190526040902054611b869083612f6c565b1115611bca5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3d565b611cf0565b6001600160a01b0382166000908152601d602052604090205460ff168015611c1057506001600160a01b0383166000908152601c602052604090205460ff16155b15611c8657600954811115611bca5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b3d565b600a546001600160a01b038316600090815260208190526040902054611cac9083612f6c565b1115611cf05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3d565b3060009081526020819052604090205480158015908190611d1a5750600b546301000000900460ff165b8015611d305750600554600160a01b900460ff16155b8015611d5557506001600160a01b0385166000908152601d602052604090205460ff16155b8015611d7a57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d9f57506001600160a01b0384166000908152601b602052604090205460ff16155b15611dcd576005805460ff60a01b1916600160a01b179055611dbf6122f9565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611e1b57506001600160a01b0385166000908152601b602052604090205460ff165b15611e24575060005b6000811561214e5743600c54148015611e7757506001600160a01b0386166000908152601d602052604090205460ff1680611e7757506001600160a01b0387166000908152601d602052604090205460ff165b15611f2357611e926064611e8c8760636125cf565b9061264e565b90506063611ea1826021612ead565b611eab9190612ecc565b60186000828254611ebc9190612f6c565b9091555060639050611ecf826021612ead565b611ed99190612ecc565b601a6000828254611eea9190612f6c565b9091555060639050611efd826021612ead565b611f079190612ecc565b60176000828254611f189190612f6c565b909155506121309050565b6001600160a01b0386166000908152601d602052604090205460ff1615612029576012541561202457611f666064611e8c601254886125cf90919063ffffffff16565b905060125460145482611f799190612ead565b611f839190612ecc565b60186000828254611f949190612f6c565b9091555050601254601554611fa99083612ead565b611fb39190612ecc565b60196000828254611fc49190612f6c565b9091555050601254601354611fd99083612ead565b611fe39190612ecc565b60176000828254611ff49190612f6c565b90915550506012546016546120099083612ead565b6120139190612ecc565b601a6000828254611f189190612f6c565b612130565b6001600160a01b0387166000908152601d602052604090205460ff161561213057600d54156121305761206c6064611e8c600d54886125cf90919063ffffffff16565b9050600d54600f548261207f9190612ead565b6120899190612ecc565b6018600082825461209a9190612f6c565b9091555050600d546010546120af9083612ead565b6120b99190612ecc565b601960008282546120ca9190612f6c565b9091555050600d54600e546120df9083612ead565b6120e99190612ecc565b601760008282546120fa9190612f6c565b9091555050600d5460115461210f9083612ead565b6121199190612ecc565b601a600082825461212a9190612f6c565b90915550505b8015612141576121418730836121f0565b61214b818661300c565b94505b6121598787876121f0565b50505050505050565b600081848411156121865760405162461bcd60e51b8152600401610b3d91906129f1565b506000612193848661300c565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122165760405162461bcd60e51b8152600401610b3d90612f84565b6001600160a01b03821661223c5760405162461bcd60e51b8152600401610b3d90612fc9565b612279816040518060600160405280602681526020016130e0602691396001600160a01b0386166000908152602081905260409020549190612162565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122a8908261175f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016118dd565b30600090815260208190526040902054600b54640100000000900460ff161561233d57801561233a5760065461233a9030906001600160a01b0316836121f0565b50565b6000601a546019546017546018546123559190612f6c565b61235f9190612f6c565b6123699190612f6c565b90506000821580612378575081155b1561238257505050565b6000600283601854866123959190612ead565b61239f9190612ecc565b6123a99190612ecc565b905060006123b78583612690565b9050476123c3826126d2565b60006123cf4783612690565b905060006123ec87611e8c601754856125cf90919063ffffffff16565b9050600061240988611e8c601954866125cf90919063ffffffff16565b9050600061242689611e8c601a54876125cf90919063ffffffff16565b905060008183612436868861300c565b612440919061300c565b61244a919061300c565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d80600081146124ac576040519150601f19603f3d011682016040523d82523d6000602084013e6124b1565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612501576040519150601f19603f3d011682016040523d82523d6000602084013e612506565b606091505b5090995050871580159061251a5750600081115b1561256d5761252988826128a1565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146125ba576040519150601f19603f3d011682016040523d82523d6000602084013e6125bf565b606091505b5050505050505050505050505050565b6000826125de57506000610c46565b60006125ea8385612ead565b9050826125f78583612ecc565b146117be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b3d565b60006117be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612991565b60006117be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612162565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061270757612707612f3b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561278057600080fd5b505afa158015612794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b89190613023565b816001815181106127cb576127cb612f3b565b60200260200101906001600160a01b031690816001600160a01b031681525050612816307f0000000000000000000000000000000000000000000000000000000000000000846117c5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061286b908590600090869030904290600401613040565b600060405180830381600087803b15801561288557600080fd5b505af1158015612899573d6000803e3d6000fd5b505050505050565b6128cc307f0000000000000000000000000000000000000000000000000000000000000000846117c5565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561295157600080fd5b505af193505050508015612982575060408051601f3d908101601f1916820190925261297f918101906130b1565b60015b61298a575050565b5050505050565b600081836129b25760405162461bcd60e51b8152600401610b3d91906129f1565b5060006121938486612ecc565b6001600160a01b038116811461233a57600080fd5b6000602082840312156129e657600080fd5b81356117be816129bf565b600060208083528351808285015260005b81811015612a1e57858101830151858201604001528201612a02565b81811115612a30576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612a5957600080fd5b8235612a64816129bf565b946020939093013593505050565b600060208284031215612a8457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612aca57612aca612a8b565b604052919050565b600067ffffffffffffffff821115612aec57612aec612a8b565b5060051b60200190565b600082601f830112612b0757600080fd5b81356020612b1c612b1783612ad2565b612aa1565b82815260059290921b84018101918181019086841115612b3b57600080fd5b8286015b84811015612b565780358352918301918301612b3f565b509695505050505050565b60008060408385031215612b7457600080fd5b823567ffffffffffffffff80821115612b8c57600080fd5b818501915085601f830112612ba057600080fd5b81356020612bb0612b1783612ad2565b82815260059290921b84018101918181019089841115612bcf57600080fd5b948201945b83861015612bf6578535612be7816129bf565b82529482019490820190612bd4565b96505086013592505080821115612c0c57600080fd5b50612c1985828601612af6565b9150509250929050565b600080600060608486031215612c3857600080fd5b8335612c43816129bf565b92506020840135612c53816129bf565b929592945050506040919091013590565b60008060008060808587031215612c7a57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114612ca657600080fd5b919050565b60008060408385031215612cbe57600080fd5b8235612cc9816129bf565b9150612cd760208401612c96565b90509250929050565b600060208284031215612cf257600080fd5b6117be82612c96565b60008060408385031215612d0e57600080fd5b8235612d19816129bf565b91506020830135612d29816129bf565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d7d57607f821691505b60208210811415612d9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612df5578160001904821115612ddb57612ddb612da4565b80851615612de857918102915b93841c9390800290612dbf565b509250929050565b600082612e0c57506001610c46565b81612e1957506000610c46565b8160018114612e2f5760028114612e3957612e55565b6001915050610c46565b60ff841115612e4a57612e4a612da4565b50506001821b610c46565b5060208310610133831016604e8410600b8410161715612e78575081810a610c46565b612e828383612dba565b8060001904821115612e9657612e96612da4565b029392505050565b60006117be60ff841683612dfd565b6000816000190483118215151615612ec757612ec7612da4565b500290565b600082612ee957634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f6557612f65612da4565b5060010190565b60008219821115612f7f57612f7f612da4565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561301e5761301e612da4565b500390565b60006020828403121561303557600080fd5b81516117be816129bf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130905784516001600160a01b03168352938301939183019160010161306b565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130c657600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f14aad783ea495284b1bc10d1c4b13f151e27042e6ba8555288087a9cf7b128164736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80637571336a116101dc578063a457c2d711610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ab1578063f2fde38b14610ac7578063f637434214610ae7578063f8b45b0514610afd57600080fd5b8063d85ba06314610a1f578063dd62ed3e14610a35578063e7ad9fcd14610a7b578063ee40166e14610a9b57600080fd5b8063b62496f5116100dc578063b62496f514610999578063bbc0c742146109c9578063c0246668146109e9578063c8c8ebe414610a0957600080fd5b8063a457c2d714610939578063a9059cbb14610959578063aacebbe31461097957600080fd5b8063921369131161017a5780639a7a23d6116101495780639a7a23d6146108d75780639c3b4fdc146108f75780639fccce321461090d578063a0d82dc51461092357600080fd5b8063921369131461086c578063924de9b714610882578063955b225b146108a257806395d89b41146108c257600080fd5b80637dd72e8d116101b65780637dd72e8d146108045780638a8c523c146108195780638da5cb5b1461082e5780638ea5220f1461084c57600080fd5b80637571336a146107ae57806375f0a874146107ce5780637bce5a04146107ee57600080fd5b80632307b441116102c15780634a62bb651161025f5780636ddd17131161022e5780636ddd17131461072d57806370a082311461074e578063715018a614610784578063751039fc1461079957600080fd5b80634a62bb651461069d5780634c24c51d146106bc5780634fbee193146106de5780636a486a8e1461071757600080fd5b80632e6ed7ef1161029b5780632e6ed7ef14610607578063313ce56714610627578063395093511461064957806349bd5a5e1461066957600080fd5b80632307b441146105b157806323b872dd146105d157806327c8f835146105f157600080fd5b806318160ddd116103395780631c499ab0116103085780631c499ab0146105455780631cd348c0146105655780631f3fed8f146105855780631fe70a981461059b57600080fd5b806318160ddd146104e45780631816467f146104f95780631a221dbb146105195780631a8145bb1461052f57600080fd5b80630b166d50116103755780630b166d5014610424578063106b5da11461044857806310d5de53146104685780631694505e1461049857600080fd5b806306e7b14d146103a757806306fdde03146103c9578063095ea7b3146103f457600080fd5b366103a257005b600080fd5b3480156103b357600080fd5b506103c76103c23660046129d4565b610b13565b005b3480156103d557600080fd5b506103de610ba3565b6040516103eb91906129f1565b60405180910390f35b34801561040057600080fd5b5061041461040f366004612a46565b610c35565b60405190151581526020016103eb565b34801561043057600080fd5b5061043a601a5481565b6040519081526020016103eb565b34801561045457600080fd5b506103c7610463366004612a72565b610c4c565b34801561047457600080fd5b506104146104833660046129d4565b601c6020526000908152604090205460ff1681565b3480156104a457600080fd5b506104cc7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103eb565b3480156104f057600080fd5b5060025461043a565b34801561050557600080fd5b506103c76105143660046129d4565b610cf1565b34801561052557600080fd5b5061043a60165481565b34801561053b57600080fd5b5061043a60185481565b34801561055157600080fd5b506103c7610560366004612a72565b610d78565b34801561057157600080fd5b506008546104cc906001600160a01b031681565b34801561059157600080fd5b5061043a60175481565b3480156105a757600080fd5b5061043a60115481565b3480156105bd57600080fd5b506104146105cc366004612b61565b610e1d565b3480156105dd57600080fd5b506104146105ec366004612c23565b610ffc565b3480156105fd57600080fd5b506104cc61dead81565b34801561061357600080fd5b506103c7610622366004612c64565b61105b565b34801561063357600080fd5b50600b5460405160ff90911681526020016103eb565b34801561065557600080fd5b50610414610664366004612a46565b611114565b34801561067557600080fd5b506104cc7f0000000000000000000000003f96fd489468e1527f653676441c8e3968f5b40e81565b3480156106a957600080fd5b50600b5461041490610100900460ff1681565b3480156106c857600080fd5b50600b5461041490640100000000900460ff1681565b3480156106ea57600080fd5b506104146106f93660046129d4565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561072357600080fd5b5061043a60125481565b34801561073957600080fd5b50600b54610414906301000000900460ff1681565b34801561075a57600080fd5b5061043a6107693660046129d4565b6001600160a01b031660009081526020819052604090205490565b34801561079057600080fd5b506103c761114a565b3480156107a557600080fd5b506104146111be565b3480156107ba57600080fd5b506103c76107c9366004612cab565b6111fc565b3480156107da57600080fd5b506006546104cc906001600160a01b031681565b3480156107fa57600080fd5b5061043a600e5481565b34801561081057600080fd5b506103c7611251565b34801561082557600080fd5b506103c7611291565b34801561083a57600080fd5b506005546001600160a01b03166104cc565b34801561085857600080fd5b506007546104cc906001600160a01b031681565b34801561087857600080fd5b5061043a60135481565b34801561088e57600080fd5b506103c761089d366004612ce0565b6112d4565b3480156108ae57600080fd5b506103c76108bd366004612ce0565b61131c565b3480156108ce57600080fd5b506103de611366565b3480156108e357600080fd5b506103c76108f2366004612cab565b611375565b34801561090357600080fd5b5061043a60105481565b34801561091957600080fd5b5061043a60195481565b34801561092f57600080fd5b5061043a60155481565b34801561094557600080fd5b50610414610954366004612a46565b611455565b34801561096557600080fd5b50610414610974366004612a46565b6114a4565b34801561098557600080fd5b506103c76109943660046129d4565b6114b1565b3480156109a557600080fd5b506104146109b43660046129d4565b601d6020526000908152604090205460ff1681565b3480156109d557600080fd5b50600b546104149062010000900460ff1681565b3480156109f557600080fd5b506103c7610a04366004612cab565b611538565b348015610a1557600080fd5b5061043a60095481565b348015610a2b57600080fd5b5061043a600d5481565b348015610a4157600080fd5b5061043a610a50366004612cfb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a8757600080fd5b506103c7610a96366004612c64565b6115c1565b348015610aa757600080fd5b5061043a600c5481565b348015610abd57600080fd5b5061043a600f5481565b348015610ad357600080fd5b506103c7610ae23660046129d4565b611674565b348015610af357600080fd5b5061043a60145481565b348015610b0957600080fd5b5061043a600a5481565b6005546001600160a01b03163314610b465760405162461bcd60e51b8152600401610b3d90612d34565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610bb290612d69565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde90612d69565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c423384846117c5565b5060015b92915050565b6005546001600160a01b03163314610c765760405162461bcd60e51b8152600401610b3d90612d34565b600b54610c879060ff16600a612e9e565b6064610c9260025490565b610c9d906001612ead565b610ca79190612ecc565b610cb19190612ecc565b811015610cd05760405162461bcd60e51b8152600401610b3d90612eee565b600b54610ce19060ff16600a612e9e565b610ceb9082612ead565b60095550565b6005546001600160a01b03163314610d1b5760405162461bcd60e51b8152600401610b3d90612d34565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610da25760405162461bcd60e51b8152600401610b3d90612d34565b600b54610db39060ff16600a612e9e565b6064610dbe60025490565b610dc9906001612ead565b610dd39190612ecc565b610ddd9190612ecc565b811015610dfc5760405162461bcd60e51b8152600401610b3d90612eee565b600b54610e0d9060ff16600a612e9e565b610e179082612ead565b600a5550565b6005546000906001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610b3d90612d34565b600b5462010000900460ff1615610ec95760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610b3d565b8151835114610f1a5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610b3d565b60c8835110610f8a5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610b3d565b60005b8351811015610ff2576000848281518110610faa57610faa612f3b565b602002602001015190506000848381518110610fc857610fc8612f3b565b60200260200101519050610fdd3383836118ea565b50508080610fea90612f51565b915050610f8d565b5060019392505050565b60006110098484846118ea565b610ff2843361105685604051806060016040528060288152602001613106602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612162565b6117c5565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610b3d90612d34565b600e849055600f8390556010829055601181905580826110a58587612f6c565b6110af9190612f6c565b6110b99190612f6c565b600d819055600a101561110e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3d565b50505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c42918590611056908661175f565b6005546001600160a01b031633146111745760405162461bcd60e51b8152600401610b3d90612d34565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146111eb5760405162461bcd60e51b8152600401610b3d90612d34565b50600b805461ff0019169055600190565b6005546001600160a01b031633146112265760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461127b5760405162461bcd60e51b8152600401610b3d90612d34565b6000601881905560178190556019819055601a55565b6005546001600160a01b031633146112bb5760405162461bcd60e51b8152600401610b3d90612d34565b600b805463ffff00001916630101000017905543600c55565b6005546001600160a01b031633146112fe5760405162461bcd60e51b8152600401610b3d90612d34565b600b805491151563010000000263ff00000019909216919091179055565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610b3d90612d34565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610bb290612d69565b6005546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610b3d90612d34565b7f0000000000000000000000003f96fd489468e1527f653676441c8e3968f5b40e6001600160a01b0316826001600160a01b031614156114475760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b3d565b611451828261219c565b5050565b6000610c4233846110568560405180606001604052806025815260200161312e602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612162565b6000610c423384846118ea565b6005546001600160a01b031633146114db5760405162461bcd60e51b8152600401610b3d90612d34565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146115625760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115eb5760405162461bcd60e51b8152600401610b3d90612d34565b6013849055601483905560158290556016819055808261160b8587612f6c565b6116159190612f6c565b61161f9190612f6c565b6012819055600a101561110e5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610b3d565b6005546001600160a01b0316331461169e5760405162461bcd60e51b8152600401610b3d90612d34565b6001600160a01b0381166117035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b3d565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60008061176c8385612f6c565b9050838110156117be5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b3d565b9392505050565b6001600160a01b0383166118275760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b3d565b6001600160a01b0382166118885760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b3d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119105760405162461bcd60e51b8152600401610b3d90612f84565b6001600160a01b0382166119365760405162461bcd60e51b8152600401610b3d90612fc9565b600b5462010000900460ff166119ca576001600160a01b0383166000908152601b602052604090205460ff168061198557506001600160a01b0382166000908152601b602052604090205460ff165b6119ca5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b3d565b806119e0576119db838360006121f0565b505050565b600b54610100900460ff1615611cf0576005546001600160a01b03848116911614801590611a1c57506005546001600160a01b03838116911614155b8015611a3057506001600160a01b03821615155b8015611a4757506001600160a01b03821661dead14155b8015611a8f57506001600160a01b0383166000908152601b602052604090205460ff1680611a8d57506001600160a01b0382166000908152601b602052604090205460ff165b155b8015611aa55750600554600160a01b900460ff16155b15611cf0576001600160a01b0383166000908152601d602052604090205460ff168015611aeb57506001600160a01b0382166000908152601c602052604090205460ff16155b15611bcf57600954811115611b605760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b3d565b600a546001600160a01b038316600090815260208190526040902054611b869083612f6c565b1115611bca5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3d565b611cf0565b6001600160a01b0382166000908152601d602052604090205460ff168015611c1057506001600160a01b0383166000908152601c602052604090205460ff16155b15611c8657600954811115611bca5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b3d565b600a546001600160a01b038316600090815260208190526040902054611cac9083612f6c565b1115611cf05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b3d565b3060009081526020819052604090205480158015908190611d1a5750600b546301000000900460ff165b8015611d305750600554600160a01b900460ff16155b8015611d5557506001600160a01b0385166000908152601d602052604090205460ff16155b8015611d7a57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d9f57506001600160a01b0384166000908152601b602052604090205460ff16155b15611dcd576005805460ff60a01b1916600160a01b179055611dbf6122f9565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611e1b57506001600160a01b0385166000908152601b602052604090205460ff165b15611e24575060005b6000811561214e5743600c54148015611e7757506001600160a01b0386166000908152601d602052604090205460ff1680611e7757506001600160a01b0387166000908152601d602052604090205460ff165b15611f2357611e926064611e8c8760636125cf565b9061264e565b90506063611ea1826021612ead565b611eab9190612ecc565b60186000828254611ebc9190612f6c565b9091555060639050611ecf826021612ead565b611ed99190612ecc565b601a6000828254611eea9190612f6c565b9091555060639050611efd826021612ead565b611f079190612ecc565b60176000828254611f189190612f6c565b909155506121309050565b6001600160a01b0386166000908152601d602052604090205460ff1615612029576012541561202457611f666064611e8c601254886125cf90919063ffffffff16565b905060125460145482611f799190612ead565b611f839190612ecc565b60186000828254611f949190612f6c565b9091555050601254601554611fa99083612ead565b611fb39190612ecc565b60196000828254611fc49190612f6c565b9091555050601254601354611fd99083612ead565b611fe39190612ecc565b60176000828254611ff49190612f6c565b90915550506012546016546120099083612ead565b6120139190612ecc565b601a6000828254611f189190612f6c565b612130565b6001600160a01b0387166000908152601d602052604090205460ff161561213057600d54156121305761206c6064611e8c600d54886125cf90919063ffffffff16565b9050600d54600f548261207f9190612ead565b6120899190612ecc565b6018600082825461209a9190612f6c565b9091555050600d546010546120af9083612ead565b6120b99190612ecc565b601960008282546120ca9190612f6c565b9091555050600d54600e546120df9083612ead565b6120e99190612ecc565b601760008282546120fa9190612f6c565b9091555050600d5460115461210f9083612ead565b6121199190612ecc565b601a600082825461212a9190612f6c565b90915550505b8015612141576121418730836121f0565b61214b818661300c565b94505b6121598787876121f0565b50505050505050565b600081848411156121865760405162461bcd60e51b8152600401610b3d91906129f1565b506000612193848661300c565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122165760405162461bcd60e51b8152600401610b3d90612f84565b6001600160a01b03821661223c5760405162461bcd60e51b8152600401610b3d90612fc9565b612279816040518060600160405280602681526020016130e0602691396001600160a01b0386166000908152602081905260409020549190612162565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546122a8908261175f565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016118dd565b30600090815260208190526040902054600b54640100000000900460ff161561233d57801561233a5760065461233a9030906001600160a01b0316836121f0565b50565b6000601a546019546017546018546123559190612f6c565b61235f9190612f6c565b6123699190612f6c565b90506000821580612378575081155b1561238257505050565b6000600283601854866123959190612ead565b61239f9190612ecc565b6123a99190612ecc565b905060006123b78583612690565b9050476123c3826126d2565b60006123cf4783612690565b905060006123ec87611e8c601754856125cf90919063ffffffff16565b9050600061240988611e8c601954866125cf90919063ffffffff16565b9050600061242689611e8c601a54876125cf90919063ffffffff16565b905060008183612436868861300c565b612440919061300c565b61244a919061300c565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d80600081146124ac576040519150601f19603f3d011682016040523d82523d6000602084013e6124b1565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612501576040519150601f19603f3d011682016040523d82523d6000602084013e612506565b606091505b5090995050871580159061251a5750600081115b1561256d5761252988826128a1565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146125ba576040519150601f19603f3d011682016040523d82523d6000602084013e6125bf565b606091505b5050505050505050505050505050565b6000826125de57506000610c46565b60006125ea8385612ead565b9050826125f78583612ecc565b146117be5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b3d565b60006117be83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612991565b60006117be83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612162565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061270757612707612f3b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561278057600080fd5b505afa158015612794573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b89190613023565b816001815181106127cb576127cb612f3b565b60200260200101906001600160a01b031690816001600160a01b031681525050612816307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117c5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061286b908590600090869030904290600401613040565b600060405180830381600087803b15801561288557600080fd5b505af1158015612899573d6000803e3d6000fd5b505050505050565b6128cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117c5565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561295157600080fd5b505af193505050508015612982575060408051601f3d908101601f1916820190925261297f918101906130b1565b60015b61298a575050565b5050505050565b600081836129b25760405162461bcd60e51b8152600401610b3d91906129f1565b5060006121938486612ecc565b6001600160a01b038116811461233a57600080fd5b6000602082840312156129e657600080fd5b81356117be816129bf565b600060208083528351808285015260005b81811015612a1e57858101830151858201604001528201612a02565b81811115612a30576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612a5957600080fd5b8235612a64816129bf565b946020939093013593505050565b600060208284031215612a8457600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612aca57612aca612a8b565b604052919050565b600067ffffffffffffffff821115612aec57612aec612a8b565b5060051b60200190565b600082601f830112612b0757600080fd5b81356020612b1c612b1783612ad2565b612aa1565b82815260059290921b84018101918181019086841115612b3b57600080fd5b8286015b84811015612b565780358352918301918301612b3f565b509695505050505050565b60008060408385031215612b7457600080fd5b823567ffffffffffffffff80821115612b8c57600080fd5b818501915085601f830112612ba057600080fd5b81356020612bb0612b1783612ad2565b82815260059290921b84018101918181019089841115612bcf57600080fd5b948201945b83861015612bf6578535612be7816129bf565b82529482019490820190612bd4565b96505086013592505080821115612c0c57600080fd5b50612c1985828601612af6565b9150509250929050565b600080600060608486031215612c3857600080fd5b8335612c43816129bf565b92506020840135612c53816129bf565b929592945050506040919091013590565b60008060008060808587031215612c7a57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114612ca657600080fd5b919050565b60008060408385031215612cbe57600080fd5b8235612cc9816129bf565b9150612cd760208401612c96565b90509250929050565b600060208284031215612cf257600080fd5b6117be82612c96565b60008060408385031215612d0e57600080fd5b8235612d19816129bf565b91506020830135612d29816129bf565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d7d57607f821691505b60208210811415612d9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612df5578160001904821115612ddb57612ddb612da4565b80851615612de857918102915b93841c9390800290612dbf565b509250929050565b600082612e0c57506001610c46565b81612e1957506000610c46565b8160018114612e2f5760028114612e3957612e55565b6001915050610c46565b60ff841115612e4a57612e4a612da4565b50506001821b610c46565b5060208310610133831016604e8410600b8410161715612e78575081810a610c46565b612e828383612dba565b8060001904821115612e9657612e96612da4565b029392505050565b60006117be60ff841683612dfd565b6000816000190483118215151615612ec757612ec7612da4565b500290565b600082612ee957634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f6557612f65612da4565b5060010190565b60008219821115612f7f57612f7f612da4565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561301e5761301e612da4565b500390565b60006020828403121561303557600080fd5b81516117be816129bf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130905784516001600160a01b03168352938301939183019160010161306b565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156130c657600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f14aad783ea495284b1bc10d1c4b13f151e27042e6ba8555288087a9cf7b128164736f6c63430008090033

Deployed Bytecode Sourcemap

29434:17834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39468:173;;;;;;;;;;-1:-1:-1;39468:173:0;;;;;:::i;:::-;;:::i;:::-;;7590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:169;;;;;;;;;;-1:-1:-1;9757:169:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;9757:169:0;1324:187:1;30608:31:0;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;30608:31:0;1516:177:1;36375:246:0;;;;;;;;;;-1:-1:-1;36375:246:0;;;;;:::i;:::-;;:::i;30793:64::-;;;;;;;;;;-1:-1:-1;30793:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29509:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2074:32:1;;;2056:51;;2044:2;2029:18;29509:51:0;1883:230:1;8710:108:0;;;;;;;;;;-1:-1:-1;8798:12:0;;8710:108;;39299:157;;;;;;;;;;-1:-1:-1;39299:157:0;;;;;:::i;:::-;;:::i;30452:29::-;;;;;;;;;;;;;;;;30534:33;;;;;;;;;;;;;;;;36633:234;;;;;;;;;;-1:-1:-1;36633:234:0;;;;;:::i;:::-;;:::i;29772:28::-;;;;;;;;;;-1:-1:-1;29772:28:0;;;;-1:-1:-1;;;;;29772:28:0;;;30494:33;;;;;;;;;;;;;;;;30268:28;;;;;;;;;;;;;;;;35611:752;;;;;;;;;;-1:-1:-1;35611:752:0;;;;;:::i;:::-;;:::i;10408:355::-;;;;;;;;;;-1:-1:-1;10408:355:0;;;;;:::i;:::-;;:::i;29612:53::-;;;;;;;;;;;;29658:6;29612:53;;37516:444;;;;;;;;;;-1:-1:-1;37516:444:0;;;;;:::i;:::-;;:::i;37031:92::-;;;;;;;;;;-1:-1:-1;37106:9:0;;37031:92;;37106:9;;;;5806:36:1;;5794:2;5779:18;37031:92:0;5664:184:1;11172:218:0;;;;;;;;;;-1:-1:-1;11172:218:0;;;;;:::i;:::-;;:::i;29567:38::-;;;;;;;;;;;;;;;29918:33;;;;;;;;;;-1:-1:-1;29918:33:0;;;;;;;;;;;30036:30;;;;;;;;;;-1:-1:-1;30036:30:0;;;;;;;;;;;39655:127;;;;;;;;;;-1:-1:-1;39655:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;39746:28:0;39722:4;39746:28;;;:19;:28;;;;;;;;;39655:127;30309:28;;;;;;;;;;;;;;;;29998:31;;;;;;;;;;-1:-1:-1;29998:31:0;;;;;;;;;;;8881:127;;;;;;;;;;-1:-1:-1;8881:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8982:18:0;8955:7;8982:18;;;;;;;;;;;;8881:127;22055:148;;;;;;;;;;;;;:::i;35479:120::-;;;;;;;;;;;;;:::i;36879:144::-;;;;;;;;;;-1:-1:-1;36879:144:0;;;;;:::i;:::-;;:::i;29704:30::-;;;;;;;;;;-1:-1:-1;29704:30:0;;;;-1:-1:-1;;;;;29704:30:0;;;30163;;;;;;;;;;;;;;;;45127:175;;;;;;;;;;;;;:::i;35267:156::-;;;;;;;;;;;;;:::i;21413:79::-;;;;;;;;;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;21478:6:0;21413:79;;29741:24;;;;;;;;;;-1:-1:-1;29741:24:0;;;;-1:-1:-1;;;;;29741:24:0;;;30344:31;;;;;;;;;;;;;;;;37223:101;;;;;;;;;;-1:-1:-1;37223:101:0;;;;;:::i;:::-;;:::i;37405:99::-;;;;;;;;;;-1:-1:-1;37405:99:0;;;;;:::i;:::-;;:::i;7809:104::-;;;;;;;;;;;;;:::i;38625:246::-;;;;;;;;;;-1:-1:-1;38625:246:0;;;;;:::i;:::-;;:::i;30237:24::-;;;;;;;;;;;;;;;;30574:27;;;;;;;;;;;;;;;;30420:25;;;;;;;;;;;;;;;;11893:269;;;;;;;;;;-1:-1:-1;11893:269:0;;;;;:::i;:::-;;:::i;9221:175::-;;;;;;;;;;-1:-1:-1;9221:175:0;;;;;:::i;:::-;;:::i;39079:208::-;;;;;;;;;;-1:-1:-1;39079:208:0;;;;;:::i;:::-;;:::i;31015:58::-;;;;;;;;;;-1:-1:-1;31015:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29958:33;;;;;;;;;;-1:-1:-1;29958:33:0;;;;;;;;;;;38435:182;;;;;;;;;;-1:-1:-1;38435:182:0;;;;;:::i;:::-;;:::i;29813:35::-;;;;;;;;;;;;;;;;30129:27;;;;;;;;;;;;;;;;9459:151;;;;;;;;;;-1:-1:-1;9459:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9575:18:0;;;9548:7;9575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9459:151;37972:455;;;;;;;;;;-1:-1:-1;37972:455:0;;;;;:::i;:::-;;:::i;30079:33::-;;;;;;;;;;;;;;;;30200:30;;;;;;;;;;;;;;;;22358:244;;;;;;;;;;-1:-1:-1;22358:244:0;;;;;:::i;:::-;;:::i;30382:31::-;;;;;;;;;;;;;;;;29855:24;;;;;;;;;;;;;;;;39468:173;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;;;;;;;;;39583:13:::1;::::0;39551:46:::1;::::0;-1:-1:-1;;;;;39583:13:0;;::::1;::::0;39551:46;::::1;::::0;::::1;::::0;39583:13:::1;::::0;39551:46:::1;39608:13;:25:::0;;-1:-1:-1;;;;;;39608:25:0::1;-1:-1:-1::0;;;;;39608:25:0;;;::::1;::::0;;;::::1;::::0;;39468:173::o;7590:100::-;7644:13;7677:5;7670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;:::o;9757:169::-;9840:4;9857:39;306:10;9880:7;9889:6;9857:8;:39::i;:::-;-1:-1:-1;9914:4:0;9757:169;;;;;:::o;36375:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36495:9:::1;::::0;36491:13:::1;::::0;36495:9:::1;;36491:2;:13;:::i;:::-;36485:3;36465:13;8798:12:::0;;;8710:108;36465:13:::1;:17;::::0;36481:1:::1;36465:17;:::i;:::-;:23;;;;:::i;:::-;36464:41;;;;:::i;:::-;36454:6;:51;;36446:109;;;;-1:-1:-1::0;;;36446:109:0::1;;;;;;;:::i;:::-;36603:9;::::0;36599:13:::1;::::0;36603:9:::1;;36599:2;:13;:::i;:::-;36589:24;::::0;:6;:24:::1;:::i;:::-;36566:20;:47:::0;-1:-1:-1;36375:246:0:o;39299:157::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;39406:9:::1;::::0;39378:38:::1;::::0;-1:-1:-1;;;;;39406:9:0;;::::1;::::0;39378:38;::::1;::::0;::::1;::::0;39406:9:::1;::::0;39378:38:::1;39427:9;:21:::0;;-1:-1:-1;;;;;;39427:21:0::1;-1:-1:-1::0;;;;;39427:21:0;;;::::1;::::0;;;::::1;::::0;;39299:157::o;36633:234::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36753:9:::1;::::0;36749:13:::1;::::0;36753:9:::1;;36749:2;:13;:::i;:::-;36743:3;36723:13;8798:12:::0;;;8710:108;36723:13:::1;:17;::::0;36739:1:::1;36723:17;:::i;:::-;:23;;;;:::i;:::-;36722:41;;;;:::i;:::-;36712:6;:51;;36704:109;;;;-1:-1:-1::0;;;36704:109:0::1;;;;;;;:::i;:::-;36849:9;::::0;36845:13:::1;::::0;36849:9:::1;;36845:2;:13;:::i;:::-;36835:24;::::0;:6;:24:::1;:::i;:::-;36824:9;:35:::0;-1:-1:-1;36633:234:0:o;35611:752::-;21625:6;;35724:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35749:13:::1;::::0;;;::::1;;;35748:14;35740:82;;;::::0;-1:-1:-1;;;35740:82:0;;10188:2:1;35740:82:0::1;::::0;::::1;10170:21:1::0;10227:2;10207:18;;;10200:30;10266:34;10246:18;;;10239:62;10337:25;10317:18;;;10310:53;10380:19;;35740:82:0::1;9986:419:1::0;35740:82:0::1;35866:7;:14;35841;:21;:39;35833:82;;;::::0;-1:-1:-1;;;35833:82:0;;10612:2:1;35833:82:0::1;::::0;::::1;10594:21:1::0;10651:2;10631:18;;;10624:30;10690:32;10670:18;;;10663:60;10740:18;;35833:82:0::1;10410:354:1::0;35833:82:0::1;35958:3;35934:14;:21;:27;35926:94;;;::::0;-1:-1:-1;;;35926:94:0;;10971:2:1;35926:94:0::1;::::0;::::1;10953:21:1::0;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;-1:-1:-1;;;11100:18:1;;;11093:52;11162:19;;35926:94:0::1;10769:418:1::0;35926:94:0::1;36133:9;36129:205;36152:14;:21;36148:1;:25;36129:205;;;36194:14;36211;36226:1;36211:17;;;;;;;;:::i;:::-;;;;;;;36194:34;;36243:14;36260:7;36268:1;36260:10;;;;;;;;:::i;:::-;;;;;;;36243:27;;36285:37;36295:10;36307:6;36315;36285:9;:37::i;:::-;36179:155;;36175:3;;;;;:::i;:::-;;;;36129:205;;;-1:-1:-1::0;36351:4:0::1;::::0;35611:752;-1:-1:-1;;;35611:752:0:o;10408:355::-;10548:4;10565:36;10575:6;10583:9;10594:6;10565:9;:36::i;:::-;10612:121;10621:6;306:10;10643:89;10681:6;10643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10643:19:0;;;;;;:11;:19;;;;;;;;306:10;10643:33;;;;;;;;;;:37;:89::i;:::-;10612:8;:121::i;37516:444::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37653:15:::1;:31:::0;;;37695:15:::1;:31:::0;;;37737:9:::1;:19:::0;;;37767:13:::1;:27:::0;;;37783:11;37749:7;37820:33:::1;37713:13:::0;37671;37820:33:::1;:::i;:::-;:45;;;;:::i;:::-;:61;;;;:::i;:::-;37805:12;:76:::0;;;37916:2:::1;-1:-1:-1::0;37900:18:0::1;37892:60;;;::::0;-1:-1:-1;;;37892:60:0;;11799:2:1;37892:60:0::1;::::0;::::1;11781:21:1::0;11838:2;11818:18;;;11811:30;11877:31;11857:18;;;11850:59;11926:18;;37892:60:0::1;11597:353:1::0;37892:60:0::1;37516:444:::0;;;;:::o;11172:218::-;306:10;11260:4;11309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11309:34:0;;;;;;;;;;11260:4;;11277:83;;11300:7;;11309:50;;11348:10;11309:38;:50::i;22055:148::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;22146:6:::1;::::0;22125:40:::1;::::0;22162:1:::1;::::0;-1:-1:-1;;;;;22146:6:0::1;::::0;22125:40:::1;::::0;22162:1;;22125:40:::1;22176:6;:19:::0;;-1:-1:-1;;;;;;22176:19:0::1;::::0;;22055:148::o;35479:120::-;21625:6;;35531:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;35547:14:0::1;:22:::0;;-1:-1:-1;;35547:22:0::1;::::0;;:14:::1;35479:120:::0;:::o;36879:144::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36969:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36969:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36879:144::o;45127:175::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;45202:1:::1;45181:18;:22:::0;;;45214:18:::1;:22:::0;;;45247:12:::1;:16:::0;;;45274::::1;:20:::0;45127:175::o;35267:156::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35322:13:::1;:20:::0;;-1:-1:-1;;35353:18:0;;;;;35403:12:::1;35382:18;:33:::0;35267:156::o;37223:101::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37295:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37295:21:0;;::::1;::::0;;;::::1;::::0;;37223:101::o;37405:99::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37476:10:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37476:20:0;;::::1;::::0;;;::::1;::::0;;37405:99::o;7809:104::-;7865:13;7898:7;7891:14;;;;;:::i;38625:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38734:13:::1;-1:-1:-1::0;;;;;38726:21:0::1;:4;-1:-1:-1::0;;;;;38726:21:0::1;;;38718:91;;;::::0;-1:-1:-1;;;38718:91:0;;12157:2:1;38718:91:0::1;::::0;::::1;12139:21:1::0;12196:2;12176:18;;;12169:30;12235:34;12215:18;;;12208:62;12306:27;12286:18;;;12279:55;12351:19;;38718:91:0::1;11955:421:1::0;38718:91:0::1;38822:41;38851:4;38857:5;38822:28;:41::i;:::-;38625:246:::0;;:::o;11893:269::-;11986:4;12003:129;306:10;12026:7;12035:96;12074:15;12035:96;;;;;;;;;;;;;;;;;306:10;12035:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12035:34:0;;;;;;;;;;;;:38;:96::i;9221:175::-;9307:4;9324:42;306:10;9348:9;9359:6;9324:9;:42::i;39079:208::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;39216:15:::1;::::0;39173:59:::1;::::0;-1:-1:-1;;;;;39216:15:0;;::::1;::::0;39173:59;::::1;::::0;::::1;::::0;39216:15:::1;::::0;39173:59:::1;39243:15;:36:::0;;-1:-1:-1;;;;;;39243:36:0::1;-1:-1:-1::0;;;;;39243:36:0;;;::::1;::::0;;;::::1;::::0;;39079:208::o;38435:182::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38520:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38520:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38575:34;;1464:41:1;;;38575:34:0::1;::::0;1437:18:1;38575:34:0::1;;;;;;;38435:182:::0;;:::o;37972:455::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38110:16:::1;:32:::0;;;38153:16:::1;:32:::0;;;38196:10:::1;:20:::0;;;38227:14:::1;:28:::0;;;38244:11;38209:7;38282:35:::1;38172:13:::0;38129;38282:35:::1;:::i;:::-;:48;;;;:::i;:::-;:65;;;;:::i;:::-;38266:13;:81:::0;;;38383:2:::1;-1:-1:-1::0;38366:19:0::1;38358:61;;;::::0;-1:-1:-1;;;38358:61:0;;11799:2:1;38358:61:0::1;::::0;::::1;11781:21:1::0;11838:2;11818:18;;;11811:30;11877:31;11857:18;;;11850:59;11926:18;;38358:61:0::1;11597:353:1::0;22358:244:0;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22447:22:0;::::1;22439:73;;;::::0;-1:-1:-1;;;22439:73:0;;12583:2:1;22439:73:0::1;::::0;::::1;12565:21:1::0;12622:2;12602:18;;;12595:30;12661:34;12641:18;;;12634:62;-1:-1:-1;;;12712:18:1;;;12705:36;12758:19;;22439:73:0::1;12381:402:1::0;22439:73:0::1;22549:6;::::0;22528:38:::1;::::0;-1:-1:-1;;;;;22528:38:0;;::::1;::::0;22549:6:::1;::::0;22528:38:::1;::::0;22549:6:::1;::::0;22528:38:::1;22577:6;:17:::0;;-1:-1:-1;;;;;;22577:17:0::1;-1:-1:-1::0;;;;;22577:17:0;;;::::1;::::0;;;::::1;::::0;;22358:244::o;16457:181::-;16515:7;;16547:5;16551:1;16547;:5;:::i;:::-;16535:17;;16576:1;16571;:6;;16563:46;;;;-1:-1:-1;;;16563:46:0;;12990:2:1;16563:46:0;;;12972:21:1;13029:2;13009:18;;;13002:30;13068:29;13048:18;;;13041:57;13115:18;;16563:46:0;12788:351:1;16563:46:0;16629:1;16457:181;-1:-1:-1;;;16457:181:0:o;15079:380::-;-1:-1:-1;;;;;15215:19:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;13346:2:1;15207:68:0;;;13328:21:1;13385:2;13365:18;;;13358:30;13424:34;13404:18;;;13397:62;-1:-1:-1;;;13475:18:1;;;13468:34;13519:19;;15207:68:0;13144:400:1;15207:68:0;-1:-1:-1;;;;;15294:21:0;;15286:68;;;;-1:-1:-1;;;15286:68:0;;13751:2:1;15286:68:0;;;13733:21:1;13790:2;13770:18;;;13763:30;13829:34;13809:18;;;13802:62;-1:-1:-1;;;13880:18:1;;;13873:32;13922:19;;15286:68:0;13549:398:1;15286:68:0;-1:-1:-1;;;;;15367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15419:32;;1662:25:1;;;15419:32:0;;1635:18:1;15419:32:0;;;;;;;;15079:380;;;:::o;39794:4172::-;-1:-1:-1;;;;;39926:18:0;;39918:68;;;;-1:-1:-1;;;39918:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40005:16:0;;39997:64;;;;-1:-1:-1;;;39997:64:0;;;;;;;:::i;:::-;40076:13;;;;;;;40072:132;;-1:-1:-1;;;;;40113:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40142:23:0;;;;;;:19;:23;;;;;;;;40113:52;40105:87;;;;-1:-1:-1;;;40105:87:0;;14964:2:1;40105:87:0;;;14946:21:1;15003:2;14983:18;;;14976:30;-1:-1:-1;;;15022:18:1;;;15015:52;15084:18;;40105:87:0;14762:346:1;40105:87:0;40218:11;40215:92;;40246:28;40262:4;40268:2;40272:1;40246:15;:28::i;:::-;39794:4172;;;:::o;40215:92::-;40330:14;;;;;;;40327:1134;;;21478:6;;-1:-1:-1;;;;;40382:15:0;;;21478:6;;40382:15;;;;:49;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;40418:13:0;;;21478:6;;40418:13;;40382:49;:86;;;;-1:-1:-1;;;;;;40452:16:0;;;;40382:86;:128;;;;-1:-1:-1;;;;;;40489:21:0;;40503:6;40489:21;;40382:128;:204;;;;-1:-1:-1;;;;;;40533:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40562:23:0;;;;;;:19;:23;;;;;;;;40533:52;40531:55;40382:204;:234;;;;-1:-1:-1;40608:8:0;;-1:-1:-1;;;40608:8:0;;;;40607:9;40382:234;40360:1090;;;-1:-1:-1;;;;;40701:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;40737:35:0;;;;;;:31;:35;;;;;;;;40736:36;40701:71;40697:738;;;40819:20;;40809:6;:30;;40801:96;;;;-1:-1:-1;;;40801:96:0;;15315:2:1;40801:96:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:34;15373:18;;;15366:62;-1:-1:-1;;;15444:18:1;;;15437:51;15505:19;;40801:96:0;15113:417:1;40801:96:0;40958:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;40932:22;;:6;:22;:::i;:::-;:35;;40924:67;;;;-1:-1:-1;;;40924:67:0;;15737:2:1;40924:67:0;;;15719:21:1;15776:2;15756:18;;;15749:30;-1:-1:-1;;;15795:18:1;;;15788:49;15854:18;;40924:67:0;15535:343:1;40924:67:0;40697:738;;;-1:-1:-1;;;;;41085:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;41119:37:0;;;;;;:31;:37;;;;;;;;41118:38;41085:71;41081:354;;;41203:20;;41193:6;:30;;41185:97;;;;-1:-1:-1;;;41185:97:0;;16085:2:1;41185:97:0;;;16067:21:1;16124:2;16104:18;;;16097:30;16163:34;16143:18;;;16136:62;-1:-1:-1;;;16214:18:1;;;16207:52;16276:19;;41185:97:0;15883:418:1;41081:354:0;41382:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;41356:22;;:6;:22;:::i;:::-;:35;;41348:67;;;;-1:-1:-1;;;41348:67:0;;15737:2:1;41348:67:0;;;15719:21:1;15776:2;15756:18;;;15749:30;-1:-1:-1;;;15795:18:1;;;15788:49;15854:18;;41348:67:0;15535:343:1;41348:67:0;41524:4;41475:28;8982:18;;;;;;;;;;;41566:24;;;;;;;41621:35;;-1:-1:-1;41645:11:0;;;;;;;41621:35;:61;;;;-1:-1:-1;41674:8:0;;-1:-1:-1;;;41674:8:0;;;;41673:9;41621:61;:110;;;;-1:-1:-1;;;;;;41700:31:0;;;;;;:25;:31;;;;;;;;41699:32;41621:110;:153;;;;-1:-1:-1;;;;;;41749:25:0;;;;;;:19;:25;;;;;;;;41748:26;41621:153;:194;;;;-1:-1:-1;;;;;;41792:23:0;;;;;;:19;:23;;;;;;;;41791:24;41621:194;41603:338;;;41842:8;:15;;-1:-1:-1;;;;41842:15:0;-1:-1:-1;;;41842:15:0;;;41886:10;:8;:10::i;:::-;41913:8;:16;;-1:-1:-1;;;;41913:16:0;;;41603:338;41977:8;;-1:-1:-1;;;;;42086:25:0;;41961:12;42086:25;;;:19;:25;;;;;;41977:8;-1:-1:-1;;;41977:8:0;;;;;41976:9;;42086:25;;:52;;-1:-1:-1;;;;;;42115:23:0;;;;;;:19;:23;;;;;;;;42086:52;42083:99;;;-1:-1:-1;42165:5:0;42083:99;42202:12;42306:7;42303:1610;;;42368:12;42346:18;;:34;:104;;;;-1:-1:-1;;;;;;42385:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;42418:31:0;;;;;;:25;:31;;;;;;;;42385:64;42343:1401;;;42477:23;42496:3;42477:14;:6;42488:2;42477:10;:14::i;:::-;:18;;:23::i;:::-;42470:30;-1:-1:-1;42553:2:0;42541:9;42470:30;42548:2;42541:9;:::i;:::-;:14;;;;:::i;:::-;42519:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;42606:2:0;;-1:-1:-1;42594:9:0;:4;42601:2;42594:9;:::i;:::-;:14;;;;:::i;:::-;42574:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;42661:2:0;;-1:-1:-1;42649:9:0;:4;42656:2;42649:9;:::i;:::-;:14;;;;:::i;:::-;42627:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;42343:1401:0;;-1:-1:-1;42343:1401:0;;-1:-1:-1;;;;;42726:29:0;;;;;;:25;:29;;;;;;;;42722:1022;;;42779:13;;:17;42775:426;;42827:34;42857:3;42827:25;42838:13;;42827:6;:10;;:25;;;;:::i;:34::-;42820:41;;42932:13;;42913:16;;42906:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;42884:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43004:13:0;;42991:10;;42984:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;42968:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43088:13:0;;43069:16;;43062:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;43040:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43168:13:0;;43151:14;;43144:21;;:4;:21;:::i;:::-;:37;;;;:::i;:::-;43124:16;;:57;;;;;;;:::i;42775:426::-;42722:1022;;;-1:-1:-1;;;;;43261:31:0;;;;;;:25;:31;;;;;;;;43258:486;;;43317:12;;:16;43313:416;;43364:33;43393:3;43364:24;43375:12;;43364:6;:10;;:24;;;;:::i;:33::-;43357:40;;43467:12;;43449:15;;43442:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;43420:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43537:12:0;;43525:9;;43518:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;43502:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;43619:12:0;;43601:15;;43594:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;43572:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;43697:12:0;;43681:13;;43674:20;;:4;:20;:::i;:::-;:35;;;;:::i;:::-;43654:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;43313:416:0;43775:8;;43772:93;;43807:42;43823:4;43837;43844;43807:15;:42::i;:::-;43887:14;43897:4;43887:14;;:::i;:::-;;;42303:1610;43925:33;43941:4;43947:2;43951:6;43925:15;:33::i;:::-;39907:4059;;;;39794:4172;;;:::o;17360:192::-;17446:7;17482:12;17474:6;;;;17466:29;;;;-1:-1:-1;;;17466:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17506:9:0;17518:5;17522:1;17518;:5;:::i;:::-;17506:17;17360:192;-1:-1:-1;;;;;17360:192:0:o;38883:188::-;-1:-1:-1;;;;;38966:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38966:39:0;;;;;;;;;;39023:40;;38966:39;;:31;39023:40;;;38883:188;;:::o;12652:573::-;-1:-1:-1;;;;;12792:20:0;;12784:70;;;;-1:-1:-1;;;12784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12873:23:0;;12865:71;;;;-1:-1:-1;;;12865:71:0;;;;;;;:::i;:::-;13029;13051:6;13029:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13029:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13009:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13134:20;;;;;;;:32;;13159:6;13134:24;:32::i;:::-;-1:-1:-1;;;;;13111:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13182:35;1662:25:1;;;13111:20:0;;13182:35;;;;;;1635:18:1;13182:35:0;1516:177:1;45310:1955:0;45393:4;45349:23;8982:18;;;;;;;;;;;45416:10;;;;;;;45412:185;;;45446:19;;45442:123;;45516:15;;45485:64;;45509:4;;-1:-1:-1;;;;;45516:15:0;45533;45485;:64::i;:::-;45579:7;45310:1955::o;45412:185::-;45609:25;45694:16;;45679:12;;45658:18;;45637;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;:73;;;;:::i;:::-;45609:101;-1:-1:-1;45721:12:0;45757:20;;;:46;;-1:-1:-1;45781:22:0;;45757:46;45754:60;;;45806:7;;;45310:1955::o;45754:60::-;45883:23;45968:1;45948:17;45927:18;;45909:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;45883:86;-1:-1:-1;45980:26:0;46009:36;:15;45883:86;46009:19;:36::i;:::-;45980:65;-1:-1:-1;46094:21:0;46128:36;45980:65;46128:16;:36::i;:::-;46186:18;46207:44;:21;46233:17;46207:25;:44::i;:::-;46186:65;;46272:23;46298:57;46337:17;46298:34;46313:18;;46298:10;:14;;:34;;;;:::i;:57::-;46272:83;;46366:17;46386:51;46419:17;46386:28;46401:12;;46386:10;:14;;:28;;;;:::i;:51::-;46366:71;;46448:21;46472:55;46509:17;46472:32;46487:16;;46472:10;:14;;:32;;;;:::i;:55::-;46448:79;-1:-1:-1;46548:23:0;46448:79;46605:9;46574:28;46587:15;46574:10;:28;:::i;:::-;:40;;;;:::i;:::-;:56;;;;:::i;:::-;46672:1;46651:18;:22;;;46684:18;:22;;;46717:12;:16;;;46744;:20;;;46806:9;;46798:45;;46548:82;;-1:-1:-1;;;;;;46806:9:0;;46829;;46798:45;46672:1;46798:45;46829:9;46806;46798:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46875:13:0;;46867:53;;46785:58;;-1:-1:-1;;;;;;46875:13:0;;46902;;46867:53;;;;46902:13;46875;46867:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46854:66:0;;-1:-1:-1;;46944:19:0;;;;;:42;;;46985:1;46967:15;:19;46944:42;46941:210;;;47002:46;47015:15;47032;47002:12;:46::i;:::-;47120:18;;47068:71;;;16848:25:1;;;16904:2;16889:18;;16882:34;;;16932:18;;;16925:34;;;;47068:71:0;;;;;;16836:2:1;47068:71:0;;;46941:210;47192:15;;47184:63;;-1:-1:-1;;;;;47192:15:0;;;;47221:21;;47184:63;;;;47221:21;47192:15;47184:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;45310:1955:0:o;17811:471::-;17869:7;18114:6;18110:47;;-1:-1:-1;18144:1:0;18137:8;;18110:47;18169:9;18181:5;18185:1;18181;:5;:::i;:::-;18169:17;-1:-1:-1;18214:1:0;18205:5;18209:1;18169:17;18205:5;:::i;:::-;:10;18197:56;;;;-1:-1:-1;;;18197:56:0;;17172:2:1;18197:56:0;;;17154:21:1;17211:2;17191:18;;;17184:30;17250:34;17230:18;;;17223:62;-1:-1:-1;;;17301:18:1;;;17294:31;17342:19;;18197:56:0;16970:397:1;18758:132:0;18816:7;18843:39;18847:1;18850;18843:39;;;;;;;;;;;;;;;;;:3;:39::i;16921:136::-;16979:7;17006:43;17010:1;17013;17006:43;;;;;;;;;;;;;;;;;:3;:43::i;43974:601::-;44126:16;;;44140:1;44126:16;;;;;;;;44102:21;;44126:16;;;;;;;;;;-1:-1:-1;44126:16:0;44102:40;;44171:4;44153;44158:1;44153:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44153:23:0;;;-1:-1:-1;;;;;44153:23:0;;;;;44197:15;-1:-1:-1;;;;;44197:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44187:4;44192:1;44187:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44187:32:0;;;-1:-1:-1;;;;;44187:32:0;;;;;44232:62;44249:4;44264:15;44282:11;44232:8;:62::i;:::-;44333:224;;-1:-1:-1;;;44333:224:0;;-1:-1:-1;;;;;44333:15:0;:66;;;;:224;;44414:11;;44440:1;;44484:4;;44511;;44531:15;;44333:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:546;43974:601;:::o;44587:532::-;44735:62;44752:4;44767:15;44785:11;44735:8;:62::i;:::-;44844:256;;-1:-1:-1;;;44844:256:0;;44916:4;44844:256;;;18954:34:1;19004:18;;;18997:34;;;44962:1:0;19047:18:1;;;19040:34;;;19090:18;;;19083:34;29658:6:0;19133:19:1;;;19126:44;45074:15:0;19186:19:1;;;19179:35;44844:15:0;-1:-1:-1;;;;;44844:31:0;;;;44883:9;;18888:19:1;;44844:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44844:256:0;;;;;;;;-1:-1:-1;;44844:256:0;;;;;;;;;;;;:::i;:::-;;;44840:272;;38625:246;;:::o;44840:272::-;;;;44587:532;;:::o;19386:278::-;19472:7;19507:12;19500:5;19492:28;;;;-1:-1:-1;;;19492:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19531:9:0;19543:5;19547:1;19543;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:597::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;840:6;837:1;834:13;831:91;;;910:1;905:2;896:6;885:9;881:22;877:31;870:42;831:91;-1:-1:-1;983:2:1;962:15;-1:-1:-1;;958:29:1;943:45;;;;990:2;939:54;;402:597;-1:-1:-1;;;402:597:1:o;1004:315::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1188:9;1175:23;1207:31;1232:5;1207:31;:::i;:::-;1257:5;1309:2;1294:18;;;;1281:32;;-1:-1:-1;;;1004:315:1:o;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2326:127::-;2387:10;2382:3;2378:20;2375:1;2368:31;2418:4;2415:1;2408:15;2442:4;2439:1;2432:15;2458:275;2529:2;2523:9;2594:2;2575:13;;-1:-1:-1;;2571:27:1;2559:40;;2629:18;2614:34;;2650:22;;;2611:62;2608:88;;;2676:18;;:::i;:::-;2712:2;2705:22;2458:275;;-1:-1:-1;2458:275:1:o;2738:183::-;2798:4;2831:18;2823:6;2820:30;2817:56;;;2853:18;;:::i;:::-;-1:-1:-1;2898:1:1;2894:14;2910:4;2890:25;;2738:183::o;2926:662::-;2980:5;3033:3;3026:4;3018:6;3014:17;3010:27;3000:55;;3051:1;3048;3041:12;3000:55;3087:6;3074:20;3113:4;3137:60;3153:43;3193:2;3153:43;:::i;:::-;3137:60;:::i;:::-;3231:15;;;3317:1;3313:10;;;;3301:23;;3297:32;;;3262:12;;;;3341:15;;;3338:35;;;3369:1;3366;3359:12;3338:35;3405:2;3397:6;3393:15;3417:142;3433:6;3428:3;3425:15;3417:142;;;3499:17;;3487:30;;3537:12;;;;3450;;3417:142;;;-1:-1:-1;3577:5:1;2926:662;-1:-1:-1;;;;;;2926:662:1:o;3593:1215::-;3711:6;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3828:9;3815:23;3857:18;3898:2;3890:6;3887:14;3884:34;;;3914:1;3911;3904:12;3884:34;3952:6;3941:9;3937:22;3927:32;;3997:7;3990:4;3986:2;3982:13;3978:27;3968:55;;4019:1;4016;4009:12;3968:55;4055:2;4042:16;4077:4;4101:60;4117:43;4157:2;4117:43;:::i;4101:60::-;4195:15;;;4277:1;4273:10;;;;4265:19;;4261:28;;;4226:12;;;;4301:19;;;4298:39;;;4333:1;4330;4323:12;4298:39;4357:11;;;;4377:217;4393:6;4388:3;4385:15;4377:217;;;4473:3;4460:17;4490:31;4515:5;4490:31;:::i;:::-;4534:18;;4410:12;;;;4572;;;;4377:217;;;4613:5;-1:-1:-1;;4656:18:1;;4643:32;;-1:-1:-1;;4687:16:1;;;4684:36;;;4716:1;4713;4706:12;4684:36;;4739:63;4794:7;4783:8;4772:9;4768:24;4739:63;:::i;:::-;4729:73;;;3593:1215;;;;;:::o;4813:456::-;4890:6;4898;4906;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5014:9;5001:23;5033:31;5058:5;5033:31;:::i;:::-;5083:5;-1:-1:-1;5140:2:1;5125:18;;5112:32;5153:33;5112:32;5153:33;:::i;:::-;4813:456;;5205:7;;-1:-1:-1;;;5259:2:1;5244:18;;;;5231:32;;4813:456::o;5274:385::-;5360:6;5368;5376;5384;5437:3;5425:9;5416:7;5412:23;5408:33;5405:53;;;5454:1;5451;5444:12;5405:53;-1:-1:-1;;5477:23:1;;;5547:2;5532:18;;5519:32;;-1:-1:-1;5598:2:1;5583:18;;5570:32;;5649:2;5634:18;5621:32;;-1:-1:-1;5274:385:1;-1:-1:-1;5274:385:1:o;5853:160::-;5918:20;;5974:13;;5967:21;5957:32;;5947:60;;6003:1;6000;5993:12;5947:60;5853:160;;;:::o;6018:315::-;6083:6;6091;6144:2;6132:9;6123:7;6119:23;6115:32;6112:52;;;6160:1;6157;6150:12;6112:52;6199:9;6186:23;6218:31;6243:5;6218:31;:::i;:::-;6268:5;-1:-1:-1;6292:35:1;6323:2;6308:18;;6292:35;:::i;:::-;6282:45;;6018:315;;;;;:::o;6338:180::-;6394:6;6447:2;6435:9;6426:7;6422:23;6418:32;6415:52;;;6463:1;6460;6453:12;6415:52;6486:26;6502:9;6486:26;:::i;6523:388::-;6591:6;6599;6652:2;6640:9;6631:7;6627:23;6623:32;6620:52;;;6668:1;6665;6658:12;6620:52;6707:9;6694:23;6726:31;6751:5;6726:31;:::i;:::-;6776:5;-1:-1:-1;6833:2:1;6818:18;;6805:32;6846:33;6805:32;6846:33;:::i;:::-;6898:7;6888:17;;;6523:388;;;;;:::o;6916:356::-;7118:2;7100:21;;;7137:18;;;7130:30;7196:34;7191:2;7176:18;;7169:62;7263:2;7248:18;;6916:356::o;7277:380::-;7356:1;7352:12;;;;7399;;;7420:61;;7474:4;7466:6;7462:17;7452:27;;7420:61;7527:2;7519:6;7516:14;7496:18;7493:38;7490:161;;;7573:10;7568:3;7564:20;7561:1;7554:31;7608:4;7605:1;7598:15;7636:4;7633:1;7626:15;7490:161;;7277:380;;;:::o;7662:127::-;7723:10;7718:3;7714:20;7711:1;7704:31;7754:4;7751:1;7744:15;7778:4;7775:1;7768:15;7794:422;7883:1;7926:5;7883:1;7940:270;7961:7;7951:8;7948:21;7940:270;;;8020:4;8016:1;8012:6;8008:17;8002:4;7999:27;7996:53;;;8029:18;;:::i;:::-;8079:7;8069:8;8065:22;8062:55;;;8099:16;;;;8062:55;8178:22;;;;8138:15;;;;7940:270;;;7944:3;7794:422;;;;;:::o;8221:806::-;8270:5;8300:8;8290:80;;-1:-1:-1;8341:1:1;8355:5;;8290:80;8389:4;8379:76;;-1:-1:-1;8426:1:1;8440:5;;8379:76;8471:4;8489:1;8484:59;;;;8557:1;8552:130;;;;8464:218;;8484:59;8514:1;8505:10;;8528:5;;;8552:130;8589:3;8579:8;8576:17;8573:43;;;8596:18;;:::i;:::-;-1:-1:-1;;8652:1:1;8638:16;;8667:5;;8464:218;;8766:2;8756:8;8753:16;8747:3;8741:4;8738:13;8734:36;8728:2;8718:8;8715:16;8710:2;8704:4;8701:12;8697:35;8694:77;8691:159;;;-1:-1:-1;8803:19:1;;;8835:5;;8691:159;8882:34;8907:8;8901:4;8882:34;:::i;:::-;8952:6;8948:1;8944:6;8940:19;8931:7;8928:32;8925:58;;;8963:18;;:::i;:::-;9001:20;;8221:806;-1:-1:-1;;;8221:806:1:o;9032:140::-;9090:5;9119:47;9160:4;9150:8;9146:19;9140:4;9119:47;:::i;9177:168::-;9217:7;9283:1;9279;9275:6;9271:14;9268:1;9265:21;9260:1;9253:9;9246:17;9242:45;9239:71;;;9290:18;;:::i;:::-;-1:-1:-1;9330:9:1;;9177:168::o;9350:217::-;9390:1;9416;9406:132;;9460:10;9455:3;9451:20;9448:1;9441:31;9495:4;9492:1;9485:15;9523:4;9520:1;9513:15;9406:132;-1:-1:-1;9552:9:1;;9350:217::o;9572:409::-;9774:2;9756:21;;;9813:2;9793:18;;;9786:30;9852:34;9847:2;9832:18;;9825:62;-1:-1:-1;;;9918:2:1;9903:18;;9896:43;9971:3;9956:19;;9572:409::o;11192:127::-;11253:10;11248:3;11244:20;11241:1;11234:31;11284:4;11281:1;11274:15;11308:4;11305:1;11298:15;11324:135;11363:3;-1:-1:-1;;11384:17:1;;11381:43;;;11404:18;;:::i;:::-;-1:-1:-1;11451:1:1;11440:13;;11324:135::o;11464:128::-;11504:3;11535:1;11531:6;11528:1;11525:13;11522:39;;;11541:18;;:::i;:::-;-1:-1:-1;11577:9:1;;11464:128::o;13952:401::-;14154:2;14136:21;;;14193:2;14173:18;;;14166:30;14232:34;14227:2;14212:18;;14205:62;-1:-1:-1;;;14298:2:1;14283:18;;14276:35;14343:3;14328:19;;13952:401::o;14358:399::-;14560:2;14542:21;;;14599:2;14579:18;;;14572:30;14638:34;14633:2;14618:18;;14611:62;-1:-1:-1;;;14704:2:1;14689:18;;14682:33;14747:3;14732:19;;14358:399::o;16306:125::-;16346:4;16374:1;16371;16368:8;16365:34;;;16379:18;;:::i;:::-;-1:-1:-1;16416:9:1;;16306:125::o;17372:251::-;17442:6;17495:2;17483:9;17474:7;17470:23;17466:32;17463:52;;;17511:1;17508;17501:12;17463:52;17543:9;17537:16;17562:31;17587:5;17562:31;:::i;17628:980::-;17890:4;17938:3;17927:9;17923:19;17969:6;17958:9;17951:25;17995:2;18033:6;18028:2;18017:9;18013:18;18006:34;18076:3;18071:2;18060:9;18056:18;18049:31;18100:6;18135;18129:13;18166:6;18158;18151:22;18204:3;18193:9;18189:19;18182:26;;18243:2;18235:6;18231:15;18217:29;;18264:1;18274:195;18288:6;18285:1;18282:13;18274:195;;;18353:13;;-1:-1:-1;;;;;18349:39:1;18337:52;;18444:15;;;;18409:12;;;;18385:1;18303:9;18274:195;;;-1:-1:-1;;;;;;;18525:32:1;;;;18520:2;18505:18;;18498:60;-1:-1:-1;;;18589:3:1;18574:19;18567:35;18486:3;17628:980;-1:-1:-1;;;17628:980:1:o;19225:306::-;19313:6;19321;19329;19382:2;19370:9;19361:7;19357:23;19353:32;19350:52;;;19398:1;19395;19388:12;19350:52;19427:9;19421:16;19411:26;;19477:2;19466:9;19462:18;19456:25;19446:35;;19521:2;19510:9;19506:18;19500:25;19490:35;;19225:306;;;;;:::o

Swarm Source

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