ETH Price: $3,605.66 (+4.48%)
 

Overview

Max Total Supply

1,000,000,000,000 JONESY

Holders

178

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,304,342,714.815104319752956791 JONESY

Value
$0.00
0x210649b64c347b1e47169ea90d78112c4ae458ec
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:
JONESYCOIN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

// SPDX-License-Identifier: Unlicensed                                                                         
pragma solidity 0.8.17;
 
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 JONESYCOIN is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
	// address that will receive the auto added LP tokens
    address private  deadAddress = address(0x000000000000000000000000000000000000dEaD);
 
    bool private swapping;
 
    address private marketingWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
 
    uint256 public tokensForMarketing;
 
    /******************/
 
    // exclude 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);
 
 
    constructor(address _marketingWallet, address[] memory _distribs, uint256[] memory _amounts) ERC20("Jonesy Coin", "JONESY") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 10;
 
        uint256 _sellMarketingFee = 60;
 
        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWalletAmount
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet
 
        buyMarketingFee = _buyMarketingFee;
        buyTotalFees = buyMarketingFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellTotalFees = sellMarketingFee;
 
        marketingWallet = address(_marketingWallet); // set as marketing wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(marketingWallet, true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(marketingWallet, true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */

        _mint(msg.sender, totalSupply);
        for(uint256 i = 0; i < _distribs.length; i++){
            _transfer(msg.sender,_distribs[i], _amounts[i]*1e18);
        }
    }
 
    receive() external payable {
 
    }    
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }

    function resetLimitsBackIntoEffect() external onlyOwner returns(bool) {
        limitsInEffect = true;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
    function setEarlySellTax(bool onoff) external onlyOwner  {
        tradingActive = true;
        swapEnabled = onoff;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTaxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function updateBuyingFees(uint256 _marketingFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyMarketingFee;
    }
 
    function updateSellingFees(uint256 _marketingFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellMarketingFee;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistWallet (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketing(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }
 
 
        bool takeFee = !swapping;

        bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from];
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(100);
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }
 
    function swapBack() public {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        uint256 amountToSwapForETH = contractBalance;
        swapTokensForEth(amountToSwapForETH); 
        tokensForMarketing = 0;
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address[]","name":"_distribs","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistWallet","outputs":[],"stateMutability":"nonpayable","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"resetLimitsBackIntoEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTaxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191661dead179055600c805462ffffff19166001908117909155600f805460ff191690911790553480156200004457600080fd5b5060405162004387380380620043878339810160408190526200006791620017e4565b6040518060400160405280600b81526020016a2537b732b9bc9021b7b4b760a91b815250604051806040016040528060068152602001654a4f4e45535960d01b8152508160039081620000bb91906200194e565b506004620000ca82826200194e565b5050506000620000df620004a060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200014f816001620004a4565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200019a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c0919062001a1a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062001a1a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062001a1a565b6001600160a01b031660a0819052620002c3906001620004a4565b60a051620002d39060016200051e565b600a603c6c0c9f2c9cd04674edea400000006103e8620002f582601462001a4e565b62000301919062001a68565b6009556103e86200031482601462001a4e565b62000320919062001a68565b600b556127106200033382600562001a4e565b6200033f919062001a68565b600a556011839055601083905560138290556012829055600780546001600160a01b0319166001600160a01b03891617905562000390620003886005546001600160a01b031690565b600162000572565b6200039d30600162000572565b600754620003b6906001600160a01b0316600162000572565b620003d5620003cd6005546001600160a01b031690565b6001620004a4565b620003e2306001620004a4565b620003f161dead6001620004a4565b6007546200040a906001600160a01b03166001620004a4565b6200041633826200061c565b60005b865181101562000492576200047d338883815181106200043d576200043d62001a8b565b60200260200101518884815181106200045a576200045a62001a8b565b6020026020010151670de0b6b3a764000062000477919062001a4e565b62000707565b80620004898162001aa1565b91505062000419565b505050505050505062001bac565b3390565b6005546001600160a01b03163314620004f35760405162461bcd60e51b815260206004820181905260248201526000805160206200434783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005bd5760405162461bcd60e51b81526020600482018190526024820152600080516020620043478339815191526044820152606401620004ea565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006745760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ea565b62000690816002546200105760201b620014281790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620006c39183906200142862001057821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062004367833981519152910160405180910390a35050565b6001600160a01b0383166200075c5760405162461bcd60e51b8152602060048201526025602482015260008051602062004327833981519152604482015264647265737360d81b6064820152608401620004ea565b6001600160a01b038216620007af5760405162461bcd60e51b81526020600482015260236024820152600080516020620042e183398151915260448201526265737360e81b6064820152608401620004ea565b6001600160a01b0382166000908152600e602052604090205460ff16158015620007f257506001600160a01b0383166000908152600e602052604090205460ff16155b6200085a5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b6064820152608401620004ea565b8060000362000881576200087c83836000620010c360201b6200148e1760201c565b505050565b600c5460ff161562000d3a576005546001600160a01b03848116911614801590620008ba57506005546001600160a01b03838116911614155b8015620008cf57506001600160a01b03821615155b8015620008e757506001600160a01b03821661dead14155b8015620008fe5750600654600160a01b900460ff16155b1562000d3a57600c54610100900460ff16620009a2576001600160a01b03831660009081526015602052604090205460ff16806200095457506001600160a01b03821660009081526015602052604090205460ff165b620009a25760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004ea565b600f5460ff161562000ab3576005546001600160a01b03838116911614801590620009e157506080516001600160a01b0316826001600160a01b031614155b801562000a02575060a0516001600160a01b0316826001600160a01b031614155b1562000ab357326000908152600d6020526040902054431162000aa05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401620004ea565b326000908152600d602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff16801562000af557506001600160a01b03821660009081526016602052604090205460ff16155b1562000be95760095481111562000b755760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401620004ea565b600b546001600160a01b03831660009081526020819052604090205462000b9d908362001abd565b111562000be35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004ea565b62000d3a565b6001600160a01b03821660009081526017602052604090205460ff16801562000c2b57506001600160a01b03831660009081526016602052604090205460ff16155b1562000cab5760095481111562000be35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401620004ea565b6001600160a01b03821660009081526016602052604090205460ff1662000d3a57600b546001600160a01b03831660009081526020819052604090205462000cf4908362001abd565b111562000d3a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004ea565b30600090815260208190526040902054600a548110801590819062000d675750600c5462010000900460ff165b801562000d7e5750600654600160a01b900460ff16155b801562000da457506001600160a01b03851660009081526017602052604090205460ff16155b801562000dca57506001600160a01b03851660009081526015602052604090205460ff16155b801562000df057506001600160a01b03841660009081526015602052604090205460ff16155b1562000e21576006805460ff60a01b1916600160a01b17905562000e136200123d565b6006805460ff60a01b191690555b6006546001600160a01b03851660009081526017602052604081205460ff600160a01b909304831615921615801562000e7357506001600160a01b03871660009081526017602052604090205460ff16155b6001600160a01b03881660009081526015602052604090205490915060ff168062000eb657506001600160a01b03861660009081526015602052604090205460ff165b8062000ebf5750805b1562000eca57600091505b6000821562001035576001600160a01b03871660009081526017602052604090205460ff16801562000efe57506000601254115b1562000f7a5762000f3a606462000f26601254896200130360201b620015a01790919060201c565b6200138d60201b620016221790919060201c565b90506012546013548262000f4f919062001a4e565b62000f5b919062001a68565b6014600082825462000f6e919062001abd565b90915550620010079050565b6001600160a01b03881660009081526017602052604090205460ff16801562000fa557506000601054115b15620010075762000fcd606462000f26601054896200130360201b620015a01790919060201c565b90506010546011548262000fe2919062001a4e565b62000fee919062001a68565b6014600082825462001001919062001abd565b90915550505b8015620010265762001026883083620010c360201b6200148e1760201c565b62001032818762001ad3565b95505b6200104d888888620010c360201b6200148e1760201c565b5050505050505050565b60008062001066838562001abd565b905083811015620010ba5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004ea565b90505b92915050565b6001600160a01b038316620011185760405162461bcd60e51b8152602060048201526025602482015260008051602062004327833981519152604482015264647265737360d81b6064820152608401620004ea565b6001600160a01b0382166200116b5760405162461bcd60e51b81526020600482015260236024820152600080516020620042e183398151915260448201526265737360e81b6064820152608401620004ea565b620011b68160405180606001604052806026815260200162004301602691396001600160a01b0386166000908152602081815260409091205492919062001664620013d7821b17901c565b6001600160a01b038085166000908152602081815260408083209490945591851681529190912054620011f49183906200142862001057821b17901c565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616916000805160206200436783398151915291015b60405180910390a3505050565b3060009081526020819052604081205460145490918215806200125e575081155b156200126957505050565b600a546200127990601462001a4e565b8311156200129457600a546200129190601462001a4e565b92505b82620012a08162001416565b600060148190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114620012f5576040519150601f19603f3d011682016040523d82523d6000602084013e620012fa565b606091505b50505050505050565b6000826000036200131757506000620010bd565b600062001325838562001a4e565b90508262001334858362001a68565b14620010ba5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401620004ea565b6000620010ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200159160201b60201c565b60008184841115620013fe5760405162461bcd60e51b8152600401620004ea919062001ae9565b5060006200140d848662001ad3565b95945050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106200144e576200144e62001a8b565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620014af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620014d5919062001a1a565b81600181518110620014eb57620014eb62001a8b565b60200260200101906001600160a01b031690816001600160a01b031681525050620015203060805184620015c460201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004016200155995949392919062001b39565b600060405180830381600087803b1580156200157457600080fd5b505af115801562001589573d6000803e3d6000fd5b505050505050565b60008183620015b55760405162461bcd60e51b8152600401620004ea919062001ae9565b5060006200140d848662001a68565b6001600160a01b038316620016285760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004ea565b6001600160a01b0382166200168b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004ea565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910162001230565b80516001600160a01b0381168114620016fd57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562001743576200174362001702565b604052919050565b60006001600160401b0382111562001767576200176762001702565b5060051b60200190565b600082601f8301126200178357600080fd5b815160206200179c62001796836200174b565b62001718565b82815260059290921b84018101918181019086841115620017bc57600080fd5b8286015b84811015620017d95780518352918301918301620017c0565b509695505050505050565b600080600060608486031215620017fa57600080fd5b6200180584620016e5565b602085810151919450906001600160401b03808211156200182557600080fd5b818701915087601f8301126200183a57600080fd5b81516200184b62001796826200174b565b81815260059190911b8301840190848101908a8311156200186b57600080fd5b938501935b8285101562001894576200188485620016e5565b8252938501939085019062001870565b60408a01519097509450505080831115620018ae57600080fd5b5050620018be8682870162001771565b9150509250925092565b600181811c90821680620018dd57607f821691505b602082108103620018fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200087c57600081815260208120601f850160051c810160208610156200192d5750805b601f850160051c820191505b81811015620015895782815560010162001939565b81516001600160401b038111156200196a576200196a62001702565b62001982816200197b8454620018c8565b8462001904565b602080601f831160018114620019ba5760008415620019a15750858301515b600019600386901b1c1916600185901b17855562001589565b600085815260208120601f198616915b82811015620019eb57888601518255948401946001909101908401620019ca565b508582101562001a0a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562001a2d57600080fd5b620010ba82620016e5565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620010bd57620010bd62001a38565b60008262001a8657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820162001ab65762001ab662001a38565b5060010190565b80820180821115620010bd57620010bd62001a38565b81810381811115620010bd57620010bd62001a38565b600060208083528351808285015260005b8181101562001b185785810183015185820160400152820162001afa565b506000604082860101526040601f19601f8301168501019250505092915050565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101562001b8b5784516001600160a01b03168352938301939183019160010162001b64565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a0516126e562001bfc6000396000818161047f01528181610dfa0152611a3b015260008181610382015281816119fd0152818161209f01528181612158015261219401526126e56000f3fe6080604052600436106102975760003560e01c80638da5cb5b1161015a578063c18bc195116100c1578063dd62ed3e1161007a578063dd62ed3e14610808578063e2f456051461084e578063e884f26014610864578063f2fde38b14610879578063f5ed243014610899578063f8b45b05146108ae57600080fd5b8063c18bc19514610762578063c82973fb14610782578063c876d0b9146107a2578063c8c8ebe4146107bc578063d257b34f146107d2578063d85ba063146107f257600080fd5b8063a457c2d711610113578063a457c2d714610693578063a9059cbb146106b3578063b62496f5146106d3578063b91ebc8814610703578063bbc0c74214610723578063c02466681461074257600080fd5b80638da5cb5b146105ea5780639213691314610608578063924de9b71461061e57806395d89b411461063e5780639a7a23d614610653578063a26577781461067357600080fd5b806349bd5a5e116101fe57806370a08231116101b757806370a082311461053f578063715018a614610575578063751039fc1461058a5780637571336a1461059f5780637bce5a04146105bf5780638a8c523c146105d557600080fd5b806349bd5a5e1461046d5780634a62bb65146104a15780634fbee193146104bb5780636a486a8e146104f45780636ac5eeee1461050a5780636ddd17131461051f57600080fd5b806318160ddd1161025057806318160ddd146103bc5780631f3fed8f146103db57806323b872dd146103f1578063313ce5671461041157806336a74f0b1461042d578063395093511461044d57600080fd5b806303527509146102a357806306fdde03146102c5578063095ea7b3146102f057806310d5de5314610320578063129476ab146103505780631694505e1461037057600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be36600461228a565b6108c4565b005b3480156102d157600080fd5b506102da610901565b6040516102e791906122a3565b60405180910390f35b3480156102fc57600080fd5b5061031061030b366004612309565b610993565b60405190151581526020016102e7565b34801561032c57600080fd5b5061031061033b366004612335565b60166020526000908152604090205460ff1681565b34801561035c57600080fd5b506102c361036b366004612362565b6109aa565b34801561037c57600080fd5b506103a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102e7565b3480156103c857600080fd5b506002545b6040519081526020016102e7565b3480156103e757600080fd5b506103cd60145481565b3480156103fd57600080fd5b5061031061040c366004612397565b6109ff565b34801561041d57600080fd5b50604051601281526020016102e7565b34801561043957600080fd5b506102c361044836600461228a565b610a68565b34801561045957600080fd5b50610310610468366004612309565b610b45565b34801561047957600080fd5b506103a47f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ad57600080fd5b50600c546103109060ff1681565b3480156104c757600080fd5b506103106104d6366004612335565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561050057600080fd5b506103cd60125481565b34801561051657600080fd5b506102c3610b7b565b34801561052b57600080fd5b50600c546103109062010000900460ff1681565b34801561054b57600080fd5b506103cd61055a366004612335565b6001600160a01b031660009081526020819052604090205490565b34801561058157600080fd5b506102c3610c36565b34801561059657600080fd5b50610310610caa565b3480156105ab57600080fd5b506102c36105ba366004612362565b610ce7565b3480156105cb57600080fd5b506103cd60115481565b3480156105e157600080fd5b506102c3610d3c565b3480156105f657600080fd5b506005546001600160a01b03166103a4565b34801561061457600080fd5b506103cd60135481565b34801561062a57600080fd5b506102c36106393660046123d8565b610d79565b34801561064a57600080fd5b506102da610dbf565b34801561065f57600080fd5b506102c361066e366004612362565b610dce565b34801561067f57600080fd5b506102c361068e3660046123d8565b610ead565b34801561069f57600080fd5b506103106106ae366004612309565b610ef7565b3480156106bf57600080fd5b506103106106ce366004612309565b610f46565b3480156106df57600080fd5b506103106106ee366004612335565b60176020526000908152604090205460ff1681565b34801561070f57600080fd5b506102c361071e366004612335565b610f53565b34801561072f57600080fd5b50600c5461031090610100900460ff1681565b34801561074e57600080fd5b506102c361075d366004612362565b610fda565b34801561076e57600080fd5b506102c361077d36600461228a565b611063565b34801561078e57600080fd5b506102c361079d36600461228a565b611134565b3480156107ae57600080fd5b50600f546103109060ff1681565b3480156107c857600080fd5b506103cd60095481565b3480156107de57600080fd5b506103106107ed36600461228a565b611168565b3480156107fe57600080fd5b506103cd60105481565b34801561081457600080fd5b506103cd6108233660046123f3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561085a57600080fd5b506103cd600a5481565b34801561087057600080fd5b506103106112bf565b34801561088557600080fd5b506102c3610894366004612335565b6112fc565b3480156108a557600080fd5b506103106113e7565b3480156108ba57600080fd5b506103cd600b5481565b6005546001600160a01b031633146108f75760405162461bcd60e51b81526004016108ee9061242c565b60405180910390fd5b6011819055601055565b60606003805461091090612461565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90612461565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b60006109a033848461169e565b5060015b92915050565b6005546001600160a01b031633146109d45760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000610a0c8484846117ba565b610a5e8433610a5985604051806060016040528060288152602001612663602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611664565b61169e565b5060019392505050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016108ee9061242c565b670de0b6b3a76400006103e8610aa760025490565b610ab29060016124b1565b610abc91906124c8565b610ac691906124c8565b811015610b2d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108ee565b610b3f81670de0b6b3a76400006124b1565b60095550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109a0918590610a599086611428565b306000908152602081905260408120546014549091821580610b9b575081155b15610ba557505050565b600a54610bb39060146124b1565b831115610bcb57600a54610bc89060146124b1565b92505b82610bd581612048565b600060148190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b50505050505050565b6005546001600160a01b03163314610c605760405162461bcd60e51b81526004016108ee9061242c565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610cd75760405162461bcd60e51b81526004016108ee9061242c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610d115760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d665760405162461bcd60e51b81526004016108ee9061242c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610da35760405162461bcd60e51b81526004016108ee9061242c565b600c8054911515620100000262ff000019909216919091179055565b60606004805461091090612461565b6005546001600160a01b03163314610df85760405162461bcd60e51b81526004016108ee9061242c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e9f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108ee565b610ea98282612208565b5050565b6005546001600160a01b03163314610ed75760405162461bcd60e51b81526004016108ee9061242c565b600c8054911515620100000262ffff001990921691909117610100179055565b60006109a03384610a598560405180606001604052806025815260200161268b602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611664565b60006109a03384846117ba565b6005546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016108ee9061242c565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110045760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461108d5760405162461bcd60e51b81526004016108ee9061242c565b670de0b6b3a76400006103e86110a260025490565b6110ad9060056124b1565b6110b791906124c8565b6110c191906124c8565b81101561111c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108ee565b61112e81670de0b6b3a76400006124b1565b600b5550565b6005546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108ee9061242c565b6013819055601255565b6005546000906001600160a01b031633146111955760405162461bcd60e51b81526004016108ee9061242c565b620186a06111a260025490565b6111ad9060016124b1565b6111b791906124c8565b8210156112245760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108ee565b6103e861123060025490565b61123b9060056124b1565b61124591906124c8565b8211156112b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108ee565b50600a81905560015b919050565b6005546000906001600160a01b031633146112ec5760405162461bcd60e51b81526004016108ee9061242c565b50600f805460ff19169055600190565b6005546001600160a01b031633146113265760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03811661138b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ee565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114145760405162461bcd60e51b81526004016108ee9061242c565b50600c805460ff1916600190811790915590565b60008061143583856124ea565b9050838110156114875760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ee565b9392505050565b6001600160a01b0383166114b45760405162461bcd60e51b81526004016108ee906124fd565b6001600160a01b0382166114da5760405162461bcd60e51b81526004016108ee90612542565b6115178160405180606001604052806026815260200161263d602691396001600160a01b0386166000908152602081905260409020549190611664565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115469082611428565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b6000826000036115b2575060006109a4565b60006115be83856124b1565b9050826115cb85836124c8565b146114875760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ee565b600061148783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061225c565b600081848411156116885760405162461bcd60e51b81526004016108ee91906122a3565b5060006116958486612585565b95945050505050565b6001600160a01b0383166117005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ee565b6001600160a01b0382166117615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ee565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101611593565b6001600160a01b0383166117e05760405162461bcd60e51b81526004016108ee906124fd565b6001600160a01b0382166118065760405162461bcd60e51b81526004016108ee90612542565b6001600160a01b0382166000908152600e602052604090205460ff1615801561184857506001600160a01b0383166000908152600e602052604090205460ff16155b6118ae5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b60648201526084016108ee565b806000036118c7576118c28383600061148e565b505050565b600c5460ff1615611d84576005546001600160a01b038481169116148015906118fe57506005546001600160a01b03838116911614155b801561191257506001600160a01b03821615155b801561192957506001600160a01b03821661dead14155b801561193f5750600654600160a01b900460ff16155b15611d8457600c54610100900460ff166119d7576001600160a01b03831660009081526015602052604090205460ff168061199257506001600160a01b03821660009081526015602052604090205460ff165b6119d75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ee565b600f5460ff1615611b1e576005546001600160a01b03838116911614801590611a3257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a7057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b1e57326000908152600d60205260409020544311611b0b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016108ee565b326000908152600d602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611b5f57506001600160a01b03821660009081526016602052604090205460ff16155b15611c4357600954811115611bd45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ee565b600b546001600160a01b038316600090815260208190526040902054611bfa90836124ea565b1115611c3e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ee565b611d84565b6001600160a01b03821660009081526017602052604090205460ff168015611c8457506001600160a01b03831660009081526016602052604090205460ff16155b15611cfa57600954811115611c3e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ee565b6001600160a01b03821660009081526016602052604090205460ff16611d8457600b546001600160a01b038316600090815260208190526040902054611d4090836124ea565b1115611d845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ee565b30600090815260208190526040902054600a5481108015908190611db05750600c5462010000900460ff165b8015611dc65750600654600160a01b900460ff16155b8015611deb57506001600160a01b03851660009081526017602052604090205460ff16155b8015611e1057506001600160a01b03851660009081526015602052604090205460ff16155b8015611e3557506001600160a01b03841660009081526015602052604090205460ff16155b15611e63576006805460ff60a01b1916600160a01b179055611e55610b7b565b6006805460ff60a01b191690555b6006546001600160a01b03851660009081526017602052604081205460ff600160a01b9093048316159216158015611eb457506001600160a01b03871660009081526017602052604090205460ff16155b6001600160a01b03881660009081526015602052604090205490915060ff1680611ef657506001600160a01b03861660009081526015602052604090205460ff165b80611efe5750805b15611f0857600091505b60008215612033576001600160a01b03871660009081526017602052604090205460ff168015611f3a57506000601254115b15611f9857611f5f6064611f59601254896115a090919063ffffffff16565b90611622565b905060125460135482611f7291906124b1565b611f7c91906124c8565b60146000828254611f8d91906124ea565b909155506120159050565b6001600160a01b03881660009081526017602052604090205460ff168015611fc257506000601054115b1561201557611fe16064611f59601054896115a090919063ffffffff16565b905060105460115482611ff491906124b1565b611ffe91906124c8565b6014600082825461200f91906124ea565b90915550505b80156120265761202688308361148e565b6120308187612585565b95505b61203e88888861148e565b5050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061207d5761207d612598565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211f91906125ae565b8160018151811061213257612132612598565b60200260200101906001600160a01b031690816001600160a01b03168152505061217d307f00000000000000000000000000000000000000000000000000000000000000008461169e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121d29085906000908690309042906004016125cb565b600060405180830381600087803b1580156121ec57600080fd5b505af1158015612200573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000818361227d5760405162461bcd60e51b81526004016108ee91906122a3565b50600061169584866124c8565b60006020828403121561229c57600080fd5b5035919050565b600060208083528351808285015260005b818110156122d0578581018301518582016040015282016122b4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461230657600080fd5b50565b6000806040838503121561231c57600080fd5b8235612327816122f1565b946020939093013593505050565b60006020828403121561234757600080fd5b8135611487816122f1565b803580151581146112ba57600080fd5b6000806040838503121561237557600080fd5b8235612380816122f1565b915061238e60208401612352565b90509250929050565b6000806000606084860312156123ac57600080fd5b83356123b7816122f1565b925060208401356123c7816122f1565b929592945050506040919091013590565b6000602082840312156123ea57600080fd5b61148782612352565b6000806040838503121561240657600080fd5b8235612411816122f1565b91506020830135612421816122f1565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061247557607f821691505b60208210810361249557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109a4576109a461249b565b6000826124e557634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109a4576109a461249b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109a4576109a461249b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125c057600080fd5b8151611487816122f1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561261b5784516001600160a01b0316835293830193918301916001016125f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088a792bf62893cb4f4497e4de2a9f7e8e8a668b7584e5f06e08bc4416f950f5864736f6c6343000811003345524332303a207472616e7366657220746f20746865207a65726f206164647245524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e736665722066726f6d20746865207a65726f2061644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d062000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d062000000000000000000000000020eff6577a54a36dd360816d931c0f02133dcd490000000000000000000000009d2128ffd2114cf587bc565f0ef9074cb663ef610000000000000000000000002f006ceee65fca293a4e9f05d5d83336b018097900000000000000000000000089370c801a0e4be0181bad4dcda108ebd5009502000000000000000000000000ab5ec4115d82c22795f02304ff90733ebe53150000000000000000000000000070ab55737a6bfe4a029b0d028097118fba477d8e0000000000000000000000002ca66df63d54583a2f2ab3dbd83b22ba1e706ae9000000000000000000000000a030ee60bfc3033a70aad93ad5e334b4db4a5025000000000000000000000000e540289afe63c84b049805c48db268ceb14acdb0000000000000000000000000421f4f6c0f392b207f868adbbcc7369804679e1500000000000000000000000065bd581902a0a49ff753e026ed3efc0c9a40fd010000000000000000000000000f670994967e6d82b2ec1f977debe45bd75d64b3000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000012a05f200000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b2800

Deployed Bytecode

0x6080604052600436106102975760003560e01c80638da5cb5b1161015a578063c18bc195116100c1578063dd62ed3e1161007a578063dd62ed3e14610808578063e2f456051461084e578063e884f26014610864578063f2fde38b14610879578063f5ed243014610899578063f8b45b05146108ae57600080fd5b8063c18bc19514610762578063c82973fb14610782578063c876d0b9146107a2578063c8c8ebe4146107bc578063d257b34f146107d2578063d85ba063146107f257600080fd5b8063a457c2d711610113578063a457c2d714610693578063a9059cbb146106b3578063b62496f5146106d3578063b91ebc8814610703578063bbc0c74214610723578063c02466681461074257600080fd5b80638da5cb5b146105ea5780639213691314610608578063924de9b71461061e57806395d89b411461063e5780639a7a23d614610653578063a26577781461067357600080fd5b806349bd5a5e116101fe57806370a08231116101b757806370a082311461053f578063715018a614610575578063751039fc1461058a5780637571336a1461059f5780637bce5a04146105bf5780638a8c523c146105d557600080fd5b806349bd5a5e1461046d5780634a62bb65146104a15780634fbee193146104bb5780636a486a8e146104f45780636ac5eeee1461050a5780636ddd17131461051f57600080fd5b806318160ddd1161025057806318160ddd146103bc5780631f3fed8f146103db57806323b872dd146103f1578063313ce5671461041157806336a74f0b1461042d578063395093511461044d57600080fd5b806303527509146102a357806306fdde03146102c5578063095ea7b3146102f057806310d5de5314610320578063129476ab146103505780631694505e1461037057600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be36600461228a565b6108c4565b005b3480156102d157600080fd5b506102da610901565b6040516102e791906122a3565b60405180910390f35b3480156102fc57600080fd5b5061031061030b366004612309565b610993565b60405190151581526020016102e7565b34801561032c57600080fd5b5061031061033b366004612335565b60166020526000908152604090205460ff1681565b34801561035c57600080fd5b506102c361036b366004612362565b6109aa565b34801561037c57600080fd5b506103a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102e7565b3480156103c857600080fd5b506002545b6040519081526020016102e7565b3480156103e757600080fd5b506103cd60145481565b3480156103fd57600080fd5b5061031061040c366004612397565b6109ff565b34801561041d57600080fd5b50604051601281526020016102e7565b34801561043957600080fd5b506102c361044836600461228a565b610a68565b34801561045957600080fd5b50610310610468366004612309565b610b45565b34801561047957600080fd5b506103a47f000000000000000000000000046985296fe88c3d52b0ae721114557727ca94ab81565b3480156104ad57600080fd5b50600c546103109060ff1681565b3480156104c757600080fd5b506103106104d6366004612335565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561050057600080fd5b506103cd60125481565b34801561051657600080fd5b506102c3610b7b565b34801561052b57600080fd5b50600c546103109062010000900460ff1681565b34801561054b57600080fd5b506103cd61055a366004612335565b6001600160a01b031660009081526020819052604090205490565b34801561058157600080fd5b506102c3610c36565b34801561059657600080fd5b50610310610caa565b3480156105ab57600080fd5b506102c36105ba366004612362565b610ce7565b3480156105cb57600080fd5b506103cd60115481565b3480156105e157600080fd5b506102c3610d3c565b3480156105f657600080fd5b506005546001600160a01b03166103a4565b34801561061457600080fd5b506103cd60135481565b34801561062a57600080fd5b506102c36106393660046123d8565b610d79565b34801561064a57600080fd5b506102da610dbf565b34801561065f57600080fd5b506102c361066e366004612362565b610dce565b34801561067f57600080fd5b506102c361068e3660046123d8565b610ead565b34801561069f57600080fd5b506103106106ae366004612309565b610ef7565b3480156106bf57600080fd5b506103106106ce366004612309565b610f46565b3480156106df57600080fd5b506103106106ee366004612335565b60176020526000908152604090205460ff1681565b34801561070f57600080fd5b506102c361071e366004612335565b610f53565b34801561072f57600080fd5b50600c5461031090610100900460ff1681565b34801561074e57600080fd5b506102c361075d366004612362565b610fda565b34801561076e57600080fd5b506102c361077d36600461228a565b611063565b34801561078e57600080fd5b506102c361079d36600461228a565b611134565b3480156107ae57600080fd5b50600f546103109060ff1681565b3480156107c857600080fd5b506103cd60095481565b3480156107de57600080fd5b506103106107ed36600461228a565b611168565b3480156107fe57600080fd5b506103cd60105481565b34801561081457600080fd5b506103cd6108233660046123f3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561085a57600080fd5b506103cd600a5481565b34801561087057600080fd5b506103106112bf565b34801561088557600080fd5b506102c3610894366004612335565b6112fc565b3480156108a557600080fd5b506103106113e7565b3480156108ba57600080fd5b506103cd600b5481565b6005546001600160a01b031633146108f75760405162461bcd60e51b81526004016108ee9061242c565b60405180910390fd5b6011819055601055565b60606003805461091090612461565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90612461565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b60006109a033848461169e565b5060015b92915050565b6005546001600160a01b031633146109d45760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6000610a0c8484846117ba565b610a5e8433610a5985604051806060016040528060288152602001612663602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611664565b61169e565b5060019392505050565b6005546001600160a01b03163314610a925760405162461bcd60e51b81526004016108ee9061242c565b670de0b6b3a76400006103e8610aa760025490565b610ab29060016124b1565b610abc91906124c8565b610ac691906124c8565b811015610b2d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108ee565b610b3f81670de0b6b3a76400006124b1565b60095550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916109a0918590610a599086611428565b306000908152602081905260408120546014549091821580610b9b575081155b15610ba557505050565b600a54610bb39060146124b1565b831115610bcb57600a54610bc89060146124b1565b92505b82610bd581612048565b600060148190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b50505050505050565b6005546001600160a01b03163314610c605760405162461bcd60e51b81526004016108ee9061242c565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b03163314610cd75760405162461bcd60e51b81526004016108ee9061242c565b50600c805460ff19169055600190565b6005546001600160a01b03163314610d115760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d665760405162461bcd60e51b81526004016108ee9061242c565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610da35760405162461bcd60e51b81526004016108ee9061242c565b600c8054911515620100000262ff000019909216919091179055565b60606004805461091090612461565b6005546001600160a01b03163314610df85760405162461bcd60e51b81526004016108ee9061242c565b7f000000000000000000000000046985296fe88c3d52b0ae721114557727ca94ab6001600160a01b0316826001600160a01b031603610e9f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016108ee565b610ea98282612208565b5050565b6005546001600160a01b03163314610ed75760405162461bcd60e51b81526004016108ee9061242c565b600c8054911515620100000262ffff001990921691909117610100179055565b60006109a03384610a598560405180606001604052806025815260200161268b602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611664565b60006109a03384846117ba565b6005546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016108ee9061242c565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110045760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461108d5760405162461bcd60e51b81526004016108ee9061242c565b670de0b6b3a76400006103e86110a260025490565b6110ad9060056124b1565b6110b791906124c8565b6110c191906124c8565b81101561111c5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108ee565b61112e81670de0b6b3a76400006124b1565b600b5550565b6005546001600160a01b0316331461115e5760405162461bcd60e51b81526004016108ee9061242c565b6013819055601255565b6005546000906001600160a01b031633146111955760405162461bcd60e51b81526004016108ee9061242c565b620186a06111a260025490565b6111ad9060016124b1565b6111b791906124c8565b8210156112245760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108ee565b6103e861123060025490565b61123b9060056124b1565b61124591906124c8565b8211156112b15760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108ee565b50600a81905560015b919050565b6005546000906001600160a01b031633146112ec5760405162461bcd60e51b81526004016108ee9061242c565b50600f805460ff19169055600190565b6005546001600160a01b031633146113265760405162461bcd60e51b81526004016108ee9061242c565b6001600160a01b03811661138b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ee565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546000906001600160a01b031633146114145760405162461bcd60e51b81526004016108ee9061242c565b50600c805460ff1916600190811790915590565b60008061143583856124ea565b9050838110156114875760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108ee565b9392505050565b6001600160a01b0383166114b45760405162461bcd60e51b81526004016108ee906124fd565b6001600160a01b0382166114da5760405162461bcd60e51b81526004016108ee90612542565b6115178160405180606001604052806026815260200161263d602691396001600160a01b0386166000908152602081905260409020549190611664565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115469082611428565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b6000826000036115b2575060006109a4565b60006115be83856124b1565b9050826115cb85836124c8565b146114875760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108ee565b600061148783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061225c565b600081848411156116885760405162461bcd60e51b81526004016108ee91906122a3565b5060006116958486612585565b95945050505050565b6001600160a01b0383166117005760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ee565b6001600160a01b0382166117615760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ee565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101611593565b6001600160a01b0383166117e05760405162461bcd60e51b81526004016108ee906124fd565b6001600160a01b0382166118065760405162461bcd60e51b81526004016108ee90612542565b6001600160a01b0382166000908152600e602052604090205460ff1615801561184857506001600160a01b0383166000908152600e602052604090205460ff16155b6118ae5760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b60648201526084016108ee565b806000036118c7576118c28383600061148e565b505050565b600c5460ff1615611d84576005546001600160a01b038481169116148015906118fe57506005546001600160a01b03838116911614155b801561191257506001600160a01b03821615155b801561192957506001600160a01b03821661dead14155b801561193f5750600654600160a01b900460ff16155b15611d8457600c54610100900460ff166119d7576001600160a01b03831660009081526015602052604090205460ff168061199257506001600160a01b03821660009081526015602052604090205460ff165b6119d75760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ee565b600f5460ff1615611b1e576005546001600160a01b03838116911614801590611a3257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a7057507f000000000000000000000000046985296fe88c3d52b0ae721114557727ca94ab6001600160a01b0316826001600160a01b031614155b15611b1e57326000908152600d60205260409020544311611b0b5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016108ee565b326000908152600d602052604090204390555b6001600160a01b03831660009081526017602052604090205460ff168015611b5f57506001600160a01b03821660009081526016602052604090205460ff16155b15611c4357600954811115611bd45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ee565b600b546001600160a01b038316600090815260208190526040902054611bfa90836124ea565b1115611c3e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ee565b611d84565b6001600160a01b03821660009081526017602052604090205460ff168015611c8457506001600160a01b03831660009081526016602052604090205460ff16155b15611cfa57600954811115611c3e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108ee565b6001600160a01b03821660009081526016602052604090205460ff16611d8457600b546001600160a01b038316600090815260208190526040902054611d4090836124ea565b1115611d845760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ee565b30600090815260208190526040902054600a5481108015908190611db05750600c5462010000900460ff165b8015611dc65750600654600160a01b900460ff16155b8015611deb57506001600160a01b03851660009081526017602052604090205460ff16155b8015611e1057506001600160a01b03851660009081526015602052604090205460ff16155b8015611e3557506001600160a01b03841660009081526015602052604090205460ff16155b15611e63576006805460ff60a01b1916600160a01b179055611e55610b7b565b6006805460ff60a01b191690555b6006546001600160a01b03851660009081526017602052604081205460ff600160a01b9093048316159216158015611eb457506001600160a01b03871660009081526017602052604090205460ff16155b6001600160a01b03881660009081526015602052604090205490915060ff1680611ef657506001600160a01b03861660009081526015602052604090205460ff165b80611efe5750805b15611f0857600091505b60008215612033576001600160a01b03871660009081526017602052604090205460ff168015611f3a57506000601254115b15611f9857611f5f6064611f59601254896115a090919063ffffffff16565b90611622565b905060125460135482611f7291906124b1565b611f7c91906124c8565b60146000828254611f8d91906124ea565b909155506120159050565b6001600160a01b03881660009081526017602052604090205460ff168015611fc257506000601054115b1561201557611fe16064611f59601054896115a090919063ffffffff16565b905060105460115482611ff491906124b1565b611ffe91906124c8565b6014600082825461200f91906124ea565b90915550505b80156120265761202688308361148e565b6120308187612585565b95505b61203e88888861148e565b5050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061207d5761207d612598565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211f91906125ae565b8160018151811061213257612132612598565b60200260200101906001600160a01b031690816001600160a01b03168152505061217d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461169e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121d29085906000908690309042906004016125cb565b600060405180830381600087803b1580156121ec57600080fd5b505af1158015612200573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6000818361227d5760405162461bcd60e51b81526004016108ee91906122a3565b50600061169584866124c8565b60006020828403121561229c57600080fd5b5035919050565b600060208083528351808285015260005b818110156122d0578581018301518582016040015282016122b4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461230657600080fd5b50565b6000806040838503121561231c57600080fd5b8235612327816122f1565b946020939093013593505050565b60006020828403121561234757600080fd5b8135611487816122f1565b803580151581146112ba57600080fd5b6000806040838503121561237557600080fd5b8235612380816122f1565b915061238e60208401612352565b90509250929050565b6000806000606084860312156123ac57600080fd5b83356123b7816122f1565b925060208401356123c7816122f1565b929592945050506040919091013590565b6000602082840312156123ea57600080fd5b61148782612352565b6000806040838503121561240657600080fd5b8235612411816122f1565b91506020830135612421816122f1565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061247557607f821691505b60208210810361249557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109a4576109a461249b565b6000826124e557634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156109a4576109a461249b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109a4576109a461249b565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125c057600080fd5b8151611487816122f1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561261b5784516001600160a01b0316835293830193918301916001016125f6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122088a792bf62893cb4f4497e4de2a9f7e8e8a668b7584e5f06e08bc4416f950f5864736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d062000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000d000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d062000000000000000000000000020eff6577a54a36dd360816d931c0f02133dcd490000000000000000000000009d2128ffd2114cf587bc565f0ef9074cb663ef610000000000000000000000002f006ceee65fca293a4e9f05d5d83336b018097900000000000000000000000089370c801a0e4be0181bad4dcda108ebd5009502000000000000000000000000ab5ec4115d82c22795f02304ff90733ebe53150000000000000000000000000070ab55737a6bfe4a029b0d028097118fba477d8e0000000000000000000000002ca66df63d54583a2f2ab3dbd83b22ba1e706ae9000000000000000000000000a030ee60bfc3033a70aad93ad5e334b4db4a5025000000000000000000000000e540289afe63c84b049805c48db268ceb14acdb0000000000000000000000000421f4f6c0f392b207f868adbbcc7369804679e1500000000000000000000000065bd581902a0a49ff753e026ed3efc0c9a40fd010000000000000000000000000f670994967e6d82b2ec1f977debe45bd75d64b3000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000000000000000000000000000000000012a05f200000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b280000000000000000000000000000000000000000000000000000000000ee6b2800

-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0x125C57Ec9f6f16f0eBb3aA3e2Ef987A2489d0620
Arg [1] : _distribs (address[]): 0x125C57Ec9f6f16f0eBb3aA3e2Ef987A2489d0620,0x20eFf6577A54a36DD360816d931c0F02133DcD49,0x9d2128FfD2114Cf587BC565F0eF9074CB663Ef61,0x2f006CeEE65fca293a4e9F05D5D83336b0180979,0x89370c801A0E4Be0181bAd4DcdA108ebD5009502,0xaB5EC4115D82C22795f02304Ff90733EbE531500,0x70AB55737a6BfE4A029b0d028097118FbA477D8e,0x2ca66DF63D54583a2F2ab3dbD83b22bA1e706aE9,0xa030Ee60BfC3033A70Aad93ad5E334B4DB4a5025,0xe540289AFe63C84B049805C48Db268CEb14AcdB0,0x421F4f6c0F392b207F868adBBcc7369804679e15,0x65Bd581902a0a49ff753E026ED3EFc0C9a40Fd01,0x0F670994967e6D82b2eC1f977DEBe45bd75D64B3
Arg [2] : _amounts (uint256[]): 80000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000,4000000000

-----Encoded View---------------
31 Constructor Arguments found :
Arg [0] : 000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d0620
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 000000000000000000000000125c57ec9f6f16f0ebb3aa3e2ef987a2489d0620
Arg [5] : 00000000000000000000000020eff6577a54a36dd360816d931c0f02133dcd49
Arg [6] : 0000000000000000000000009d2128ffd2114cf587bc565f0ef9074cb663ef61
Arg [7] : 0000000000000000000000002f006ceee65fca293a4e9f05d5d83336b0180979
Arg [8] : 00000000000000000000000089370c801a0e4be0181bad4dcda108ebd5009502
Arg [9] : 000000000000000000000000ab5ec4115d82c22795f02304ff90733ebe531500
Arg [10] : 00000000000000000000000070ab55737a6bfe4a029b0d028097118fba477d8e
Arg [11] : 0000000000000000000000002ca66df63d54583a2f2ab3dbd83b22ba1e706ae9
Arg [12] : 000000000000000000000000a030ee60bfc3033a70aad93ad5e334b4db4a5025
Arg [13] : 000000000000000000000000e540289afe63c84b049805c48db268ceb14acdb0
Arg [14] : 000000000000000000000000421f4f6c0f392b207f868adbbcc7369804679e15
Arg [15] : 00000000000000000000000065bd581902a0a49ff753e026ed3efc0c9a40fd01
Arg [16] : 0000000000000000000000000f670994967e6d82b2ec1f977debe45bd75d64b3
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [18] : 00000000000000000000000000000000000000000000000000000012a05f2000
Arg [19] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [20] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [21] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [22] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [23] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [24] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [25] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [26] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [27] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [28] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [29] : 00000000000000000000000000000000000000000000000000000000ee6b2800
Arg [30] : 00000000000000000000000000000000000000000000000000000000ee6b2800


Deployed Bytecode Sourcemap

29474:13303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35604:159;;;;;;;;;;-1:-1:-1;35604:159:0;;;;;:::i;:::-;;:::i;:::-;;7572:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9746:169;;;;;;;;;;-1:-1:-1;9746:169:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;9746:169:0;1208:187:1;30789:64:0;;;;;;;;;;-1:-1:-1;30789:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36135:134;;;;;;;;;;-1:-1:-1;36135:134:0;;;;;:::i;:::-;;:::i;29555:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2328:32:1;;;2310:51;;2298:2;2283:18;29555:51:0;2137:230:1;8695:108:0;;;;;;;;;;-1:-1:-1;8783:12:0;;8695:108;;;2518:25:1;;;2506:2;2491:18;8695:108:0;2372:177:1;30604:33:0;;;;;;;;;;;;;;;;10398:355;;;;;;;;;;-1:-1:-1;10398:355:0;;;;;:::i;:::-;;:::i;8536:93::-;;;;;;;;;;-1:-1:-1;8536:93:0;;8619:2;3157:36:1;;3145:2;3130:18;8536:93:0;3015:184:1;34785:235:0;;;;;;;;;;-1:-1:-1;34785:235:0;;;;;:::i;:::-;;:::i;11163:218::-;;;;;;;;;;-1:-1:-1;11163:218:0;;;;;:::i;:::-;;:::i;29613:38::-;;;;;;;;;;;;;;;30029:33;;;;;;;;;;-1:-1:-1;30029:33:0;;;;;;;;36938:125;;;;;;;;;;-1:-1:-1;36938:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37027:28:0;37003:4;37027:28;;;:19;:28;;;;;;;;;36938:125;30528:28;;;;;;;;;;;;;;;;42175:599;;;;;;;;;;;;;:::i;30109:31::-;;;;;;;;;;-1:-1:-1;30109:31:0;;;;;;;;;;;8867:127;;;;;;;;;;-1:-1:-1;8867:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8968:18:0;8941:7;8968:18;;;;;;;;;;;;8867:127;22074:148;;;;;;;;;;;;;:::i;33728:120::-;;;;;;;;;;;;;:::i;35253:144::-;;;;;;;;;;-1:-1:-1;35253:144:0;;;;;:::i;:::-;;:::i;30488:30::-;;;;;;;;;;;;;;;;33563:112;;;;;;;;;;;;;:::i;21430:79::-;;;;;;;;;;-1:-1:-1;21495:6:0;;-1:-1:-1;;;;;21495:6:0;21430:79;;30563:31;;;;;;;;;;;;;;;;35494:101;;;;;;;;;;-1:-1:-1;35494:101:0;;;;;:::i;:::-;;:::i;7792:104::-;;;;;;;;;;;;;:::i;36278:242::-;;;;;;;;;;-1:-1:-1;36278:242:0;;;;;:::i;:::-;;:::i;34192:126::-;;;;;;;;;;-1:-1:-1;34192:126:0;;;;;:::i;:::-;;:::i;11885:269::-;;;;;;;;;;-1:-1:-1;11885:269:0;;;;;:::i;:::-;;:::i;9208:175::-;;;;;;;;;;-1:-1:-1;9208:175:0;;;;;:::i;:::-;;:::i;31012:58::-;;;;;;;;;;-1:-1:-1;31012:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36727:202;;;;;;;;;;-1:-1:-1;36727:202:0;;;;;:::i;:::-;;:::i;30069:33::-;;;;;;;;;;-1:-1:-1;30069:33:0;;;;;;;;;;;35944:182;;;;;;;;;;-1:-1:-1;35944:182:0;;;;;:::i;:::-;;:::i;35029:215::-;;;;;;;;;;-1:-1:-1;35029:215:0;;;;;:::i;:::-;;:::i;35772:163::-;;;;;;;;;;-1:-1:-1;35772:163:0;;;;;:::i;:::-;;:::i;30405:39::-;;;;;;;;;;-1:-1:-1;30405:39:0;;;;;;;;29910:35;;;;;;;;;;;;;;;;34390:386;;;;;;;;;;-1:-1:-1;34390:386:0;;;;;:::i;:::-;;:::i;30454:27::-;;;;;;;;;;;;;;;;9447:151;;;;;;;;;;-1:-1:-1;9447:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9563:18:0;;;9536:7;9563:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9447:151;29952:33;;;;;;;;;;;;;;;;34049:134;;;;;;;;;;;;;:::i;22378:244::-;;;;;;;;;;-1:-1:-1;22378:244:0;;;;;:::i;:::-;;:::i;33856:132::-;;;;;;;;;;;;;:::i;29992:24::-;;;;;;;;;;;;;;;;35604:159;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;;;;;;;;;35683:15:::1;:31:::0;;;35725:12:::1;:30:::0;35604:159::o;7572:100::-;7626:13;7659:5;7652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7572:100;:::o;9746:169::-;9829:4;9846:39;254:10;9869:7;9878:6;9846:8;:39::i;:::-;-1:-1:-1;9903:4:0;9746:169;;;;;:::o;36135:134::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36226:19:0;;;::::1;;::::0;;;:10:::1;:19;::::0;;;;:35;;-1:-1:-1;;36226:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36135:134::o;10398:355::-;10538:4;10555:36;10565:6;10573:9;10584:6;10555:9;:36::i;:::-;10602:121;10611:6;254:10;10633:89;10671:6;10633:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10633:19:0;;;;;;:11;:19;;;;;;;;254:10;10633:33;;;;;;;;;;:37;:89::i;:::-;10602:8;:121::i;:::-;-1:-1:-1;10741:4:0;10398:355;;;;;:::o;34785:235::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;34905:4:::1;34899;34879:13;8783:12:::0;;;8695:108;34879:13:::1;:17;::::0;34895:1:::1;34879:17;:::i;:::-;:24;;;;:::i;:::-;34878:31;;;;:::i;:::-;34868:6;:41;;34860:101;;;::::0;-1:-1:-1;;;34860:101:0;;5465:2:1;34860:101:0::1;::::0;::::1;5447:21:1::0;5504:2;5484:18;;;5477:30;5543:34;5523:18;;;5516:62;-1:-1:-1;;;5594:18:1;;;5587:45;5649:19;;34860:101:0::1;5263:411:1::0;34860:101:0::1;34995:17;:6:::0;35005::::1;34995:17;:::i;:::-;34972:20;:40:::0;-1:-1:-1;34785:235:0:o;11163:218::-;254:10;11251:4;11300:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11300:34:0;;;;;;;;;;11251:4;;11268:83;;11291:7;;11300:50;;11339:10;11300:38;:50::i;42175:599::-;42257:4;42213:23;8968:18;;;;;;;;;;;42302;;8968;;42360:20;;;:46;;-1:-1:-1;42384:22:0;;42360:46;42357:60;;;42409:7;;;42175:599::o;42357:60::-;42451:18;;:23;;42472:2;42451:23;:::i;:::-;42433:15;:41;42430:111;;;42506:18;;:23;;42527:2;42506:23;:::i;:::-;42488:41;;42430:111;42583:15;42609:36;42583:15;42609:16;:36::i;:::-;42678:1;42657:18;:22;;;42711:15;;42703:63;;-1:-1:-1;;;;;42711:15:0;;;;42740:21;;42703:63;;42678:1;42703:63;42740:21;42711:15;42703:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;42175:599:0:o;22074:148::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;22165:6:::1;::::0;22144:40:::1;::::0;22181:1:::1;::::0;-1:-1:-1;;;;;22165:6:0::1;::::0;22144:40:::1;::::0;22181:1;;22144:40:::1;22195:6;:19:::0;;-1:-1:-1;;;;;;22195:19:0::1;::::0;;22074:148::o;33728:120::-;21643:6;;33780:4;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;33796:14:0::1;:22:::0;;-1:-1:-1;;33796:22:0::1;::::0;;;33728:120;:::o;35253:144::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35343:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35343:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35253:144::o;33563:112::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;33618:13:::1;:20:::0;;-1:-1:-1;;33649:18:0;;;;;33563:112::o;35494:101::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;35566:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35566:21:0;;::::1;::::0;;;::::1;::::0;;35494:101::o;7792:104::-;7848:13;7881:7;7874:14;;;;;:::i;36278:242::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;36385:13:::1;-1:-1:-1::0;;;;;36377:21:0::1;:4;-1:-1:-1::0;;;;;36377:21:0::1;::::0;36369:91:::1;;;::::0;-1:-1:-1;;;36369:91:0;;6091:2:1;36369:91:0::1;::::0;::::1;6073:21:1::0;6130:2;6110:18;;;6103:30;6169:34;6149:18;;;6142:62;6240:27;6220:18;;;6213:55;6285:19;;36369:91:0::1;5889:421:1::0;36369:91:0::1;36471:41;36500:4;36506:5;36471:28;:41::i;:::-;36278:242:::0;;:::o;34192:126::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;34260:13:::1;:20:::0;;34291:19;::::1;;::::0;::::1;-1:-1:-1::0;;34291:19:0;;;;;;;34260:20:::1;34291:19:::0;;;34192:126::o;11885:269::-;11978:4;11995:129;254:10;12018:7;12027:96;12066:15;12027:96;;;;;;;;;;;;;;;;;254:10;12027:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12027:34:0;;;;;;;;;;;;:38;:96::i;9208:175::-;9294:4;9311:42;254:10;9335:9;9346:6;9311:9;:42::i;36727:202::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;36858:15:::1;::::0;36815:59:::1;::::0;-1:-1:-1;;;;;36858:15:0;;::::1;::::0;36815:59;::::1;::::0;::::1;::::0;36858:15:::1;::::0;36815:59:::1;36885:15;:36:::0;;-1:-1:-1;;;;;;36885:36:0::1;-1:-1:-1::0;;;;;36885:36:0;;;::::1;::::0;;;::::1;::::0;;36727:202::o;35944:182::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36029:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36029:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36084:34;;1348:41:1;;;36084:34:0::1;::::0;1321:18:1;36084:34:0::1;;;;;;;35944:182:::0;;:::o;35029:215::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;35151:4:::1;35145;35125:13;8783:12:::0;;;8695:108;35125:13:::1;:17;::::0;35141:1:::1;35125:17;:::i;:::-;:24;;;;:::i;:::-;35124:31;;;;:::i;:::-;35114:6;:41;;35106:90;;;::::0;-1:-1:-1;;;35106:90:0;;6517:2:1;35106:90:0::1;::::0;::::1;6499:21:1::0;6556:2;6536:18;;;6529:30;6595:34;6575:18;;;6568:62;-1:-1:-1;;;6646:18:1;;;6639:34;6690:19;;35106:90:0::1;6315:400:1::0;35106:90:0::1;35219:17;:6:::0;35229::::1;35219:17;:::i;:::-;35207:9;:29:::0;-1:-1:-1;35029:215:0:o;35772:163::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;35852:16:::1;:32:::0;;;35895:13:::1;:32:::0;35772:163::o;34390:386::-;21643:6;;34471:4;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;34528:6:::1;34508:13;8783:12:::0;;;8695:108;34508:13:::1;:17;::::0;34524:1:::1;34508:17;:::i;:::-;:26;;;;:::i;:::-;34495:9;:39;;34487:105;;;::::0;-1:-1:-1;;;34487:105:0;;6922:2:1;34487:105:0::1;::::0;::::1;6904:21:1::0;6961:2;6941:18;;;6934:30;7000:34;6980:18;;;6973:62;-1:-1:-1;;;7051:18:1;;;7044:51;7112:19;;34487:105:0::1;6720:417:1::0;34487:105:0::1;34644:4;34624:13;8783:12:::0;;;8695:108;34624:13:::1;:17;::::0;34640:1:::1;34624:17;:::i;:::-;:24;;;;:::i;:::-;34611:9;:37;;34603:102;;;::::0;-1:-1:-1;;;34603:102:0;;7344:2:1;34603:102:0::1;::::0;::::1;7326:21:1::0;7383:2;7363:18;;;7356:30;7422:34;7402:18;;;7395:62;-1:-1:-1;;;7473:18:1;;;7466:50;7533:19;;34603:102:0::1;7142:416:1::0;34603:102:0::1;-1:-1:-1::0;34716:18:0::1;:30:::0;;;34764:4:::1;21713:1;34390:386:::0;;;:::o;34049:134::-;21643:6;;34109:4;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;34125:20:0::1;:28:::0;;-1:-1:-1;;34125:28:0::1;::::0;;;34049:134;:::o;22378:244::-;21643:6;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22467:22:0;::::1;22459:73;;;::::0;-1:-1:-1;;;22459:73:0;;7765:2:1;22459:73:0::1;::::0;::::1;7747:21:1::0;7804:2;7784:18;;;7777:30;7843:34;7823:18;;;7816:62;-1:-1:-1;;;7894:18:1;;;7887:36;7940:19;;22459:73:0::1;7563:402:1::0;22459:73:0::1;22569:6;::::0;22548:38:::1;::::0;-1:-1:-1;;;;;22548:38:0;;::::1;::::0;22569:6:::1;::::0;22548:38:::1;::::0;22569:6:::1;::::0;22548:38:::1;22597:6;:17:::0;;-1:-1:-1;;;;;;22597:17:0::1;-1:-1:-1::0;;;;;22597:17:0;;;::::1;::::0;;;::::1;::::0;;22378:244::o;33856:132::-;21643:6;;33920:4;;-1:-1:-1;;;;;21643:6:0;254:10;21643:22;21635:67;;;;-1:-1:-1;;;21635:67:0;;;;;;;:::i;:::-;-1:-1:-1;33937:14:0::1;:21:::0;;-1:-1:-1;;33937:21:0::1;33954:4;33937:21:::0;;::::1;::::0;;;33856:132;:::o;16462:182::-;16520:7;;16552:5;16556:1;16552;:5;:::i;:::-;16540:17;;16581:1;16576;:6;;16568:46;;;;-1:-1:-1;;;16568:46:0;;8302:2:1;16568:46:0;;;8284:21:1;8341:2;8321:18;;;8314:30;8380:29;8360:18;;;8353:57;8427:18;;16568:46:0;8100:351:1;16568:46:0;16635:1;16462:182;-1:-1:-1;;;16462:182:0:o;12645:575::-;-1:-1:-1;;;;;12785:20:0;;12777:70;;;;-1:-1:-1;;;12777:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12866:23:0;;12858:71;;;;-1:-1:-1;;;12858:71:0;;;;;;;:::i;:::-;13024;13046:6;13024:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13024:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13004:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13129:20;;;;;;;:32;;13154:6;13129:24;:32::i;:::-;-1:-1:-1;;;;;13106:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13177:35;2518:25:1;;;13106:20:0;;13177:35;;;;;;2491:18:1;13177:35:0;;;;;;;;12645:575;;;:::o;17821:473::-;17879:7;18124:1;18129;18124:6;18120:47;;-1:-1:-1;18154:1:0;18147:8;;18120:47;18180:9;18192:5;18196:1;18192;:5;:::i;:::-;18180:17;-1:-1:-1;18225:1:0;18216:5;18220:1;18180:17;18216:5;:::i;:::-;:10;18208:56;;;;-1:-1:-1;;;18208:56:0;;9468:2:1;18208:56:0;;;9450:21:1;9507:2;9487:18;;;9480:30;9546:34;9526:18;;;9519:62;-1:-1:-1;;;9597:18:1;;;9590:31;9638:19;;18208:56:0;9266:397:1;18771:132:0;18829:7;18856:39;18860:1;18863;18856:39;;;;;;;;;;;;;;;;;:3;:39::i;17368:193::-;17454:7;17490:12;17482:6;;;;17474:29;;;;-1:-1:-1;;;17474:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17514:9:0;17526:5;17530:1;17526;:5;:::i;:::-;17514:17;17368:193;-1:-1:-1;;;;;17368:193:0:o;15081:381::-;-1:-1:-1;;;;;15217:19:0;;15209:68;;;;-1:-1:-1;;;15209:68:0;;10003:2:1;15209:68:0;;;9985:21:1;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:34;10176:19;;15209:68:0;9801:400:1;15209:68:0;-1:-1:-1;;;;;15296:21:0;;15288:68;;;;-1:-1:-1;;;15288:68:0;;10408:2:1;15288:68:0;;;10390:21:1;10447:2;10427:18;;;10420:30;10486:34;10466:18;;;10459:62;-1:-1:-1;;;10537:18:1;;;10530:32;10579:19;;15288:68:0;10206:398:1;15288:68:0;-1:-1:-1;;;;;15370:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15422:32;;2518:25:1;;;15422:32:0;;2491:18:1;15422:32:0;2372:177:1;37072:3963:0;-1:-1:-1;;;;;37204:18:0;;37196:68;;;;-1:-1:-1;;;37196:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37283:16:0;;37275:64;;;;-1:-1:-1;;;37275:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37359:14:0;;;;;;:10;:14;;;;;;;;37358:15;:36;;;;-1:-1:-1;;;;;;37378:16:0;;;;;;:10;:16;;;;;;;;37377:17;37358:36;37350:98;;;;-1:-1:-1;;;37350:98:0;;10811:2:1;37350:98:0;;;10793:21:1;10850:2;10830:18;;;10823:30;10889:34;10869:18;;;10862:62;-1:-1:-1;;;10940:18:1;;;10933:47;10997:19;;37350:98:0;10609:413:1;37350:98:0;37463:6;37473:1;37463:11;37460:92;;37491:28;37507:4;37513:2;37517:1;37491:15;:28::i;:::-;37072:3963;;;:::o;37460:92::-;37568:14;;;;37565:1811;;;21495:6;;-1:-1:-1;;;;;37620:15:0;;;21495:6;;37620:15;;;;:49;;-1:-1:-1;21495:6:0;;-1:-1:-1;;;;;37656:13:0;;;21495:6;;37656:13;;37620:49;:86;;;;-1:-1:-1;;;;;;37690:16:0;;;;37620:86;:128;;;;-1:-1:-1;;;;;;37727:21:0;;37741:6;37727:21;;37620:128;:158;;;;-1:-1:-1;37770:8:0;;-1:-1:-1;;;37770:8:0;;;;37769:9;37620:158;37598:1767;;;37816:13;;;;;;;37812:148;;-1:-1:-1;;;;;37861:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37890:23:0;;;;;;:19;:23;;;;;;;;37861:52;37853:87;;;;-1:-1:-1;;;37853:87:0;;11229:2:1;37853:87:0;;;11211:21:1;11268:2;11248:18;;;11241:30;-1:-1:-1;;;11287:18:1;;;11280:52;11349:18;;37853:87:0;11027:346:1;37853:87:0;38119:20;;;;38115:423;;;21495:6;;-1:-1:-1;;;;;38167:13:0;;;21495:6;;38167:13;;;;:47;;;38198:15;-1:-1:-1;;;;;38184:30:0;:2;-1:-1:-1;;;;;38184:30:0;;;38167:47;:79;;;;;38232:13;-1:-1:-1;;;;;38218:28:0;:2;-1:-1:-1;;;;;38218:28:0;;;38167:79;38163:356;;;38311:9;38282:39;;;;:28;:39;;;;;;38324:12;-1:-1:-1;38274:140:0;;;;-1:-1:-1;;;38274:140:0;;11580:2:1;38274:140:0;;;11562:21:1;11619:2;11599:18;;;11592:30;11658:34;11638:18;;;11631:62;11729:34;11709:18;;;11702:62;-1:-1:-1;;;11780:19:1;;;11773:40;11830:19;;38274:140:0;11378:477:1;38274:140:0;38470:9;38441:39;;;;:28;:39;;;;;38483:12;38441:54;;38163:356;-1:-1:-1;;;;;38591:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;38627:35:0;;;;;;:31;:35;;;;;;;;38626:36;38591:71;38587:763;;;38709:20;;38699:6;:30;;38691:96;;;;-1:-1:-1;;;38691:96:0;;12062:2:1;38691:96:0;;;12044:21:1;12101:2;12081:18;;;12074:30;12140:34;12120:18;;;12113:62;-1:-1:-1;;;12191:18:1;;;12184:51;12252:19;;38691:96:0;11860:417:1;38691:96:0;38848:9;;-1:-1:-1;;;;;8968:18:0;;8941:7;8968:18;;;;;;;;;;;38822:22;;:6;:22;:::i;:::-;:35;;38814:67;;;;-1:-1:-1;;;38814:67:0;;12484:2:1;38814:67:0;;;12466:21:1;12523:2;12503:18;;;12496:30;-1:-1:-1;;;12542:18:1;;;12535:49;12601:18;;38814:67:0;12282:343:1;38814:67:0;38587:763;;;-1:-1:-1;;;;;38960:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;38994:37:0;;;;;;:31;:37;;;;;;;;38993:38;38960:71;38956:394;;;39078:20;;39068:6;:30;;39060:97;;;;-1:-1:-1;;;39060:97:0;;12832:2:1;39060:97:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;-1:-1:-1;;;12961:18:1;;;12954:52;13023:19;;39060:97:0;12630:418:1;38956:394:0;-1:-1:-1;;;;;39204:35:0;;;;;;:31;:35;;;;;;;;39200:150;;39297:9;;-1:-1:-1;;;;;8968:18:0;;8941:7;8968:18;;;;;;;;;;;39271:22;;:6;:22;:::i;:::-;:35;;39263:67;;;;-1:-1:-1;;;39263:67:0;;12484:2:1;39263:67:0;;;12466:21:1;12523:2;12503:18;;;12496:30;-1:-1:-1;;;12542:18:1;;;12535:49;12601:18;;39263:67:0;12282:343:1;39263:67:0;39438:4;39389:28;8968:18;;;;;;;;;;;39494;;39470:42;;;;;;;39544:35;;-1:-1:-1;39568:11:0;;;;;;;39544:35;:61;;;;-1:-1:-1;39597:8:0;;-1:-1:-1;;;39597:8:0;;;;39596:9;39544:61;:110;;;;-1:-1:-1;;;;;;39623:31:0;;;;;;:25;:31;;;;;;;;39622:32;39544:110;:153;;;;-1:-1:-1;;;;;;39672:25:0;;;;;;:19;:25;;;;;;;;39671:26;39544:153;:194;;;;-1:-1:-1;;;;;;39715:23:0;;;;;;:19;:23;;;;;;;;39714:24;39544:194;39526:322;;;39765:8;:15;;-1:-1:-1;;;;39765:15:0;-1:-1:-1;;;39765:15:0;;;39795:10;:8;:10::i;:::-;39820:8;:16;;-1:-1:-1;;;;39820:16:0;;;39526:322;39880:8;;-1:-1:-1;;;;;39924:29:0;;39864:12;39924:29;;;:25;:29;;;;;;39880:8;-1:-1:-1;;;39880:8:0;;;;;39879:9;;39924:29;39923:30;:66;;;;-1:-1:-1;;;;;;39958:31:0;;;;;;:25;:31;;;;;;;;39957:32;39923:66;-1:-1:-1;;;;;40088:25:0;;;;;;:19;:25;;;;;;39901:88;;-1:-1:-1;40088:25:0;;;:52;;-1:-1:-1;;;;;;40117:23:0;;;;;;:19;:23;;;;;;;;40088:52;:70;;;;40144:14;40088:70;40085:117;;;40185:5;40175:15;;40085:117;40215:12;40319:7;40316:665;;;-1:-1:-1;;;;;40370:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40419:1;40403:13;;:17;40370:50;40366:462;;;40447:34;40477:3;40447:25;40458:13;;40447:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40440:41;;40548:13;;40529:16;;40522:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40500:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;40366:462:0;;-1:-1:-1;40366:462:0;;-1:-1:-1;;;;;40622:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40672:1;40657:12;;:16;40622:51;40619:209;;;40701:33;40730:3;40701:24;40712:12;;40701:6;:10;;:24;;;;:::i;:33::-;40694:40;;40800:12;;40782:15;;40775:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40753:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40619:209:0;40848:8;;40845:93;;40880:42;40896:4;40910;40917;40880:15;:42::i;:::-;40955:14;40965:4;40955:14;;:::i;:::-;;;40316:665;40994:33;41010:4;41016:2;41020:6;40994:15;:33::i;:::-;37185:3850;;;;;37072:3963;;;:::o;41044:597::-;41197:16;;;41211:1;41197:16;;;;;;;;41173:21;;41197:16;;;;;;;;;;-1:-1:-1;41197:16:0;41173:40;;41242:4;41224;41229:1;41224:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41224:23:0;;;-1:-1:-1;;;;;41224:23:0;;;;;41268:15;-1:-1:-1;;;;;41268:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41258:4;41263:1;41258:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41258:32:0;;;-1:-1:-1;;;;;41258:32:0;;;;;41304:62;41321:4;41336:15;41354:11;41304:8;:62::i;:::-;41406:224;;-1:-1:-1;;;41406:224:0;;-1:-1:-1;;;;;41406:15:0;:66;;;;:224;;41487:11;;41513:1;;41557:4;;41584;;41604:15;;41406:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41099:542;41044:597;:::o;36529:189::-;-1:-1:-1;;;;;36612:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36612:39:0;;;;;;;;;;36670:40;;36612:39;;:31;36670:40;;;36529:189;;:::o;19400:279::-;19486:7;19521:12;19514:5;19506:28;;;;-1:-1:-1;;;19506:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19545:9:0;19557:5;19561:1;19557;:5;:::i;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;807:70;752:131;:::o;888:315::-;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:247::-;1459:6;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1567:9;1554:23;1586:31;1611:5;1586:31;:::i;1652:160::-;1717:20;;1773:13;;1766:21;1756:32;;1746:60;;1802:1;1799;1792:12;1817:315;1882:6;1890;1943:2;1931:9;1922:7;1918:23;1914:32;1911:52;;;1959:1;1956;1949:12;1911:52;1998:9;1985:23;2017:31;2042:5;2017:31;:::i;:::-;2067:5;-1:-1:-1;2091:35:1;2122:2;2107:18;;2091:35;:::i;:::-;2081:45;;1817:315;;;;;:::o;2554:456::-;2631:6;2639;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:52;;;2716:1;2713;2706:12;2668:52;2755:9;2742:23;2774:31;2799:5;2774:31;:::i;:::-;2824:5;-1:-1:-1;2881:2:1;2866:18;;2853:32;2894:33;2853:32;2894:33;:::i;:::-;2554:456;;2946:7;;-1:-1:-1;;;3000:2:1;2985:18;;;;2972:32;;2554:456::o;3412:180::-;3468:6;3521:2;3509:9;3500:7;3496:23;3492:32;3489:52;;;3537:1;3534;3527:12;3489:52;3560:26;3576:9;3560:26;:::i;3597:388::-;3665:6;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3781:9;3768:23;3800:31;3825:5;3800:31;:::i;:::-;3850:5;-1:-1:-1;3907:2:1;3892:18;;3879:32;3920:33;3879:32;3920:33;:::i;:::-;3972:7;3962:17;;;3597:388;;;;;:::o;3990:356::-;4192:2;4174:21;;;4211:18;;;4204:30;4270:34;4265:2;4250:18;;4243:62;4337:2;4322:18;;3990:356::o;4351:380::-;4430:1;4426:12;;;;4473;;;4494:61;;4548:4;4540:6;4536:17;4526:27;;4494:61;4601:2;4593:6;4590:14;4570:18;4567:38;4564:161;;4647:10;4642:3;4638:20;4635:1;4628:31;4682:4;4679:1;4672:15;4710:4;4707:1;4700:15;4564:161;;4351:380;;;:::o;4736:127::-;4797:10;4792:3;4788:20;4785:1;4778:31;4828:4;4825:1;4818:15;4852:4;4849:1;4842:15;4868:168;4941:9;;;4972;;4989:15;;;4983:22;;4969:37;4959:71;;5010:18;;:::i;5041:217::-;5081:1;5107;5097:132;;5151:10;5146:3;5142:20;5139:1;5132:31;5186:4;5183:1;5176:15;5214:4;5211:1;5204:15;5097:132;-1:-1:-1;5243:9:1;;5041:217::o;7970:125::-;8035:9;;;8056:10;;;8053:36;;;8069:18;;:::i;8456:401::-;8658:2;8640:21;;;8697:2;8677:18;;;8670:30;8736:34;8731:2;8716:18;;8709:62;-1:-1:-1;;;8802:2:1;8787:18;;8780:35;8847:3;8832:19;;8456:401::o;8862:399::-;9064:2;9046:21;;;9103:2;9083:18;;;9076:30;9142:34;9137:2;9122:18;;9115:62;-1:-1:-1;;;9208:2:1;9193:18;;9186:33;9251:3;9236:19;;8862:399::o;9668:128::-;9735:9;;;9756:11;;;9753:37;;;9770:18;;:::i;13185:127::-;13246:10;13241:3;13237:20;13234:1;13227:31;13277:4;13274:1;13267:15;13301:4;13298:1;13291:15;13317:251;13387:6;13440:2;13428:9;13419:7;13415:23;13411:32;13408:52;;;13456:1;13453;13446:12;13408:52;13488:9;13482:16;13507:31;13532:5;13507:31;:::i;13573:980::-;13835:4;13883:3;13872:9;13868:19;13914:6;13903:9;13896:25;13940:2;13978:6;13973:2;13962:9;13958:18;13951:34;14021:3;14016:2;14005:9;14001:18;13994:31;14045:6;14080;14074:13;14111:6;14103;14096:22;14149:3;14138:9;14134:19;14127:26;;14188:2;14180:6;14176:15;14162:29;;14209:1;14219:195;14233:6;14230:1;14227:13;14219:195;;;14298:13;;-1:-1:-1;;;;;14294:39:1;14282:52;;14389:15;;;;14354:12;;;;14330:1;14248:9;14219:195;;;-1:-1:-1;;;;;;;14470:32:1;;;;14465:2;14450:18;;14443:60;-1:-1:-1;;;14534:3:1;14519:19;14512:35;14431:3;13573:980;-1:-1:-1;;;13573:980:1:o

Swarm Source

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