ETH Price: $3,288.99 (+1.28%)
Gas: 1 Gwei

Token

Friendtip (TIP)
 

Overview

Max Total Supply

100,000,000 TIP

Holders

226

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.816125405770443413 TIP

Value
$0.00
0x0d1C75b2F8C59D229fba4A627611a2B3662Cff9a
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:
TIP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-02
*/

/**

    Join the Crypto Tipping Revolution with Friendtip

        Revolutionize your group chats with crypto tipping. 
    Easily send crypto tips to friends and group members, 
    spreading kindness and appreciation in a fun, decentralized way. 
    Join us in the crypto tipping revolution today!

    Telegram: https://t.me/friendtip
    Website : https://friendtip.tech/
    Twitter : https://twitter.com/friendtip_erc20

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }

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

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by 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);
 
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }
 
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    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);
 
    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;
    }
 
    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;
    }
 
    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;
    }
 
    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;
    }
 
    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 TIP is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0x000000000000000000000000000000000000dEaD);
 
    bool private swapping;
 
    address public marketingWallet;
    address public 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
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public feeDenominator;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // 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);
 
    event devWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("Friendtip", "TIP") {
 
        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);
 
        // tax is higher at launch to prevent from bot attack, final tax will be 4/4
        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 5;
        
        uint256 _sellMarketingFee = 30;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 10;

        uint256 _feeDenominator = 100;
 
        uint256 totalSupply = 100_000_000 * 1e18;
 
        maxTransactionAmount = totalSupply * 15 / 1000; // 1,5% maxTransactionAmountTxn
        maxWallet = totalSupply * 15 / 1000; // 1,5% maxWallet
        swapTokensAtAmount = totalSupply * 3 / 10000; // 0.03% swap wallet

        feeDenominator = _feeDenominator;
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = address(0x0897a0fC60f790162f4bdbb0B5d8FD29268Fa4D7); // set as marketing wallet
        devWallet = address(0x135ad9a370A0b0Bbc2A26D96Fe272A64Dd4dD925); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
  	}
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // 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 updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.5%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 15 / 1000)/1e18, "Cannot set maxWallet lower than 1.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 updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees.div(feeDenominator) <= 10, "Must keep fees at 10% or less");
    }
 
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees.div(feeDenominator) <= 20, "Must keep fees at 20% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled) {
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
		uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if( 
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(feeDenominator);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(feeDenominator);
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
        	amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
 
    function 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
            deadAddress,
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
 
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","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"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f467269656e6474697000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f54495000000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000e74565b5080600490816200010d919062000e74565b505050600062000122620006c760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001ed816001620006cf60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000293919062000fc5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000fc5565b6040518363ffffffff1660e01b81526004016200034092919062001008565b6020604051808303816000875af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062000fc5565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ce60a0516001620006cf60201b60201c565b620003e360a0516001620007cc60201b60201c565b600060199050600080600590506000601e9050600080600a905060006064905060006a52b7d2dcc80cd2e400000090506103e8600f8262000425919062001064565b620004319190620010de565b6008819055506103e8600f8262000449919062001064565b620004559190620010de565b600a819055506127106003826200046d919062001064565b620004799190620010de565b60098190555081601781905550876010819055508660118190555085601281905550601254601154601054620004b0919062001116565b620004bc919062001116565b600f81905550846014819055508360158190555082601681905550601654601554601454620004ec919062001116565b620004f8919062001116565b601381905550730897a0fc60f790162f4bdbb0b5d8fd29268fa4d7600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073135ad9a370a0b0bbc2a26d96fe272a64dd4dd925600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005ca620005bc6200086d60201b60201c565b60016200089760201b60201c565b620005ff600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089760201b60201c565b620006123060016200089760201b60201c565b6200062761dead60016200089760201b60201c565b620006496200063b6200086d60201b60201c565b6001620006cf60201b60201c565b6200067e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006cf60201b60201c565b62000691306001620006cf60201b60201c565b620006a661dead6001620006cf60201b60201c565b620006b83382620009e460201b60201c565b50505050505050505062001320565b600033905090565b620006df620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000771576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076890620011b2565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a7620006c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000939576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093090620011b2565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d89190620011f1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4d906200125e565b60405180910390fd5b62000a6a6000838362000b9260201b60201c565b62000a868160025462000b9760201b620026111790919060201c565b60028190555062000ae4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b9760201b620026111790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b86919062001291565b60405180910390a35050565b505050565b600080828462000ba8919062001116565b90508381101562000bf0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be790620012fe565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7c57607f821691505b60208210810362000c925762000c9162000c34565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cfc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cbd565b62000d08868362000cbd565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5562000d4f62000d498462000d20565b62000d2a565b62000d20565b9050919050565b6000819050919050565b62000d718362000d34565b62000d8962000d808262000d5c565b84845462000cca565b825550505050565b600090565b62000da062000d91565b62000dad81848462000d66565b505050565b5b8181101562000dd55762000dc960008262000d96565b60018101905062000db3565b5050565b601f82111562000e245762000dee8162000c98565b62000df98462000cad565b8101602085101562000e09578190505b62000e2162000e188562000cad565b83018262000db2565b50505b505050565b600082821c905092915050565b600062000e496000198460080262000e29565b1980831691505092915050565b600062000e64838362000e36565b9150826002028217905092915050565b62000e7f8262000bfa565b67ffffffffffffffff81111562000e9b5762000e9a62000c05565b5b62000ea7825462000c63565b62000eb482828562000dd9565b600060209050601f83116001811462000eec576000841562000ed7578287015190505b62000ee3858262000e56565b86555062000f53565b601f19841662000efc8662000c98565b60005b8281101562000f265784890151825560018201915060208501945060208101905062000eff565b8683101562000f46578489015162000f42601f89168262000e36565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f8d8262000f60565b9050919050565b62000f9f8162000f80565b811462000fab57600080fd5b50565b60008151905062000fbf8162000f94565b92915050565b60006020828403121562000fde5762000fdd62000f5b565b5b600062000fee8482850162000fae565b91505092915050565b620010028162000f80565b82525050565b60006040820190506200101f600083018562000ff7565b6200102e602083018462000ff7565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010718262000d20565b91506200107e8362000d20565b92508282026200108e8162000d20565b91508282048414831517620010a857620010a762001035565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010eb8262000d20565b9150620010f88362000d20565b9250826200110b576200110a620010af565b5b828204905092915050565b6000620011238262000d20565b9150620011308362000d20565b92508282019050808211156200114b576200114a62001035565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200119a60208362001151565b9150620011a78262001162565b602082019050919050565b60006020820190508181036000830152620011cd816200118b565b9050919050565b60008115159050919050565b620011eb81620011d4565b82525050565b6000602082019050620012086000830184620011e0565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001246601f8362001151565b915062001253826200120e565b602082019050919050565b60006020820190508181036000830152620012798162001237565b9050919050565b6200128b8162000d20565b82525050565b6000602082019050620012a8600083018462001280565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620012e6601b8362001151565b9150620012f382620012ae565b602082019050919050565b600060208201905081810360008301526200131981620012d7565b9050919050565b60805160a0516154ab6200137e6000396000818161125301528181611aa90152612bf5015260008181610df701528181612b9d01528181613d6d01528181613e4e01528181613e7501528181613f110152613f3801526154ab6000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600a611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b6013819055506014611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600f6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148af602483613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9d5fb74091a9521573a46ddba75a9a0b34d264f89145f8f988c6ec9473b276c64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f0000000000000000000000004d6407d09607f72850404e7884dd9178be1c195881565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600a611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f0000000000000000000000004d6407d09607f72850404e7884dd9178be1c195873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b6013819055506014611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600f6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f0000000000000000000000004d6407d09607f72850404e7884dd9178be1c195873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148af602483613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d9d5fb74091a9521573a46ddba75a9a0b34d264f89145f8f988c6ec9473b276c64736f6c63430008110033

Deployed Bytecode Sourcemap

25627:15635:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7940:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10114:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27215:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25701:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26850:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9063:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34214:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26929:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26889;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31730:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10766:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25804:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8904:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11531:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25759:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26121:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34379:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26705:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26201:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9235:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18796:148;;;;;;;;;;;;;:::i;:::-;;30952:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32198:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25934:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26597;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32549:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30751:148;;;;;;;;;;;;;:::i;:::-;;18580:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25971:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26740:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32439:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8160:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33545:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26671:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26969:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26816:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12253:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9576:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33997:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27438:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26161:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33354:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32947:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31973:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26514:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26005:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31340:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26563:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9815:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26047:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31134:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26634:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18952:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26778:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26087:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7940:100;7994:13;8027:5;8020:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7940:100;:::o;10114:169::-;10197:4;10214:39;10223:12;:10;:12::i;:::-;10237:7;10246:6;10214:8;:39::i;:::-;10271:4;10264:11;;10114:169;;;;:::o;27215:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;25701:51::-;;;:::o;26850:29::-;;;;:::o;9063:108::-;9124:7;9151:12;;9144:19;;9063:108;:::o;34214:157::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34321:9:::1;;;;;;;;;;;34293:38;;34310:9;34293:38;;;;;;;;;;;;34354:9;34342;;:21;;;;;;;;;;;;;;;;;;34214:157:::0;:::o;26929:33::-;;;;:::o;26889:::-;;;;:::o;31730:234::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31849:4:::1;31843;31839:1;31823:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;31822:31;;;;:::i;:::-;31812:6;:41;;31804:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31949:6;31939;:17;;;;:::i;:::-;31916:20;:40;;;;31730:234:::0;:::o;10766:355::-;10906:4;10923:36;10933:6;10941:9;10952:6;10923:9;:36::i;:::-;10970:121;10979:6;10987:12;:10;:12::i;:::-;11001:89;11039:6;11001:89;;;;;;;;;;;;;;;;;:11;:19;11013:6;11001:19;;;;;;;;;;;;;;;:33;11021:12;:10;:12::i;:::-;11001:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10970:8;:121::i;:::-;11109:4;11102:11;;10766:355;;;;;:::o;25804:89::-;25850:42;25804:89;:::o;8904:93::-;8962:5;8987:2;8980:9;;8904:93;:::o;11531:218::-;11619:4;11636:83;11645:12;:10;:12::i;:::-;11659:7;11668:50;11707:10;11668:11;:25;11680:12;:10;:12::i;:::-;11668:25;;;;;;;;;;;;;;;:34;11694:7;11668:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11636:8;:83::i;:::-;11737:4;11730:11;;11531:218;;;;:::o;25759:38::-;;;:::o;26121:33::-;;;;;;;;;;;;;:::o;34379:125::-;34444:4;34468:19;:28;34488:7;34468:28;;;;;;;;;;;;;;;;;;;;;;;;;34461:35;;34379:125;;;:::o;26705:28::-;;;;:::o;26201:31::-;;;;;;;;;;;;;:::o;9235:127::-;9309:7;9336:9;:18;9346:7;9336:18;;;;;;;;;;;;;;;;9329:25;;9235:127;;;:::o;18796:148::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18903:1:::1;18866:40;;18887:6;;;;;;;;;;;18866:40;;;;;;;;;;;;18934:1;18917:6;;:19;;;;;;;;;;;;;;;;;;18796:148::o:0;30952:120::-;31004:4;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31037:5:::1;31020:14;;:22;;;;;;;;;;;;;;;;;;31060:4;31053:11;;30952:120:::0;:::o;32198:144::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32330:4:::1;32288:31;:39;32320:6;32288:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32198:144:::0;;:::o;25934:30::-;;;;;;;;;;;;;:::o;26597:::-;;;;:::o;32549:389::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32683:13:::1;32665:15;:31;;;;32725:13;32707:15;:31;;;;32761:7;32749:9;:19;;;;32830:9;;32812:15;;32794;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;32779:12;:60;;;;32894:2;32858:32;32875:14;;32858:12;;:16;;:32;;;;:::i;:::-;:38;;32850:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;32549:389:::0;;;:::o;30751:148::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30822:4:::1;30806:13;;:20;;;;;;;;;;;;;;;;;;30851:4;30837:11;;:18;;;;;;;;;;;;;;;;;;30879:12;30866:10;:25;;;;30751:148::o:0;18580:79::-;18618:7;18645:6;;;;;;;;;;;18638:13;;18580:79;:::o;25971:24::-;;;;;;;;;;;;;:::o;26740:31::-;;;;:::o;32439:101::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32525:7:::1;32511:11;;:21;;;;;;;;;;;;;;;;;;32439:101:::0;:::o;8160:104::-;8216:13;8249:7;8242:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8160:104;:::o;33545:245::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33652:13:::1;33644:21;;:4;:21;;::::0;33636:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33741:41;33770:4;33776:5;33741:28;:41::i;:::-;33545:245:::0;;:::o;26671:24::-;;;;:::o;26969:27::-;;;;:::o;26816:25::-;;;;:::o;12253:269::-;12346:4;12363:129;12372:12;:10;:12::i;:::-;12386:7;12395:96;12434:15;12395:96;;;;;;;;;;;;;;;;;:11;:25;12407:12;:10;:12::i;:::-;12395:25;;;;;;;;;;;;;;;:34;12421:7;12395:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12363:8;:129::i;:::-;12510:4;12503:11;;12253:269;;;;:::o;9576:175::-;9662:4;9679:42;9689:12;:10;:12::i;:::-;9703:9;9714:6;9679:9;:42::i;:::-;9739:4;9732:11;;9576:175;;;;:::o;33997:208::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34134:15:::1;;;;;;;;;;;34091:59;;34114:18;34091:59;;;;;;;;;;;;34179:18;34161:15;;:36;;;;;;;;;;;;;;;;;;33997:208:::0;:::o;27438:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;26161:33::-;;;;;;;;;;;;;:::o;33354:182::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33470:8:::1;33439:19;:28;33459:7;33439:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33510:7;33494:34;;;33519:8;33494:34;;;;;;:::i;:::-;;;;;;;;33354:182:::0;;:::o;32947:398::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33083:13:::1;33064:16;:32;;;;33126:13;33107:16;:32;;;;33163:7;33150:10;:20;;;;33235:10;;33216:16;;33197;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;33181:13;:64;;;;33301:2;33264:33;33282:14;;33264:13;;:17;;:33;;;;:::i;:::-;:39;;33256:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32947:398:::0;;;:::o;31973:216::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32096:4:::1;32090;32085:2;32069:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;32068:32;;;;:::i;:::-;32058:6;:42;;32050:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;32174:6;32164;:17;;;;:::i;:::-;32152:9;:29;;;;31973:216:::0;:::o;26514:39::-;;;;;;;;;;;;;:::o;26005:35::-;;;;:::o;31340:381::-;31421:4;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31477:6:::1;31473:1;31457:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;31444:9;:39;;31436:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;31592:4;31588:1;31572:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;31559:9;:37;;31551:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;31684:9;31663:18;:30;;;;31710:4;31703:11;;31340:381:::0;;;:::o;26563:27::-;;;;:::o;9815:151::-;9904:7;9931:11;:18;9943:5;9931:18;;;;;;;;;;;;;;;:27;9950:7;9931:27;;;;;;;;;;;;;;;;9924:34;;9815:151;;;;:::o;26047:33::-;;;;:::o;31134:134::-;31194:4;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31233:5:::1;31210:20;;:28;;;;;;;;;;;;;;;;;;31256:4;31249:11;;31134:134:::0;:::o;26634:30::-;;;;:::o;18952:244::-;18718:12;:10;:12::i;:::-;18708:22;;:6;;;;;;;;;;;:22;;;18700:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19061:1:::1;19041:22;;:8;:22;;::::0;19033:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19151:8;19122:38;;19143:6;;;;;;;;;;;19122:38;;;;;;;;;;;;19180:8;19171:6;;:17;;;;;;;;;;;;;;;;;;18952:244:::0;:::o;26778:31::-;;;;:::o;26087:24::-;;;;:::o;16591:182::-;16649:7;16669:9;16685:1;16681;:5;;;;:::i;:::-;16669:17;;16710:1;16705;:6;;16697:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16764:1;16757:8;;;16591:182;;;;:::o;542:98::-;595:7;622:10;615:17;;542:98;:::o;15449:381::-;15602:1;15585:19;;:5;:19;;;15577:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15683:1;15664:21;;:7;:21;;;15656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15768:6;15738:11;:18;15750:5;15738:18;;;;;;;;;;;;;;;:27;15757:7;15738:27;;;;;;;;;;;;;;;:36;;;;15806:7;15790:32;;15799:5;15790:32;;;15815:6;15790:32;;;;;;:::i;:::-;;;;;;;;15449:381;;;:::o;34513:4042::-;34661:1;34645:18;;:4;:18;;;34637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34738:1;34724:16;;:2;:16;;;34716:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:1;34794:6;:11;34791:92;;34822:28;34838:4;34844:2;34848:1;34822:15;:28::i;:::-;34865:7;;34791:92;34899:14;;;;;;;;;;;34896:1811;;;34959:7;:5;:7::i;:::-;34951:15;;:4;:15;;;;:49;;;;;34993:7;:5;:7::i;:::-;34987:13;;:2;:13;;;;34951:49;:86;;;;;35035:1;35021:16;;:2;:16;;;;34951:86;:128;;;;;35072:6;35058:21;;:2;:21;;;;34951:128;:158;;;;;35101:8;;;;;;;;;;;35100:9;34951:158;34929:1767;;;35147:13;;;;;;;;;;;35143:148;;35192:19;:25;35212:4;35192:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35221:19;:23;35241:2;35221:23;;;;;;;;;;;;;;;;;;;;;;;;;35192:52;35184:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35143:148;35450:20;;;;;;;;;;;35446:423;;;35505:7;:5;:7::i;:::-;35499:13;;:2;:13;;;;:47;;;;;35530:15;35516:30;;:2;:30;;;;35499:47;:79;;;;;35564:13;35550:28;;:2;:28;;;;35499:79;35495:355;;;35656:12;35614:28;:39;35643:9;35614:39;;;;;;;;;;;;;;;;:54;35606:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;35814:12;35772:28;:39;35801:9;35772:39;;;;;;;;;;;;;;;:54;;;;35495:355;35446:423;35922:25;:31;35948:4;35922:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;35958:31;:35;35990:2;35958:35;;;;;;;;;;;;;;;;;;;;;;;;;35957:36;35922:71;35918:763;;;36040:20;;36030:6;:30;;36022:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;36179:9;;36162:13;36172:2;36162:9;:13::i;:::-;36153:6;:22;;;;:::i;:::-;:35;;36145:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35918:763;;;36291:25;:29;36317:2;36291:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;36325:31;:37;36357:4;36325:37;;;;;;;;;;;;;;;;;;;;;;;;;36324:38;36291:71;36287:394;;;36409:20;;36399:6;:30;;36391:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;36287:394;;;36535:31;:35;36567:2;36535:35;;;;;;;;;;;;;;;;;;;;;;;;;36531:150;;36628:9;;36611:13;36621:2;36611:9;:13::i;:::-;36602:6;:22;;;;:::i;:::-;:35;;36594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36531:150;36287:394;35918:763;34929:1767;34896:1811;36714:28;36745:24;36763:4;36745:9;:24::i;:::-;36714:55;;36783:12;36822:18;;36798:20;:42;;36783:57;;36872:7;:35;;;;;36896:11;;;;;;;;;;;36872:35;:61;;;;;36925:8;;;;;;;;;;;36924:9;36872:61;:110;;;;;36951:25;:31;36977:4;36951:31;;;;;;;;;;;;;;;;;;;;;;;;;36950:32;36872:110;:153;;;;;37000:19;:25;37020:4;37000:25;;;;;;;;;;;;;;;;;;;;;;;;;36999:26;36872:153;:194;;;;;37043:19;:23;37063:2;37043:23;;;;;;;;;;;;;;;;;;;;;;;;;37042:24;36872:194;36854:328;;;37104:4;37093:8;;:15;;;;;;;;;;;;;;;;;;37126:10;:8;:10::i;:::-;37165:5;37154:8;;:16;;;;;;;;;;;;;;;;;;36854:328;37195:12;37211:8;;;;;;;;;;;37210:9;37195:24;;37321:19;:25;37341:4;37321:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37350:19;:23;37370:2;37350:23;;;;;;;;;;;;;;;;;;;;;;;;;37321:52;37318:99;;;37400:5;37390:15;;37318:99;37430:12;37534:7;37531:970;;;37585:25;:29;37611:2;37585:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;37634:1;37618:13;;:17;37585:50;37581:770;;;37662:45;37692:14;;37662:25;37673:13;;37662:6;:10;;:25;;;;:::i;:::-;:29;;:45;;;;:::i;:::-;37655:52;;37774:13;;37755:16;;37748:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37726:18;;:61;;;;;;;:::i;:::-;;;;;;;;37842:13;;37829:10;;37822:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;37806:12;;:49;;;;;;;:::i;:::-;;;;;;;;37922:13;;37903:16;;37896:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37874:18;;:61;;;;;;;:::i;:::-;;;;;;;;37581:770;;;37996:25;:31;38022:4;37996:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;38046:1;38031:12;;:16;37996:51;37993:358;;;38072:44;38101:14;;38072:24;38083:12;;38072:6;:10;;:24;;;;:::i;:::-;:28;;:44;;;;:::i;:::-;38065:51;;38179:12;;38161:15;;38154:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;38132:18;;:59;;;;;;;:::i;:::-;;;;;;;;38245:12;;38233:9;;38226:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;38210:12;;:47;;;;;;;:::i;:::-;;;;;;;;38323:12;;38305:15;;38298:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;38276:18;;:59;;;;;;;:::i;:::-;;;;;;;;37993:358;37581:770;38378:1;38371:4;:8;38368:93;;;38403:42;38419:4;38433;38440;38403:15;:42::i;:::-;38368:93;38485:4;38475:14;;;;;:::i;:::-;;;37531:970;38514:33;38530:4;38536:2;38540:6;38514:15;:33::i;:::-;34626:3929;;;;34513:4042;;;;:::o;16925:193::-;17011:7;17044:1;17039;:6;;17047:12;17031:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17071:9;17087:1;17083;:5;;;;:::i;:::-;17071:17;;17109:1;17102:8;;;16925:193;;;;;:::o;17607:132::-;17665:7;17692:39;17696:1;17699;17692:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;17685:46;;17607:132;;;;:::o;33799:189::-;33916:5;33882:25;:31;33908:4;33882:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33974:5;33940:40;;33968:4;33940:40;;;;;;;;;;;;33799:189;;:::o;13013:575::-;13171:1;13153:20;;:6;:20;;;13145:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13255:1;13234:23;;:9;:23;;;13226:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13311:47;13332:6;13340:9;13351:6;13311:20;:47::i;:::-;13392:71;13414:6;13392:71;;;;;;;;;;;;;;;;;:9;:17;13402:6;13392:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13372:9;:17;13382:6;13372:17;;;;;;;;;;;;;;;:91;;;;13497:32;13522:6;13497:9;:20;13507:9;13497:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13474:9;:20;13484:9;13474:20;;;;;;;;;;;;;;;:55;;;;13562:9;13545:35;;13554:6;13545:35;;;13573:6;13545:35;;;;;;:::i;:::-;;;;;;;;13013:575;;;:::o;39691:1568::-;39730:23;39756:24;39774:4;39756:9;:24::i;:::-;39730:50;;39791:25;39861:12;;39840:18;;39819;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;39791:82;;39884:12;39932:1;39913:15;:20;:46;;;;39958:1;39937:17;:22;39913:46;39910:60;;;39962:7;;;;;39910:60;40025:2;40004:18;;:23;;;;:::i;:::-;39986:15;:41;39983:111;;;40080:2;40059:18;;:23;;;;:::i;:::-;40041:41;;39983:111;40156:23;40241:1;40221:17;40200:18;;40182:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;40156:86;;40253:26;40282:36;40302:15;40282;:19;;:36;;;;:::i;:::-;40253:65;;40332:25;40360:21;40332:49;;40395:36;40412:18;40395:16;:36::i;:::-;40446:18;40467:44;40493:17;40467:21;:25;;:44;;;;:::i;:::-;40446:65;;40525:23;40551:57;40590:17;40551:34;40566:18;;40551:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;40525:83;;40619:17;40639:51;40672:17;40639:28;40654:12;;40639:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;40619:71;;40704:23;40761:9;40743:15;40730:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;40704:66;;40805:1;40784:18;:22;;;;40838:1;40817:18;:22;;;;40865:1;40850:12;:16;;;;40901:9;;;;;;;;;;;40893:23;;40924:9;40893:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40880:58;;;;;40973:1;40955:15;:19;:42;;;;;40996:1;40978:15;:19;40955:42;40952:210;;;41013:46;41026:15;41043;41013:12;:46::i;:::-;41079:71;41094:18;41114:15;41131:18;;41079:71;;;;;;;;:::i;:::-;;;;;;;;40952:210;41196:15;;;;;;;;;;;41188:29;;41225:21;41188:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41175:76;;;;;39719:1540;;;;;;;;;;39691:1568;:::o;17126:473::-;17184:7;17434:1;17429;:6;17425:47;;17459:1;17452:8;;;;17425:47;17485:9;17501:1;17497;:5;;;;:::i;:::-;17485:17;;17530:1;17525;17521;:5;;;;:::i;:::-;:10;17513:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17590:1;17583:8;;;17126:473;;;;;:::o;17747:191::-;17833:7;17865:1;17861;:5;17868:12;17853:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17892:9;17908:1;17904;:5;;;;:::i;:::-;17892:17;;17929:1;17922:8;;;17747:191;;;;;:::o;16434:125::-;;;;:::o;16781:136::-;16839:7;16866:43;16870:1;16873;16866:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16859:50;;16781:136;;;;:::o;38564:591::-;38690:21;38728:1;38714:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38690:40;;38759:4;38741;38746:1;38741:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38785:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38775:4;38780:1;38775:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38821:62;38838:4;38853:15;38871:11;38821:8;:62::i;:::-;38923:15;:66;;;39004:11;39030:1;39074:4;39101;39121:15;38923:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38619:536;38564:591;:::o;39164:518::-;39312:62;39329:4;39344:15;39362:11;39312:8;:62::i;:::-;39418:15;:31;;;39457:9;39490:4;39510:11;39536:1;39579;25850:42;39648:15;39418:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39164:518;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:191::-;12575:3;12594:20;12612:1;12594:20;:::i;:::-;12589:25;;12628:20;12646:1;12628:20;:::i;:::-;12623:25;;12671:1;12668;12664:9;12657:16;;12692:3;12689:1;12686:10;12683:36;;;12699:18;;:::i;:::-;12683:36;12535:191;;;;:::o;12732:179::-;12872:31;12868:1;12860:6;12856:14;12849:55;12732:179;:::o;12917:366::-;13059:3;13080:67;13144:2;13139:3;13080:67;:::i;:::-;13073:74;;13156:93;13245:3;13156:93;:::i;:::-;13274:2;13269:3;13265:12;13258:19;;12917:366;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13289:419;;;:::o;13714:244::-;13854:34;13850:1;13842:6;13838:14;13831:58;13923:27;13918:2;13910:6;13906:15;13899:52;13714:244;:::o;13964:366::-;14106:3;14127:67;14191:2;14186:3;14127:67;:::i;:::-;14120:74;;14203:93;14292:3;14203:93;:::i;:::-;14321:2;14316:3;14312:12;14305:19;;13964:366;;;:::o;14336:419::-;14502:4;14540:2;14529:9;14525:18;14517:26;;14589:9;14583:4;14579:20;14575:1;14564:9;14560:17;14553:47;14617:131;14743:4;14617:131;:::i;:::-;14609:139;;14336:419;;;:::o;14761:179::-;14901:31;14897:1;14889:6;14885:14;14878:55;14761:179;:::o;14946:366::-;15088:3;15109:67;15173:2;15168:3;15109:67;:::i;:::-;15102:74;;15185:93;15274:3;15185:93;:::i;:::-;15303:2;15298:3;15294:12;15287:19;;14946:366;;;:::o;15318:419::-;15484:4;15522:2;15511:9;15507:18;15499:26;;15571:9;15565:4;15561:20;15557:1;15546:9;15542:17;15535:47;15599:131;15725:4;15599:131;:::i;:::-;15591:139;;15318:419;;;:::o;15743:223::-;15883:34;15879:1;15871:6;15867:14;15860:58;15952:6;15947:2;15939:6;15935:15;15928:31;15743:223;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:419::-;16510:4;16548:2;16537:9;16533:18;16525:26;;16597:9;16591:4;16587:20;16583:1;16572:9;16568:17;16561:47;16625:131;16751:4;16625:131;:::i;:::-;16617:139;;16344:419;;;:::o;16769:240::-;16909:34;16905:1;16897:6;16893:14;16886:58;16978:23;16973:2;16965:6;16961:15;16954:48;16769:240;:::o;17015:366::-;17157:3;17178:67;17242:2;17237:3;17178:67;:::i;:::-;17171:74;;17254:93;17343:3;17254:93;:::i;:::-;17372:2;17367:3;17363:12;17356:19;;17015:366;;;:::o;17387:419::-;17553:4;17591:2;17580:9;17576:18;17568:26;;17640:9;17634:4;17630:20;17626:1;17615:9;17611:17;17604:47;17668:131;17794:4;17668:131;:::i;:::-;17660:139;;17387:419;;;:::o;17812:239::-;17952:34;17948:1;17940:6;17936:14;17929:58;18021:22;18016:2;18008:6;18004:15;17997:47;17812:239;:::o;18057:366::-;18199:3;18220:67;18284:2;18279:3;18220:67;:::i;:::-;18213:74;;18296:93;18385:3;18296:93;:::i;:::-;18414:2;18409:3;18405:12;18398:19;;18057:366;;;:::o;18429:419::-;18595:4;18633:2;18622:9;18618:18;18610:26;;18682:9;18676:4;18672:20;18668:1;18657:9;18653:17;18646:47;18710:131;18836:4;18710:131;:::i;:::-;18702:139;;18429:419;;;:::o;18854:225::-;18994:34;18990:1;18982:6;18978:14;18971:58;19063:8;19058:2;19050:6;19046:15;19039:33;18854:225;:::o;19085:366::-;19227:3;19248:67;19312:2;19307:3;19248:67;:::i;:::-;19241:74;;19324:93;19413:3;19324:93;:::i;:::-;19442:2;19437:3;19433:12;19426:19;;19085:366;;;:::o;19457:419::-;19623:4;19661:2;19650:9;19646:18;19638:26;;19710:9;19704:4;19700:20;19696:1;19685:9;19681:17;19674:47;19738:131;19864:4;19738:131;:::i;:::-;19730:139;;19457:419;;;:::o;19882:177::-;20022:29;20018:1;20010:6;20006:14;19999:53;19882:177;:::o;20065:366::-;20207:3;20228:67;20292:2;20287:3;20228:67;:::i;:::-;20221:74;;20304:93;20393:3;20304:93;:::i;:::-;20422:2;20417:3;20413:12;20406:19;;20065:366;;;:::o;20437:419::-;20603:4;20641:2;20630:9;20626:18;20618:26;;20690:9;20684:4;20680:20;20676:1;20665:9;20661:17;20654:47;20718:131;20844:4;20718:131;:::i;:::-;20710:139;;20437:419;;;:::o;20862:223::-;21002:34;20998:1;20990:6;20986:14;20979:58;21071:6;21066:2;21058:6;21054:15;21047:31;20862:223;:::o;21091:366::-;21233:3;21254:67;21318:2;21313:3;21254:67;:::i;:::-;21247:74;;21330:93;21419:3;21330:93;:::i;:::-;21448:2;21443:3;21439:12;21432:19;;21091:366;;;:::o;21463:419::-;21629:4;21667:2;21656:9;21652:18;21644:26;;21716:9;21710:4;21706:20;21702:1;21691:9;21687:17;21680:47;21744:131;21870:4;21744:131;:::i;:::-;21736:139;;21463:419;;;:::o;21888:221::-;22028:34;22024:1;22016:6;22012:14;22005:58;22097:4;22092:2;22084:6;22080:15;22073:29;21888:221;:::o;22115:366::-;22257:3;22278:67;22342:2;22337:3;22278:67;:::i;:::-;22271:74;;22354:93;22443:3;22354:93;:::i;:::-;22472:2;22467:3;22463:12;22456:19;;22115:366;;;:::o;22487:419::-;22653:4;22691:2;22680:9;22676:18;22668:26;;22740:9;22734:4;22730:20;22726:1;22715:9;22711:17;22704:47;22768:131;22894:4;22768:131;:::i;:::-;22760:139;;22487:419;;;:::o;22912:224::-;23052:34;23048:1;23040:6;23036:14;23029:58;23121:7;23116:2;23108:6;23104:15;23097:32;22912:224;:::o;23142:366::-;23284:3;23305:67;23369:2;23364:3;23305:67;:::i;:::-;23298:74;;23381:93;23470:3;23381:93;:::i;:::-;23499:2;23494:3;23490:12;23483:19;;23142:366;;;:::o;23514:419::-;23680:4;23718:2;23707:9;23703:18;23695:26;;23767:9;23761:4;23757:20;23753:1;23742:9;23738:17;23731:47;23795:131;23921:4;23795:131;:::i;:::-;23787:139;;23514:419;;;:::o;23939:222::-;24079:34;24075:1;24067:6;24063:14;24056:58;24148:5;24143:2;24135:6;24131:15;24124:30;23939:222;:::o;24167:366::-;24309:3;24330:67;24394:2;24389:3;24330:67;:::i;:::-;24323:74;;24406:93;24495:3;24406:93;:::i;:::-;24524:2;24519:3;24515:12;24508:19;;24167:366;;;:::o;24539:419::-;24705:4;24743:2;24732:9;24728:18;24720:26;;24792:9;24786:4;24782:20;24778:1;24767:9;24763:17;24756:47;24820:131;24946:4;24820:131;:::i;:::-;24812:139;;24539:419;;;:::o;24964:172::-;25104:24;25100:1;25092:6;25088:14;25081:48;24964:172;:::o;25142:366::-;25284:3;25305:67;25369:2;25364:3;25305:67;:::i;:::-;25298:74;;25381:93;25470:3;25381:93;:::i;:::-;25499:2;25494:3;25490:12;25483:19;;25142:366;;;:::o;25514:419::-;25680:4;25718:2;25707:9;25703:18;25695:26;;25767:9;25761:4;25757:20;25753:1;25742:9;25738:17;25731:47;25795:131;25921:4;25795:131;:::i;:::-;25787:139;;25514:419;;;:::o;25939:296::-;26079:34;26075:1;26067:6;26063:14;26056:58;26148:34;26143:2;26135:6;26131:15;26124:59;26217:10;26212:2;26204:6;26200:15;26193:35;25939:296;:::o;26241:366::-;26383:3;26404:67;26468:2;26463:3;26404:67;:::i;:::-;26397:74;;26480:93;26569:3;26480:93;:::i;:::-;26598:2;26593:3;26589:12;26582:19;;26241:366;;;:::o;26613:419::-;26779:4;26817:2;26806:9;26802:18;26794:26;;26866:9;26860:4;26856:20;26852:1;26841:9;26837:17;26830:47;26894:131;27020:4;26894:131;:::i;:::-;26886:139;;26613:419;;;:::o;27038:240::-;27178:34;27174:1;27166:6;27162:14;27155:58;27247:23;27242:2;27234:6;27230:15;27223:48;27038:240;:::o;27284:366::-;27426:3;27447:67;27511:2;27506:3;27447:67;:::i;:::-;27440:74;;27523:93;27612:3;27523:93;:::i;:::-;27641:2;27636:3;27632:12;27625:19;;27284:366;;;:::o;27656:419::-;27822:4;27860:2;27849:9;27845:18;27837:26;;27909:9;27903:4;27899:20;27895:1;27884:9;27880:17;27873:47;27937:131;28063:4;27937:131;:::i;:::-;27929:139;;27656:419;;;:::o;28081:169::-;28221:21;28217:1;28209:6;28205:14;28198:45;28081:169;:::o;28256:366::-;28398:3;28419:67;28483:2;28478:3;28419:67;:::i;:::-;28412:74;;28495:93;28584:3;28495:93;:::i;:::-;28613:2;28608:3;28604:12;28597:19;;28256:366;;;:::o;28628:419::-;28794:4;28832:2;28821:9;28817:18;28809:26;;28881:9;28875:4;28871:20;28867:1;28856:9;28852:17;28845:47;28909:131;29035:4;28909:131;:::i;:::-;28901:139;;28628:419;;;:::o;29053:241::-;29193:34;29189:1;29181:6;29177:14;29170:58;29262:24;29257:2;29249:6;29245:15;29238:49;29053:241;:::o;29300:366::-;29442:3;29463:67;29527:2;29522:3;29463:67;:::i;:::-;29456:74;;29539:93;29628:3;29539:93;:::i;:::-;29657:2;29652:3;29648:12;29641:19;;29300:366;;;:::o;29672:419::-;29838:4;29876:2;29865:9;29861:18;29853:26;;29925:9;29919:4;29915:20;29911:1;29900:9;29896:17;29889:47;29953:131;30079:4;29953:131;:::i;:::-;29945:139;;29672:419;;;:::o;30097:194::-;30137:4;30157:20;30175:1;30157:20;:::i;:::-;30152:25;;30191:20;30209:1;30191:20;:::i;:::-;30186:25;;30235:1;30232;30228:9;30220:17;;30259:1;30253:4;30250:11;30247:37;;;30264:18;;:::i;:::-;30247:37;30097:194;;;;:::o;30297:147::-;30398:11;30435:3;30420:18;;30297:147;;;;:::o;30450:114::-;;:::o;30570:398::-;30729:3;30750:83;30831:1;30826:3;30750:83;:::i;:::-;30743:90;;30842:93;30931:3;30842:93;:::i;:::-;30960:1;30955:3;30951:11;30944:18;;30570:398;;;:::o;30974:379::-;31158:3;31180:147;31323:3;31180:147;:::i;:::-;31173:154;;31344:3;31337:10;;30974:379;;;:::o;31359:442::-;31508:4;31546:2;31535:9;31531:18;31523:26;;31559:71;31627:1;31616:9;31612:17;31603:6;31559:71;:::i;:::-;31640:72;31708:2;31697:9;31693:18;31684:6;31640:72;:::i;:::-;31722;31790:2;31779:9;31775:18;31766:6;31722:72;:::i;:::-;31359:442;;;;;;:::o;31807:220::-;31947:34;31943:1;31935:6;31931:14;31924:58;32016:3;32011:2;32003:6;31999:15;31992:28;31807:220;:::o;32033:366::-;32175:3;32196:67;32260:2;32255:3;32196:67;:::i;:::-;32189:74;;32272:93;32361:3;32272:93;:::i;:::-;32390:2;32385:3;32381:12;32374:19;;32033:366;;;:::o;32405:419::-;32571:4;32609:2;32598:9;32594:18;32586:26;;32658:9;32652:4;32648:20;32644:1;32633:9;32629:17;32622:47;32686:131;32812:4;32686:131;:::i;:::-;32678:139;;32405:419;;;:::o;32830:180::-;32878:77;32875:1;32868:88;32975:4;32972:1;32965:15;32999:4;32996:1;32989:15;33016:180;33064:77;33061:1;33054:88;33161:4;33158:1;33151:15;33185:4;33182:1;33175:15;33202:143;33259:5;33290:6;33284:13;33275:22;;33306:33;33333:5;33306:33;:::i;:::-;33202:143;;;;:::o;33351:351::-;33421:6;33470:2;33458:9;33449:7;33445:23;33441:32;33438:119;;;33476:79;;:::i;:::-;33438:119;33596:1;33621:64;33677:7;33668:6;33657:9;33653:22;33621:64;:::i;:::-;33611:74;;33567:128;33351:351;;;;:::o;33708:85::-;33753:7;33782:5;33771:16;;33708:85;;;:::o;33799:158::-;33857:9;33890:61;33908:42;33917:32;33943:5;33917:32;:::i;:::-;33908:42;:::i;:::-;33890:61;:::i;:::-;33877:74;;33799:158;;;:::o;33963:147::-;34058:45;34097:5;34058:45;:::i;:::-;34053:3;34046:58;33963:147;;:::o;34116:114::-;34183:6;34217:5;34211:12;34201:22;;34116:114;;;:::o;34236:184::-;34335:11;34369:6;34364:3;34357:19;34409:4;34404:3;34400:14;34385:29;;34236:184;;;;:::o;34426:132::-;34493:4;34516:3;34508:11;;34546:4;34541:3;34537:14;34529:22;;34426:132;;;:::o;34564:108::-;34641:24;34659:5;34641:24;:::i;:::-;34636:3;34629:37;34564:108;;:::o;34678:179::-;34747:10;34768:46;34810:3;34802:6;34768:46;:::i;:::-;34846:4;34841:3;34837:14;34823:28;;34678:179;;;;:::o;34863:113::-;34933:4;34965;34960:3;34956:14;34948:22;;34863:113;;;:::o;35012:732::-;35131:3;35160:54;35208:5;35160:54;:::i;:::-;35230:86;35309:6;35304:3;35230:86;:::i;:::-;35223:93;;35340:56;35390:5;35340:56;:::i;:::-;35419:7;35450:1;35435:284;35460:6;35457:1;35454:13;35435:284;;;35536:6;35530:13;35563:63;35622:3;35607:13;35563:63;:::i;:::-;35556:70;;35649:60;35702:6;35649:60;:::i;:::-;35639:70;;35495:224;35482:1;35479;35475:9;35470:14;;35435:284;;;35439:14;35735:3;35728:10;;35136:608;;;35012:732;;;;:::o;35750:831::-;36013:4;36051:3;36040:9;36036:19;36028:27;;36065:71;36133:1;36122:9;36118:17;36109:6;36065:71;:::i;:::-;36146:80;36222:2;36211:9;36207:18;36198:6;36146:80;:::i;:::-;36273:9;36267:4;36263:20;36258:2;36247:9;36243:18;36236:48;36301:108;36404:4;36395:6;36301:108;:::i;:::-;36293:116;;36419:72;36487:2;36476:9;36472:18;36463:6;36419:72;:::i;:::-;36501:73;36569:3;36558:9;36554:19;36545:6;36501:73;:::i;:::-;35750:831;;;;;;;;:::o;36587:807::-;36836:4;36874:3;36863:9;36859:19;36851:27;;36888:71;36956:1;36945:9;36941:17;36932:6;36888:71;:::i;:::-;36969:72;37037:2;37026:9;37022:18;37013:6;36969:72;:::i;:::-;37051:80;37127:2;37116:9;37112:18;37103:6;37051:80;:::i;:::-;37141;37217:2;37206:9;37202:18;37193:6;37141:80;:::i;:::-;37231:73;37299:3;37288:9;37284:19;37275:6;37231:73;:::i;:::-;37314;37382:3;37371:9;37367:19;37358:6;37314:73;:::i;:::-;36587:807;;;;;;;;;:::o;37400:143::-;37457:5;37488:6;37482:13;37473:22;;37504:33;37531:5;37504:33;:::i;:::-;37400:143;;;;:::o;37549:663::-;37637:6;37645;37653;37702:2;37690:9;37681:7;37677:23;37673:32;37670:119;;;37708:79;;:::i;:::-;37670:119;37828:1;37853:64;37909:7;37900:6;37889:9;37885:22;37853:64;:::i;:::-;37843:74;;37799:128;37966:2;37992:64;38048:7;38039:6;38028:9;38024:22;37992:64;:::i;:::-;37982:74;;37937:129;38105:2;38131:64;38187:7;38178:6;38167:9;38163:22;38131:64;:::i;:::-;38121:74;;38076:129;37549:663;;;;;:::o

Swarm Source

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