ETH Price: $2,759.81 (+5.16%)

Token

Proof Of X (X)
 

Overview

Max Total Supply

20,000,000 X

Holders

151

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProofOfX

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;
 
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event 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 ProofOfX 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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
 
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    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("Proof Of X", "X") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
 
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
 
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 4;
 
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 4;
 
        uint256 totalSupply = 2 * 1e7 * 1e18;
 
        maxTransactionAmount = totalSupply * 20 / 1000; // 2% maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% maxWallet
        swapTokensAtAmount = totalSupply * 5 / 10000; // 0.5% swap wallet
 
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
 
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
 
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
 
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
 
    receive() external payable {
 
    }
 
    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
    }
 
    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool){
        limitsInEffect = false;
        return true;
    }
 
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool){
        transferDelayEnabled = false;
        return true;
    }
 
     // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){
        require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
        require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum * (10**18);
    }
 
    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = newNum * (10**18);
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }
 
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
 
 
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        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 * sellMarketingFee / 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 * buyMarketingFee / buyTotalFees;
            }
 
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
 
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f50726f6f66204f662058000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f580000000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000baf565b5080600490805190602001906200011b92919062000baf565b5050506000620001306200067b60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cc9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cc9565b6040518363ffffffff1660e01b81526004016200036e92919062000d0c565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cc9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068360201b60201c565b6200042160a05160016200078060201b60201c565b60008060006004905060008060006004905060006a108b2a2c2802909400000090506103e860148262000455919062000d72565b62000461919062000e02565b6008819055506103e860148262000479919062000d72565b62000485919062000e02565b600a819055506127106005826200049d919062000d72565b620004a9919062000e02565b600981905550866011819055508560128190555084601381905550601354601254601154620004d9919062000e3a565b620004e5919062000e3a565b60108190555083601581905550826016819055508160178190555060175460165460155462000515919062000e3a565b62000521919062000e3a565b601481905550620005376200082160201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005876200082160201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005e9620005db6200082160201b60201c565b60016200084b60201b60201c565b620005fc3060016200084b60201b60201c565b6200061161dead60016200084b60201b60201c565b62000633620006256200082160201b60201c565b60016200068360201b60201c565b620006463060016200068360201b60201c565b6200065b61dead60016200068360201b60201c565b6200066d33826200099860201b60201c565b5050505050505050620010cb565b600033905090565b620006936200067b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000725576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071c9062000ef8565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085b6200067b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e49062000ef8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200098c919062000f37565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a029062000fa4565b60405180910390fd5b62000a1f6000838362000b4760201b60201c565b62000a3b8160025462000b4c60201b620021bf1790919060201c565b60028190555062000a99816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b4c60201b620021bf1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3b919062000fd7565b60405180910390a35050565b505050565b600080828462000b5d919062000e3a565b90508381101562000ba5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9c9062001044565b60405180910390fd5b8091505092915050565b82805462000bbd9062001095565b90600052602060002090601f01602090048101928262000be1576000855562000c2d565b82601f1062000bfc57805160ff191683800117855562000c2d565b8280016001018555821562000c2d579182015b8281111562000c2c57825182559160200191906001019062000c0f565b5b50905062000c3c919062000c40565b5090565b5b8082111562000c5b57600081600090555060010162000c41565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c918262000c64565b9050919050565b62000ca38162000c84565b811462000caf57600080fd5b50565b60008151905062000cc38162000c98565b92915050565b60006020828403121562000ce25762000ce162000c5f565b5b600062000cf28482850162000cb2565b91505092915050565b62000d068162000c84565b82525050565b600060408201905062000d23600083018562000cfb565b62000d32602083018462000cfb565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d7f8262000d39565b915062000d8c8362000d39565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dc85762000dc762000d43565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e0f8262000d39565b915062000e1c8362000d39565b92508262000e2f5762000e2e62000dd3565b5b828204905092915050565b600062000e478262000d39565b915062000e548362000d39565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e8c5762000e8b62000d43565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ee060208362000e97565b915062000eed8262000ea8565b602082019050919050565b6000602082019050818103600083015262000f138162000ed1565b9050919050565b60008115159050919050565b62000f318162000f1a565b82525050565b600060208201905062000f4e600083018462000f26565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f8c601f8362000e97565b915062000f998262000f54565b602082019050919050565b6000602082019050818103600083015262000fbf8162000f7d565b9050919050565b62000fd18162000d39565b82525050565b600060208201905062000fee600083018462000fc6565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200102c601b8362000e97565b9150620010398262000ff4565b602082019050919050565b600060208201905081810360008301526200105f816200101d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010ae57607f821691505b60208210811415620010c557620010c462001066565b5b50919050565b60805160a05161510962001129600039600081816110a701528181611783015261288b015260008181610c5701528181612833015281816139a101528181613a9101528181613ab801528181613b540152613b7b01526151096000f3fe6080604052600436106102b25760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610adb578063f2fde38b14610b06578063f637434214610b2f578063f8b45b0514610b5a576102b9565b8063dd62ed3e14610a48578063e2f4560514610a85578063e884f26014610ab0576102b9565b8063c024666814610938578063c18bc19514610961578063c876d0b91461098a578063c8c8ebe4146109b5578063d257b34f146109e0578063d85ba06314610a1d576102b9565b8063a0d82dc51161012e578063a0d82dc514610802578063a457c2d71461082d578063a9059cbb1461086a578063aacebbe3146108a7578063b62496f5146108d0578063bbc0c7421461090d576102b9565b80639213691314610704578063924de9b71461072f57806395d89b41146107585780639a7a23d6146107835780639c3b4fdc146107ac5780639fccce32146107d7576102b9565b806349bd5a5e11610219578063715018a6116101d2578063715018a61461062c578063751039fc146106435780637571336a1461066e5780637bce5a04146106975780638a8c523c146106c25780638da5cb5b146106d9576102b9565b806349bd5a5e146105065780634a62bb65146105315780634fbee1931461055c5780636a486a8e146105995780636ddd1713146105c457806370a08231146105ef576102b9565b80631a8145bb1161026b5780631a8145bb146103e25780631f3fed8f1461040d578063203e727e1461043857806323b872dd14610461578063313ce5671461049e57806339509351146104c9576102b9565b806306fdde03146102be578063095ea7b3146102e957806310d5de53146103265780631694505e1461036357806318160ddd1461038e5780631816467f146103b9576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610b85565b6040516102e09190613d33565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613dee565b610c17565b60405161031d9190613e49565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613e64565b610c35565b60405161035a9190613e49565b60405180910390f35b34801561036f57600080fd5b50610378610c55565b6040516103859190613ef0565b60405180910390f35b34801561039a57600080fd5b506103a3610c79565b6040516103b09190613f1a565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613e64565b610c83565b005b3480156103ee57600080fd5b506103f7610dda565b6040516104049190613f1a565b60405180910390f35b34801561041957600080fd5b50610422610de0565b60405161042f9190613f1a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f35565b610de6565b005b34801561046d57600080fd5b5061048860048036038101906104839190613f62565b610f10565b6040516104959190613e49565b60405180910390f35b3480156104aa57600080fd5b506104b3610fe9565b6040516104c09190613fd1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613dee565b610ff2565b6040516104fd9190613e49565b60405180910390f35b34801561051257600080fd5b5061051b6110a5565b6040516105289190613ffb565b60405180910390f35b34801561053d57600080fd5b506105466110c9565b6040516105539190613e49565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613e64565b6110dc565b6040516105909190613e49565b60405180910390f35b3480156105a557600080fd5b506105ae611132565b6040516105bb9190613f1a565b60405180910390f35b3480156105d057600080fd5b506105d9611138565b6040516105e69190613e49565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613e64565b61114b565b6040516106239190613f1a565b60405180910390f35b34801561063857600080fd5b50610641611193565b005b34801561064f57600080fd5b506106586112eb565b6040516106659190613e49565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190614042565b6113a6565b005b3480156106a357600080fd5b506106ac611498565b6040516106b99190613f1a565b60405180910390f35b3480156106ce57600080fd5b506106d761149e565b005b3480156106e557600080fd5b506106ee611574565b6040516106fb9190613ffb565b60405180910390f35b34801561071057600080fd5b5061071961159e565b6040516107269190613f1a565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190614082565b6115a4565b005b34801561076457600080fd5b5061076d611658565b60405161077a9190613d33565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190614042565b6116ea565b005b3480156107b857600080fd5b506107c161181e565b6040516107ce9190613f1a565b60405180910390f35b3480156107e357600080fd5b506107ec611824565b6040516107f99190613f1a565b60405180910390f35b34801561080e57600080fd5b5061081761182a565b6040516108249190613f1a565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613dee565b611830565b6040516108619190613e49565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613dee565b6118fd565b60405161089e9190613e49565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190613e64565b61191b565b005b3480156108dc57600080fd5b506108f760048036038101906108f29190613e64565b611a72565b6040516109049190613e49565b60405180910390f35b34801561091957600080fd5b50610922611a92565b60405161092f9190613e49565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a9190614042565b611aa5565b005b34801561096d57600080fd5b5061098860048036038101906109839190613f35565b611be5565b005b34801561099657600080fd5b5061099f611d0f565b6040516109ac9190613e49565b60405180910390f35b3480156109c157600080fd5b506109ca611d22565b6040516109d79190613f1a565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613f35565b611d28565b604051610a149190613e49565b60405180910390f35b348015610a2957600080fd5b50610a32611e98565b604051610a3f9190613f1a565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906140af565b611e9e565b604051610a7c9190613f1a565b60405180910390f35b348015610a9157600080fd5b50610a9a611f25565b604051610aa79190613f1a565b60405180910390f35b348015610abc57600080fd5b50610ac5611f2b565b604051610ad29190613e49565b60405180910390f35b348015610ae757600080fd5b50610af0611fe6565b604051610afd9190613f1a565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190613e64565b611fec565b005b348015610b3b57600080fd5b50610b446121b3565b604051610b519190613f1a565b60405180910390f35b348015610b6657600080fd5b50610b6f6121b9565b604051610b7c9190613f1a565b60405180910390f35b606060038054610b949061411e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc09061411e565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c2b610c2461221d565b8484612225565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610c8b61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061419c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610dee61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061419c565b60405180910390fd5b670de0b6b3a76400006103e86001610e93610c79565b610e9d91906141eb565b610ea79190614274565b610eb19190614274565b811015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90614317565b60405180910390fd5b670de0b6b3a764000081610f0791906141eb565b60088190555050565b6000610f1d8484846123f0565b610fde84610f2961221d565b610fd98560405180606001604052806028815260200161508760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8f61221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b612225565b600190509392505050565b60006012905090565b600061109b610fff61221d565b84611096856001600061101061221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121bf90919063ffffffff16565b612225565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119b61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006112f561221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9061419c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6113ae61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114349061419c565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6114a661221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061419c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6115ac61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116329061419c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546116679061411e565b80601f01602080910402602001604051908101604052809291908181526020018280546116939061411e565b80156116e05780601f106116b5576101008083540402835291602001916116e0565b820191906000526020600020905b8154815290600101906020018083116116c357829003601f168201915b5050505050905090565b6116f261221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117789061419c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906143a9565b60405180910390fd5b61181a82826131d1565b5050565b60135481565b601a5481565b60175481565b60006118f361183d61221d565b846118ee856040518060600160405280602581526020016150af602591396001600061186761221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b612225565b6001905092915050565b600061191161190a61221d565b84846123f0565b6001905092915050565b61192361221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a99061419c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611aad61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339061419c565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bd99190613e49565b60405180910390a25050565b611bed61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c739061419c565b60405180910390fd5b670de0b6b3a76400006103e86005611c92610c79565b611c9c91906141eb565b611ca69190614274565b611cb09190614274565b811015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061443b565b60405180910390fd5b670de0b6b3a764000081611d0691906141eb565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611d3261221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061419c565b60405180910390fd5b620186a06001611dcf610c79565b611dd991906141eb565b611de39190614274565b821015611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c906144cd565b60405180910390fd5b6103e86005611e32610c79565b611e3c91906141eb565b611e469190614274565b821115611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f9061455f565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611f3561221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061419c565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611ff461221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea906145f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846121ce9190614611565b905083811015612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a906146b3565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90614745565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906147d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123e39190613f1a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245790614869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906148fb565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125745750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa9061498d565b60405180910390fd5b60008114156125cd576125c883836000613272565b613168565b600b60009054906101000a900460ff1615612c90576125ea611574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126585750612628611574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126915750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e45750600560149054906101000a900460ff16155b15612c8f57600b60019054906101000a900460ff166127de57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061279e5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906149f9565b60405180910390fd5b5b600f60009054906101000a900460ff16156129a6576127fb611574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561288257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128da57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129a55743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790614ab1565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a495750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af057600854811115612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a90614b43565b60405180910390fd5b600a54612a9f8361114b565b82612aaa9190614611565b1115612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290614baf565b60405180910390fd5b612c8e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b935750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be257600854811115612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614c41565b60405180910390fd5b612c8d565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c8c57600a54612c3f8361114b565b82612c4a9190614611565b1115612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8290614baf565b60405180910390fd5b5b5b5b5b5b6000612c9b3061114b565b905060006009548210159050808015612cc05750600b60029054906101000a900460ff165b8015612cd95750600560149054906101000a900460ff16155b8015612d2f5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d855750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ddb5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e1f576001600560146101000a81548160ff021916908315150217905550612e03613507565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ed55750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612edf57600090505b6000811561315857601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f4257506000601454115b1561300f57612f6f6064612f61601454886137ee90919063ffffffff16565b61386990919063ffffffff16565b905060145460165482612f8291906141eb565b612f8c9190614274565b60196000828254612f9d9190614611565b9250508190555060145460175482612fb591906141eb565b612fbf9190614274565b601a6000828254612fd09190614611565b9250508190555060145460155482612fe891906141eb565b612ff29190614274565b601860008282546130039190614611565b92505081905550613134565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306a57506000601054115b15613133576130976064613089601054886137ee90919063ffffffff16565b61386990919063ffffffff16565b9050601054601254826130aa91906141eb565b6130b49190614274565b601960008282546130c59190614611565b92505081905550601054601354826130dd91906141eb565b6130e79190614274565b601a60008282546130f89190614611565b925050819055506010546011548261311091906141eb565b61311a9190614274565b6018600082825461312b9190614611565b925050819055505b5b600081111561314957613148873083613272565b5b80856131559190614c61565b94505b613163878787613272565b505050505b505050565b60008383111582906131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ac9190613d33565b60405180910390fd5b50600083856131c49190614c61565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d990614869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613349906148fb565b60405180910390fd5b61335d8383836138b3565b6133c881604051806060016040528060268152602001615061602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061345b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121bf90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134fa9190613f1a565b60405180910390a3505050565b60006135123061114b565b90506000601a546018546019546135299190614611565b6135339190614611565b90506000808314806135455750600082145b15613552575050506137ec565b601460095461356191906141eb565b83111561357a57601460095461357791906141eb565b92505b60006002836019548661358d91906141eb565b6135979190614274565b6135a19190614274565b905060006135b882866138b890919063ffffffff16565b905060004790506135c882613902565b60006135dd82476138b890919063ffffffff16565b90506000613608876135fa601854856137ee90919063ffffffff16565b61386990919063ffffffff16565b9050600061363388613625601a54866137ee90919063ffffffff16565b61386990919063ffffffff16565b905060008183856136449190614c61565b61364e9190614c61565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136ae90614cc6565b60006040518083038185875af1925050503d80600081146136eb576040519150601f19603f3d011682016040523d82523d6000602084013e6136f0565b606091505b5050809850506000871180156137065750600081115b15613753576137158782613b4e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161374a93929190614cdb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379990614cc6565b60006040518083038185875af1925050503d80600081146137d6576040519150601f19603f3d011682016040523d82523d6000602084013e6137db565b606091505b505080985050505050505050505050505b565b6000808314156138015760009050613863565b6000828461380f91906141eb565b905082848261381e9190614274565b1461385e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385590614d84565b60405180910390fd5b809150505b92915050565b60006138ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c37565b905092915050565b505050565b60006138fa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061316d565b905092915050565b6000600267ffffffffffffffff81111561391f5761391e614da4565b5b60405190808252806020026020018201604052801561394d5781602001602082028036833780820191505090505b509050308160008151811061396557613964614dd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a0557600080fd5b505afa158015613a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3d9190614e17565b81600181518110613a5157613a50614dd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ab6307f000000000000000000000000000000000000000000000000000000000000000084612225565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b18959493929190614f3d565b600060405180830381600087803b158015613b3257600080fd5b505af1158015613b46573d6000803e3d6000fd5b505050505050565b613b79307f000000000000000000000000000000000000000000000000000000000000000084612225565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613bde96959493929190614f97565b6060604051808303818588803b158015613bf757600080fd5b505af1158015613c0b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c30919061500d565b5050505050565b60008083118290613c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c759190613d33565b60405180910390fd5b5060008385613c8d9190614274565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd4578082015181840152602081019050613cb9565b83811115613ce3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0582613c9a565b613d0f8185613ca5565b9350613d1f818560208601613cb6565b613d2881613ce9565b840191505092915050565b60006020820190508181036000830152613d4d8184613cfa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8582613d5a565b9050919050565b613d9581613d7a565b8114613da057600080fd5b50565b600081359050613db281613d8c565b92915050565b6000819050919050565b613dcb81613db8565b8114613dd657600080fd5b50565b600081359050613de881613dc2565b92915050565b60008060408385031215613e0557613e04613d55565b5b6000613e1385828601613da3565b9250506020613e2485828601613dd9565b9150509250929050565b60008115159050919050565b613e4381613e2e565b82525050565b6000602082019050613e5e6000830184613e3a565b92915050565b600060208284031215613e7a57613e79613d55565b5b6000613e8884828501613da3565b91505092915050565b6000819050919050565b6000613eb6613eb1613eac84613d5a565b613e91565b613d5a565b9050919050565b6000613ec882613e9b565b9050919050565b6000613eda82613ebd565b9050919050565b613eea81613ecf565b82525050565b6000602082019050613f056000830184613ee1565b92915050565b613f1481613db8565b82525050565b6000602082019050613f2f6000830184613f0b565b92915050565b600060208284031215613f4b57613f4a613d55565b5b6000613f5984828501613dd9565b91505092915050565b600080600060608486031215613f7b57613f7a613d55565b5b6000613f8986828701613da3565b9350506020613f9a86828701613da3565b9250506040613fab86828701613dd9565b9150509250925092565b600060ff82169050919050565b613fcb81613fb5565b82525050565b6000602082019050613fe66000830184613fc2565b92915050565b613ff581613d7a565b82525050565b60006020820190506140106000830184613fec565b92915050565b61401f81613e2e565b811461402a57600080fd5b50565b60008135905061403c81614016565b92915050565b6000806040838503121561405957614058613d55565b5b600061406785828601613da3565b92505060206140788582860161402d565b9150509250929050565b60006020828403121561409857614097613d55565b5b60006140a68482850161402d565b91505092915050565b600080604083850312156140c6576140c5613d55565b5b60006140d485828601613da3565b92505060206140e585828601613da3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413657607f821691505b6020821081141561414a576141496140ef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614186602083613ca5565b915061419182614150565b602082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f682613db8565b915061420183613db8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423a576142396141bc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061427f82613db8565b915061428a83613db8565b92508261429a57614299614245565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614301602f83613ca5565b915061430c826142a5565b604082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614393603983613ca5565b915061439e82614337565b604082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614425602483613ca5565b9150614430826143c9565b604082019050919050565b6000602082019050818103600083015261445481614418565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b7603583613ca5565b91506144c28261445b565b604082019050919050565b600060208201905081810360008301526144e6816144aa565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614549603483613ca5565b9150614554826144ed565b604082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145db602683613ca5565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b600061461c82613db8565b915061462783613db8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465c5761465b6141bc565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061469d601b83613ca5565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061472f602483613ca5565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147c1602283613ca5565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614853602583613ca5565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148e5602383613ca5565b91506148f082614889565b604082019050919050565b60006020820190508181036000830152614914816148d8565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614977603183613ca5565b91506149828261491b565b604082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149e3601683613ca5565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a9b604983613ca5565b9150614aa682614a19565b606082019050919050565b60006020820190508181036000830152614aca81614a8e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b2d603583613ca5565b9150614b3882614ad1565b604082019050919050565b60006020820190508181036000830152614b5c81614b20565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b99601383613ca5565b9150614ba482614b63565b602082019050919050565b60006020820190508181036000830152614bc881614b8c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c2b603683613ca5565b9150614c3682614bcf565b604082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b6000614c6c82613db8565b9150614c7783613db8565b925082821015614c8a57614c896141bc565b5b828203905092915050565b600081905092915050565b50565b6000614cb0600083614c95565b9150614cbb82614ca0565b600082019050919050565b6000614cd182614ca3565b9150819050919050565b6000606082019050614cf06000830186613f0b565b614cfd6020830185613f0b565b614d0a6040830184613f0b565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d6e602183613ca5565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e1181613d8c565b92915050565b600060208284031215614e2d57614e2c613d55565b5b6000614e3b84828501614e02565b91505092915050565b6000819050919050565b6000614e69614e64614e5f84614e44565b613e91565b613db8565b9050919050565b614e7981614e4e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eb481613d7a565b82525050565b6000614ec68383614eab565b60208301905092915050565b6000602082019050919050565b6000614eea82614e7f565b614ef48185614e8a565b9350614eff83614e9b565b8060005b83811015614f30578151614f178882614eba565b9750614f2283614ed2565b925050600181019050614f03565b5085935050505092915050565b600060a082019050614f526000830188613f0b565b614f5f6020830187614e70565b8181036040830152614f718186614edf565b9050614f806060830185613fec565b614f8d6080830184613f0b565b9695505050505050565b600060c082019050614fac6000830189613fec565b614fb96020830188613f0b565b614fc66040830187614e70565b614fd36060830186614e70565b614fe06080830185613fec565b614fed60a0830184613f0b565b979650505050505050565b60008151905061500781613dc2565b92915050565b60008060006060848603121561502657615025613d55565b5b600061503486828701614ff8565b935050602061504586828701614ff8565b925050604061505686828701614ff8565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205470dfd1c024b994a77b2a40c287cd9ed649481915bf77cf5965b4175dfd40aa64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80639213691311610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610adb578063f2fde38b14610b06578063f637434214610b2f578063f8b45b0514610b5a576102b9565b8063dd62ed3e14610a48578063e2f4560514610a85578063e884f26014610ab0576102b9565b8063c024666814610938578063c18bc19514610961578063c876d0b91461098a578063c8c8ebe4146109b5578063d257b34f146109e0578063d85ba06314610a1d576102b9565b8063a0d82dc51161012e578063a0d82dc514610802578063a457c2d71461082d578063a9059cbb1461086a578063aacebbe3146108a7578063b62496f5146108d0578063bbc0c7421461090d576102b9565b80639213691314610704578063924de9b71461072f57806395d89b41146107585780639a7a23d6146107835780639c3b4fdc146107ac5780639fccce32146107d7576102b9565b806349bd5a5e11610219578063715018a6116101d2578063715018a61461062c578063751039fc146106435780637571336a1461066e5780637bce5a04146106975780638a8c523c146106c25780638da5cb5b146106d9576102b9565b806349bd5a5e146105065780634a62bb65146105315780634fbee1931461055c5780636a486a8e146105995780636ddd1713146105c457806370a08231146105ef576102b9565b80631a8145bb1161026b5780631a8145bb146103e25780631f3fed8f1461040d578063203e727e1461043857806323b872dd14610461578063313ce5671461049e57806339509351146104c9576102b9565b806306fdde03146102be578063095ea7b3146102e957806310d5de53146103265780631694505e1461036357806318160ddd1461038e5780631816467f146103b9576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610b85565b6040516102e09190613d33565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613dee565b610c17565b60405161031d9190613e49565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613e64565b610c35565b60405161035a9190613e49565b60405180910390f35b34801561036f57600080fd5b50610378610c55565b6040516103859190613ef0565b60405180910390f35b34801561039a57600080fd5b506103a3610c79565b6040516103b09190613f1a565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613e64565b610c83565b005b3480156103ee57600080fd5b506103f7610dda565b6040516104049190613f1a565b60405180910390f35b34801561041957600080fd5b50610422610de0565b60405161042f9190613f1a565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a9190613f35565b610de6565b005b34801561046d57600080fd5b5061048860048036038101906104839190613f62565b610f10565b6040516104959190613e49565b60405180910390f35b3480156104aa57600080fd5b506104b3610fe9565b6040516104c09190613fd1565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190613dee565b610ff2565b6040516104fd9190613e49565b60405180910390f35b34801561051257600080fd5b5061051b6110a5565b6040516105289190613ffb565b60405180910390f35b34801561053d57600080fd5b506105466110c9565b6040516105539190613e49565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190613e64565b6110dc565b6040516105909190613e49565b60405180910390f35b3480156105a557600080fd5b506105ae611132565b6040516105bb9190613f1a565b60405180910390f35b3480156105d057600080fd5b506105d9611138565b6040516105e69190613e49565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613e64565b61114b565b6040516106239190613f1a565b60405180910390f35b34801561063857600080fd5b50610641611193565b005b34801561064f57600080fd5b506106586112eb565b6040516106659190613e49565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190614042565b6113a6565b005b3480156106a357600080fd5b506106ac611498565b6040516106b99190613f1a565b60405180910390f35b3480156106ce57600080fd5b506106d761149e565b005b3480156106e557600080fd5b506106ee611574565b6040516106fb9190613ffb565b60405180910390f35b34801561071057600080fd5b5061071961159e565b6040516107269190613f1a565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190614082565b6115a4565b005b34801561076457600080fd5b5061076d611658565b60405161077a9190613d33565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190614042565b6116ea565b005b3480156107b857600080fd5b506107c161181e565b6040516107ce9190613f1a565b60405180910390f35b3480156107e357600080fd5b506107ec611824565b6040516107f99190613f1a565b60405180910390f35b34801561080e57600080fd5b5061081761182a565b6040516108249190613f1a565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613dee565b611830565b6040516108619190613e49565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613dee565b6118fd565b60405161089e9190613e49565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190613e64565b61191b565b005b3480156108dc57600080fd5b506108f760048036038101906108f29190613e64565b611a72565b6040516109049190613e49565b60405180910390f35b34801561091957600080fd5b50610922611a92565b60405161092f9190613e49565b60405180910390f35b34801561094457600080fd5b5061095f600480360381019061095a9190614042565b611aa5565b005b34801561096d57600080fd5b5061098860048036038101906109839190613f35565b611be5565b005b34801561099657600080fd5b5061099f611d0f565b6040516109ac9190613e49565b60405180910390f35b3480156109c157600080fd5b506109ca611d22565b6040516109d79190613f1a565b60405180910390f35b3480156109ec57600080fd5b50610a076004803603810190610a029190613f35565b611d28565b604051610a149190613e49565b60405180910390f35b348015610a2957600080fd5b50610a32611e98565b604051610a3f9190613f1a565b60405180910390f35b348015610a5457600080fd5b50610a6f6004803603810190610a6a91906140af565b611e9e565b604051610a7c9190613f1a565b60405180910390f35b348015610a9157600080fd5b50610a9a611f25565b604051610aa79190613f1a565b60405180910390f35b348015610abc57600080fd5b50610ac5611f2b565b604051610ad29190613e49565b60405180910390f35b348015610ae757600080fd5b50610af0611fe6565b604051610afd9190613f1a565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190613e64565b611fec565b005b348015610b3b57600080fd5b50610b446121b3565b604051610b519190613f1a565b60405180910390f35b348015610b6657600080fd5b50610b6f6121b9565b604051610b7c9190613f1a565b60405180910390f35b606060038054610b949061411e565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc09061411e565b8015610c0d5780601f10610be257610100808354040283529160200191610c0d565b820191906000526020600020905b815481529060010190602001808311610bf057829003601f168201915b5050505050905090565b6000610c2b610c2461221d565b8484612225565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610c8b61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d119061419c565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610dee61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e749061419c565b60405180910390fd5b670de0b6b3a76400006103e86001610e93610c79565b610e9d91906141eb565b610ea79190614274565b610eb19190614274565b811015610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90614317565b60405180910390fd5b670de0b6b3a764000081610f0791906141eb565b60088190555050565b6000610f1d8484846123f0565b610fde84610f2961221d565b610fd98560405180606001604052806028815260200161508760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f8f61221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b612225565b600190509392505050565b60006012905090565b600061109b610fff61221d565b84611096856001600061101061221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121bf90919063ffffffff16565b612225565b6001905092915050565b7f000000000000000000000000d0babae55ed582482b8a42fa98e0527126159b1181565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119b61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112219061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006112f561221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9061419c565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6113ae61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461143d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114349061419c565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b6114a661221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061419c565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601b81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b6115ac61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116329061419c565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546116679061411e565b80601f01602080910402602001604051908101604052809291908181526020018280546116939061411e565b80156116e05780601f106116b5576101008083540402835291602001916116e0565b820191906000526020600020905b8154815290600101906020018083116116c357829003601f168201915b5050505050905090565b6116f261221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117789061419c565b60405180910390fd5b7f000000000000000000000000d0babae55ed582482b8a42fa98e0527126159b1173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611810576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611807906143a9565b60405180910390fd5b61181a82826131d1565b5050565b60135481565b601a5481565b60175481565b60006118f361183d61221d565b846118ee856040518060600160405280602581526020016150af602591396001600061186761221d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b612225565b6001905092915050565b600061191161190a61221d565b84846123f0565b6001905092915050565b61192361221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a99061419c565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611aad61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b339061419c565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611bd99190613e49565b60405180910390a25050565b611bed61221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c739061419c565b60405180910390fd5b670de0b6b3a76400006103e86005611c92610c79565b611c9c91906141eb565b611ca69190614274565b611cb09190614274565b811015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061443b565b60405180910390fd5b670de0b6b3a764000081611d0691906141eb565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611d3261221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061419c565b60405180910390fd5b620186a06001611dcf610c79565b611dd991906141eb565b611de39190614274565b821015611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c906144cd565b60405180910390fd5b6103e86005611e32610c79565b611e3c91906141eb565b611e469190614274565b821115611e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7f9061455f565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611f3561221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb9061419c565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611ff461221d565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a9061419c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea906145f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b60008082846121ce9190614611565b905083811015612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a906146b3565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90614745565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906147d7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123e39190613f1a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245790614869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c7906148fb565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125745750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa9061498d565b60405180910390fd5b60008114156125cd576125c883836000613272565b613168565b600b60009054906101000a900460ff1615612c90576125ea611574565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126585750612628611574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126915750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126cb575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e45750600560149054906101000a900460ff16155b15612c8f57600b60019054906101000a900460ff166127de57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061279e5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d4906149f9565b60405180910390fd5b5b600f60009054906101000a900460ff16156129a6576127fb611574565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561288257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128da57507f000000000000000000000000d0babae55ed582482b8a42fa98e0527126159b1173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129a55743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295790614ab1565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a495750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af057600854811115612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a90614b43565b60405180910390fd5b600a54612a9f8361114b565b82612aaa9190614611565b1115612aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae290614baf565b60405180910390fd5b612c8e565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b935750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be257600854811115612bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd490614c41565b60405180910390fd5b612c8d565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c8c57600a54612c3f8361114b565b82612c4a9190614611565b1115612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8290614baf565b60405180910390fd5b5b5b5b5b5b6000612c9b3061114b565b905060006009548210159050808015612cc05750600b60029054906101000a900460ff165b8015612cd95750600560149054906101000a900460ff16155b8015612d2f5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d855750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ddb5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e1f576001600560146101000a81548160ff021916908315150217905550612e03613507565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ed55750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612edf57600090505b6000811561315857601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f4257506000601454115b1561300f57612f6f6064612f61601454886137ee90919063ffffffff16565b61386990919063ffffffff16565b905060145460165482612f8291906141eb565b612f8c9190614274565b60196000828254612f9d9190614611565b9250508190555060145460175482612fb591906141eb565b612fbf9190614274565b601a6000828254612fd09190614611565b9250508190555060145460155482612fe891906141eb565b612ff29190614274565b601860008282546130039190614611565b92505081905550613134565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306a57506000601054115b15613133576130976064613089601054886137ee90919063ffffffff16565b61386990919063ffffffff16565b9050601054601254826130aa91906141eb565b6130b49190614274565b601960008282546130c59190614611565b92505081905550601054601354826130dd91906141eb565b6130e79190614274565b601a60008282546130f89190614611565b925050819055506010546011548261311091906141eb565b61311a9190614274565b6018600082825461312b9190614611565b925050819055505b5b600081111561314957613148873083613272565b5b80856131559190614c61565b94505b613163878787613272565b505050505b505050565b60008383111582906131b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ac9190613d33565b60405180910390fd5b50600083856131c49190614c61565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d990614869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613349906148fb565b60405180910390fd5b61335d8383836138b3565b6133c881604051806060016040528060268152602001615061602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461316d9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061345b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121bf90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134fa9190613f1a565b60405180910390a3505050565b60006135123061114b565b90506000601a546018546019546135299190614611565b6135339190614611565b90506000808314806135455750600082145b15613552575050506137ec565b601460095461356191906141eb565b83111561357a57601460095461357791906141eb565b92505b60006002836019548661358d91906141eb565b6135979190614274565b6135a19190614274565b905060006135b882866138b890919063ffffffff16565b905060004790506135c882613902565b60006135dd82476138b890919063ffffffff16565b90506000613608876135fa601854856137ee90919063ffffffff16565b61386990919063ffffffff16565b9050600061363388613625601a54866137ee90919063ffffffff16565b61386990919063ffffffff16565b905060008183856136449190614c61565b61364e9190614c61565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136ae90614cc6565b60006040518083038185875af1925050503d80600081146136eb576040519150601f19603f3d011682016040523d82523d6000602084013e6136f0565b606091505b5050809850506000871180156137065750600081115b15613753576137158782613b4e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260195460405161374a93929190614cdb565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379990614cc6565b60006040518083038185875af1925050503d80600081146137d6576040519150601f19603f3d011682016040523d82523d6000602084013e6137db565b606091505b505080985050505050505050505050505b565b6000808314156138015760009050613863565b6000828461380f91906141eb565b905082848261381e9190614274565b1461385e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385590614d84565b60405180910390fd5b809150505b92915050565b60006138ab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c37565b905092915050565b505050565b60006138fa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061316d565b905092915050565b6000600267ffffffffffffffff81111561391f5761391e614da4565b5b60405190808252806020026020018201604052801561394d5781602001602082028036833780820191505090505b509050308160008151811061396557613964614dd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613a0557600080fd5b505afa158015613a19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a3d9190614e17565b81600181518110613a5157613a50614dd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ab6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612225565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b18959493929190614f3d565b600060405180830381600087803b158015613b3257600080fd5b505af1158015613b46573d6000803e3d6000fd5b505050505050565b613b79307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612225565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613bde96959493929190614f97565b6060604051808303818588803b158015613bf757600080fd5b505af1158015613c0b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c30919061500d565b5050505050565b60008083118290613c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c759190613d33565b60405180910390fd5b5060008385613c8d9190614274565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd4578082015181840152602081019050613cb9565b83811115613ce3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0582613c9a565b613d0f8185613ca5565b9350613d1f818560208601613cb6565b613d2881613ce9565b840191505092915050565b60006020820190508181036000830152613d4d8184613cfa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8582613d5a565b9050919050565b613d9581613d7a565b8114613da057600080fd5b50565b600081359050613db281613d8c565b92915050565b6000819050919050565b613dcb81613db8565b8114613dd657600080fd5b50565b600081359050613de881613dc2565b92915050565b60008060408385031215613e0557613e04613d55565b5b6000613e1385828601613da3565b9250506020613e2485828601613dd9565b9150509250929050565b60008115159050919050565b613e4381613e2e565b82525050565b6000602082019050613e5e6000830184613e3a565b92915050565b600060208284031215613e7a57613e79613d55565b5b6000613e8884828501613da3565b91505092915050565b6000819050919050565b6000613eb6613eb1613eac84613d5a565b613e91565b613d5a565b9050919050565b6000613ec882613e9b565b9050919050565b6000613eda82613ebd565b9050919050565b613eea81613ecf565b82525050565b6000602082019050613f056000830184613ee1565b92915050565b613f1481613db8565b82525050565b6000602082019050613f2f6000830184613f0b565b92915050565b600060208284031215613f4b57613f4a613d55565b5b6000613f5984828501613dd9565b91505092915050565b600080600060608486031215613f7b57613f7a613d55565b5b6000613f8986828701613da3565b9350506020613f9a86828701613da3565b9250506040613fab86828701613dd9565b9150509250925092565b600060ff82169050919050565b613fcb81613fb5565b82525050565b6000602082019050613fe66000830184613fc2565b92915050565b613ff581613d7a565b82525050565b60006020820190506140106000830184613fec565b92915050565b61401f81613e2e565b811461402a57600080fd5b50565b60008135905061403c81614016565b92915050565b6000806040838503121561405957614058613d55565b5b600061406785828601613da3565b92505060206140788582860161402d565b9150509250929050565b60006020828403121561409857614097613d55565b5b60006140a68482850161402d565b91505092915050565b600080604083850312156140c6576140c5613d55565b5b60006140d485828601613da3565b92505060206140e585828601613da3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413657607f821691505b6020821081141561414a576141496140ef565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614186602083613ca5565b915061419182614150565b602082019050919050565b600060208201905081810360008301526141b581614179565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f682613db8565b915061420183613db8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423a576142396141bc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061427f82613db8565b915061428a83613db8565b92508261429a57614299614245565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614301602f83613ca5565b915061430c826142a5565b604082019050919050565b60006020820190508181036000830152614330816142f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614393603983613ca5565b915061439e82614337565b604082019050919050565b600060208201905081810360008301526143c281614386565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614425602483613ca5565b9150614430826143c9565b604082019050919050565b6000602082019050818103600083015261445481614418565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144b7603583613ca5565b91506144c28261445b565b604082019050919050565b600060208201905081810360008301526144e6816144aa565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614549603483613ca5565b9150614554826144ed565b604082019050919050565b600060208201905081810360008301526145788161453c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145db602683613ca5565b91506145e68261457f565b604082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b600061461c82613db8565b915061462783613db8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561465c5761465b6141bc565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061469d601b83613ca5565b91506146a882614667565b602082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061472f602483613ca5565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147c1602283613ca5565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614853602583613ca5565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148e5602383613ca5565b91506148f082614889565b604082019050919050565b60006020820190508181036000830152614914816148d8565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614977603183613ca5565b91506149828261491b565b604082019050919050565b600060208201905081810360008301526149a68161496a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149e3601683613ca5565b91506149ee826149ad565b602082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614a9b604983613ca5565b9150614aa682614a19565b606082019050919050565b60006020820190508181036000830152614aca81614a8e565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b2d603583613ca5565b9150614b3882614ad1565b604082019050919050565b60006020820190508181036000830152614b5c81614b20565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614b99601383613ca5565b9150614ba482614b63565b602082019050919050565b60006020820190508181036000830152614bc881614b8c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c2b603683613ca5565b9150614c3682614bcf565b604082019050919050565b60006020820190508181036000830152614c5a81614c1e565b9050919050565b6000614c6c82613db8565b9150614c7783613db8565b925082821015614c8a57614c896141bc565b5b828203905092915050565b600081905092915050565b50565b6000614cb0600083614c95565b9150614cbb82614ca0565b600082019050919050565b6000614cd182614ca3565b9150819050919050565b6000606082019050614cf06000830186613f0b565b614cfd6020830185613f0b565b614d0a6040830184613f0b565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d6e602183613ca5565b9150614d7982614d12565b604082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e1181613d8c565b92915050565b600060208284031215614e2d57614e2c613d55565b5b6000614e3b84828501614e02565b91505092915050565b6000819050919050565b6000614e69614e64614e5f84614e44565b613e91565b613db8565b9050919050565b614e7981614e4e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eb481613d7a565b82525050565b6000614ec68383614eab565b60208301905092915050565b6000602082019050919050565b6000614eea82614e7f565b614ef48185614e8a565b9350614eff83614e9b565b8060005b83811015614f30578151614f178882614eba565b9750614f2283614ed2565b925050600181019050614f03565b5085935050505092915050565b600060a082019050614f526000830188613f0b565b614f5f6020830187614e70565b8181036040830152614f718186614edf565b9050614f806060830185613fec565b614f8d6080830184613f0b565b9695505050505050565b600060c082019050614fac6000830189613fec565b614fb96020830188613f0b565b614fc66040830187614e70565b614fd36060830186614e70565b614fe06080830185613fec565b614fed60a0830184613f0b565b979650505050505050565b60008151905061500781613dc2565b92915050565b60008060006060848603121561502657615025613d55565b5b600061503486828701614ff8565b935050602061504586828701614ff8565b925050604061505686828701614ff8565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205470dfd1c024b994a77b2a40c287cd9ed649481915bf77cf5965b4175dfd40aa64736f6c63430008090033

