ETH Price: $3,482.55 (+0.61%)
Gas: 5 Gwei

Token

Save The World (HEAL)
 

Overview

Max Total Supply

1,000,000,000 HEAL

Holders

97

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
HEAL

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-01-11
*/

/**

    Save The World ($HEAL)

Telegram: https://t.me/savetheworldofficial
Website: http://savetheworldofficial.org

*/

// 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 HEAL 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("Save The World", "HEAL") {
 
        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 3/3
        uint256 _buyMarketingFee = 12;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;
        
        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 5;

        uint256 _feeDenominator = 100;
 
        uint256 totalSupply = 100_000_000_0 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% 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(0x62ffd1327111ae4fc005031433566a78F28327bB); // set as marketing wallet
        devWallet = address(0x5409461e683482c02C3a7c27CA8a0092F295E49E); // 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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600e81526020017f536176652054686520576f726c640000000000000000000000000000000000008152506040518060400160405280600481526020017f4845414c000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000e75565b5080600490816200010d919062000e75565b505050600062000122620006c860201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001ed816001620006d060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000293919062000fc6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000fc6565b6040518363ffffffff1660e01b81526004016200034092919062001009565b6020604051808303816000875af115801562000360573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000386919062000fc6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ce60a0516001620006d060201b60201c565b620003e360a0516001620007cd60201b60201c565b6000600c9050600080600390506000601490506000806005905060006064905060006b033b2e3c9fd0803ce800000090506103e860148262000426919062001065565b620004329190620010df565b6008819055506103e86014826200044a919062001065565b620004569190620010df565b600a819055506127106003826200046e919062001065565b6200047a9190620010df565b60098190555081601781905550876010819055508660118190555085601281905550601254601154601054620004b1919062001117565b620004bd919062001117565b600f81905550846014819055508360158190555082601681905550601654601554601454620004ed919062001117565b620004f9919062001117565b6013819055507362ffd1327111ae4fc005031433566a78f28327bb600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735409461e683482c02c3a7c27ca8a0092f295e49e600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005cb620005bd6200086e60201b60201c565b60016200089860201b60201c565b62000600600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089860201b60201c565b620006133060016200089860201b60201c565b6200062861dead60016200089860201b60201c565b6200064a6200063c6200086e60201b60201c565b6001620006d060201b60201c565b6200067f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006d060201b60201c565b62000692306001620006d060201b60201c565b620006a761dead6001620006d060201b60201c565b620006b93382620009e560201b60201c565b50505050505050505062001321565b600033905090565b620006e0620006c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000772576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076990620011b3565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a8620006c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200093a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200093190620011b3565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d99190620011f2565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4e906200125f565b60405180910390fd5b62000a6b6000838362000b9360201b60201c565b62000a878160025462000b9860201b620026111790919060201c565b60028190555062000ae5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b9860201b620026111790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b87919062001292565b60405180910390a35050565b505050565b600080828462000ba9919062001117565b90508381101562000bf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000be890620012ff565b60405180910390fd5b8091505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7d57607f821691505b60208210810362000c935762000c9262000c35565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cfd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cbe565b62000d09868362000cbe565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d5662000d5062000d4a8462000d21565b62000d2b565b62000d21565b9050919050565b6000819050919050565b62000d728362000d35565b62000d8a62000d818262000d5d565b84845462000ccb565b825550505050565b600090565b62000da162000d92565b62000dae81848462000d67565b505050565b5b8181101562000dd65762000dca60008262000d97565b60018101905062000db4565b5050565b601f82111562000e255762000def8162000c99565b62000dfa8462000cae565b8101602085101562000e0a578190505b62000e2262000e198562000cae565b83018262000db3565b50505b505050565b600082821c905092915050565b600062000e4a6000198460080262000e2a565b1980831691505092915050565b600062000e65838362000e37565b9150826002028217905092915050565b62000e808262000bfb565b67ffffffffffffffff81111562000e9c5762000e9b62000c06565b5b62000ea8825462000c64565b62000eb582828562000dda565b600060209050601f83116001811462000eed576000841562000ed8578287015190505b62000ee4858262000e57565b86555062000f54565b601f19841662000efd8662000c99565b60005b8281101562000f275784890151825560018201915060208501945060208101905062000f00565b8683101562000f47578489015162000f43601f89168262000e37565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f8e8262000f61565b9050919050565b62000fa08162000f81565b811462000fac57600080fd5b50565b60008151905062000fc08162000f95565b92915050565b60006020828403121562000fdf5762000fde62000f5c565b5b600062000fef8482850162000faf565b91505092915050565b620010038162000f81565b82525050565b600060408201905062001020600083018562000ff8565b6200102f602083018462000ff8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010728262000d21565b91506200107f8362000d21565b92508282026200108f8162000d21565b91508282048414831517620010a957620010a862001036565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010ec8262000d21565b9150620010f98362000d21565b9250826200110c576200110b620010b0565b5b828204905092915050565b6000620011248262000d21565b9150620011318362000d21565b92508282019050808211156200114c576200114b62001036565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200119b60208362001152565b9150620011a88262001163565b602082019050919050565b60006020820190508181036000830152620011ce816200118c565b9050919050565b60008115159050919050565b620011ec81620011d5565b82525050565b6000602082019050620012096000830184620011e1565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001247601f8362001152565b915062001254826200120f565b602082019050919050565b600060208201905081810360008301526200127a8162001238565b9050919050565b6200128c8162000d21565b82525050565b6000602082019050620012a9600083018462001281565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620012e7601b8362001152565b9150620012f482620012af565b602082019050919050565b600060208201905081810360008301526200131a81620012d8565b9050919050565b60805160a0516154ab6200137f6000396000818161125301528181611aa90152612bf5015260008181610df701528181612b9d01528181613d6d01528181613e4e01528181613e7501528181613f110152613f3801526154ab6000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600a611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b6013819055506014611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600f6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f000000000000000000000000000000000000000000000000000000000000000084612677565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148af602483613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220035ef9afb2b120fd682217179723ac2c0611484b6bf9ef58c405d42b5557f3d664736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c7b578063f2fde38b14610ca6578063f637434214610ccf578063f8b45b0514610cfa5761035b565b8063dd62ed3e14610be8578063e2f4560514610c25578063e884f26014610c505761035b565b8063c876d0b9116100d1578063c876d0b914610b2a578063c8c8ebe414610b55578063d257b34f14610b80578063d85ba06314610bbd5761035b565b8063c024666814610aaf578063c17b5b8c14610ad8578063c18bc19514610b015761035b565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb146109e1578063aacebbe314610a1e578063b62496f514610a47578063bbc0c74214610a845761035b565b80639fccce321461094e578063a0d82dc514610979578063a457c2d7146109a45761035b565b8063924de9b7116101a0578063924de9b7146108a657806395d89b41146108cf5780639a7a23d6146108fa5780639c3b4fdc146109235761035b565b80638da5cb5b146108255780638ea5220f14610850578063921369131461087b5761035b565b806339509351116102a0578063715018a61161023e57806375f0a8741161021857806375f0a8741461078f5780637bce5a04146107ba5780638095d564146107e55780638a8c523c1461080e5761035b565b8063715018a614610724578063751039fc1461073b5780637571336a146107665761035b565b80634fbee1931161027a5780634fbee193146106545780636a486a8e146106915780636ddd1713146106bc57806370a08231146106e75761035b565b806339509351146105c157806349bd5a5e146105fe5780634a62bb65146106295761035b565b80631816467f1161030d578063203e727e116102e7578063203e727e1461050557806323b872dd1461052e57806327c8f8351461056b578063313ce567146105965761035b565b80631816467f146104865780631a8145bb146104af5780631f3fed8f146104da5761035b565b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103c85780631694505e14610405578063180b0d7e1461043057806318160ddd1461045b5761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610d25565b6040516103829190614077565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614132565b610db7565b6040516103bf919061418d565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906141a8565b610dd5565b6040516103fc919061418d565b60405180910390f35b34801561041157600080fd5b5061041a610df5565b6040516104279190614234565b60405180910390f35b34801561043c57600080fd5b50610445610e19565b604051610452919061425e565b60405180910390f35b34801561046757600080fd5b50610470610e1f565b60405161047d919061425e565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a891906141a8565b610e29565b005b3480156104bb57600080fd5b506104c4610f80565b6040516104d1919061425e565b60405180910390f35b3480156104e657600080fd5b506104ef610f86565b6040516104fc919061425e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190614279565b610f8c565b005b34801561053a57600080fd5b50610555600480360381019061055091906142a6565b6110b6565b604051610562919061418d565b60405180910390f35b34801561057757600080fd5b5061058061118f565b60405161058d9190614308565b60405180910390f35b3480156105a257600080fd5b506105ab611195565b6040516105b8919061433f565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e39190614132565b61119e565b6040516105f5919061418d565b60405180910390f35b34801561060a57600080fd5b50610613611251565b6040516106209190614308565b60405180910390f35b34801561063557600080fd5b5061063e611275565b60405161064b919061418d565b60405180910390f35b34801561066057600080fd5b5061067b600480360381019061067691906141a8565b611288565b604051610688919061418d565b60405180910390f35b34801561069d57600080fd5b506106a66112de565b6040516106b3919061425e565b60405180910390f35b3480156106c857600080fd5b506106d16112e4565b6040516106de919061418d565b60405180910390f35b3480156106f357600080fd5b5061070e600480360381019061070991906141a8565b6112f7565b60405161071b919061425e565b60405180910390f35b34801561073057600080fd5b5061073961133f565b005b34801561074757600080fd5b50610750611497565b60405161075d919061418d565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190614386565b611552565b005b34801561079b57600080fd5b506107a4611644565b6040516107b19190614308565b60405180910390f35b3480156107c657600080fd5b506107cf61166a565b6040516107dc919061425e565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906143c6565b611670565b005b34801561081a57600080fd5b5061082361179e565b005b34801561083157600080fd5b5061083a611874565b6040516108479190614308565b60405180910390f35b34801561085c57600080fd5b5061086561189e565b6040516108729190614308565b60405180910390f35b34801561088757600080fd5b506108906118c4565b60405161089d919061425e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c89190614419565b6118ca565b005b3480156108db57600080fd5b506108e461197e565b6040516108f19190614077565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190614386565b611a10565b005b34801561092f57600080fd5b50610938611b43565b604051610945919061425e565b60405180910390f35b34801561095a57600080fd5b50610963611b49565b604051610970919061425e565b60405180910390f35b34801561098557600080fd5b5061098e611b4f565b60405161099b919061425e565b60405180910390f35b3480156109b057600080fd5b506109cb60048036038101906109c69190614132565b611b55565b6040516109d8919061418d565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190614132565b611c22565b604051610a15919061418d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a4091906141a8565b611c40565b005b348015610a5357600080fd5b50610a6e6004803603810190610a6991906141a8565b611d97565b604051610a7b919061418d565b60405180910390f35b348015610a9057600080fd5b50610a99611db7565b604051610aa6919061418d565b60405180910390f35b348015610abb57600080fd5b50610ad66004803603810190610ad19190614386565b611dca565b005b348015610ae457600080fd5b50610aff6004803603810190610afa91906143c6565b611f0a565b005b348015610b0d57600080fd5b50610b286004803603810190610b239190614279565b612038565b005b348015610b3657600080fd5b50610b3f612162565b604051610b4c919061418d565b60405180910390f35b348015610b6157600080fd5b50610b6a612175565b604051610b77919061425e565b60405180910390f35b348015610b8c57600080fd5b50610ba76004803603810190610ba29190614279565b61217b565b604051610bb4919061418d565b60405180910390f35b348015610bc957600080fd5b50610bd26122eb565b604051610bdf919061425e565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a9190614446565b6122f1565b604051610c1c919061425e565b60405180910390f35b348015610c3157600080fd5b50610c3a612378565b604051610c47919061425e565b60405180910390f35b348015610c5c57600080fd5b50610c6561237e565b604051610c72919061418d565b60405180910390f35b348015610c8757600080fd5b50610c90612439565b604051610c9d919061425e565b60405180910390f35b348015610cb257600080fd5b50610ccd6004803603810190610cc891906141a8565b61243f565b005b348015610cdb57600080fd5b50610ce4612605565b604051610cf1919061425e565b60405180910390f35b348015610d0657600080fd5b50610d0f61260b565b604051610d1c919061425e565b60405180910390f35b606060038054610d34906144b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d60906144b5565b8015610dad5780601f10610d8257610100808354040283529160200191610dad565b820191906000526020600020905b815481529060010190602001808311610d9057829003601f168201915b5050505050905090565b6000610dcb610dc461266f565b8484612677565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60175481565b6000600254905090565b610e3161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790614532565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610f9461266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a90614532565b60405180910390fd5b670de0b6b3a76400006103e86005611039610e1f565b6110439190614581565b61104d91906145f2565b61105791906145f2565b811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090614695565b60405180910390fd5b670de0b6b3a7640000816110ad9190614581565b60088190555050565b60006110c3848484612840565b611184846110cf61266f565b61117f8560405180606001604052806028815260200161542960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061113561266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b600190509392505050565b61dead81565b60006012905090565b60006112476111ab61266f565b8461124285600160006111bc61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b612677565b6001905092915050565b7f00000000000000000000000017cab654e8cb92a17a67c7a68fc744f160b4feab81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006114a161266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790614532565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61155a61266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614532565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b61167861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90614532565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461172f91906146b5565b61173991906146b5565b600f81905550600a611758601754600f5461353d90919063ffffffff16565b1115611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090614735565b60405180910390fd5b505050565b6117a661266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614532565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6118d261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890614532565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461198d906144b5565b80601f01602080910402602001604051908101604052809291908181526020018280546119b9906144b5565b8015611a065780601f106119db57610100808354040283529160200191611a06565b820191906000526020600020905b8154815290600101906020018083116119e957829003601f168201915b5050505050905090565b611a1861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9e90614532565b60405180910390fd5b7f00000000000000000000000017cab654e8cb92a17a67c7a68fc744f160b4feab73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906147c7565b60405180910390fd5b611b3f8282613587565b5050565b60125481565b601a5481565b60165481565b6000611c18611b6261266f565b84611c13856040518060600160405280602581526020016154516025913960016000611b8c61266f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b612677565b6001905092915050565b6000611c36611c2f61266f565b8484612840565b6001905092915050565b611c4861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90614532565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dd261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614532565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611efe919061418d565b60405180910390a25050565b611f1261266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890614532565b60405180910390fd5b826014819055508160158190555080601681905550601654601554601454611fc991906146b5565b611fd391906146b5565b6013819055506014611ff260175460135461353d90919063ffffffff16565b1115612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90614833565b60405180910390fd5b505050565b61204061266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c690614532565b60405180910390fd5b670de0b6b3a76400006103e8600f6120e5610e1f565b6120ef9190614581565b6120f991906145f2565b61210391906145f2565b811015612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906148c5565b60405180910390fd5b670de0b6b3a7640000816121599190614581565b600a8190555050565b600e60009054906101000a900460ff1681565b60085481565b600061218561266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90614532565b60405180910390fd5b620186a06001612222610e1f565b61222c9190614581565b61223691906145f2565b821015612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614957565b60405180910390fd5b6103e86005612285610e1f565b61228f9190614581565b61229991906145f2565b8211156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d2906149e9565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061238861266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240e90614532565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61244761266f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cd90614532565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253c90614a7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600a5481565b600080828461262091906146b5565b905083811015612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614ae7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dd90614b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614c0b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612833919061425e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590614d2f565b60405180910390fd5b600081036129375761293283836000613628565b6134d4565b600b60009054906101000a900460ff1615612ffa57612954611874565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129c25750612992611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129fb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a35575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a4e5750600560149054906101000a900460ff16155b15612ff957600b60019054906101000a900460ff16612b4857601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b085750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3e90614d9b565b60405180910390fd5b5b600e60009054906101000a900460ff1615612d1057612b65611874565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bec57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c4457507f00000000000000000000000017cab654e8cb92a17a67c7a68fc744f160b4feab73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612d0f5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614e53565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612db35750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e5a57600854811115612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614ee5565b60405180910390fd5b600a54612e09836112f7565b82612e1491906146b5565b1115612e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4c90614f51565b60405180910390fd5b612ff8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612efd5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f4c57600854811115612f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3e90614fe3565b60405180910390fd5b612ff7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ff657600a54612fa9836112f7565b82612fb491906146b5565b1115612ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614f51565b60405180910390fd5b5b5b5b5b5b6000613005306112f7565b90506000600954821015905080801561302a5750600b60029054906101000a900460ff165b80156130435750600560149054906101000a900460ff16155b80156130995750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130ef5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131455750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613189576001600560146101000a81548160ff02191690831515021790555061316d6138bb565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061323f5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561324957600090505b600081156134c457601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132ac57506000601354115b1561337a576132da6017546132cc60135488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050601354601554826132ed9190614581565b6132f791906145f2565b6019600082825461330891906146b5565b92505081905550601354601654826133209190614581565b61332a91906145f2565b601a600082825461333b91906146b5565b92505081905550601354601454826133539190614581565b61335d91906145f2565b6018600082825461336e91906146b5565b925050819055506134a0565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133d557506000600f54115b1561349f576134036017546133f5600f5488613ba290919063ffffffff16565b61353d90919063ffffffff16565b9050600f54601154826134169190614581565b61342091906145f2565b6019600082825461343191906146b5565b92505081905550600f54601254826134499190614581565b61345391906145f2565b601a600082825461346491906146b5565b92505081905550600f546010548261347c9190614581565b61348691906145f2565b6018600082825461349791906146b5565b925050819055505b5b60008111156134b5576134b4873083613628565b5b80856134c19190615003565b94505b6134cf878787613628565b505050505b505050565b6000838311158290613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135189190614077565b60405180910390fd5b50600083856135309190615003565b9050809150509392505050565b600061357f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c1c565b905092915050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368e90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fd90614d2f565b60405180910390fd5b613711838383613c7f565b61377c81604051806060016040528060268152602001615403602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134d99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061380f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461261190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516138ae919061425e565b60405180910390a3505050565b60006138c6306112f7565b90506000601a546018546019546138dd91906146b5565b6138e791906146b5565b90506000808314806138f95750600082145b1561390657505050613ba0565b60146009546139159190614581565b83111561392e57601460095461392b9190614581565b92505b6000600283601954866139419190614581565b61394b91906145f2565b61395591906145f2565b9050600061396c8286613c8490919063ffffffff16565b9050600047905061397c82613cce565b60006139918247613c8490919063ffffffff16565b905060006139bc876139ae60185485613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060006139e7886139d9601a5486613ba290919063ffffffff16565b61353d90919063ffffffff16565b905060008183856139f89190615003565b613a029190615003565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613a6290615068565b60006040518083038185875af1925050503d8060008114613a9f576040519150601f19603f3d011682016040523d82523d6000602084013e613aa4565b606091505b505080985050600087118015613aba5750600081115b15613b0757613ac98782613f0b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613afe9392919061507d565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613b4d90615068565b60006040518083038185875af1925050503d8060008114613b8a576040519150601f19603f3d011682016040523d82523d6000602084013e613b8f565b606091505b505080985050505050505050505050505b565b6000808303613bb45760009050613c16565b60008284613bc29190614581565b9050828482613bd191906145f2565b14613c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0890615126565b60405180910390fd5b809150505b92915050565b60008083118290613c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c5a9190614077565b60405180910390fd5b5060008385613c7291906145f2565b9050809150509392505050565b505050565b6000613cc683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506134d9565b905092915050565b6000600267ffffffffffffffff811115613ceb57613cea615146565b5b604051908082528060200260200182016040528015613d195781602001602082028036833780820191505090505b5090503081600081518110613d3157613d30615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613dd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dfa91906151b9565b81600181518110613e0e57613e0d615175565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613ed59594939291906152df565b600060405180830381600087803b158015613eef57600080fd5b505af1158015613f03573d6000803e3d6000fd5b505050505050565b613f36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612677565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f9d96959493929190615339565b60606040518083038185885af1158015613fbb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fe091906153af565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614021578082015181840152602081019050614006565b60008484015250505050565b6000601f19601f8301169050919050565b600061404982613fe7565b6140538185613ff2565b9350614063818560208601614003565b61406c8161402d565b840191505092915050565b60006020820190508181036000830152614091818461403e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140c98261409e565b9050919050565b6140d9816140be565b81146140e457600080fd5b50565b6000813590506140f6816140d0565b92915050565b6000819050919050565b61410f816140fc565b811461411a57600080fd5b50565b60008135905061412c81614106565b92915050565b6000806040838503121561414957614148614099565b5b6000614157858286016140e7565b92505060206141688582860161411d565b9150509250929050565b60008115159050919050565b61418781614172565b82525050565b60006020820190506141a2600083018461417e565b92915050565b6000602082840312156141be576141bd614099565b5b60006141cc848285016140e7565b91505092915050565b6000819050919050565b60006141fa6141f56141f08461409e565b6141d5565b61409e565b9050919050565b600061420c826141df565b9050919050565b600061421e82614201565b9050919050565b61422e81614213565b82525050565b60006020820190506142496000830184614225565b92915050565b614258816140fc565b82525050565b6000602082019050614273600083018461424f565b92915050565b60006020828403121561428f5761428e614099565b5b600061429d8482850161411d565b91505092915050565b6000806000606084860312156142bf576142be614099565b5b60006142cd868287016140e7565b93505060206142de868287016140e7565b92505060406142ef8682870161411d565b9150509250925092565b614302816140be565b82525050565b600060208201905061431d60008301846142f9565b92915050565b600060ff82169050919050565b61433981614323565b82525050565b60006020820190506143546000830184614330565b92915050565b61436381614172565b811461436e57600080fd5b50565b6000813590506143808161435a565b92915050565b6000806040838503121561439d5761439c614099565b5b60006143ab858286016140e7565b92505060206143bc85828601614371565b9150509250929050565b6000806000606084860312156143df576143de614099565b5b60006143ed8682870161411d565b93505060206143fe8682870161411d565b925050604061440f8682870161411d565b9150509250925092565b60006020828403121561442f5761442e614099565b5b600061443d84828501614371565b91505092915050565b6000806040838503121561445d5761445c614099565b5b600061446b858286016140e7565b925050602061447c858286016140e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806144cd57607f821691505b6020821081036144e0576144df614486565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061451c602083613ff2565b9150614527826144e6565b602082019050919050565b6000602082019050818103600083015261454b8161450f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061458c826140fc565b9150614597836140fc565b92508282026145a5816140fc565b915082820484148315176145bc576145bb614552565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145fd826140fc565b9150614608836140fc565b925082614618576146176145c3565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061467f602f83613ff2565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b60006146c0826140fc565b91506146cb836140fc565b92508282019050808211156146e3576146e2614552565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b600061471f601d83613ff2565b915061472a826146e9565b602082019050919050565b6000602082019050818103600083015261474e81614712565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006147b1603983613ff2565b91506147bc82614755565b604082019050919050565b600060208201905081810360008301526147e0816147a4565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b600061481d601d83613ff2565b9150614828826147e7565b602082019050919050565b6000602082019050818103600083015261484c81614810565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f312e352500000000000000000000000000000000000000000000000000000000602082015250565b60006148af602483613ff2565b91506148ba82614853565b604082019050919050565b600060208201905081810360008301526148de816148a2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614941603583613ff2565b915061494c826148e5565b604082019050919050565b6000602082019050818103600083015261497081614934565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006149d3603483613ff2565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a65602683613ff2565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614ad1601b83613ff2565b9150614adc82614a9b565b602082019050919050565b60006020820190508181036000830152614b0081614ac4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b63602483613ff2565b9150614b6e82614b07565b604082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613ff2565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c87602583613ff2565b9150614c9282614c2b565b604082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602383613ff2565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d85601683613ff2565b9150614d9082614d4f565b602082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e3d604883613ff2565b9150614e4882614dbb565b606082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ecf603583613ff2565b9150614eda82614e73565b604082019050919050565b60006020820190508181036000830152614efe81614ec2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f3b601383613ff2565b9150614f4682614f05565b602082019050919050565b60006020820190508181036000830152614f6a81614f2e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fcd603683613ff2565b9150614fd882614f71565b604082019050919050565b60006020820190508181036000830152614ffc81614fc0565b9050919050565b600061500e826140fc565b9150615019836140fc565b925082820390508181111561503157615030614552565b5b92915050565b600081905092915050565b50565b6000615052600083615037565b915061505d82615042565b600082019050919050565b600061507382615045565b9150819050919050565b6000606082019050615092600083018661424f565b61509f602083018561424f565b6150ac604083018461424f565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615110602183613ff2565b915061511b826150b4565b604082019050919050565b6000602082019050818103600083015261513f81615103565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506151b3816140d0565b92915050565b6000602082840312156151cf576151ce614099565b5b60006151dd848285016151a4565b91505092915050565b6000819050919050565b600061520b615206615201846151e6565b6141d5565b6140fc565b9050919050565b61521b816151f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615256816140be565b82525050565b6000615268838361524d565b60208301905092915050565b6000602082019050919050565b600061528c82615221565b615296818561522c565b93506152a18361523d565b8060005b838110156152d25781516152b9888261525c565b97506152c483615274565b9250506001810190506152a5565b5085935050505092915050565b600060a0820190506152f4600083018861424f565b6153016020830187615212565b81810360408301526153138186615281565b905061532260608301856142f9565b61532f608083018461424f565b9695505050505050565b600060c08201905061534e60008301896142f9565b61535b602083018861424f565b6153686040830187615212565b6153756060830186615212565b61538260808301856142f9565b61538f60a083018461424f565b979650505050505050565b6000815190506153a981614106565b92915050565b6000806000606084860312156153c8576153c7614099565b5b60006153d68682870161539a565b93505060206153e78682870161539a565b92505060406153f88682870161539a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220035ef9afb2b120fd682217179723ac2c0611484b6bf9ef58c405d42b5557f3d664736f6c63430008110033

