ETH Price: $3,052.19 (+3.46%)

Token

MYSTIC DAO (MYSTIC)
 

Overview

Max Total Supply

1,000,000,000,000 MYSTIC

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
24,950,265,271.242098979601817944 MYSTIC

Value
$0.00
0x0514de938186f52396374f047d520a2e20b5fb82
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:
Mystic

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-29
*/

/**

███╗   ███╗██╗   ██╗███████╗████████╗██╗ ██████╗    ██████╗  █████╗  ██████╗ 
████╗ ████║╚██╗ ██╔╝██╔════╝╚══██╔══╝██║██╔════╝    ██╔══██╗██╔══██╗██╔═══██╗
██╔████╔██║ ╚████╔╝ ███████╗   ██║   ██║██║         ██║  ██║███████║██║   ██║
██║╚██╔╝██║  ╚██╔╝  ╚════██║   ██║   ██║██║         ██║  ██║██╔══██║██║   ██║
██║ ╚═╝ ██║   ██║   ███████║   ██║   ██║╚██████╗    ██████╔╝██║  ██║╚██████╔╝
╚═╝     ╚═╝   ╚═╝   ╚══════╝   ╚═╝   ╚═╝ ╚═════╝    ╚═════╝ ╚═╝  ╚═╝ ╚═════╝                                                 

**/

 
// SPDX-License-Identifier: Unlicensed
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 Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
 
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
 
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
 
    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
 
        return c;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }
 
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
 
        return c;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold
 
        return c;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
 
contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
 
 
 
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
 
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
 
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
 
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);
 
        // Solidity already throws when dividing by 0.
        return a / b;
    }
 
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }
 
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
 
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
 
 
    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
 