Deployed Bytecode Sourcemap

29306:14537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7404:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9578:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30840:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29385:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8527:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36680:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30554:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30514;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35002:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10230:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8368:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10995:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29443:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29711:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36849:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30368:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29791:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8699:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21906:148;;;;;;;;;;;;;:::i;:::-;;34219:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35469:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30260:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34018:148;;;;;;;;;;;;;:::i;:::-;;21262:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30403:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35710:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7624:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36011:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30334:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30594:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30479:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11717:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9040:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36463:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31063:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29751:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35820:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35245:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30177:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29595:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34607:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30226:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9279:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29637:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34401:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30297:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22210:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30441:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29677:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7404:100;7458:13;7491:5;7484:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7404:100;:::o;9578:169::-;9661:4;9678:39;9687:12;:10;:12::i;:::-;9701:7;9710:6;9678:8;:39::i;:::-;9735:4;9728:11;;9578:169;;;;:::o;30840:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29385:51::-;;;:::o;8527:108::-;8588:7;8615:12;;8608:19;;8527:108;:::o;36680:157::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36787:9:::1;;;;;;;;;;;36759:38;;36776:9;36759:38;;;;;;;;;;;;36820:9;36808;;:21;;;;;;;;;;;;;;;;;;36680:157:::0;:::o;30554:33::-;;;;:::o;30514:::-;;;;:::o;35002:234::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35121:4:::1;35115;35111:1;35095:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35094:31;;;;:::i;:::-;35084:6;:41;;35076:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35221:6;35211;:17;;;;:::i;:::-;35188:20;:40;;;;35002:234:::0;:::o;10230:355::-;10370:4;10387:36;10397:6;10405:9;10416:6;10387:9;:36::i;:::-;10434:121;10443:6;10451:12;:10;:12::i;:::-;10465:89;10503:6;10465:89;;;;;;;;;;;;;;;;;:11;:19;10477:6;10465:19;;;;;;;;;;;;;;;:33;10485:12;:10;:12::i;:::-;10465:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10434:8;:121::i;:::-;10573:4;10566:11;;10230:355;;;;;:::o;8368:93::-;8426:5;8451:2;8444:9;;8368:93;:::o;10995:218::-;11083:4;11100:83;11109:12;:10;:12::i;:::-;11123:7;11132:50;11171:10;11132:11;:25;11144:12;:10;:12::i;:::-;11132:25;;;;;;;;;;;;;;;:34;11158:7;11132:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11100:8;:83::i;:::-;11201:4;11194:11;;10995:218;;;;:::o;29443:38::-;;;:::o;29711:33::-;;;;;;;;;;;;;:::o;36849:125::-;36914:4;36938:19;:28;36958:7;36938:28;;;;;;;;;;;;;;;;;;;;;;;;;36931:35;;36849:125;;;:::o;30368:28::-;;;;:::o;29791:31::-;;;;;;;;;;;;;:::o;8699:127::-;8773:7;8800:9;:18;8810:7;8800:18;;;;;;;;;;;;;;;;8793:25;;8699:127;;;:::o;21906:148::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22013:1:::1;21976:40;;21997:6;;;;;;;;;;;21976:40;;;;;;;;;;;;22044:1;22027:6;;:19;;;;;;;;;;;;;;;;;;21906:148::o:0;34219:120::-;34271:4;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34304:5:::1;34287:14;;:22;;;;;;;;;;;;;;;;;;34327:4;34320:11;;34219:120:::0;:::o;35469:144::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35601:4:::1;35559:31;:39;35591:6;35559:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35469:144:::0;;:::o;30260:30::-;;;;:::o;34018:148::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34089:4:::1;34073:13;;:20;;;;;;;;;;;;;;;;;;34118:4;34104:11;;:18;;;;;;;;;;;;;;;;;;34146:12;34133:10;:25;;;;34018:148::o:0;21262:79::-;21300:7;21327:6;;;;;;;;;;;21320:13;;21262:79;:::o;30403:31::-;;;;:::o;35710:101::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35796:7:::1;35782:11;;:21;;;;;;;;;;;;;;;;;;35710:101:::0;:::o;7624:104::-;7680:13;7713:7;7706:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7624:104;:::o;36011:245::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36118:13:::1;36110:21;;:4;:21;;;;36102:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36207:41;36236:4;36242:5;36207:28;:41::i;:::-;36011:245:::0;;:::o;30334:24::-;;;;:::o;30594:27::-;;;;:::o;30479:25::-;;;;:::o;11717:269::-;11810:4;11827:129;11836:12;:10;:12::i;:::-;11850:7;11859:96;11898:15;11859:96;;;;;;;;;;;;;;;;;:11;:25;11871:12;:10;:12::i;:::-;11859:25;;;;;;;;;;;;;;;:34;11885:7;11859:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11827:8;:129::i;:::-;11974:4;11967:11;;11717:269;;;;:::o;9040:175::-;9126:4;9143:42;9153:12;:10;:12::i;:::-;9167:9;9178:6;9143:9;:42::i;:::-;9203:4;9196:11;;9040:175;;;;:::o;36463:208::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36600:15:::1;;;;;;;;;;;36557:59;;36580:18;36557:59;;;;;;;;;;;;36645:18;36627:15;;:36;;;;;;;;;;;;;;;;;;36463:208:::0;:::o;31063:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29751:33::-;;;;;;;;;;;;;:::o;35820:182::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35936:8:::1;35905:19;:28;35925:7;35905:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35976:7;35960:34;;;35985:8;35960:34;;;;;;:::i;:::-;;;;;;;;35820:182:::0;;:::o;35245:215::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35367:4:::1;35361;35357:1;35341:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35340:31;;;;:::i;:::-;35330:6;:41;;35322:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35445:6;35435;:17;;;;:::i;:::-;35423:9;:29;;;;35245:215:::0;:::o;30177:39::-;;;;;;;;;;;;;:::o;29595:35::-;;;;:::o;34607:386::-;34688:4;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34745:6:::1;34741:1;34725:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34712:9;:39;;34704:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34861:4;34857:1;34841:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34828:9;:37;;34820:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34954:9;34933:18;:30;;;;34981:4;34974:11;;34607:386:::0;;;:::o;30226:27::-;;;;:::o;9279:151::-;9368:7;9395:11;:18;9407:5;9395:18;;;;;;;;;;;;;;;:27;9414:7;9395:27;;;;;;;;;;;;;;;;9388:34;;9279:151;;;;:::o;29637:33::-;;;;:::o;34401:134::-;34461:4;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34500:5:::1;34477:20;;:28;;;;;;;;;;;;;;;;;;34523:4;34516:11;;34401:134:::0;:::o;30297:30::-;;;;:::o;22210:244::-;21485:12;:10;:12::i;:::-;21475:22;;:6;;;;;;;;;;;:22;;;21467:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22319:1:::1;22299:22;;:8;:22;;;;22291:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22409:8;22380:38;;22401:6;;;;;;;;;;;22380:38;;;;;;;;;;;;22438:8;22429:6;;:17;;;;;;;;;;;;;;;;;;22210:244:::0;:::o;30441:31::-;;;;:::o;29677:24::-;;;;:::o;16294:182::-;16352:7;16372:9;16388:1;16384;:5;;;;:::i;:::-;16372:17;;16413:1;16408;:6;;16400:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16467:1;16460:8;;;16294:182;;;;:::o;95:98::-;148:7;175:10;168:17;;95:98;:::o;14913:381::-;15066:1;15049:19;;:5;:19;;;;15041:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15147:1;15128:21;;:7;:21;;;;15120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15232:6;15202:11;:18;15214:5;15202:18;;;;;;;;;;;;;;;:27;15221:7;15202:27;;;;;;;;;;;;;;;:36;;;;15270:7;15254:32;;15263:5;15254:32;;;15279:6;15254:32;;;;;;:::i;:::-;;;;;;;;14913:381;;;:::o;36983:4145::-;37131:1;37115:18;;:4;:18;;;;37107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37208:1;37194:16;;:2;:16;;;;37186:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37270:10;:14;37281:2;37270:14;;;;;;;;;;;;;;;;;;;;;;;;;37269:15;:36;;;;;37289:10;:16;37300:4;37289:16;;;;;;;;;;;;;;;;;;;;;;;;;37288:17;37269:36;37261:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;37384:1;37374:6;:11;37371:92;;;37402:28;37418:4;37424:2;37428:1;37402:15;:28::i;:::-;37445:7;;37371:92;37479:14;;;;;;;;;;;37476:1811;;;37539:7;:5;:7::i;:::-;37531:15;;:4;:15;;;;:49;;;;;37573:7;:5;:7::i;:::-;37567:13;;:2;:13;;;;37531:49;:86;;;;;37615:1;37601:16;;:2;:16;;;;37531:86;:128;;;;;37652:6;37638:21;;:2;:21;;;;37531:128;:158;;;;;37681:8;;;;;;;;;;;37680:9;37531:158;37509:1767;;;37727:13;;;;;;;;;;;37723:148;;37772:19;:25;37792:4;37772:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37801:19;:23;37821:2;37801:23;;;;;;;;;;;;;;;;;;;;;;;;;37772:52;37764:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37723:148;38030:20;;;;;;;;;;;38026:423;;;38084:7;:5;:7::i;:::-;38078:13;;:2;:13;;;;:47;;;;;38109:15;38095:30;;:2;:30;;;;38078:47;:79;;;;;38143:13;38129:28;;:2;:28;;;;38078:79;38074:356;;;38235:12;38193:28;:39;38222:9;38193:39;;;;;;;;;;;;;;;;:54;38185:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38394:12;38352:28;:39;38381:9;38352:39;;;;;;;;;;;;;;;:54;;;;38074:356;38026:423;38502:25;:31;38528:4;38502:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38538:31;:35;38570:2;38538:35;;;;;;;;;;;;;;;;;;;;;;;;;38537:36;38502:71;38498:763;;;38620:20;;38610:6;:30;;38602:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38759:9;;38742:13;38752:2;38742:9;:13::i;:::-;38733:6;:22;;;;:::i;:::-;:35;;38725:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38498:763;;;38871:25;:29;38897:2;38871:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38905:31;:37;38937:4;38905:37;;;;;;;;;;;;;;;;;;;;;;;;;38904:38;38871:71;38867:394;;;38989:20;;38979:6;:30;;38971:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;38867:394;;;39115:31;:35;39147:2;39115:35;;;;;;;;;;;;;;;;;;;;;;;;;39111:150;;39208:9;;39191:13;39201:2;39191:9;:13::i;:::-;39182:6;:22;;;;:::i;:::-;:35;;39174:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39111:150;38867:394;38498:763;37509:1767;37476:1811;39300:28;39331:24;39349:4;39331:9;:24::i;:::-;39300:55;;39369:12;39408:18;;39384:20;:42;;39369:57;;39458:7;:35;;;;;39482:11;;;;;;;;;;;39458:35;:61;;;;;39511:8;;;;;;;;;;;39510:9;39458:61;:110;;;;;39537:25;:31;39563:4;39537:31;;;;;;;;;;;;;;;;;;;;;;;;;39536:32;39458:110;:153;;;;;39586:19;:25;39606:4;39586:25;;;;;;;;;;;;;;;;;;;;;;;;;39585:26;39458:153;:194;;;;;39629:19;:23;39649:2;39629:23;;;;;;;;;;;;;;;;;;;;;;;;;39628:24;39458:194;39440:328;;;39690:4;39679:8;;:15;;;;;;;;;;;;;;;;;;39712:10;:8;:10::i;:::-;39751:5;39740:8;;:16;;;;;;;;;;;;;;;;;;39440:328;39781:12;39797:8;;;;;;;;;;;39796:9;39781:24;;39907:19;:25;39927:4;39907:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39936:19;:23;39956:2;39936:23;;;;;;;;;;;;;;;;;;;;;;;;;39907:52;39904:99;;;39986:5;39976:15;;39904:99;40016:12;40120:7;40117:957;;;40171:25;:29;40197:2;40171:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40220:1;40204:13;;:17;40171:50;40167:754;;;40248:34;40278:3;40248:25;40259:13;;40248:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40241:41;;40349:13;;40330:16;;40323:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40301:18;;:61;;;;;;;:::i;:::-;;;;;;;;40417:13;;40404:10;;40397:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40381:12;;:49;;;;;;;:::i;:::-;;;;;;;;40497:13;;40478:16;;40471:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40449:18;;:61;;;;;;;:::i;:::-;;;;;;;;40167:754;;;40571:25;:31;40597:4;40571:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40621:1;40606:12;;:16;40571:51;40568:353;;;40650:33;40679:3;40650:24;40661:12;;40650:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40643:40;;40749:12;;40731:15;;40724:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40702:18;;:59;;;;;;;:::i;:::-;;;;;;;;40815:12;;40803:9;;40796:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40780:12;;:47;;;;;;;:::i;:::-;;;;;;;;40893:12;;40875:15;;40868:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40846:18;;:59;;;;;;;:::i;:::-;;;;;;;;40568:353;40167:754;40948:1;40941:4;:8;40938:93;;;40973:42;40989:4;41003;41010;40973:15;:42::i;:::-;40938:93;41058:4;41048:14;;;;;:::i;:::-;;;40117:957;41087:33;41103:4;41109:2;41113:6;41087:15;:33::i;:::-;37096:4032;;;;36983:4145;;;;:::o;17200:193::-;17286:7;17319:1;17314;:6;;17322:12;17306:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17346:9;17362:1;17358;:5;;;;:::i;:::-;17346:17;;17384:1;17377:8;;;17200:193;;;;;:::o;36265:189::-;36382:5;36348:25;:31;36374:4;36348:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36440:5;36406:40;;36434:4;36406:40;;;;;;;;;;;;36265:189;;:::o;12477:575::-;12635:1;12617:20;;:6;:20;;;;12609:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12719:1;12698:23;;:9;:23;;;;12690:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12775:47;12796:6;12804:9;12815:6;12775:20;:47::i;:::-;12856:71;12878:6;12856:71;;;;;;;;;;;;;;;;;:9;:17;12866:6;12856:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12836:9;:17;12846:6;12836:17;;;;;;;;;;;;;;;:91;;;;12961:32;12986:6;12961:9;:20;12971:9;12961:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12938:9;:20;12948:9;12938:20;;;;;;;;;;;;;;;:55;;;;13026:9;13009:35;;13018:6;13009:35;;;13037:6;13009:35;;;;;;:::i;:::-;;;;;;;;12477:575;;;:::o;42272:1568::-;42311:23;42337:24;42355:4;42337:9;:24::i;:::-;42311:50;;42372:25;42442:12;;42421:18;;42400;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42372:82;;42465:12;42513:1;42494:15;:20;:46;;;;42539:1;42518:17;:22;42494:46;42491:60;;;42543:7;;;;;42491:60;42606:2;42585:18;;:23;;;;:::i;:::-;42567:15;:41;42564:111;;;42661:2;42640:18;;:23;;;;:::i;:::-;42622:41;;42564:111;42737:23;42822:1;42802:17;42781:18;;42763:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42737:86;;42834:26;42863:36;42883:15;42863;:19;;:36;;;;:::i;:::-;42834:65;;42913:25;42941:21;42913:49;;42976:36;42993:18;42976:16;:36::i;:::-;43027:18;43048:44;43074:17;43048:21;:25;;:44;;;;:::i;:::-;43027:65;;43106:23;43132:57;43171:17;43132:34;43147:18;;43132:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;43106:83;;43200:17;43220:51;43253:17;43220:28;43235:12;;43220:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43200:71;;43282:23;43339:9;43321:15;43308:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43282:66;;43386:1;43365:18;:22;;;;43419:1;43398:18;:22;;;;43446:1;43431:12;:16;;;;43482:9;;;;;;;;;;;43474:23;;43505:9;43474:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43461:58;;;;;43554:1;43536:15;:19;:42;;;;;43577:1;43559:15;:19;43536:42;43533:210;;;43594:46;43607:15;43624;43594:12;:46::i;:::-;43660:71;43675:18;43695:15;43712:18;;43660:71;;;;;;;;:::i;:::-;;;;;;;;43533:210;43777:15;;;;;;;;;;;43769:29;;43806:21;43769:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43756:76;;;;;42300:1540;;;;;;;;;;42272:1568;:::o;17653:473::-;17711:7;17961:1;17956;:6;17952:47;;;17986:1;17979:8;;;;17952:47;18012:9;18028:1;18024;:5;;;;:::i;:::-;18012:17;;18057:1;18052;18048;:5;;;;:::i;:::-;:10;18040:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18117:1;18110:8;;;17653:473;;;;;:::o;18603:132::-;18661:7;18688:39;18692:1;18695;18688:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18681:46;;18603:132;;;;:::o;15898:125::-;;;;:::o;16760:136::-;16818:7;16845:43;16849:1;16852;16845:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16838:50;;16760:136;;;;:::o;41137:597::-;41266:21;41304:1;41290:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41266:40;;41335:4;41317;41322:1;41317:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41361:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41351:4;41356:1;41351:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41397:62;41414:4;41429:15;41447:11;41397:8;:62::i;:::-;41499:15;:66;;;41580:11;41606:1;41650:4;41677;41697:15;41499:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41192:542;41137:597;:::o;41743:520::-;41891:62;41908:4;41923:15;41941:11;41891:8;:62::i;:::-;41997:15;:31;;;42036:9;42069:4;42089:11;42115:1;42158;42209:4;42229:15;41997:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41743:520;;:::o;19232:279::-;19318:7;19350:1;19346;:5;19353:12;19338:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19377:9;19393:1;19389;:5;;;;:::i;:::-;19377:17;;19502:1;19495:8;;;19232: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:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:244::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:27;12100:2;12092:6;12088:15;12081:52;11896:244;:::o;12146:366::-;12288:3;12309:67;12373:2;12368:3;12309:67;:::i;:::-;12302:74;;12385:93;12474:3;12385:93;:::i;:::-;12503:2;12498:3;12494:12;12487:19;;12146:366;;;:::o;12518:419::-;12684:4;12722:2;12711:9;12707:18;12699:26;;12771:9;12765:4;12761:20;12757:1;12746:9;12742:17;12735:47;12799:131;12925:4;12799:131;:::i;:::-;12791:139;;12518:419;;;:::o;12943:223::-;13083:34;13079:1;13071:6;13067:14;13060:58;13152:6;13147:2;13139:6;13135:15;13128:31;12943:223;:::o;13172:366::-;13314:3;13335:67;13399:2;13394:3;13335:67;:::i;:::-;13328:74;;13411:93;13500:3;13411:93;:::i;:::-;13529:2;13524:3;13520:12;13513:19;;13172:366;;;:::o;13544:419::-;13710:4;13748:2;13737:9;13733:18;13725:26;;13797:9;13791:4;13787:20;13783:1;13772:9;13768:17;13761:47;13825:131;13951:4;13825:131;:::i;:::-;13817:139;;13544:419;;;:::o;13969:240::-;14109:34;14105:1;14097:6;14093:14;14086:58;14178:23;14173:2;14165:6;14161:15;14154:48;13969:240;:::o;14215:366::-;14357:3;14378:67;14442:2;14437:3;14378:67;:::i;:::-;14371:74;;14454:93;14543:3;14454:93;:::i;:::-;14572:2;14567:3;14563:12;14556:19;;14215:366;;;:::o;14587:419::-;14753:4;14791:2;14780:9;14776:18;14768:26;;14840:9;14834:4;14830:20;14826:1;14815:9;14811:17;14804:47;14868:131;14994:4;14868:131;:::i;:::-;14860:139;;14587:419;;;:::o;15012:239::-;15152:34;15148:1;15140:6;15136:14;15129:58;15221:22;15216:2;15208:6;15204:15;15197:47;15012:239;:::o;15257:366::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15629:419::-;15795:4;15833:2;15822:9;15818:18;15810:26;;15882:9;15876:4;15872:20;15868:1;15857:9;15853:17;15846:47;15910:131;16036:4;15910:131;:::i;:::-;15902:139;;15629:419;;;:::o;16054:225::-;16194:34;16190:1;16182:6;16178:14;16171:58;16263:8;16258:2;16250:6;16246:15;16239:33;16054:225;:::o;16285:366::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:419::-;16823:4;16861:2;16850:9;16846:18;16838:26;;16910:9;16904:4;16900:20;16896:1;16885:9;16881:17;16874:47;16938:131;17064:4;16938:131;:::i;:::-;16930:139;;16657:419;;;:::o;17082:305::-;17122:3;17141:20;17159:1;17141:20;:::i;:::-;17136:25;;17175:20;17193:1;17175:20;:::i;:::-;17170:25;;17329:1;17261:66;17257:74;17254:1;17251:81;17248:107;;;17335:18;;:::i;:::-;17248:107;17379:1;17376;17372:9;17365:16;;17082:305;;;;:::o;17393:177::-;17533:29;17529:1;17521:6;17517:14;17510:53;17393:177;:::o;17576:366::-;17718:3;17739:67;17803:2;17798:3;17739:67;:::i;:::-;17732:74;;17815:93;17904:3;17815:93;:::i;:::-;17933:2;17928:3;17924:12;17917:19;;17576:366;;;:::o;17948:419::-;18114:4;18152:2;18141:9;18137:18;18129:26;;18201:9;18195:4;18191:20;18187:1;18176:9;18172:17;18165:47;18229:131;18355:4;18229:131;:::i;:::-;18221:139;;17948:419;;;:::o;18373:223::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:6;18577:2;18569:6;18565:15;18558:31;18373:223;:::o;18602:366::-;18744:3;18765:67;18829:2;18824:3;18765:67;:::i;:::-;18758:74;;18841:93;18930:3;18841:93;:::i;:::-;18959:2;18954:3;18950:12;18943:19;;18602:366;;;:::o;18974:419::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19227:9;19221:4;19217:20;19213:1;19202:9;19198:17;19191:47;19255:131;19381:4;19255:131;:::i;:::-;19247:139;;18974:419;;;:::o;19399:221::-;19539:34;19535:1;19527:6;19523:14;19516:58;19608:4;19603:2;19595:6;19591:15;19584:29;19399:221;:::o;19626:366::-;19768:3;19789:67;19853:2;19848:3;19789:67;:::i;:::-;19782:74;;19865:93;19954:3;19865:93;:::i;:::-;19983:2;19978:3;19974:12;19967:19;;19626:366;;;:::o;19998:419::-;20164:4;20202:2;20191:9;20187:18;20179:26;;20251:9;20245:4;20241:20;20237:1;20226:9;20222:17;20215:47;20279:131;20405:4;20279:131;:::i;:::-;20271:139;;19998:419;;;:::o;20423:224::-;20563:34;20559:1;20551:6;20547:14;20540:58;20632:7;20627:2;20619:6;20615:15;20608:32;20423:224;:::o;20653:366::-;20795:3;20816:67;20880:2;20875:3;20816:67;:::i;:::-;20809:74;;20892:93;20981:3;20892:93;:::i;:::-;21010:2;21005:3;21001:12;20994:19;;20653:366;;;:::o;21025:419::-;21191:4;21229:2;21218:9;21214:18;21206:26;;21278:9;21272:4;21268:20;21264:1;21253:9;21249:17;21242:47;21306:131;21432:4;21306:131;:::i;:::-;21298:139;;21025:419;;;:::o;21450:222::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:5;21654:2;21646:6;21642:15;21635:30;21450:222;:::o;21678:366::-;21820:3;21841:67;21905:2;21900:3;21841:67;:::i;:::-;21834:74;;21917:93;22006:3;21917:93;:::i;:::-;22035:2;22030:3;22026:12;22019:19;;21678:366;;;:::o;22050:419::-;22216:4;22254:2;22243:9;22239:18;22231:26;;22303:9;22297:4;22293:20;22289:1;22278:9;22274:17;22267:47;22331:131;22457:4;22331:131;:::i;:::-;22323:139;;22050:419;;;:::o;22475:236::-;22615:34;22611:1;22603:6;22599:14;22592:58;22684:19;22679:2;22671:6;22667:15;22660:44;22475:236;:::o;22717:366::-;22859:3;22880:67;22944:2;22939:3;22880:67;:::i;:::-;22873:74;;22956:93;23045:3;22956:93;:::i;:::-;23074:2;23069:3;23065:12;23058:19;;22717:366;;;:::o;23089:419::-;23255:4;23293:2;23282:9;23278:18;23270:26;;23342:9;23336:4;23332:20;23328:1;23317:9;23313:17;23306:47;23370:131;23496:4;23370:131;:::i;:::-;23362:139;;23089:419;;;:::o;23514:172::-;23654:24;23650:1;23642:6;23638:14;23631:48;23514:172;:::o;23692:366::-;23834:3;23855:67;23919:2;23914:3;23855:67;:::i;:::-;23848:74;;23931:93;24020:3;23931:93;:::i;:::-;24049:2;24044:3;24040:12;24033:19;;23692:366;;;:::o;24064:419::-;24230:4;24268:2;24257:9;24253:18;24245:26;;24317:9;24311:4;24307:20;24303:1;24292:9;24288:17;24281:47;24345:131;24471:4;24345:131;:::i;:::-;24337:139;;24064:419;;;:::o;24489:297::-;24629:34;24625:1;24617:6;24613:14;24606:58;24698:34;24693:2;24685:6;24681:15;24674:59;24767:11;24762:2;24754:6;24750:15;24743:36;24489:297;:::o;24792:366::-;24934:3;24955:67;25019:2;25014:3;24955:67;:::i;:::-;24948:74;;25031:93;25120:3;25031:93;:::i;:::-;25149:2;25144:3;25140:12;25133:19;;24792:366;;;:::o;25164:419::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:240::-;25729:34;25725:1;25717:6;25713:14;25706:58;25798:23;25793:2;25785:6;25781:15;25774:48;25589:240;:::o;25835:366::-;25977:3;25998:67;26062:2;26057:3;25998:67;:::i;:::-;25991:74;;26074:93;26163:3;26074:93;:::i;:::-;26192:2;26187:3;26183:12;26176:19;;25835:366;;;:::o;26207:419::-;26373:4;26411:2;26400:9;26396:18;26388:26;;26460:9;26454:4;26450:20;26446:1;26435:9;26431:17;26424:47;26488:131;26614:4;26488:131;:::i;:::-;26480:139;;26207:419;;;:::o;26632:169::-;26772:21;26768:1;26760:6;26756:14;26749:45;26632:169;:::o;26807:366::-;26949:3;26970:67;27034:2;27029:3;26970:67;:::i;:::-;26963:74;;27046:93;27135:3;27046:93;:::i;:::-;27164:2;27159:3;27155:12;27148:19;;26807:366;;;:::o;27179:419::-;27345:4;27383:2;27372:9;27368:18;27360:26;;27432:9;27426:4;27422:20;27418:1;27407:9;27403:17;27396:47;27460:131;27586:4;27460:131;:::i;:::-;27452:139;;27179:419;;;:::o;27604:241::-;27744:34;27740:1;27732:6;27728:14;27721:58;27813:24;27808:2;27800:6;27796:15;27789:49;27604:241;:::o;27851:366::-;27993:3;28014:67;28078:2;28073:3;28014:67;:::i;:::-;28007:74;;28090:93;28179:3;28090:93;:::i;:::-;28208:2;28203:3;28199:12;28192:19;;27851:366;;;:::o;28223:419::-;28389:4;28427:2;28416:9;28412:18;28404:26;;28476:9;28470:4;28466:20;28462:1;28451:9;28447:17;28440:47;28504:131;28630:4;28504:131;:::i;:::-;28496:139;;28223:419;;;:::o;28648:191::-;28688:4;28708:20;28726:1;28708:20;:::i;:::-;28703:25;;28742:20;28760:1;28742:20;:::i;:::-;28737:25;;28781:1;28778;28775:8;28772:34;;;28786:18;;:::i;:::-;28772:34;28831:1;28828;28824:9;28816:17;;28648:191;;;;:::o;28845:147::-;28946:11;28983:3;28968:18;;28845:147;;;;:::o;28998:114::-;;:::o;29118:398::-;29277:3;29298:83;29379:1;29374:3;29298:83;:::i;:::-;29291:90;;29390:93;29479:3;29390:93;:::i;:::-;29508:1;29503:3;29499:11;29492:18;;29118:398;;;:::o;29522:379::-;29706:3;29728:147;29871:3;29728:147;:::i;:::-;29721:154;;29892:3;29885:10;;29522:379;;;:::o;29907:442::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30107:71;30175:1;30164:9;30160:17;30151:6;30107:71;:::i;:::-;30188:72;30256:2;30245:9;30241:18;30232:6;30188:72;:::i;:::-;30270;30338:2;30327:9;30323:18;30314:6;30270:72;:::i;:::-;29907:442;;;;;;:::o;30355:220::-;30495:34;30491:1;30483:6;30479:14;30472:58;30564:3;30559:2;30551:6;30547:15;30540:28;30355:220;:::o;30581:366::-;30723:3;30744:67;30808:2;30803:3;30744:67;:::i;:::-;30737:74;;30820:93;30909:3;30820:93;:::i;:::-;30938:2;30933:3;30929:12;30922:19;;30581:366;;;:::o;30953:419::-;31119:4;31157:2;31146:9;31142:18;31134:26;;31206:9;31200:4;31196:20;31192:1;31181:9;31177:17;31170:47;31234:131;31360:4;31234:131;:::i;:::-;31226:139;;30953:419;;;:::o;31378:180::-;31426:77;31423:1;31416:88;31523:4;31520:1;31513:15;31547:4;31544:1;31537:15;31564:180;31612:77;31609:1;31602:88;31709:4;31706:1;31699:15;31733:4;31730:1;31723:15;31750:143;31807:5;31838:6;31832:13;31823:22;;31854:33;31881:5;31854:33;:::i;:::-;31750:143;;;;:::o;31899:351::-;31969:6;32018:2;32006:9;31997:7;31993:23;31989:32;31986:119;;;32024:79;;:::i;:::-;31986:119;32144:1;32169:64;32225:7;32216:6;32205:9;32201:22;32169:64;:::i;:::-;32159:74;;32115:128;31899:351;;;;:::o;32256:85::-;32301:7;32330:5;32319:16;;32256:85;;;:::o;32347:158::-;32405:9;32438:61;32456:42;32465:32;32491:5;32465:32;:::i;:::-;32456:42;:::i;:::-;32438:61;:::i;:::-;32425:74;;32347:158;;;:::o;32511:147::-;32606:45;32645:5;32606:45;:::i;:::-;32601:3;32594:58;32511:147;;:::o;32664:114::-;32731:6;32765:5;32759:12;32749:22;;32664:114;;;:::o;32784:184::-;32883:11;32917:6;32912:3;32905:19;32957:4;32952:3;32948:14;32933:29;;32784:184;;;;:::o;32974:132::-;33041:4;33064:3;33056:11;;33094:4;33089:3;33085:14;33077:22;;32974:132;;;:::o;33112:108::-;33189:24;33207:5;33189:24;:::i;:::-;33184:3;33177:37;33112:108;;:::o;33226:179::-;33295:10;33316:46;33358:3;33350:6;33316:46;:::i;:::-;33394:4;33389:3;33385:14;33371:28;;33226:179;;;;:::o;33411:113::-;33481:4;33513;33508:3;33504:14;33496:22;;33411:113;;;:::o;33560:732::-;33679:3;33708:54;33756:5;33708:54;:::i;:::-;33778:86;33857:6;33852:3;33778:86;:::i;:::-;33771:93;;33888:56;33938:5;33888:56;:::i;:::-;33967:7;33998:1;33983:284;34008:6;34005:1;34002:13;33983:284;;;34084:6;34078:13;34111:63;34170:3;34155:13;34111:63;:::i;:::-;34104:70;;34197:60;34250:6;34197:60;:::i;:::-;34187:70;;34043:224;34030:1;34027;34023:9;34018:14;;33983:284;;;33987:14;34283:3;34276:10;;33684:608;;;33560:732;;;;:::o;34298:831::-;34561:4;34599:3;34588:9;34584:19;34576:27;;34613:71;34681:1;34670:9;34666:17;34657:6;34613:71;:::i;:::-;34694:80;34770:2;34759:9;34755:18;34746:6;34694:80;:::i;:::-;34821:9;34815:4;34811:20;34806:2;34795:9;34791:18;34784:48;34849:108;34952:4;34943:6;34849:108;:::i;:::-;34841:116;;34967:72;35035:2;35024:9;35020:18;35011:6;34967:72;:::i;:::-;35049:73;35117:3;35106:9;35102:19;35093:6;35049:73;:::i;:::-;34298:831;;;;;;;;:::o;35135:807::-;35384:4;35422:3;35411:9;35407:19;35399:27;;35436:71;35504:1;35493:9;35489:17;35480:6;35436:71;:::i;:::-;35517:72;35585:2;35574:9;35570:18;35561:6;35517:72;:::i;:::-;35599:80;35675:2;35664:9;35660:18;35651:6;35599:80;:::i;:::-;35689;35765:2;35754:9;35750:18;35741:6;35689:80;:::i;:::-;35779:73;35847:3;35836:9;35832:19;35823:6;35779:73;:::i;:::-;35862;35930:3;35919:9;35915:19;35906:6;35862:73;:::i;:::-;35135:807;;;;;;;;;:::o;35948:143::-;36005:5;36036:6;36030:13;36021:22;;36052:33;36079:5;36052:33;:::i;:::-;35948:143;;;;:::o;36097:663::-;36185:6;36193;36201;36250:2;36238:9;36229:7;36225:23;36221:32;36218:119;;;36256:79;;:::i;:::-;36218:119;36376:1;36401:64;36457:7;36448:6;36437:9;36433:22;36401:64;:::i;:::-;36391:74;;36347:128;36514:2;36540:64;36596:7;36587:6;36576:9;36572:22;36540:64;:::i;:::-;36530:74;;36485:129;36653:2;36679:64;36735:7;36726:6;36715:9;36711:22;36679:64;:::i;:::-;36669:74;;36624:129;36097:663;;;;;:::o

Swarm Source

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