Deployed Bytecode Sourcemap

25311:15639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9798:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26900:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25386:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26535:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8747:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33902:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26614:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26574;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31418:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10450:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25489:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8588:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11215:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25444:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25806:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34067:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26390:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25886:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8919:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18480:148;;;;;;;;;;;;;:::i;:::-;;30640:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31886:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25619:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26282;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32237:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30439:148;;;;;;;;;;;;;:::i;:::-;;18264:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25656:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32127:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7844:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33233:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26356:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26654:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26501:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11937:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9260:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33685:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27123:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25846:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33042:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32635:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31661:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26199:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25690:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31028:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26248:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9499:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25732:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30822:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26319:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18636:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26463:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25772:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7624:100;7678:13;7711:5;7704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7624:100;:::o;9798:169::-;9881:4;9898:39;9907:12;:10;:12::i;:::-;9921:7;9930:6;9898:8;:39::i;:::-;9955:4;9948:11;;9798:169;;;;:::o;26900:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;25386:51::-;;;:::o;26535:29::-;;;;:::o;8747:108::-;8808:7;8835:12;;8828:19;;8747:108;:::o;33902:157::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34009:9:::1;;;;;;;;;;;33981:38;;33998:9;33981:38;;;;;;;;;;;;34042:9;34030;;:21;;;;;;;;;;;;;;;;;;33902:157:::0;:::o;26614:33::-;;;;:::o;26574:::-;;;;:::o;31418:234::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31537:4:::1;31531;31527:1;31511:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;31510:31;;;;:::i;:::-;31500:6;:41;;31492:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;31637:6;31627;:17;;;;:::i;:::-;31604:20;:40;;;;31418:234:::0;:::o;10450:355::-;10590:4;10607:36;10617:6;10625:9;10636:6;10607:9;:36::i;:::-;10654:121;10663:6;10671:12;:10;:12::i;:::-;10685:89;10723:6;10685:89;;;;;;;;;;;;;;;;;:11;:19;10697:6;10685:19;;;;;;;;;;;;;;;:33;10705:12;:10;:12::i;:::-;10685:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10654:8;:121::i;:::-;10793:4;10786:11;;10450:355;;;;;:::o;25489:89::-;25535:42;25489:89;:::o;8588:93::-;8646:5;8671:2;8664:9;;8588:93;:::o;11215:218::-;11303:4;11320:83;11329:12;:10;:12::i;:::-;11343:7;11352:50;11391:10;11352:11;:25;11364:12;:10;:12::i;:::-;11352:25;;;;;;;;;;;;;;;:34;11378:7;11352:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11320:8;:83::i;:::-;11421:4;11414:11;;11215:218;;;;:::o;25444:38::-;;;:::o;25806:33::-;;;;;;;;;;;;;:::o;34067:125::-;34132:4;34156:19;:28;34176:7;34156:28;;;;;;;;;;;;;;;;;;;;;;;;;34149:35;;34067:125;;;:::o;26390:28::-;;;;:::o;25886:31::-;;;;;;;;;;;;;:::o;8919:127::-;8993:7;9020:9;:18;9030:7;9020:18;;;;;;;;;;;;;;;;9013:25;;8919:127;;;:::o;18480:148::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18587:1:::1;18550:40;;18571:6;;;;;;;;;;;18550:40;;;;;;;;;;;;18618:1;18601:6;;:19;;;;;;;;;;;;;;;;;;18480:148::o:0;30640:120::-;30692:4;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30725:5:::1;30708:14;;:22;;;;;;;;;;;;;;;;;;30748:4;30741:11;;30640:120:::0;:::o;31886:144::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32018:4:::1;31976:31;:39;32008:6;31976:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31886:144:::0;;:::o;25619:30::-;;;;;;;;;;;;;:::o;26282:::-;;;;:::o;32237:389::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32371:13:::1;32353:15;:31;;;;32413:13;32395:15;:31;;;;32449:7;32437:9;:19;;;;32518:9;;32500:15;;32482;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;32467:12;:60;;;;32582:2;32546:32;32563:14;;32546:12;;:16;;:32;;;;:::i;:::-;:38;;32538:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;32237:389:::0;;;:::o;30439:148::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30510:4:::1;30494:13;;:20;;;;;;;;;;;;;;;;;;30539:4;30525:11;;:18;;;;;;;;;;;;;;;;;;30567:12;30554:10;:25;;;;30439:148::o:0;18264:79::-;18302:7;18329:6;;;;;;;;;;;18322:13;;18264:79;:::o;25656:24::-;;;;;;;;;;;;;:::o;26425:31::-;;;;:::o;32127:101::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32213:7:::1;32199:11;;:21;;;;;;;;;;;;;;;;;;32127:101:::0;:::o;7844:104::-;7900:13;7933:7;7926:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7844:104;:::o;33233:245::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:13:::1;33332:21;;:4;:21;;::::0;33324:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;33429:41;33458:4;33464:5;33429:28;:41::i;:::-;33233:245:::0;;:::o;26356:24::-;;;;:::o;26654:27::-;;;;:::o;26501:25::-;;;;:::o;11937:269::-;12030:4;12047:129;12056:12;:10;:12::i;:::-;12070:7;12079:96;12118:15;12079:96;;;;;;;;;;;;;;;;;:11;:25;12091:12;:10;:12::i;:::-;12079:25;;;;;;;;;;;;;;;:34;12105:7;12079:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12047:8;:129::i;:::-;12194:4;12187:11;;11937:269;;;;:::o;9260:175::-;9346:4;9363:42;9373:12;:10;:12::i;:::-;9387:9;9398:6;9363:9;:42::i;:::-;9423:4;9416:11;;9260:175;;;;:::o;33685:208::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33822:15:::1;;;;;;;;;;;33779:59;;33802:18;33779:59;;;;;;;;;;;;33867:18;33849:15;;:36;;;;;;;;;;;;;;;;;;33685:208:::0;:::o;27123:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;25846:33::-;;;;;;;;;;;;;:::o;33042:182::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33158:8:::1;33127:19;:28;33147:7;33127:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33198:7;33182:34;;;33207:8;33182:34;;;;;;:::i;:::-;;;;;;;;33042:182:::0;;:::o;32635:398::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32771:13:::1;32752:16;:32;;;;32814:13;32795:16;:32;;;;32851:7;32838:10;:20;;;;32923:10;;32904:16;;32885;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;32869:13;:64;;;;32989:2;32952:33;32970:14;;32952:13;;:17;;:33;;;;:::i;:::-;:39;;32944:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32635:398:::0;;;:::o;31661:216::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31784:4:::1;31778;31773:2;31757:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;31756:32;;;;:::i;:::-;31746:6;:42;;31738:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;31862:6;31852;:17;;;;:::i;:::-;31840:9;:29;;;;31661:216:::0;:::o;26199:39::-;;;;;;;;;;;;;:::o;25690:35::-;;;;:::o;31028:381::-;31109:4;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31165:6:::1;31161:1;31145:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;31132:9;:39;;31124:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;31280:4;31276:1;31260:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;31247:9;:37;;31239:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;31372:9;31351:18;:30;;;;31398:4;31391:11;;31028:381:::0;;;:::o;26248:27::-;;;;:::o;9499:151::-;9588:7;9615:11;:18;9627:5;9615:18;;;;;;;;;;;;;;;:27;9634:7;9615:27;;;;;;;;;;;;;;;;9608:34;;9499:151;;;;:::o;25732:33::-;;;;:::o;30822:134::-;30882:4;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;30921:5:::1;30898:20;;:28;;;;;;;;;;;;;;;;;;30944:4;30937:11;;30822:134:::0;:::o;26319:30::-;;;;:::o;18636:244::-;18402:12;:10;:12::i;:::-;18392:22;;:6;;;;;;;;;;;:22;;;18384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18745:1:::1;18725:22;;:8;:22;;::::0;18717:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18835:8;18806:38;;18827:6;;;;;;;;;;;18806:38;;;;;;;;;;;;18864:8;18855:6;;:17;;;;;;;;;;;;;;;;;;18636:244:::0;:::o;26463:31::-;;;;:::o;25772:24::-;;;;:::o;16275:182::-;16333:7;16353:9;16369:1;16365;:5;;;;:::i;:::-;16353:17;;16394:1;16389;:6;;16381:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16448:1;16441:8;;;16275:182;;;;:::o;226:98::-;279:7;306:10;299:17;;226:98;:::o;15133:381::-;15286:1;15269:19;;:5;:19;;;15261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15367:1;15348:21;;:7;:21;;;15340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:6;15422:11;:18;15434:5;15422:18;;;;;;;;;;;;;;;:27;15441:7;15422:27;;;;;;;;;;;;;;;:36;;;;15490:7;15474:32;;15483:5;15474:32;;;15499:6;15474:32;;;;;;:::i;:::-;;;;;;;;15133:381;;;:::o;34201:4042::-;34349:1;34333:18;;:4;:18;;;34325:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34426:1;34412:16;;:2;:16;;;34404:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34492:1;34482:6;:11;34479:92;;34510:28;34526:4;34532:2;34536:1;34510:15;:28::i;:::-;34553:7;;34479:92;34587:14;;;;;;;;;;;34584:1811;;;34647:7;:5;:7::i;:::-;34639:15;;:4;:15;;;;:49;;;;;34681:7;:5;:7::i;:::-;34675:13;;:2;:13;;;;34639:49;:86;;;;;34723:1;34709:16;;:2;:16;;;;34639:86;:128;;;;;34760:6;34746:21;;:2;:21;;;;34639:128;:158;;;;;34789:8;;;;;;;;;;;34788:9;34639:158;34617:1767;;;34835:13;;;;;;;;;;;34831:148;;34880:19;:25;34900:4;34880:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34909:19;:23;34929:2;34909:23;;;;;;;;;;;;;;;;;;;;;;;;;34880:52;34872:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34831:148;35138:20;;;;;;;;;;;35134:423;;;35193:7;:5;:7::i;:::-;35187:13;;:2;:13;;;;:47;;;;;35218:15;35204:30;;:2;:30;;;;35187:47;:79;;;;;35252:13;35238:28;;:2;:28;;;;35187:79;35183:355;;;35344:12;35302:28;:39;35331:9;35302:39;;;;;;;;;;;;;;;;:54;35294:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;35502:12;35460:28;:39;35489:9;35460:39;;;;;;;;;;;;;;;:54;;;;35183:355;35134:423;35610:25;:31;35636:4;35610:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;35646:31;:35;35678:2;35646:35;;;;;;;;;;;;;;;;;;;;;;;;;35645:36;35610:71;35606:763;;;35728:20;;35718:6;:30;;35710:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;35867:9;;35850:13;35860:2;35850:9;:13::i;:::-;35841:6;:22;;;;:::i;:::-;:35;;35833:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35606:763;;;35979:25;:29;36005:2;35979:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;36013:31;:37;36045:4;36013:37;;;;;;;;;;;;;;;;;;;;;;;;;36012:38;35979:71;35975:394;;;36097:20;;36087:6;:30;;36079:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;35975:394;;;36223:31;:35;36255:2;36223:35;;;;;;;;;;;;;;;;;;;;;;;;;36219:150;;36316:9;;36299:13;36309:2;36299:9;:13::i;:::-;36290:6;:22;;;;:::i;:::-;:35;;36282:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36219:150;35975:394;35606:763;34617:1767;34584:1811;36402:28;36433:24;36451:4;36433:9;:24::i;:::-;36402:55;;36471:12;36510:18;;36486:20;:42;;36471:57;;36560:7;:35;;;;;36584:11;;;;;;;;;;;36560:35;:61;;;;;36613:8;;;;;;;;;;;36612:9;36560:61;:110;;;;;36639:25;:31;36665:4;36639:31;;;;;;;;;;;;;;;;;;;;;;;;;36638:32;36560:110;:153;;;;;36688:19;:25;36708:4;36688:25;;;;;;;;;;;;;;;;;;;;;;;;;36687:26;36560:153;:194;;;;;36731:19;:23;36751:2;36731:23;;;;;;;;;;;;;;;;;;;;;;;;;36730:24;36560:194;36542:328;;;36792:4;36781:8;;:15;;;;;;;;;;;;;;;;;;36814:10;:8;:10::i;:::-;36853:5;36842:8;;:16;;;;;;;;;;;;;;;;;;36542:328;36883:12;36899:8;;;;;;;;;;;36898:9;36883:24;;37009:19;:25;37029:4;37009:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37038:19;:23;37058:2;37038:23;;;;;;;;;;;;;;;;;;;;;;;;;37009:52;37006:99;;;37088:5;37078:15;;37006:99;37118:12;37222:7;37219:970;;;37273:25;:29;37299:2;37273:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;37322:1;37306:13;;:17;37273:50;37269:770;;;37350:45;37380:14;;37350:25;37361:13;;37350:6;:10;;:25;;;;:::i;:::-;:29;;:45;;;;:::i;:::-;37343:52;;37462:13;;37443:16;;37436:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37414:18;;:61;;;;;;;:::i;:::-;;;;;;;;37530:13;;37517:10;;37510:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;37494:12;;:49;;;;;;;:::i;:::-;;;;;;;;37610:13;;37591:16;;37584:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;37562:18;;:61;;;;;;;:::i;:::-;;;;;;;;37269:770;;;37684:25;:31;37710:4;37684:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;37734:1;37719:12;;:16;37684:51;37681:358;;;37760:44;37789:14;;37760:24;37771:12;;37760:6;:10;;:24;;;;:::i;:::-;:28;;:44;;;;:::i;:::-;37753:51;;37867:12;;37849:15;;37842:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37820:18;;:59;;;;;;;:::i;:::-;;;;;;;;37933:12;;37921:9;;37914:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;37898:12;;:47;;;;;;;:::i;:::-;;;;;;;;38011:12;;37993:15;;37986:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;37964:18;;:59;;;;;;;:::i;:::-;;;;;;;;37681:358;37269:770;38066:1;38059:4;:8;38056:93;;;38091:42;38107:4;38121;38128;38091:15;:42::i;:::-;38056:93;38173:4;38163:14;;;;;:::i;:::-;;;37219:970;38202:33;38218:4;38224:2;38228:6;38202:15;:33::i;:::-;34314:3929;;;;34201:4042;;;;:::o;16609:193::-;16695:7;16728:1;16723;:6;;16731:12;16715:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16755:9;16771:1;16767;:5;;;;:::i;:::-;16755:17;;16793:1;16786:8;;;16609:193;;;;;:::o;17291:132::-;17349:7;17376:39;17380:1;17383;17376:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;17369:46;;17291:132;;;;:::o;33487:189::-;33604:5;33570:25;:31;33596:4;33570:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;33662:5;33628:40;;33656:4;33628:40;;;;;;;;;;;;33487:189;;:::o;12697:575::-;12855:1;12837:20;;:6;:20;;;12829:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12939:1;12918:23;;:9;:23;;;12910:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12995:47;13016:6;13024:9;13035:6;12995:20;:47::i;:::-;13076:71;13098:6;13076:71;;;;;;;;;;;;;;;;;:9;:17;13086:6;13076:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13056:9;:17;13066:6;13056:17;;;;;;;;;;;;;;;:91;;;;13181:32;13206:6;13181:9;:20;13191:9;13181:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13158:9;:20;13168:9;13158:20;;;;;;;;;;;;;;;:55;;;;13246:9;13229:35;;13238:6;13229:35;;;13257:6;13229:35;;;;;;:::i;:::-;;;;;;;;12697:575;;;:::o;39379:1568::-;39418:23;39444:24;39462:4;39444:9;:24::i;:::-;39418:50;;39479:25;39549:12;;39528:18;;39507;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;39479:82;;39572:12;39620:1;39601:15;:20;:46;;;;39646:1;39625:17;:22;39601:46;39598:60;;;39650:7;;;;;39598:60;39713:2;39692:18;;:23;;;;:::i;:::-;39674:15;:41;39671:111;;;39768:2;39747:18;;:23;;;;:::i;:::-;39729:41;;39671:111;39844:23;39929:1;39909:17;39888:18;;39870:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;39844:86;;39941:26;39970:36;39990:15;39970;:19;;:36;;;;:::i;:::-;39941:65;;40020:25;40048:21;40020:49;;40083:36;40100:18;40083:16;:36::i;:::-;40134:18;40155:44;40181:17;40155:21;:25;;:44;;;;:::i;:::-;40134:65;;40213:23;40239:57;40278:17;40239:34;40254:18;;40239:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;40213:83;;40307:17;40327:51;40360:17;40327:28;40342:12;;40327:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;40307:71;;40392:23;40449:9;40431:15;40418:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;40392:66;;40493:1;40472:18;:22;;;;40526:1;40505:18;:22;;;;40553:1;40538:12;:16;;;;40589:9;;;;;;;;;;;40581:23;;40612:9;40581:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40568:58;;;;;40661:1;40643:15;:19;:42;;;;;40684:1;40666:15;:19;40643:42;40640:210;;;40701:46;40714:15;40731;40701:12;:46::i;:::-;40767:71;40782:18;40802:15;40819:18;;40767:71;;;;;;;;:::i;:::-;;;;;;;;40640:210;40884:15;;;;;;;;;;;40876:29;;40913:21;40876:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40863:76;;;;;39407:1540;;;;;;;;;;39379:1568;:::o;16810:473::-;16868:7;17118:1;17113;:6;17109:47;;17143:1;17136:8;;;;17109:47;17169:9;17185:1;17181;:5;;;;:::i;:::-;17169:17;;17214:1;17209;17205;:5;;;;:::i;:::-;:10;17197:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17274:1;17267:8;;;16810:473;;;;;:::o;17431:191::-;17517:7;17549:1;17545;:5;17552:12;17537:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17576:9;17592:1;17588;:5;;;;:::i;:::-;17576:17;;17613:1;17606:8;;;17431:191;;;;;:::o;16118:125::-;;;;:::o;16465:136::-;16523:7;16550:43;16554:1;16557;16550:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16543:50;;16465:136;;;;:::o;38252:591::-;38378:21;38416:1;38402:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38378:40;;38447:4;38429;38434:1;38429:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38473:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38463:4;38468:1;38463:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38509:62;38526:4;38541:15;38559:11;38509:8;:62::i;:::-;38611:15;:66;;;38692:11;38718:1;38762:4;38789;38809:15;38611:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38307:536;38252:591;:::o;38852:518::-;39000:62;39017:4;39032:15;39050:11;39000:8;:62::i;:::-;39106:15;:31;;;39145:9;39178:4;39198:11;39224:1;39267;25535:42;39336:15;39106:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;38852: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://035ef9afb2b120fd682217179723ac2c0611484b6bf9ef58c405d42b5557f3d6
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.