library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}
 
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract Mystic is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private daoWallet;
    address private devWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public enableEarlySellTax = 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;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyDaoFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellDaoFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForDao;
    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 daoWalletUpdated(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("MYSTIC DAO", "MYSTIC") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyDaoFee = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;
 
        uint256 _sellDaoFee = 3;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 4;

        uint256 totalSupply = 1 * 1e12 * 1e18;
 
        maxTransactionAmount = totalSupply * 10 / 1000; // 1% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
 
        buyDaoFee = _buyDaoFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyDaoFee + buyLiquidityFee + buyDevFee;
 
        sellDaoFee = _sellDaoFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellDaoFee + sellLiquidityFee + sellDevFee;
 
        daoWallet = address(owner()); // set as dao wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(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() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function updateBuyFees(uint256 _daoFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyDaoFee = _daoFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyDaoFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
 
    function updateSellFees(uint256 _daoFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellDaoFee = _daoFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellDaoFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 15, "Must keep fees at 15% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function blacklistAccount (address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateDaoWallet(address newDaoWallet) external onlyOwner {
        emit daoWalletUpdated(newDaoWallet, daoWallet);
        daoWallet = newDaoWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    event BoughtEarly(address indexed sniper);
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
 
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
 
        // anti bot logic
        if (block.number <= (launchedAt + 3) && 
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) { 
            _blacklist[to] = true;
        }
 
        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(100);
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensForDao += fees * sellDaoFee / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForDao += fees * buyDaoFee / 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
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDao + 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 ethForDao = ethBalance.mul(tokensForDao).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForDao - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForDao = 0;
        tokensForDev = 0;
 
        (success,) = address(devWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(daoWallet).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":"sniper","type":"address"}],"name":"BoughtEarly","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":"daoWalletUpdated","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDaoFee","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellDaoFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokensForDao","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_daoFee","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":"newDaoWallet","type":"address"}],"name":"updateDaoWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","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":"_daoFee","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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506000600b60036101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600a81526020017f4d59535449432044414f000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d5953544943000000000000000000000000000000000000000000000000000081525081600390805190602001906200011d92919062000bd9565b5080600490805190602001906200013692919062000bd9565b50505060006200014b620006a560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000216816001620006ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029157600080fd5b505afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000cf3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200032f57600080fd5b505afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000cf3565b6040518363ffffffff1660e01b81526004016200038992919062000d36565b602060405180830381600087803b158015620003a457600080fd5b505af1158015620003b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003df919062000cf3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200042760a0516001620006ad60201b60201c565b6200043c60a0516001620007aa60201b60201c565b6000600290506000806003905060006003905060006002905060006004905060006c0c9f2c9cd04674edea4000000090506103e8600a826200047f919062000d9c565b6200048b919062000e2c565b6008819055506103e8601482620004a3919062000d9c565b620004af919062000e2c565b600a81905550612710600a82620004c7919062000d9c565b620004d3919062000e2c565b60098190555086601181905550856012819055508460138190555060135460125460115462000503919062000e64565b6200050f919062000e64565b6010819055508360158190555082601681905550816017819055506017546016546015546200053f919062000e64565b6200054b919062000e64565b601481905550620005616200084b60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005b16200084b60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000613620006056200084b60201b60201c565b60016200087560201b60201c565b620006263060016200087560201b60201c565b6200063b61dead60016200087560201b60201c565b6200065d6200064f6200084b60201b60201c565b6001620006ad60201b60201c565b62000670306001620006ad60201b60201c565b6200068561dead6001620006ad60201b60201c565b620006973382620009c260201b60201c565b5050505050505050620010f5565b600033905090565b620006bd620006a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200074f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007469062000f22565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000885620006a560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000917576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090e9062000f22565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009b6919062000f61565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2c9062000fce565b60405180910390fd5b62000a496000838362000b7160201b60201c565b62000a658160025462000b7660201b6200260a1790919060201c565b60028190555062000ac3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b7660201b6200260a1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b65919062001001565b60405180910390a35050565b505050565b600080828462000b87919062000e64565b90508381101562000bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bc6906200106e565b60405180910390fd5b8091505092915050565b82805462000be790620010bf565b90600052602060002090601f01602090048101928262000c0b576000855562000c57565b82601f1062000c2657805160ff191683800117855562000c57565b8280016001018555821562000c57579182015b8281111562000c5657825182559160200191906001019062000c39565b5b50905062000c66919062000c6a565b5090565b5b8082111562000c8557600081600090555060010162000c6b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cbb8262000c8e565b9050919050565b62000ccd8162000cae565b811462000cd957600080fd5b50565b60008151905062000ced8162000cc2565b92915050565b60006020828403121562000d0c5762000d0b62000c89565b5b600062000d1c8482850162000cdc565b91505092915050565b62000d308162000cae565b82525050565b600060408201905062000d4d600083018562000d25565b62000d5c602083018462000d25565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000da98262000d63565b915062000db68362000d63565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000df25762000df162000d6d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e398262000d63565b915062000e468362000d63565b92508262000e595762000e5862000dfd565b5b828204905092915050565b600062000e718262000d63565b915062000e7e8362000d63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eb65762000eb562000d6d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0a60208362000ec1565b915062000f178262000ed2565b602082019050919050565b6000602082019050818103600083015262000f3d8162000efb565b9050919050565b60008115159050919050565b62000f5b8162000f44565b82525050565b600060208201905062000f78600083018462000f50565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fb6601f8362000ec1565b915062000fc38262000f7e565b602082019050919050565b6000602082019050818103600083015262000fe98162000fa7565b9050919050565b62000ffb8162000d63565b82525050565b600060208201905062001018600083018462000ff0565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001056601b8362000ec1565b915062001063826200101e565b602082019050919050565b60006020820190508181036000830152620010898162001047565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010d857607f821691505b60208210811415620010ef57620010ee62001090565b5b50919050565b60805160a0516157936200115a600039600081816112a501528181611bf801528181612cd601526130f6015260008181610d6901528181612c7e01528181613f0001528181613ff001528181614017015281816140b301526140da01526157936000f3fe60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bed578063f2fde38b14610c18578063f637434214610c41578063f8b45b0514610c6c57610325565b8063dd62ed3e14610b5a578063e2f4560514610b97578063e884f26014610bc257610325565b8063c876d0b9116100d1578063c876d0b914610a9c578063c8c8ebe414610ac7578063d257b34f14610af2578063d85ba06314610b2f57610325565b8063c024666814610a21578063c17b5b8c14610a4a578063c18bc19514610a7357610325565b80639fccce3211610164578063a4d15b641161013e578063a4d15b6414610951578063a9059cbb1461097c578063b62496f5146109b9578063bbc0c742146109f657610325565b80639fccce32146108be578063a0d82dc5146108e9578063a457c2d71461091457610325565b80638da5cb5b146107c2578063924de9b7146107ed57806393355e3f1461081657806395d89b411461083f5780639a7a23d61461086a5780639c3b4fdc1461089357610325565b80634a62bb651161026a57806370a0823111610223578063751039fc116101fd578063751039fc1461072e5780637571336a146107595780638095d564146107825780638a8c523c146107ab57610325565b806370a08231146106af578063715018a6146106ec57806374480aa71461070357610325565b80634a62bb651461059b5780634fbee193146105c657806358301f1d14610603578063598a83f21461062e5780636a486a8e146106595780636ddd17131461068457610325565b80631a8145bb116102d75780632d5a5d34116102b15780632d5a5d34146104df578063313ce56714610508578063395093511461053357806349bd5a5e1461057057610325565b80631a8145bb1461044e578063203e727e1461047957806323b872dd146104a257610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c97565b60405161034c9190614292565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061434d565b610d29565b60405161038991906143a8565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906143c3565b610d47565b6040516103c691906143a8565b60405180910390f35b3480156103db57600080fd5b506103e4610d67565b6040516103f1919061444f565b60405180910390f35b34801561040657600080fd5b5061040f610d8b565b60405161041c9190614479565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906143c3565b610d95565b005b34801561045a57600080fd5b50610463610eec565b6040516104709190614479565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190614494565b610ef2565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906144c1565b61101c565b6040516104d691906143a8565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190614540565b6110f5565b005b34801561051457600080fd5b5061051d6111e7565b60405161052a919061459c565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061434d565b6111f0565b60405161056791906143a8565b60405180910390f35b34801561057c57600080fd5b506105856112a3565b60405161059291906145c6565b60405180910390f35b3480156105a757600080fd5b506105b06112c7565b6040516105bd91906143a8565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906143c3565b6112da565b6040516105fa91906143a8565b60405180910390f35b34801561060f57600080fd5b50610618611330565b6040516106259190614479565b60405180910390f35b34801561063a57600080fd5b50610643611336565b6040516106509190614479565b60405180910390f35b34801561066557600080fd5b5061066e61133c565b60405161067b9190614479565b60405180910390f35b34801561069057600080fd5b50610699611342565b6040516106a691906143a8565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906143c3565b611355565b6040516106e39190614479565b60405180910390f35b3480156106f857600080fd5b5061070161139d565b005b34801561070f57600080fd5b506107186114f5565b6040516107259190614479565b60405180910390f35b34801561073a57600080fd5b506107436114fb565b60405161075091906143a8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614540565b6115b6565b005b34801561078e57600080fd5b506107a960048036038101906107a491906145e1565b6116a8565b005b3480156107b757600080fd5b506107c06117c2565b005b3480156107ce57600080fd5b506107d7611898565b6040516107e491906145c6565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190614634565b6118c2565b005b34801561082257600080fd5b5061083d600480360381019061083891906143c3565b611976565b005b34801561084b57600080fd5b50610854611acd565b6040516108619190614292565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190614540565b611b5f565b005b34801561089f57600080fd5b506108a8611c93565b6040516108b59190614479565b60405180910390f35b3480156108ca57600080fd5b506108d3611c99565b6040516108e09190614479565b60405180910390f35b3480156108f557600080fd5b506108fe611c9f565b60405161090b9190614479565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061434d565b611ca5565b60405161094891906143a8565b60405180910390f35b34801561095d57600080fd5b50610966611d72565b60405161097391906143a8565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061434d565b611d85565b6040516109b091906143a8565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906143c3565b611da3565b6040516109ed91906143a8565b60405180910390f35b348015610a0257600080fd5b50610a0b611dc3565b604051610a1891906143a8565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190614540565b611dd6565b005b348015610a5657600080fd5b50610a716004803603810190610a6c91906145e1565b611f16565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190614494565b612030565b005b348015610aa857600080fd5b50610ab161215a565b604051610abe91906143a8565b60405180910390f35b348015610ad357600080fd5b50610adc61216d565b604051610ae99190614479565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190614494565b612173565b604051610b2691906143a8565b60405180910390f35b348015610b3b57600080fd5b50610b446122e3565b604051610b519190614479565b60405180910390f35b348015610b6657600080fd5b50610b816004803603810190610b7c9190614661565b6122e9565b604051610b8e9190614479565b60405180910390f35b348015610ba357600080fd5b50610bac612370565b604051610bb99190614479565b60405180910390f35b348015610bce57600080fd5b50610bd7612376565b604051610be491906143a8565b60405180910390f35b348015610bf957600080fd5b50610c02612431565b604051610c0f9190614479565b60405180910390f35b348015610c2457600080fd5b50610c3f6004803603810190610c3a91906143c3565b612437565b005b348015610c4d57600080fd5b50610c566125fe565b604051610c639190614479565b60405180910390f35b348015610c7857600080fd5b50610c81612604565b604051610c8e9190614479565b60405180910390f35b606060038054610ca6906146d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd2906146d0565b8015610d1f5780601f10610cf457610100808354040283529160200191610d1f565b820191906000526020600020905b815481529060010190602001808311610d0257829003601f168201915b5050505050905090565b6000610d3d610d36612668565b8484612670565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d9d612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061474e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b610efa612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f809061474e565b60405180910390fd5b670de0b6b3a76400006103e86001610f9f610d8b565b610fa9919061479d565b610fb39190614826565b610fbd9190614826565b811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906148c9565b60405180910390fd5b670de0b6b3a764000081611013919061479d565b60088190555050565b600061102984848461283b565b6110ea84611035612668565b6110e58560405180606001604052806028815260200161571160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109b612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b612670565b600190509392505050565b6110fd612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061474e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112996111fd612668565b84611294856001600061120e612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260a90919063ffffffff16565b612670565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b60115481565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061474e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000611505612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061474e565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115be612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061474e565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116b0612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117369061474e565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461176791906148e9565b61177191906148e9565b601081905550601460105411156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061498b565b60405180910390fd5b505050565b6117ca612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118509061474e565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ca612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061474e565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b61197e612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a049061474e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa02ea417aa2ee988f4c70dce8172a550a1f908e5fde8e8af805bef9e21fb282560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611adc906146d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b08906146d0565b8015611b555780601f10611b2a57610100808354040283529160200191611b55565b820191906000526020600020905b815481529060010190602001808311611b3857829003601f168201915b5050505050905090565b611b67612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061474e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614a1d565b60405180910390fd5b611c8f8282613730565b5050565b60135481565b601a5481565b60175481565b6000611d68611cb2612668565b84611d63856040518060600160405280602581526020016157396025913960016000611cdc612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b612670565b6001905092915050565b600b60039054906101000a900460ff1681565b6000611d99611d92612668565b848461283b565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dde612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e649061474e565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f0a91906143a8565b60405180910390a25050565b611f1e612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa49061474e565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611fd591906148e9565b611fdf91906148e9565b601481905550600f601454111561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614a89565b60405180910390fd5b505050565b612038612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be9061474e565b60405180910390fd5b670de0b6b3a76400006103e860056120dd610d8b565b6120e7919061479d565b6120f19190614826565b6120fb9190614826565b81101561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614b1b565b60405180910390fd5b670de0b6b3a764000081612151919061479d565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061217d612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122039061474e565b60405180910390fd5b620186a0600161221a610d8b565b612224919061479d565b61222e9190614826565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614bad565b60405180910390fd5b6103e8600561227d610d8b565b612287919061479d565b6122919190614826565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614c3f565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000612380612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061474e565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61243f612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c59061474e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614cd1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461261991906148e9565b90508381101561265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614d3d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790614dcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614e61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161282e9190614479565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a290614ef3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614f85565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129bf5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590615017565b60405180910390fd5b6000811415612a1857612a13838360006137d1565b6136c7565b600b60009054906101000a900460ff16156130db57612a35611898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aa35750612a73611898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612adc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b16575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2f5750600560149054906101000a900460ff16155b156130da57600b60019054906101000a900460ff16612c2957601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612be95750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90615083565b60405180910390fd5b5b600f60009054906101000a900460ff1615612df157612c46611898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ccd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612df05743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da29061513b565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e945750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57600854811115612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed5906151cd565b60405180910390fd5b600a54612eea83611355565b82612ef591906148e9565b1115612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90615239565b60405180910390fd5b6130d9565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fde5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561302d57600854811115613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906152cb565b60405180910390fd5b6130d8565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130d757600a5461308a83611355565b8261309591906148e9565b11156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd90615239565b60405180910390fd5b5b5b5b5b5b6003601b546130ea91906148e9565b431115801561314557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156131915750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131ef576001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006131fa30611355565b90506000600954821015905080801561321f5750600b60029054906101000a900460ff165b80156132385750600560149054906101000a900460ff16155b801561328e5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132e45750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561333a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561337e576001600560146101000a81548160ff021916908315150217905550613362613a66565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134345750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561343e57600090505b600081156136b757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134a157506000601454115b1561356e576134ce60646134c060145488613d4d90919063ffffffff16565b613dc890919063ffffffff16565b9050601454601654826134e1919061479d565b6134eb9190614826565b601960008282546134fc91906148e9565b9250508190555060145460175482613514919061479d565b61351e9190614826565b601a600082825461352f91906148e9565b9250508190555060145460155482613547919061479d565b6135519190614826565b6018600082825461356291906148e9565b92505081905550613693565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135c957506000601054115b15613692576135f660646135e860105488613d4d90919063ffffffff16565b613dc890919063ffffffff16565b905060105460125482613609919061479d565b6136139190614826565b6019600082825461362491906148e9565b925050819055506010546013548261363c919061479d565b6136469190614826565b601a600082825461365791906148e9565b925050819055506010546011548261366f919061479d565b6136799190614826565b6018600082825461368a91906148e9565b925050819055505b5b60008111156136a8576136a78730836137d1565b5b80856136b491906152eb565b94505b6136c28787876137d1565b505050505b505050565b6000838311158290613714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370b9190614292565b60405180910390fd5b506000838561372391906152eb565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890614ef3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a890614f85565b60405180910390fd5b6138bc838383613e12565b613927816040518060600160405280602681526020016156eb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139ba816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a599190614479565b60405180910390a3505050565b6000613a7130611355565b90506000601a54601854601954613a8891906148e9565b613a9291906148e9565b9050600080831480613aa45750600082145b15613ab157505050613d4b565b6014600954613ac0919061479d565b831115613ad9576014600954613ad6919061479d565b92505b600060028360195486613aec919061479d565b613af69190614826565b613b009190614826565b90506000613b178286613e1790919063ffffffff16565b90506000479050613b2782613e61565b6000613b3c8247613e1790919063ffffffff16565b90506000613b6787613b5960185485613d4d90919063ffffffff16565b613dc890919063ffffffff16565b90506000613b9288613b84601a5486613d4d90919063ffffffff16565b613dc890919063ffffffff16565b90506000818385613ba391906152eb565b613bad91906152eb565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c0d90615350565b60006040518083038185875af1925050503d8060008114613c4a576040519150601f19603f3d011682016040523d82523d6000602084013e613c4f565b606091505b505080985050600087118015613c655750600081115b15613cb257613c7487826140ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ca993929190615365565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cf890615350565b60006040518083038185875af1925050503d8060008114613d35576040519150601f19603f3d011682016040523d82523d6000602084013e613d3a565b606091505b505080985050505050505050505050505b565b600080831415613d605760009050613dc2565b60008284613d6e919061479d565b9050828482613d7d9190614826565b14613dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db49061540e565b60405180910390fd5b809150505b92915050565b6000613e0a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614196565b905092915050565b505050565b6000613e5983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506136cc565b905092915050565b6000600267ffffffffffffffff811115613e7e57613e7d61542e565b5b604051908082528060200260200182016040528015613eac5781602001602082028036833780820191505090505b5090503081600081518110613ec457613ec361545d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f6457600080fd5b505afa158015613f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f9c91906154a1565b81600181518110613fb057613faf61545d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614015307f000000000000000000000000000000000000000000000000000000000000000084612670565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140779594939291906155c7565b600060405180830381600087803b15801561409157600080fd5b505af11580156140a5573d6000803e3d6000fd5b505050505050565b6140d8307f000000000000000000000000000000000000000000000000000000000000000084612670565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161413d96959493929190615621565b6060604051808303818588803b15801561415657600080fd5b505af115801561416a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061418f9190615697565b5050505050565b600080831182906141dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141d49190614292565b60405180910390fd5b50600083856141ec9190614826565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614233578082015181840152602081019050614218565b83811115614242576000848401525b50505050565b6000601f19601f8301169050919050565b6000614264826141f9565b61426e8185614204565b935061427e818560208601614215565b61428781614248565b840191505092915050565b600060208201905081810360008301526142ac8184614259565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142e4826142b9565b9050919050565b6142f4816142d9565b81146142ff57600080fd5b50565b600081359050614311816142eb565b92915050565b6000819050919050565b61432a81614317565b811461433557600080fd5b50565b60008135905061434781614321565b92915050565b60008060408385031215614364576143636142b4565b5b600061437285828601614302565b925050602061438385828601614338565b9150509250929050565b60008115159050919050565b6143a28161438d565b82525050565b60006020820190506143bd6000830184614399565b92915050565b6000602082840312156143d9576143d86142b4565b5b60006143e784828501614302565b91505092915050565b6000819050919050565b600061441561441061440b846142b9565b6143f0565b6142b9565b9050919050565b6000614427826143fa565b9050919050565b60006144398261441c565b9050919050565b6144498161442e565b82525050565b60006020820190506144646000830184614440565b92915050565b61447381614317565b82525050565b600060208201905061448e600083018461446a565b92915050565b6000602082840312156144aa576144a96142b4565b5b60006144b884828501614338565b91505092915050565b6000806000606084860312156144da576144d96142b4565b5b60006144e886828701614302565b93505060206144f986828701614302565b925050604061450a86828701614338565b9150509250925092565b61451d8161438d565b811461452857600080fd5b50565b60008135905061453a81614514565b92915050565b60008060408385031215614557576145566142b4565b5b600061456585828601614302565b92505060206145768582860161452b565b9150509250929050565b600060ff82169050919050565b61459681614580565b82525050565b60006020820190506145b1600083018461458d565b92915050565b6145c0816142d9565b82525050565b60006020820190506145db60008301846145b7565b92915050565b6000806000606084860312156145fa576145f96142b4565b5b600061460886828701614338565b935050602061461986828701614338565b925050604061462a86828701614338565b9150509250925092565b60006020828403121561464a576146496142b4565b5b60006146588482850161452b565b91505092915050565b60008060408385031215614678576146776142b4565b5b600061468685828601614302565b925050602061469785828601614302565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146e857607f821691505b602082108114156146fc576146fb6146a1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614738602083614204565b915061474382614702565b602082019050919050565b600060208201905081810360008301526147678161472b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a882614317565b91506147b383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ec576147eb61476e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061483182614317565b915061483c83614317565b92508261484c5761484b6147f7565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148b3602f83614204565b91506148be82614857565b604082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b60006148f482614317565b91506148ff83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149345761493361476e565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614975601d83614204565b91506149808261493f565b602082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a07603983614204565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000614a73601d83614204565b9150614a7e82614a3d565b602082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614b05602483614204565b9150614b1082614aa9565b604082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b97603583614204565b9150614ba282614b3b565b604082019050919050565b60006020820190508181036000830152614bc681614b8a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614c29603483614204565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cbb602683614204565b9150614cc682614c5f565b604082019050919050565b60006020820190508181036000830152614cea81614cae565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d27601b83614204565b9150614d3282614cf1565b602082019050919050565b60006020820190508181036000830152614d5681614d1a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614db9602483614204565b9150614dc482614d5d565b604082019050919050565b60006020820190508181036000830152614de881614dac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e4b602283614204565b9150614e5682614def565b604082019050919050565b60006020820190508181036000830152614e7a81614e3e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614edd602583614204565b9150614ee882614e81565b604082019050919050565b60006020820190508181036000830152614f0c81614ed0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f6f602383614204565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000615001603183614204565b915061500c82614fa5565b604082019050919050565b6000602082019050818103600083015261503081614ff4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061506d601683614204565b915061507882615037565b602082019050919050565b6000602082019050818103600083015261509c81615060565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615125604983614204565b9150615130826150a3565b606082019050919050565b6000602082019050818103600083015261515481615118565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151b7603583614204565b91506151c28261515b565b604082019050919050565b600060208201905081810360008301526151e6816151aa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615223601383614204565b915061522e826151ed565b602082019050919050565b6000602082019050818103600083015261525281615216565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152b5603683614204565b91506152c082615259565b604082019050919050565b600060208201905081810360008301526152e4816152a8565b9050919050565b60006152f682614317565b915061530183614317565b9250828210156153145761531361476e565b5b828203905092915050565b600081905092915050565b50565b600061533a60008361531f565b91506153458261532a565b600082019050919050565b600061535b8261532d565b9150819050919050565b600060608201905061537a600083018661446a565b615387602083018561446a565b615394604083018461446a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153f8602183614204565b91506154038261539c565b604082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061549b816142eb565b92915050565b6000602082840312156154b7576154b66142b4565b5b60006154c58482850161548c565b91505092915050565b6000819050919050565b60006154f36154ee6154e9846154ce565b6143f0565b614317565b9050919050565b615503816154d8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553e816142d9565b82525050565b60006155508383615535565b60208301905092915050565b6000602082019050919050565b600061557482615509565b61557e8185615514565b935061558983615525565b8060005b838110156155ba5781516155a18882615544565b97506155ac8361555c565b92505060018101905061558d565b5085935050505092915050565b600060a0820190506155dc600083018861446a565b6155e960208301876154fa565b81810360408301526155fb8186615569565b905061560a60608301856145b7565b615617608083018461446a565b9695505050505050565b600060c08201905061563660008301896145b7565b615643602083018861446a565b61565060408301876154fa565b61565d60608301866154fa565b61566a60808301856145b7565b61567760a083018461446a565b979650505050505050565b60008151905061569181614321565b92915050565b6000806000606084860312156156b0576156af6142b4565b5b60006156be86828701615682565b93505060206156cf86828701615682565b92505060406156e086828701615682565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f6b5a0e64efa65e7cd3986ce7827ae7599621d3cd515ccf3dba34da97a06ad764736f6c63430008090033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638da5cb5b116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bed578063f2fde38b14610c18578063f637434214610c41578063f8b45b0514610c6c57610325565b8063dd62ed3e14610b5a578063e2f4560514610b97578063e884f26014610bc257610325565b8063c876d0b9116100d1578063c876d0b914610a9c578063c8c8ebe414610ac7578063d257b34f14610af2578063d85ba06314610b2f57610325565b8063c024666814610a21578063c17b5b8c14610a4a578063c18bc19514610a7357610325565b80639fccce3211610164578063a4d15b641161013e578063a4d15b6414610951578063a9059cbb1461097c578063b62496f5146109b9578063bbc0c742146109f657610325565b80639fccce32146108be578063a0d82dc5146108e9578063a457c2d71461091457610325565b80638da5cb5b146107c2578063924de9b7146107ed57806393355e3f1461081657806395d89b411461083f5780639a7a23d61461086a5780639c3b4fdc1461089357610325565b80634a62bb651161026a57806370a0823111610223578063751039fc116101fd578063751039fc1461072e5780637571336a146107595780638095d564146107825780638a8c523c146107ab57610325565b806370a08231146106af578063715018a6146106ec57806374480aa71461070357610325565b80634a62bb651461059b5780634fbee193146105c657806358301f1d14610603578063598a83f21461062e5780636a486a8e146106595780636ddd17131461068457610325565b80631a8145bb116102d75780632d5a5d34116102b15780632d5a5d34146104df578063313ce56714610508578063395093511461053357806349bd5a5e1461057057610325565b80631a8145bb1461044e578063203e727e1461047957806323b872dd146104a257610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c97565b60405161034c9190614292565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061434d565b610d29565b60405161038991906143a8565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b491906143c3565b610d47565b6040516103c691906143a8565b60405180910390f35b3480156103db57600080fd5b506103e4610d67565b6040516103f1919061444f565b60405180910390f35b34801561040657600080fd5b5061040f610d8b565b60405161041c9190614479565b60405180910390f35b34801561043157600080fd5b5061044c600480360381019061044791906143c3565b610d95565b005b34801561045a57600080fd5b50610463610eec565b6040516104709190614479565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190614494565b610ef2565b005b3480156104ae57600080fd5b506104c960048036038101906104c491906144c1565b61101c565b6040516104d691906143a8565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190614540565b6110f5565b005b34801561051457600080fd5b5061051d6111e7565b60405161052a919061459c565b60405180910390f35b34801561053f57600080fd5b5061055a6004803603810190610555919061434d565b6111f0565b60405161056791906143a8565b60405180910390f35b34801561057c57600080fd5b506105856112a3565b60405161059291906145c6565b60405180910390f35b3480156105a757600080fd5b506105b06112c7565b6040516105bd91906143a8565b60405180910390f35b3480156105d257600080fd5b506105ed60048036038101906105e891906143c3565b6112da565b6040516105fa91906143a8565b60405180910390f35b34801561060f57600080fd5b50610618611330565b6040516106259190614479565b60405180910390f35b34801561063a57600080fd5b50610643611336565b6040516106509190614479565b60405180910390f35b34801561066557600080fd5b5061066e61133c565b60405161067b9190614479565b60405180910390f35b34801561069057600080fd5b50610699611342565b6040516106a691906143a8565b60405180910390f35b3480156106bb57600080fd5b506106d660048036038101906106d191906143c3565b611355565b6040516106e39190614479565b60405180910390f35b3480156106f857600080fd5b5061070161139d565b005b34801561070f57600080fd5b506107186114f5565b6040516107259190614479565b60405180910390f35b34801561073a57600080fd5b506107436114fb565b60405161075091906143a8565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614540565b6115b6565b005b34801561078e57600080fd5b506107a960048036038101906107a491906145e1565b6116a8565b005b3480156107b757600080fd5b506107c06117c2565b005b3480156107ce57600080fd5b506107d7611898565b6040516107e491906145c6565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190614634565b6118c2565b005b34801561082257600080fd5b5061083d600480360381019061083891906143c3565b611976565b005b34801561084b57600080fd5b50610854611acd565b6040516108619190614292565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190614540565b611b5f565b005b34801561089f57600080fd5b506108a8611c93565b6040516108b59190614479565b60405180910390f35b3480156108ca57600080fd5b506108d3611c99565b6040516108e09190614479565b60405180910390f35b3480156108f557600080fd5b506108fe611c9f565b60405161090b9190614479565b60405180910390f35b34801561092057600080fd5b5061093b6004803603810190610936919061434d565b611ca5565b60405161094891906143a8565b60405180910390f35b34801561095d57600080fd5b50610966611d72565b60405161097391906143a8565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e919061434d565b611d85565b6040516109b091906143a8565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906143c3565b611da3565b6040516109ed91906143a8565b60405180910390f35b348015610a0257600080fd5b50610a0b611dc3565b604051610a1891906143a8565b60405180910390f35b348015610a2d57600080fd5b50610a486004803603810190610a439190614540565b611dd6565b005b348015610a5657600080fd5b50610a716004803603810190610a6c91906145e1565b611f16565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190614494565b612030565b005b348015610aa857600080fd5b50610ab161215a565b604051610abe91906143a8565b60405180910390f35b348015610ad357600080fd5b50610adc61216d565b604051610ae99190614479565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190614494565b612173565b604051610b2691906143a8565b60405180910390f35b348015610b3b57600080fd5b50610b446122e3565b604051610b519190614479565b60405180910390f35b348015610b6657600080fd5b50610b816004803603810190610b7c9190614661565b6122e9565b604051610b8e9190614479565b60405180910390f35b348015610ba357600080fd5b50610bac612370565b604051610bb99190614479565b60405180910390f35b348015610bce57600080fd5b50610bd7612376565b604051610be491906143a8565b60405180910390f35b348015610bf957600080fd5b50610c02612431565b604051610c0f9190614479565b60405180910390f35b348015610c2457600080fd5b50610c3f6004803603810190610c3a91906143c3565b612437565b005b348015610c4d57600080fd5b50610c566125fe565b604051610c639190614479565b60405180910390f35b348015610c7857600080fd5b50610c81612604565b604051610c8e9190614479565b60405180910390f35b606060038054610ca6906146d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd2906146d0565b8015610d1f5780601f10610cf457610100808354040283529160200191610d1f565b820191906000526020600020905b815481529060010190602001808311610d0257829003601f168201915b5050505050905090565b6000610d3d610d36612668565b8484612670565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d9d612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e239061474e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b610efa612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f809061474e565b60405180910390fd5b670de0b6b3a76400006103e86001610f9f610d8b565b610fa9919061479d565b610fb39190614826565b610fbd9190614826565b811015610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff6906148c9565b60405180910390fd5b670de0b6b3a764000081611013919061479d565b60088190555050565b600061102984848461283b565b6110ea84611035612668565b6110e58560405180606001604052806028815260200161571160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109b612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b612670565b600190509392505050565b6110fd612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061474e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b60006112996111fd612668565b84611294856001600061120e612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260a90919063ffffffff16565b612670565b6001905092915050565b7f00000000000000000000000068df8cb850897def14a47e07158e2692eda96b8e81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b60115481565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061474e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60155481565b6000611505612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061474e565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115be612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116449061474e565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116b0612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117369061474e565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461176791906148e9565b61177191906148e9565b601081905550601460105411156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b49061498b565b60405180910390fd5b505050565b6117ca612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118509061474e565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118ca612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061474e565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b61197e612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a049061474e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa02ea417aa2ee988f4c70dce8172a550a1f908e5fde8e8af805bef9e21fb282560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060048054611adc906146d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b08906146d0565b8015611b555780601f10611b2a57610100808354040283529160200191611b55565b820191906000526020600020905b815481529060010190602001808311611b3857829003601f168201915b5050505050905090565b611b67612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed9061474e565b60405180910390fd5b7f00000000000000000000000068df8cb850897def14a47e07158e2692eda96b8e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90614a1d565b60405180910390fd5b611c8f8282613730565b5050565b60135481565b601a5481565b60175481565b6000611d68611cb2612668565b84611d63856040518060600160405280602581526020016157396025913960016000611cdc612668565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b612670565b6001905092915050565b600b60039054906101000a900460ff1681565b6000611d99611d92612668565b848461283b565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611dde612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e649061474e565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f0a91906143a8565b60405180910390a25050565b611f1e612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa49061474e565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611fd591906148e9565b611fdf91906148e9565b601481905550600f601454111561202b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202290614a89565b60405180910390fd5b505050565b612038612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be9061474e565b60405180910390fd5b670de0b6b3a76400006103e860056120dd610d8b565b6120e7919061479d565b6120f19190614826565b6120fb9190614826565b81101561213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490614b1b565b60405180910390fd5b670de0b6b3a764000081612151919061479d565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b600061217d612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122039061474e565b60405180910390fd5b620186a0600161221a610d8b565b612224919061479d565b61222e9190614826565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614bad565b60405180910390fd5b6103e8600561227d610d8b565b612287919061479d565b6122919190614826565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614c3f565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000612380612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461240f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124069061474e565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61243f612668565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c59061474e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590614cd1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461261991906148e9565b90508381101561265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614d3d565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d790614dcf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790614e61565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161282e9190614479565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a290614ef3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561291b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614f85565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129bf5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f590615017565b60405180910390fd5b6000811415612a1857612a13838360006137d1565b6136c7565b600b60009054906101000a900460ff16156130db57612a35611898565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aa35750612a73611898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612adc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b16575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2f5750600560149054906101000a900460ff16155b156130da57600b60019054906101000a900460ff16612c2957601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612be95750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f90615083565b60405180910390fd5b5b600f60009054906101000a900460ff1615612df157612c46611898565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ccd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2557507f00000000000000000000000068df8cb850897def14a47e07158e2692eda96b8e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612df05743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da29061513b565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e945750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57600854811115612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed5906151cd565b60405180910390fd5b600a54612eea83611355565b82612ef591906148e9565b1115612f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2d90615239565b60405180910390fd5b6130d9565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fde5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561302d57600854811115613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301f906152cb565b60405180910390fd5b6130d8565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130d757600a5461308a83611355565b8261309591906148e9565b11156130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd90615239565b60405180910390fd5b5b5b5b5b5b6003601b546130ea91906148e9565b431115801561314557507f00000000000000000000000068df8cb850897def14a47e07158e2692eda96b8e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156131915750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131ef576001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006131fa30611355565b90506000600954821015905080801561321f5750600b60029054906101000a900460ff165b80156132385750600560149054906101000a900460ff16155b801561328e5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132e45750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561333a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561337e576001600560146101000a81548160ff021916908315150217905550613362613a66565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134345750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561343e57600090505b600081156136b757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134a157506000601454115b1561356e576134ce60646134c060145488613d4d90919063ffffffff16565b613dc890919063ffffffff16565b9050601454601654826134e1919061479d565b6134eb9190614826565b601960008282546134fc91906148e9565b9250508190555060145460175482613514919061479d565b61351e9190614826565b601a600082825461352f91906148e9565b9250508190555060145460155482613547919061479d565b6135519190614826565b6018600082825461356291906148e9565b92505081905550613693565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156135c957506000601054115b15613692576135f660646135e860105488613d4d90919063ffffffff16565b613dc890919063ffffffff16565b905060105460125482613609919061479d565b6136139190614826565b6019600082825461362491906148e9565b925050819055506010546013548261363c919061479d565b6136469190614826565b601a600082825461365791906148e9565b925050819055506010546011548261366f919061479d565b6136799190614826565b6018600082825461368a91906148e9565b925050819055505b5b60008111156136a8576136a78730836137d1565b5b80856136b491906152eb565b94505b6136c28787876137d1565b505050505b505050565b6000838311158290613714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370b9190614292565b60405180910390fd5b506000838561372391906152eb565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890614ef3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a890614f85565b60405180910390fd5b6138bc838383613e12565b613927816040518060600160405280602681526020016156eb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136cc9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506139ba816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613a599190614479565b60405180910390a3505050565b6000613a7130611355565b90506000601a54601854601954613a8891906148e9565b613a9291906148e9565b9050600080831480613aa45750600082145b15613ab157505050613d4b565b6014600954613ac0919061479d565b831115613ad9576014600954613ad6919061479d565b92505b600060028360195486613aec919061479d565b613af69190614826565b613b009190614826565b90506000613b178286613e1790919063ffffffff16565b90506000479050613b2782613e61565b6000613b3c8247613e1790919063ffffffff16565b90506000613b6787613b5960185485613d4d90919063ffffffff16565b613dc890919063ffffffff16565b90506000613b9288613b84601a5486613d4d90919063ffffffff16565b613dc890919063ffffffff16565b90506000818385613ba391906152eb565b613bad91906152eb565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c0d90615350565b60006040518083038185875af1925050503d8060008114613c4a576040519150601f19603f3d011682016040523d82523d6000602084013e613c4f565b606091505b505080985050600087118015613c655750600081115b15613cb257613c7487826140ad565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ca993929190615365565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613cf890615350565b60006040518083038185875af1925050503d8060008114613d35576040519150601f19603f3d011682016040523d82523d6000602084013e613d3a565b606091505b505080985050505050505050505050505b565b600080831415613d605760009050613dc2565b60008284613d6e919061479d565b9050828482613d7d9190614826565b14613dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613db49061540e565b60405180910390fd5b809150505b92915050565b6000613e0a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614196565b905092915050565b505050565b6000613e5983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506136cc565b905092915050565b6000600267ffffffffffffffff811115613e7e57613e7d61542e565b5b604051908082528060200260200182016040528015613eac5781602001602082028036833780820191505090505b5090503081600081518110613ec457613ec361545d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613f6457600080fd5b505afa158015613f78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f9c91906154a1565b81600181518110613fb057613faf61545d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614015307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612670565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016140779594939291906155c7565b600060405180830381600087803b15801561409157600080fd5b505af11580156140a5573d6000803e3d6000fd5b505050505050565b6140d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612670565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161413d96959493929190615621565b6060604051808303818588803b15801561415657600080fd5b505af115801561416a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061418f9190615697565b5050505050565b600080831182906141dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141d49190614292565b60405180910390fd5b50600083856141ec9190614826565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614233578082015181840152602081019050614218565b83811115614242576000848401525b50505050565b6000601f19601f8301169050919050565b6000614264826141f9565b61426e8185614204565b935061427e818560208601614215565b61428781614248565b840191505092915050565b600060208201905081810360008301526142ac8184614259565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142e4826142b9565b9050919050565b6142f4816142d9565b81146142ff57600080fd5b50565b600081359050614311816142eb565b92915050565b6000819050919050565b61432a81614317565b811461433557600080fd5b50565b60008135905061434781614321565b92915050565b60008060408385031215614364576143636142b4565b5b600061437285828601614302565b925050602061438385828601614338565b9150509250929050565b60008115159050919050565b6143a28161438d565b82525050565b60006020820190506143bd6000830184614399565b92915050565b6000602082840312156143d9576143d86142b4565b5b60006143e784828501614302565b91505092915050565b6000819050919050565b600061441561441061440b846142b9565b6143f0565b6142b9565b9050919050565b6000614427826143fa565b9050919050565b60006144398261441c565b9050919050565b6144498161442e565b82525050565b60006020820190506144646000830184614440565b92915050565b61447381614317565b82525050565b600060208201905061448e600083018461446a565b92915050565b6000602082840312156144aa576144a96142b4565b5b60006144b884828501614338565b91505092915050565b6000806000606084860312156144da576144d96142b4565b5b60006144e886828701614302565b93505060206144f986828701614302565b925050604061450a86828701614338565b9150509250925092565b61451d8161438d565b811461452857600080fd5b50565b60008135905061453a81614514565b92915050565b60008060408385031215614557576145566142b4565b5b600061456585828601614302565b92505060206145768582860161452b565b9150509250929050565b600060ff82169050919050565b61459681614580565b82525050565b60006020820190506145b1600083018461458d565b92915050565b6145c0816142d9565b82525050565b60006020820190506145db60008301846145b7565b92915050565b6000806000606084860312156145fa576145f96142b4565b5b600061460886828701614338565b935050602061461986828701614338565b925050604061462a86828701614338565b9150509250925092565b60006020828403121561464a576146496142b4565b5b60006146588482850161452b565b91505092915050565b60008060408385031215614678576146776142b4565b5b600061468685828601614302565b925050602061469785828601614302565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146e857607f821691505b602082108114156146fc576146fb6146a1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614738602083614204565b915061474382614702565b602082019050919050565b600060208201905081810360008301526147678161472b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147a882614317565b91506147b383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ec576147eb61476e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061483182614317565b915061483c83614317565b92508261484c5761484b6147f7565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148b3602f83614204565b91506148be82614857565b604082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b60006148f482614317565b91506148ff83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149345761493361476e565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614975601d83614204565b91506149808261493f565b602082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a07603983614204565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000614a73601d83614204565b9150614a7e82614a3d565b602082019050919050565b60006020820190508181036000830152614aa281614a66565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614b05602483614204565b9150614b1082614aa9565b604082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b97603583614204565b9150614ba282614b3b565b604082019050919050565b60006020820190508181036000830152614bc681614b8a565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614c29603483614204565b9150614c3482614bcd565b604082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cbb602683614204565b9150614cc682614c5f565b604082019050919050565b60006020820190508181036000830152614cea81614cae565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d27601b83614204565b9150614d3282614cf1565b602082019050919050565b60006020820190508181036000830152614d5681614d1a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614db9602483614204565b9150614dc482614d5d565b604082019050919050565b60006020820190508181036000830152614de881614dac565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614e4b602283614204565b9150614e5682614def565b604082019050919050565b60006020820190508181036000830152614e7a81614e3e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614edd602583614204565b9150614ee882614e81565b604082019050919050565b60006020820190508181036000830152614f0c81614ed0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614f6f602383614204565b9150614f7a82614f13565b604082019050919050565b60006020820190508181036000830152614f9e81614f62565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000615001603183614204565b915061500c82614fa5565b604082019050919050565b6000602082019050818103600083015261503081614ff4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061506d601683614204565b915061507882615037565b602082019050919050565b6000602082019050818103600083015261509c81615060565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615125604983614204565b9150615130826150a3565b606082019050919050565b6000602082019050818103600083015261515481615118565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006151b7603583614204565b91506151c28261515b565b604082019050919050565b600060208201905081810360008301526151e6816151aa565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615223601383614204565b915061522e826151ed565b602082019050919050565b6000602082019050818103600083015261525281615216565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006152b5603683614204565b91506152c082615259565b604082019050919050565b600060208201905081810360008301526152e4816152a8565b9050919050565b60006152f682614317565b915061530183614317565b9250828210156153145761531361476e565b5b828203905092915050565b600081905092915050565b50565b600061533a60008361531f565b91506153458261532a565b600082019050919050565b600061535b8261532d565b9150819050919050565b600060608201905061537a600083018661446a565b615387602083018561446a565b615394604083018461446a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006153f8602183614204565b91506154038261539c565b604082019050919050565b60006020820190508181036000830152615427816153eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061549b816142eb565b92915050565b6000602082840312156154b7576154b66142b4565b5b60006154c58482850161548c565b91505092915050565b6000819050919050565b60006154f36154ee6154e9846154ce565b6143f0565b614317565b9050919050565b615503816154d8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553e816142d9565b82525050565b60006155508383615535565b60208301905092915050565b6000602082019050919050565b600061557482615509565b61557e8185615514565b935061558983615525565b8060005b838110156155ba5781516155a18882615544565b97506155ac8361555c565b92505060018101905061558d565b5085935050505092915050565b600060a0820190506155dc600083018861446a565b6155e960208301876154fa565b81810360408301526155fb8186615569565b905061560a60608301856145b7565b615617608083018461446a565b9695505050505050565b600060c08201905061563660008301896145b7565b615643602083018861446a565b61565060408301876154fa565b61565d60608301866154fa565b61566a60808301856145b7565b61567760a083018461446a565b979650505050505050565b60008151905061569181614321565b92915050565b6000806000606084860312156156b0576156af6142b4565b5b60006156be86828701615682565b93505060206156cf86828701615682565b92505060406156e086828701615682565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205f6b5a0e64efa65e7cd3986ce7827ae7599621d3cd515ccf3dba34da97a06ad764736f6c63430008090033

Deployed Bytecode Sourcemap

30546:15567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8644:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10818:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32099:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30623:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9767:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38698:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31813:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36201:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11470:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37927:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9608:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12235:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30681:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30943:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38867:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31779:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31537:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31639:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31023:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9939:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23146:148;;;;;;;;;;;;;:::i;:::-;;31674:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35418:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36668:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37019:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35217:148;;;;;;;;;;;;;:::i;:::-;;22502:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36909:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38523:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8864:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38071:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31605:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31853:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31744:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12957:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31061:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10280:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32322:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30983:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37736:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37373:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36444:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31454:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30827:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35806:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31503:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10519:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30869:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35600:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31568:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23450:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31706:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30909:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8644:100;8698:13;8731:5;8724:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8644:100;:::o;10818:169::-;10901:4;10918:39;10927:12;:10;:12::i;:::-;10941:7;10950:6;10918:8;:39::i;:::-;10975:4;10968:11;;10818:169;;;;:::o;32099:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;30623:51::-;;;:::o;9767:108::-;9828:7;9855:12;;9848:19;;9767:108;:::o;38698:157::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38805:9:::1;;;;;;;;;;;38777:38;;38794:9;38777:38;;;;;;;;;;;;38838:9;38826;;:21;;;;;;;;;;;;;;;;;;38698:157:::0;:::o;31813:33::-;;;;:::o;36201:234::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36320:4:::1;36314;36310:1;36294:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;36293:31;;;;:::i;:::-;36283:6;:41;;36275:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36420:6;36410;:17;;;;:::i;:::-;36387:20;:40;;;;36201:234:::0;:::o;11470:355::-;11610:4;11627:36;11637:6;11645:9;11656:6;11627:9;:36::i;:::-;11674:121;11683:6;11691:12;:10;:12::i;:::-;11705:89;11743:6;11705:89;;;;;;;;;;;;;;;;;:11;:19;11717:6;11705:19;;;;;;;;;;;;;;;:33;11725:12;:10;:12::i;:::-;11705:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11674:8;:121::i;:::-;11813:4;11806:11;;11470:355;;;;;:::o;37927:135::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38041:13:::1;38019:10;:19;38030:7;38019:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;37927:135:::0;;:::o;9608:93::-;9666:5;9691:2;9684:9;;9608:93;:::o;12235:218::-;12323:4;12340:83;12349:12;:10;:12::i;:::-;12363:7;12372:50;12411:10;12372:11;:25;12384:12;:10;:12::i;:::-;12372:25;;;;;;;;;;;;;;;:34;12398:7;12372:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12340:8;:83::i;:::-;12441:4;12434:11;;12235:218;;;;:::o;30681:38::-;;;:::o;30943:33::-;;;;;;;;;;;;;:::o;38867:125::-;38932:4;38956:19;:28;38976:7;38956:28;;;;;;;;;;;;;;;;;;;;;;;;;38949:35;;38867:125;;;:::o;31779:27::-;;;;:::o;31537:24::-;;;;:::o;31639:28::-;;;;:::o;31023:31::-;;;;;;;;;;;;;:::o;9939:127::-;10013:7;10040:9;:18;10050:7;10040:18;;;;;;;;;;;;;;;;10033:25;;9939:127;;;:::o;23146:148::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23253:1:::1;23216:40;;23237:6;;;;;;;;;;;23216:40;;;;;;;;;;;;23284:1;23267:6;;:19;;;;;;;;;;;;;;;;;;23146:148::o:0;31674:25::-;;;;:::o;35418:120::-;35470:4;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35503:5:::1;35486:14;;:22;;;;;;;;;;;;;;;;;;35526:4;35519:11;;35418:120:::0;:::o;36668:144::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36800:4:::1;36758:31;:39;36790:6;36758:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36668:144:::0;;:::o;37019:345::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37141:7:::1;37129:9;:19;;;;37177:13;37159:15;:31;;;;37213:7;37201:9;:19;;;;37276:9;;37258:15;;37246:9;;:27;;;;:::i;:::-;:39;;;;:::i;:::-;37231:12;:54;;;;37320:2;37304:12;;:18;;37296:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;37019:345:::0;;;:::o;35217:148::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35288:4:::1;35272:13;;:20;;;;;;;;;;;;;;;;;;35317:4;35303:11;;:18;;;;;;;;;;;;;;;;;;35345:12;35332:10;:25;;;;35217:148::o:0;22502:79::-;22540:7;22567:6;;;;;;;;;;;22560:13;;22502:79;:::o;36909:101::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36995:7:::1;36981:11;;:21;;;;;;;;;;;;;;;;;;36909:101:::0;:::o;38523:166::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38636:9:::1;;;;;;;;;;;38605:41;;38622:12;38605:41;;;;;;;;;;;;38669:12;38657:9;;:24;;;;;;;;;;;;;;;;;;38523:166:::0;:::o;8864:104::-;8920:13;8953:7;8946:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8864:104;:::o;38071:245::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38178:13:::1;38170:21;;:4;:21;;;;38162:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;38267:41;38296:4;38302:5;38267:28;:41::i;:::-;38071:245:::0;;:::o;31605:24::-;;;;:::o;31853:27::-;;;;:::o;31744:25::-;;;;:::o;12957:269::-;13050:4;13067:129;13076:12;:10;:12::i;:::-;13090:7;13099:96;13138:15;13099:96;;;;;;;;;;;;;;;;;:11;:25;13111:12;:10;:12::i;:::-;13099:25;;;;;;;;;;;;;;;:34;13125:7;13099:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13067:8;:129::i;:::-;13214:4;13207:11;;12957:269;;;;:::o;31061:38::-;;;;;;;;;;;;;:::o;10280:175::-;10366:4;10383:42;10393:12;:10;:12::i;:::-;10407:9;10418:6;10383:9;:42::i;:::-;10443:4;10436:11;;10280:175;;;;:::o;32322:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30983:33::-;;;;;;;;;;;;;:::o;37736:182::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37852:8:::1;37821:19;:28;37841:7;37821:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37892:7;37876:34;;;37901:8;37876:34;;;;;;:::i;:::-;;;;;;;;37736:182:::0;;:::o;37373:354::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:7:::1;37484:10;:20;;;;37534:13;37515:16;:32;;;;37571:7;37558:10;:20;;;;37637:10;;37618:16;;37605:10;;:29;;;;:::i;:::-;:42;;;;:::i;:::-;37589:13;:58;;;;37683:2;37666:13;;:19;;37658:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37373:354:::0;;;:::o;36444:215::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36566:4:::1;36560;36556:1;36540:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;36539:31;;;;:::i;:::-;36529:6;:41;;36521:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;36644:6;36634;:17;;;;:::i;:::-;36622:9;:29;;;;36444:215:::0;:::o;31454:39::-;;;;;;;;;;;;;:::o;30827:35::-;;;;:::o;35806:386::-;35887:4;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35944:6:::1;35940:1;35924:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;35911:9;:39;;35903:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;36060:4;36056:1;36040:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;36027:9;:37;;36019:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;36153:9;36132:18;:30;;;;36180:4;36173:11;;35806:386:::0;;;:::o;31503:27::-;;;;:::o;10519:151::-;10608:7;10635:11;:18;10647:5;10635:18;;;;;;;;;;;;;;;:27;10654:7;10635:27;;;;;;;;;;;;;;;;10628:34;;10519:151;;;;:::o;30869:33::-;;;;:::o;35600:134::-;35660:4;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35699:5:::1;35676:20;;:28;;;;;;;;;;;;;;;;;;35722:4;35715:11;;35600:134:::0;:::o;31568:30::-;;;;:::o;23450:244::-;22725:12;:10;:12::i;:::-;22715:22;;:6;;;;;;;;;;;:22;;;22707:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23559:1:::1;23539:22;;:8;:22;;;;23531:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23649:8;23620:38;;23641:6;;;;;;;;;;;23620:38;;;;;;;;;;;;23678:8;23669:6;;:17;;;;;;;;;;;;;;;;;;23450:244:::0;:::o;31706:31::-;;;;:::o;30909:24::-;;;;:::o;17534:182::-;17592:7;17612:9;17628:1;17624;:5;;;;:::i;:::-;17612:17;;17653:1;17648;:6;;17640:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17707:1;17700:8;;;17534:182;;;;:::o;1335:98::-;1388:7;1415:10;1408:17;;1335:98;:::o;16153:381::-;16306:1;16289:19;;:5;:19;;;;16281:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16387:1;16368:21;;:7;:21;;;;16360:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16472:6;16442:11;:18;16454:5;16442:18;;;;;;;;;;;;;;;:27;16461:7;16442:27;;;;;;;;;;;;;;;:36;;;;16510:7;16494:32;;16503:5;16494:32;;;16519:6;16494:32;;;;;;:::i;:::-;;;;;;;;16153:381;;;:::o;39052:4382::-;39200:1;39184:18;;:4;:18;;;;39176:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39277:1;39263:16;;:2;:16;;;;39255:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;39339:10;:14;39350:2;39339:14;;;;;;;;;;;;;;;;;;;;;;;;;39338:15;:36;;;;;39358:10;:16;39369:4;39358:16;;;;;;;;;;;;;;;;;;;;;;;;;39357:17;39338:36;39330:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;39453:1;39443:6;:11;39440:92;;;39471:28;39487:4;39493:2;39497:1;39471:15;:28::i;:::-;39514:7;;39440:92;39548:14;;;;;;;;;;;39545:1811;;;39608:7;:5;:7::i;:::-;39600:15;;:4;:15;;;;:49;;;;;39642:7;:5;:7::i;:::-;39636:13;;:2;:13;;;;39600:49;:86;;;;;39684:1;39670:16;;:2;:16;;;;39600:86;:128;;;;;39721:6;39707:21;;:2;:21;;;;39600:128;:158;;;;;39750:8;;;;;;;;;;;39749:9;39600:158;39578:1767;;;39796:13;;;;;;;;;;;39792:148;;39841:19;:25;39861:4;39841:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39870:19;:23;39890:2;39870:23;;;;;;;;;;;;;;;;;;;;;;;;;39841:52;39833:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39792:148;40099:20;;;;;;;;;;;40095:423;;;40153:7;:5;:7::i;:::-;40147:13;;:2;:13;;;;:47;;;;;40178:15;40164:30;;:2;:30;;;;40147:47;:79;;;;;40212:13;40198:28;;:2;:28;;;;40147:79;40143:356;;;40304:12;40262:28;:39;40291:9;40262:39;;;;;;;;;;;;;;;;:54;40254:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40463:12;40421:28;:39;40450:9;40421:39;;;;;;;;;;;;;;;:54;;;;40143:356;40095:423;40571:25;:31;40597:4;40571:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40607:31;:35;40639:2;40607:35;;;;;;;;;;;;;;;;;;;;;;;;;40606:36;40571:71;40567:763;;;40689:20;;40679:6;:30;;40671:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40828:9;;40811:13;40821:2;40811:9;:13::i;:::-;40802:6;:22;;;;:::i;:::-;:35;;40794:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40567:763;;;40940:25;:29;40966:2;40940:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40974:31;:37;41006:4;40974:37;;;;;;;;;;;;;;;;;;;;;;;;;40973:38;40940:71;40936:394;;;41058:20;;41048:6;:30;;41040:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40936:394;;;41184:31;:35;41216:2;41184:35;;;;;;;;;;;;;;;;;;;;;;;;;41180:150;;41277:9;;41260:13;41270:2;41260:9;:13::i;:::-;41251:6;:22;;;;:::i;:::-;:35;;41243:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;41180:150;40936:394;40567:763;39578:1767;39545:1811;41430:1;41417:10;;:14;;;;:::i;:::-;41400:12;:32;;:73;;;;;41460:13;41454:19;;:2;:19;;;;41400:73;:152;;;;;41509:42;41495:57;;:2;:57;;;;41400:152;41396:221;;;41601:4;41584:10;:14;41595:2;41584:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41396:221;41630:28;41661:24;41679:4;41661:9;:24::i;:::-;41630:55;;41699:12;41738:18;;41714:20;:42;;41699:57;;41788:7;:35;;;;;41812:11;;;;;;;;;;;41788:35;:61;;;;;41841:8;;;;;;;;;;;41840:9;41788:61;:110;;;;;41867:25;:31;41893:4;41867:31;;;;;;;;;;;;;;;;;;;;;;;;;41866:32;41788:110;:153;;;;;41916:19;:25;41936:4;41916:25;;;;;;;;;;;;;;;;;;;;;;;;;41915:26;41788:153;:194;;;;;41959:19;:23;41979:2;41959:23;;;;;;;;;;;;;;;;;;;;;;;;;41958:24;41788:194;41770:328;;;42020:4;42009:8;;:15;;;;;;;;;;;;;;;;;;42042:10;:8;:10::i;:::-;42081:5;42070:8;;:16;;;;;;;;;;;;;;;;;;41770:328;42111:12;42127:8;;;;;;;;;;;42126:9;42111:24;;42237:19;:25;42257:4;42237:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42266:19;:23;42286:2;42266:23;;;;;;;;;;;;;;;;;;;;;;;;;42237:52;42234:99;;;42316:5;42306:15;;42234:99;42346:12;42450:7;42447:933;;;42501:25;:29;42527:2;42501:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;42550:1;42534:13;;:17;42501:50;42497:730;;;42578:34;42608:3;42578:25;42589:13;;42578:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;42571:41;;42679:13;;42660:16;;42653:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;42631:18;;:61;;;;;;;:::i;:::-;;;;;;;;42747:13;;42734:10;;42727:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;42711:12;;:49;;;;;;;:::i;:::-;;;;;;;;42815:13;;42802:10;;42795:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;42779:12;;:49;;;;;;;:::i;:::-;;;;;;;;42497:730;;;42889:25;:31;42915:4;42889:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42939:1;42924:12;;:16;42889:51;42886:341;;;42968:33;42997:3;42968:24;42979:12;;42968:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42961:40;;43067:12;;43049:15;;43042:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;43020:18;;:59;;;;;;;:::i;:::-;;;;;;;;43133:12;;43121:9;;43114:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;43098:12;;:47;;;;;;;:::i;:::-;;;;;;;;43199:12;;43187:9;;43180:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;43164:12;;:47;;;;;;;:::i;:::-;;;;;;;;42886:341;42497:730;43254:1;43247:4;:8;43244:93;;;43279:42;43295:4;43309;43316;43279:15;:42::i;:::-;43244:93;43364:4;43354:14;;;;;:::i;:::-;;;42447:933;43393:33;43409:4;43415:2;43419:6;43393:15;:33::i;:::-;39165:4269;;;;39052:4382;;;;:::o;18440:193::-;18526:7;18559:1;18554;:6;;18562:12;18546:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18586:9;18602:1;18598;:5;;;;:::i;:::-;18586:17;;18624:1;18617:8;;;18440:193;;;;;:::o;38325:189::-;38442:5;38408:25;:31;38434:4;38408:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38500:5;38466:40;;38494:4;38466:40;;;;;;;;;;;;38325:189;;:::o;13717:575::-;13875:1;13857:20;;:6;:20;;;;13849:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13959:1;13938:23;;:9;:23;;;;13930:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14015:47;14036:6;14044:9;14055:6;14015:20;:47::i;:::-;14096:71;14118:6;14096:71;;;;;;;;;;;;;;;;;:9;:17;14106:6;14096:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14076:9;:17;14086:6;14076:17;;;;;;;;;;;;;;;:91;;;;14201:32;14226:6;14201:9;:20;14211:9;14201:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14178:9;:20;14188:9;14178:20;;;;;;;;;;;;;;;:55;;;;14266:9;14249:35;;14258:6;14249:35;;;14277:6;14249:35;;;;;;:::i;:::-;;;;;;;;13717:575;;;:::o;44578:1532::-;44617:23;44643:24;44661:4;44643:9;:24::i;:::-;44617:50;;44678:25;44742:12;;44727;;44706:18;;:33;;;;:::i;:::-;:48;;;;:::i;:::-;44678:76;;44765:12;44813:1;44794:15;:20;:46;;;;44839:1;44818:17;:22;44794:46;44791:60;;;44843:7;;;;;44791:60;44906:2;44885:18;;:23;;;;:::i;:::-;44867:15;:41;44864:111;;;44961:2;44940:18;;:23;;;;:::i;:::-;44922:41;;44864:111;45037:23;45122:1;45102:17;45081:18;;45063:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;45037:86;;45134:26;45163:36;45183:15;45163;:19;;:36;;;;:::i;:::-;45134:65;;45213:25;45241:21;45213:49;;45276:36;45293:18;45276:16;:36::i;:::-;45327:18;45348:44;45374:17;45348:21;:25;;:44;;;;:::i;:::-;45327:65;;45406:17;45426:51;45459:17;45426:28;45441:12;;45426:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45406:71;;45488:17;45508:51;45541:17;45508:28;45523:12;;45508:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;45488:71;;45570:23;45621:9;45609;45596:10;:22;;;;:::i;:::-;:34;;;;:::i;:::-;45570:60;;45668:1;45647:18;:22;;;;45695:1;45680:12;:16;;;;45722:1;45707:12;:16;;;;45758:9;;;;;;;;;;;45750:23;;45781:9;45750:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45737:58;;;;;45830:1;45812:15;:19;:42;;;;;45853:1;45835:15;:19;45812:42;45809:210;;;45870:46;45883:15;45900;45870:12;:46::i;:::-;45936:71;45951:18;45971:15;45988:18;;45936:71;;;;;;;;:::i;:::-;;;;;;;;45809:210;46053:9;;;;;;;;;;;46045:23;;46076:21;46045:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46032:70;;;;;44606:1504;;;;;;;;;;44578:1532;:::o;18893:473::-;18951:7;19201:1;19196;:6;19192:47;;;19226:1;19219:8;;;;19192:47;19252:9;19268:1;19264;:5;;;;:::i;:::-;19252:17;;19297:1;19292;19288;:5;;;;:::i;:::-;:10;19280:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;19357:1;19350:8;;;18893:473;;;;;:::o;19843:132::-;19901:7;19928:39;19932:1;19935;19928:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;19921:46;;19843:132;;;;:::o;17138:125::-;;;;:::o;18000:136::-;18058:7;18085:43;18089:1;18092;18085:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;18078:50;;18000:136;;;;:::o;43443:597::-;43572:21;43610:1;43596:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43572:40;;43641:4;43623;43628:1;43623:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43667:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43657:4;43662:1;43657:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43703:62;43720:4;43735:15;43753:11;43703:8;:62::i;:::-;43805:15;:66;;;43886:11;43912:1;43956:4;43983;44003:15;43805:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43498:542;43443:597;:::o;44049:520::-;44197:62;44214:4;44229:15;44247:11;44197:8;:62::i;:::-;44303:15;:31;;;44342:9;44375:4;44395:11;44421:1;44464;44515:4;44535:15;44303:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44049:520;;:::o;20472:279::-;20558:7;20590:1;20586;:5;20593:12;20578:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20617:9;20633:1;20629;:5;;;;:::i;:::-;20617:17;;20742:1;20735:8;;;20472:279;;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:116::-;6189:21;6204:5;6189:21;:::i;:::-;6182:5;6179:32;6169:60;;6225:1;6222;6215:12;6169:60;6119:116;:::o;6241:133::-;6284:5;6322:6;6309:20;6300:29;;6338:30;6362:5;6338:30;:::i;:::-;6241:133;;;;:::o;6380:468::-;6445:6;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:50;6823:7;6814:6;6803:9;6799:22;6781:50;:::i;:::-;6771:60;;6726:115;6380:468;;;;;:::o;6854:86::-;6889:7;6929:4;6922:5;6918:16;6907:27;;6854:86;;;:::o;6946:112::-;7029:22;7045:5;7029:22;:::i;:::-;7024:3;7017:35;6946:112;;:::o;7064:214::-;7153:4;7191:2;7180:9;7176:18;7168:26;;7204:67;7268:1;7257:9;7253:17;7244:6;7204:67;:::i;:::-;7064:214;;;;:::o;7284:118::-;7371:24;7389:5;7371:24;:::i;:::-;7366:3;7359:37;7284:118;;:::o;7408:222::-;7501:4;7539:2;7528:9;7524:18;7516:26;;7552:71;7620:1;7609:9;7605:17;7596:6;7552:71;:::i;:::-;7408:222;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:323::-;8317:6;8366:2;8354:9;8345:7;8341:23;8337:32;8334:119;;;8372:79;;:::i;:::-;8334:119;8492:1;8517:50;8559:7;8550:6;8539:9;8535:22;8517:50;:::i;:::-;8507:60;;8463:114;8261:323;;;;:::o;8590:474::-;8658:6;8666;8715:2;8703:9;8694:7;8690:23;8686:32;8683:119;;;8721:79;;:::i;:::-;8683:119;8841:1;8866:53;8911:7;8902:6;8891:9;8887:22;8866:53;:::i;:::-;8856:63;;8812:117;8968:2;8994:53;9039:7;9030:6;9019:9;9015:22;8994:53;:::i;:::-;8984:63;;8939:118;8590:474;;;;;:::o;9070:180::-;9118:77;9115:1;9108:88;9215:4;9212:1;9205:15;9239:4;9236:1;9229:15;9256:320;9300:6;9337:1;9331:4;9327:12;9317:22;;9384:1;9378:4;9374:12;9405:18;9395:81;;9461:4;9453:6;9449:17;9439:27;;9395:81;9523:2;9515:6;9512:14;9492:18;9489:38;9486:84;;;9542:18;;:::i;:::-;9486:84;9307:269;9256:320;;;:::o;9582:182::-;9722:34;9718:1;9710:6;9706:14;9699:58;9582:182;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:180::-;10615:77;10612:1;10605:88;10712:4;10709:1;10702:15;10736:4;10733:1;10726:15;10753:348;10793:7;10816:20;10834:1;10816:20;:::i;:::-;10811:25;;10850:20;10868:1;10850:20;:::i;:::-;10845:25;;11038:1;10970:66;10966:74;10963:1;10960:81;10955:1;10948:9;10941:17;10937:105;10934:131;;;11045:18;;:::i;:::-;10934:131;11093:1;11090;11086:9;11075:20;;10753:348;;;;:::o;11107:180::-;11155:77;11152:1;11145:88;11252:4;11249:1;11242:15;11276:4;11273:1;11266:15;11293:185;11333:1;11350:20;11368:1;11350:20;:::i;:::-;11345:25;;11384:20;11402:1;11384:20;:::i;:::-;11379:25;;11423:1;11413:35;;11428:18;;:::i;:::-;11413:35;11470:1;11467;11463:9;11458:14;;11293:185;;;;:::o;11484:234::-;11624:34;11620:1;11612:6;11608:14;11601:58;11693:17;11688:2;11680:6;11676:15;11669:42;11484:234;:::o;11724:366::-;11866:3;11887:67;11951:2;11946:3;11887:67;:::i;:::-;11880:74;;11963:93;12052:3;11963:93;:::i;:::-;12081:2;12076:3;12072:12;12065:19;;11724:366;;;:::o;12096:419::-;12262:4;12300:2;12289:9;12285:18;12277:26;;12349:9;12343:4;12339:20;12335:1;12324:9;12320:17;12313:47;12377:131;12503:4;12377:131;:::i;:::-;12369:139;;12096:419;;;:::o;12521:305::-;12561:3;12580:20;12598:1;12580:20;:::i;:::-;12575:25;;12614:20;12632:1;12614:20;:::i;:::-;12609:25;;12768:1;12700:66;12696:74;12693:1;12690:81;12687:107;;;12774:18;;:::i;:::-;12687:107;12818:1;12815;12811:9;12804:16;;12521:305;;;;:::o;12832:179::-;12972:31;12968:1;12960:6;12956:14;12949:55;12832:179;:::o;13017:366::-;13159:3;13180:67;13244:2;13239:3;13180:67;:::i;:::-;13173:74;;13256:93;13345:3;13256:93;:::i;:::-;13374:2;13369:3;13365:12;13358:19;;13017:366;;;:::o;13389:419::-;13555:4;13593:2;13582:9;13578:18;13570:26;;13642:9;13636:4;13632:20;13628:1;13617:9;13613:17;13606:47;13670:131;13796:4;13670:131;:::i;:::-;13662:139;;13389:419;;;:::o;13814:244::-;13954:34;13950:1;13942:6;13938:14;13931:58;14023:27;14018:2;14010:6;14006:15;13999:52;13814:244;:::o;14064:366::-;14206:3;14227:67;14291:2;14286:3;14227:67;:::i;:::-;14220:74;;14303:93;14392:3;14303:93;:::i;:::-;14421:2;14416:3;14412:12;14405:19;;14064:366;;;:::o;14436:419::-;14602:4;14640:2;14629:9;14625:18;14617:26;;14689:9;14683:4;14679:20;14675:1;14664:9;14660:17;14653:47;14717:131;14843:4;14717:131;:::i;:::-;14709:139;;14436:419;;;:::o;14861:179::-;15001:31;14997:1;14989:6;14985:14;14978:55;14861:179;:::o;15046:366::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:419::-;15584:4;15622:2;15611:9;15607:18;15599:26;;15671:9;15665:4;15661:20;15657:1;15646:9;15642:17;15635:47;15699:131;15825:4;15699:131;:::i;:::-;15691:139;;15418:419;;;:::o;15843:223::-;15983:34;15979:1;15971:6;15967:14;15960:58;16052:6;16047:2;16039:6;16035:15;16028:31;15843:223;:::o;16072:366::-;16214:3;16235:67;16299:2;16294:3;16235:67;:::i;:::-;16228:74;;16311:93;16400:3;16311:93;:::i;:::-;16429:2;16424:3;16420:12;16413:19;;16072:366;;;:::o;16444:419::-;16610:4;16648:2;16637:9;16633:18;16625:26;;16697:9;16691:4;16687:20;16683:1;16672:9;16668:17;16661:47;16725:131;16851:4;16725:131;:::i;:::-;16717:139;;16444:419;;;:::o;16869:240::-;17009:34;17005:1;16997:6;16993:14;16986:58;17078:23;17073:2;17065:6;17061:15;17054:48;16869:240;:::o;17115:366::-;17257:3;17278:67;17342:2;17337:3;17278:67;:::i;:::-;17271:74;;17354:93;17443:3;17354:93;:::i;:::-;17472:2;17467:3;17463:12;17456:19;;17115:366;;;:::o;17487:419::-;17653:4;17691:2;17680:9;17676:18;17668:26;;17740:9;17734:4;17730:20;17726:1;17715:9;17711:17;17704:47;17768:131;17894:4;17768:131;:::i;:::-;17760:139;;17487:419;;;:::o;17912:239::-;18052:34;18048:1;18040:6;18036:14;18029:58;18121:22;18116:2;18108:6;18104:15;18097:47;17912:239;:::o;18157:366::-;18299:3;18320:67;18384:2;18379:3;18320:67;:::i;:::-;18313:74;;18396:93;18485:3;18396:93;:::i;:::-;18514:2;18509:3;18505:12;18498:19;;18157:366;;;:::o;18529:419::-;18695:4;18733:2;18722:9;18718:18;18710:26;;18782:9;18776:4;18772:20;18768:1;18757:9;18753:17;18746:47;18810:131;18936:4;18810:131;:::i;:::-;18802:139;;18529:419;;;:::o;18954:225::-;19094:34;19090:1;19082:6;19078:14;19071:58;19163:8;19158:2;19150:6;19146:15;19139:33;18954:225;:::o;19185:366::-;19327:3;19348:67;19412:2;19407:3;19348:67;:::i;:::-;19341:74;;19424:93;19513:3;19424:93;:::i;:::-;19542:2;19537:3;19533:12;19526:19;;19185:366;;;:::o;19557:419::-;19723:4;19761:2;19750:9;19746:18;19738:26;;19810:9;19804:4;19800:20;19796:1;19785:9;19781:17;19774:47;19838:131;19964:4;19838:131;:::i;:::-;19830:139;;19557:419;;;:::o;19982:177::-;20122:29;20118:1;20110:6;20106:14;20099:53;19982:177;:::o;20165:366::-;20307:3;20328:67;20392:2;20387:3;20328:67;:::i;:::-;20321:74;;20404:93;20493:3;20404:93;:::i;:::-;20522:2;20517:3;20513:12;20506:19;;20165:366;;;:::o;20537:419::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:223::-;21102:34;21098:1;21090:6;21086:14;21079:58;21171:6;21166:2;21158:6;21154:15;21147:31;20962:223;:::o;21191:366::-;21333:3;21354:67;21418:2;21413:3;21354:67;:::i;:::-;21347:74;;21430:93;21519:3;21430:93;:::i;:::-;21548:2;21543:3;21539:12;21532:19;;21191:366;;;:::o;21563:419::-;21729:4;21767:2;21756:9;21752:18;21744:26;;21816:9;21810:4;21806:20;21802:1;21791:9;21787:17;21780:47;21844:131;21970:4;21844:131;:::i;:::-;21836:139;;21563:419;;;:::o;21988:221::-;22128:34;22124:1;22116:6;22112:14;22105:58;22197:4;22192:2;22184:6;22180:15;22173:29;21988:221;:::o;22215:366::-;22357:3;22378:67;22442:2;22437:3;22378:67;:::i;:::-;22371:74;;22454:93;22543:3;22454:93;:::i;:::-;22572:2;22567:3;22563:12;22556:19;;22215:366;;;:::o;22587:419::-;22753:4;22791:2;22780:9;22776:18;22768:26;;22840:9;22834:4;22830:20;22826:1;22815:9;22811:17;22804:47;22868:131;22994:4;22868:131;:::i;:::-;22860:139;;22587:419;;;:::o;23012:224::-;23152:34;23148:1;23140:6;23136:14;23129:58;23221:7;23216:2;23208:6;23204:15;23197:32;23012:224;:::o;23242:366::-;23384:3;23405:67;23469:2;23464:3;23405:67;:::i;:::-;23398:74;;23481:93;23570:3;23481:93;:::i;:::-;23599:2;23594:3;23590:12;23583:19;;23242:366;;;:::o;23614:419::-;23780:4;23818:2;23807:9;23803:18;23795:26;;23867:9;23861:4;23857:20;23853:1;23842:9;23838:17;23831:47;23895:131;24021:4;23895:131;:::i;:::-;23887:139;;23614:419;;;:::o;24039:222::-;24179:34;24175:1;24167:6;24163:14;24156:58;24248:5;24243:2;24235:6;24231:15;24224:30;24039:222;:::o;24267:366::-;24409:3;24430:67;24494:2;24489:3;24430:67;:::i;:::-;24423:74;;24506:93;24595:3;24506:93;:::i;:::-;24624:2;24619:3;24615:12;24608:19;;24267:366;;;:::o;24639:419::-;24805:4;24843:2;24832:9;24828:18;24820:26;;24892:9;24886:4;24882:20;24878:1;24867:9;24863:17;24856:47;24920:131;25046:4;24920:131;:::i;:::-;24912:139;;24639:419;;;:::o;25064:236::-;25204:34;25200:1;25192:6;25188:14;25181:58;25273:19;25268:2;25260:6;25256:15;25249:44;25064:236;:::o;25306:366::-;25448:3;25469:67;25533:2;25528:3;25469:67;:::i;:::-;25462:74;;25545:93;25634:3;25545:93;:::i;:::-;25663:2;25658:3;25654:12;25647:19;;25306:366;;;:::o;25678:419::-;25844:4;25882:2;25871:9;25867:18;25859:26;;25931:9;25925:4;25921:20;25917:1;25906:9;25902:17;25895:47;25959:131;26085:4;25959:131;:::i;:::-;25951:139;;25678:419;;;:::o;26103:172::-;26243:24;26239:1;26231:6;26227:14;26220:48;26103:172;:::o;26281:366::-;26423:3;26444:67;26508:2;26503:3;26444:67;:::i;:::-;26437:74;;26520:93;26609:3;26520:93;:::i;:::-;26638:2;26633:3;26629:12;26622:19;;26281:366;;;:::o;26653:419::-;26819:4;26857:2;26846:9;26842:18;26834:26;;26906:9;26900:4;26896:20;26892:1;26881:9;26877:17;26870:47;26934:131;27060:4;26934:131;:::i;:::-;26926:139;;26653:419;;;:::o;27078:297::-;27218:34;27214:1;27206:6;27202:14;27195:58;27287:34;27282:2;27274:6;27270:15;27263:59;27356:11;27351:2;27343:6;27339:15;27332:36;27078:297;:::o;27381:366::-;27523:3;27544:67;27608:2;27603:3;27544:67;:::i;:::-;27537:74;;27620:93;27709:3;27620:93;:::i;:::-;27738:2;27733:3;27729:12;27722:19;;27381:366;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27753:419;;;:::o;28178:240::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:23;28382:2;28374:6;28370:15;28363:48;28178:240;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:169::-;29361:21;29357:1;29349:6;29345:14;29338:45;29221:169;:::o;29396:366::-;29538:3;29559:67;29623:2;29618:3;29559:67;:::i;:::-;29552:74;;29635:93;29724:3;29635:93;:::i;:::-;29753:2;29748:3;29744:12;29737:19;;29396:366;;;:::o;29768:419::-;29934:4;29972:2;29961:9;29957:18;29949:26;;30021:9;30015:4;30011:20;30007:1;29996:9;29992:17;29985:47;30049:131;30175:4;30049:131;:::i;:::-;30041:139;;29768:419;;;:::o;30193:241::-;30333:34;30329:1;30321:6;30317:14;30310:58;30402:24;30397:2;30389:6;30385:15;30378:49;30193:241;:::o;30440:366::-;30582:3;30603:67;30667:2;30662:3;30603:67;:::i;:::-;30596:74;;30679:93;30768:3;30679:93;:::i;:::-;30797:2;30792:3;30788:12;30781:19;;30440:366;;;:::o;30812:419::-;30978:4;31016:2;31005:9;31001:18;30993:26;;31065:9;31059:4;31055:20;31051:1;31040:9;31036:17;31029:47;31093:131;31219:4;31093:131;:::i;:::-;31085:139;;30812:419;;;:::o;31237:191::-;31277:4;31297:20;31315:1;31297:20;:::i;:::-;31292:25;;31331:20;31349:1;31331:20;:::i;:::-;31326:25;;31370:1;31367;31364:8;31361:34;;;31375:18;;:::i;:::-;31361:34;31420:1;31417;31413:9;31405:17;;31237:191;;;;:::o;31434:147::-;31535:11;31572:3;31557:18;;31434:147;;;;:::o;31587:114::-;;:::o;31707:398::-;31866:3;31887:83;31968:1;31963:3;31887:83;:::i;:::-;31880:90;;31979:93;32068:3;31979:93;:::i;:::-;32097:1;32092:3;32088:11;32081:18;;31707:398;;;:::o;32111:379::-;32295:3;32317:147;32460:3;32317:147;:::i;:::-;32310:154;;32481:3;32474:10;;32111:379;;;:::o;32496:442::-;32645:4;32683:2;32672:9;32668:18;32660:26;;32696:71;32764:1;32753:9;32749:17;32740:6;32696:71;:::i;:::-;32777:72;32845:2;32834:9;32830:18;32821:6;32777:72;:::i;:::-;32859;32927:2;32916:9;32912:18;32903:6;32859:72;:::i;:::-;32496:442;;;;;;:::o;32944:220::-;33084:34;33080:1;33072:6;33068:14;33061:58;33153:3;33148:2;33140:6;33136:15;33129:28;32944:220;:::o;33170:366::-;33312:3;33333:67;33397:2;33392:3;33333:67;:::i;:::-;33326:74;;33409:93;33498:3;33409:93;:::i;:::-;33527:2;33522:3;33518:12;33511:19;;33170:366;;;:::o;33542:419::-;33708:4;33746:2;33735:9;33731:18;33723:26;;33795:9;33789:4;33785:20;33781:1;33770:9;33766:17;33759:47;33823:131;33949:4;33823:131;:::i;:::-;33815:139;;33542:419;;;:::o;33967:180::-;34015:77;34012:1;34005:88;34112:4;34109:1;34102:15;34136:4;34133:1;34126:15;34153:180;34201:77;34198:1;34191:88;34298:4;34295:1;34288:15;34322:4;34319:1;34312:15;34339:143;34396:5;34427:6;34421:13;34412:22;;34443:33;34470:5;34443:33;:::i;:::-;34339:143;;;;:::o;34488:351::-;34558:6;34607:2;34595:9;34586:7;34582:23;34578:32;34575:119;;;34613:79;;:::i;:::-;34575:119;34733:1;34758:64;34814:7;34805:6;34794:9;34790:22;34758:64;:::i;:::-;34748:74;;34704:128;34488:351;;;;:::o;34845:85::-;34890:7;34919:5;34908:16;;34845:85;;;:::o;34936:158::-;34994:9;35027:61;35045:42;35054:32;35080:5;35054:32;:::i;:::-;35045:42;:::i;:::-;35027:61;:::i;:::-;35014:74;;34936:158;;;:::o;35100:147::-;35195:45;35234:5;35195:45;:::i;:::-;35190:3;35183:58;35100:147;;:::o;35253:114::-;35320:6;35354:5;35348:12;35338:22;;35253:114;;;:::o;35373:184::-;35472:11;35506:6;35501:3;35494:19;35546:4;35541:3;35537:14;35522:29;;35373:184;;;;:::o;35563:132::-;35630:4;35653:3;35645:11;;35683:4;35678:3;35674:14;35666:22;;35563:132;;;:::o;35701:108::-;35778:24;35796:5;35778:24;:::i;:::-;35773:3;35766:37;35701:108;;:::o;35815:179::-;35884:10;35905:46;35947:3;35939:6;35905:46;:::i;:::-;35983:4;35978:3;35974:14;35960:28;;35815:179;;;;:::o;36000:113::-;36070:4;36102;36097:3;36093:14;36085:22;;36000:113;;;:::o;36149:732::-;36268:3;36297:54;36345:5;36297:54;:::i;:::-;36367:86;36446:6;36441:3;36367:86;:::i;:::-;36360:93;;36477:56;36527:5;36477:56;:::i;:::-;36556:7;36587:1;36572:284;36597:6;36594:1;36591:13;36572:284;;;36673:6;36667:13;36700:63;36759:3;36744:13;36700:63;:::i;:::-;36693:70;;36786:60;36839:6;36786:60;:::i;:::-;36776:70;;36632:224;36619:1;36616;36612:9;36607:14;;36572:284;;;36576:14;36872:3;36865:10;;36273:608;;;36149:732;;;;:::o;36887:831::-;37150:4;37188:3;37177:9;37173:19;37165:27;;37202:71;37270:1;37259:9;37255:17;37246:6;37202:71;:::i;:::-;37283:80;37359:2;37348:9;37344:18;37335:6;37283:80;:::i;:::-;37410:9;37404:4;37400:20;37395:2;37384:9;37380:18;37373:48;37438:108;37541:4;37532:6;37438:108;:::i;:::-;37430:116;;37556:72;37624:2;37613:9;37609:18;37600:6;37556:72;:::i;:::-;37638:73;37706:3;37695:9;37691:19;37682:6;37638:73;:::i;:::-;36887:831;;;;;;;;:::o;37724:807::-;37973:4;38011:3;38000:9;37996:19;37988:27;;38025:71;38093:1;38082:9;38078:17;38069:6;38025:71;:::i;:::-;38106:72;38174:2;38163:9;38159:18;38150:6;38106:72;:::i;:::-;38188:80;38264:2;38253:9;38249:18;38240:6;38188:80;:::i;:::-;38278;38354:2;38343:9;38339:18;38330:6;38278:80;:::i;:::-;38368:73;38436:3;38425:9;38421:19;38412:6;38368:73;:::i;:::-;38451;38519:3;38508:9;38504:19;38495:6;38451:73;:::i;:::-;37724:807;;;;;;;;;:::o;38537:143::-;38594:5;38625:6;38619:13;38610:22;;38641:33;38668:5;38641:33;:::i;:::-;38537:143;;;;:::o;38686:663::-;38774:6;38782;38790;38839:2;38827:9;38818:7;38814:23;38810:32;38807:119;;;38845:79;;:::i;:::-;38807:119;38965:1;38990:64;39046:7;39037:6;39026:9;39022:22;38990:64;:::i;:::-;38980:74;;38936:128;39103:2;39129:64;39185:7;39176:6;39165:9;39161:22;39129:64;:::i;:::-;39119:74;;39074:129;39242:2;39268:64;39324:7;39315:6;39304:9;39300:22;39268:64;:::i;:::-;39258:74;;39213:129;38686:663;;;;;:::o

Swarm Source

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