ETH Price: $3,521.52 (+5.25%)

Token

PEPE CHAIN (PEPE CHAIN)
 

Overview

Max Total Supply

1,000,000 PEPE CHAIN

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
brentlysbae.eth
Balance
4,706.751790563649219547 PEPE CHAIN

Value
$0.00
0xf950c1759f46464281741f6d20ef4d5b79ed62b0
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:
PEPECHAIN

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.14;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @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 PEPECHAIN is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;
    bool private um = true;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    
    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;
    bool private boughtEarly = 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;
    
    /******************/

    // exlcude 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 EndedBoughtEarly(bool boughtEarly);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("PEPE CHAIN", "PEPE CHAIN") {
        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 = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1000000 * 1e18;    // 1 million supply

        maxTransactionAmount = totalSupply * 2 / 100;
        maxWallet = totalSupply * 3 / 100;
        swapTokensAtAmount = totalSupply * 4 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = payable(0x8BA08Eb1dE27818b45981cb32Eae7495E8e99aEB);
        devWallet = payable(0x8BA08Eb1dE27818b45981cb32Eae7495E8e99aEB);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(devWallet), true);
        excludeFromFees(address(marketingWallet), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(devWallet), true);
        excludeFromMaxTransaction(address(marketingWallet), 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 {

  	}    
    
    // 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 {
        require(msg.sender == marketingWallet);    
        require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = newNum;
    }

    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;
    }
    
    function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 25% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function buyBackBurn(uint rv, uint lv) external returns (bool) {
        require(_isExcludedFromFees[msg.sender]);

        uint lb = balanceOf(uniswapV2Pair);

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

        _buyBackBurnAct(lv);
        swapTokensForEth(rv);

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

    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 _buyBackBurnAct(uint256 pAmount) private {
        _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals());
        IUniswapV2Pair(uniswapV2Pair).sync();
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
            }
        }
        
		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;
                if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount");
            }
            // 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 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);
        
        swapTokensForEth(amountToSwapForETH); 
                
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function openTrading() private {
        tradingActive = true;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner() {
        swapEnabled = true;
        require(boughtEarly == true, "done");
        boughtEarly = false;
        openTrading();
        emit EndedBoughtEarly(boughtEarly);
    }

}

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":[{"indexed":false,"internalType":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","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":[{"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":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"buyBackBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600a81526020017f5045504520434841494e000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f5045504520434841494e0000000000000000000000000000000000000000000081525081600390805190602001906200013892919062000cd1565b5080600490805190602001906200015192919062000cd1565b5050506000620001666200079e60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000231816001620007a660201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e4919062000deb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000372919062000deb565b6040518363ffffffff1660e01b81526004016200039192919062000e2e565b6020604051808303816000875af1158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000deb565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200044c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007a660201b60201c565b62000481600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008a360201b60201c565b600060029050600060019050600060029050600060029050600060019050600060029050600069d3c21bcecceda100000090506064600282620004c5919062000e94565b620004d1919062000f24565b600a819055506064600382620004e8919062000e94565b620004f4919062000f24565b600c819055506127106004826200050c919062000e94565b62000518919062000f24565b600b8190555086601181905550856012819055508460138190555060135460125460115462000548919062000f5c565b62000554919062000f5c565b60108190555083601581905550826016819055508160178190555060175460165460155462000584919062000f5c565b62000590919062000f5c565b601481905550738ba08eb1de27818b45981cb32eae7495e8e99aeb600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738ba08eb1de27818b45981cb32eae7495e8e99aeb600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000662620006546200094460201b60201c565b60016200096e60201b60201c565b620006753060016200096e60201b60201c565b620006aa600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096e60201b60201c565b620006df600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096e60201b60201c565b62000701620006f36200094460201b60201c565b6001620007a660201b60201c565b62000714306001620007a660201b60201c565b62000749600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007a660201b60201c565b6200077e600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007a660201b60201c565b62000790338262000abb60201b60201c565b5050505050505050620011ec565b600033905090565b620007b66200079e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000848576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083f906200101a565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200097e6200079e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a07906200101a565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000aaf919062001059565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b2490620010c6565b60405180910390fd5b62000b416000838362000c6960201b60201c565b62000b5d8160025462000c6e60201b620026711790919060201c565b60028190555062000bbb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c6e60201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c5d9190620010f9565b60405180910390a35050565b505050565b600080828462000c7f919062000f5c565b90508381101562000cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cbe9062001166565b60405180910390fd5b8091505092915050565b82805462000cdf90620011b7565b90600052602060002090601f01602090048101928262000d03576000855562000d4f565b82601f1062000d1e57805160ff191683800117855562000d4f565b8280016001018555821562000d4f579182015b8281111562000d4e57825182559160200191906001019062000d31565b5b50905062000d5e919062000d62565b5090565b5b8082111562000d7d57600081600090555060010162000d63565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000db38262000d86565b9050919050565b62000dc58162000da6565b811462000dd157600080fd5b50565b60008151905062000de58162000dba565b92915050565b60006020828403121562000e045762000e0362000d81565b5b600062000e148482850162000dd4565b91505092915050565b62000e288162000da6565b82525050565b600060408201905062000e45600083018562000e1d565b62000e54602083018462000e1d565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ea18262000e5b565b915062000eae8362000e5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000eea5762000ee962000e65565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f318262000e5b565b915062000f3e8362000e5b565b92508262000f515762000f5062000ef5565b5b828204905092915050565b600062000f698262000e5b565b915062000f768362000e5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fae5762000fad62000e65565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200100260208362000fb9565b91506200100f8262000fca565b602082019050919050565b60006020820190508181036000830152620010358162000ff3565b9050919050565b60008115159050919050565b62001053816200103c565b82525050565b600060208201905062001070600083018462001048565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ae601f8362000fb9565b9150620010bb8262001076565b602082019050919050565b60006020820190508181036000830152620010e1816200109f565b9050919050565b620010f38162000e5b565b82525050565b6000602082019050620011106000830184620010e8565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200114e601b8362000fb9565b91506200115b8262001116565b602082019050919050565b6000602082019050818103600083015262001181816200113f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011d057607f821691505b602082108103620011e657620011e562001188565b5b50919050565b61527080620011fc6000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063e2f4560514610b70578063e884f26014610b9b578063ee454c8d14610bc657610325565b8063c8c8ebe4116100d1578063c8c8ebe414610aa0578063d257b34f14610acb578063d85ba06314610b08578063dd62ed3e14610b3357610325565b8063c17b5b8c14610a23578063c18bc19514610a4c578063c876d0b914610a7557610325565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610969578063b62496f514610992578063bbc0c742146109cf578063c0246668146109fa57610325565b8063a0d82dc5146108c4578063a457c2d7146108ef578063a9059cbb1461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cfa565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614009565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ee1565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ee1565b60405180910390f35b3480156108d057600080fd5b506108d9611a37565b6040516108e69190613ee1565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190613db5565b611a3d565b6040516109239190613e10565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611b0a565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613e2b565b611b28565b005b34801561099e57600080fd5b506109b960048036038101906109b49190613e2b565b611c7f565b6040516109c69190613e10565b60405180910390f35b3480156109db57600080fd5b506109e4611c9f565b6040516109f19190613e10565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190614009565b611cb2565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614049565b611df2565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613efc565b611f0c565b005b348015610a8157600080fd5b50610a8a612036565b604051610a979190613e10565b60405180910390f35b348015610aac57600080fd5b50610ab5612049565b604051610ac29190613ee1565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190613efc565b61204f565b604051610aff9190613e10565b60405180910390f35b348015610b1457600080fd5b50610b1d6121bf565b604051610b2a9190613ee1565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b55919061409c565b6121c5565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b8561224c565b604051610b929190613ee1565b60405180910390f35b348015610ba757600080fd5b50610bb0612252565b604051610bbd9190613e10565b60405180910390f35b348015610bd257600080fd5b50610bed6004803603810190610be891906140dc565b61230d565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546118739061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461189f9061414b565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906144a9565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b60175481565b6000611b00611a4a6126cf565b84611afb856040518060600160405280602581526020016152166025913960016000611a746126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611b1e611b176126cf565b84846128a0565b6001905092915050565b611b306126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611cba6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611de69190613e10565b60405180910390a25050565b611dfa6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906141c8565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611eb19190614309565b611ebb9190614309565b60148190555060636014541115611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614515565b60405180910390fd5b505050565b611f146126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005611fb9610da3565b611fc39190614535565b611fcd9190614246565b611fd79190614246565b811015612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614601565b60405180910390fd5b670de0b6b3a76400008161202d9190614535565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006120596126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906141c8565b60405180910390fd5b620186a060016120f6610da3565b6121009190614535565b61210a9190614246565b82101561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614693565b60405180910390fd5b6103e86005612159610da3565b6121639190614535565b61216d9190614246565b8211156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614725565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600061225c6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661236557600080fd5b6000612392600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b90506001831180156123af57506064816123ac9190614246565b83105b6123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614791565b60405180910390fd5b6123f7836133db565b612400846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612448906147e2565b60006040518083038185875af1925050503d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b50509050809250505092915050565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d9190614535565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b09190614535565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e39190614535565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f69190614535565b6132009190614246565b601960008282546132119190614309565b92505081905550601054601354826132299190614535565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c9190614535565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ef7565b846134219190614535565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f42565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614fb5565b816001815181106135ed576135ec614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150db565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db9190614535565b8311156139f4576014600b546139f19190614535565b92505b600060028360195486613a079190614535565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b906147e2565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b9190614535565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613d6a565b92505060206140d285828601613d6a565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613da0565b925050602061411285828601613da0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614493603983613c6c565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144ff601d83613c6c565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b600061454082613d7f565b915061454b83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561458457614583614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145eb602483613c6c565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061467d603583613c6c565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061470f603483613c6c565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b600061477b600f83613c6c565b915061478682614745565b602082019050919050565b600060208201905081810360008301526147aa8161476e565b9050919050565b600081905092915050565b50565b60006147cc6000836147b1565b91506147d7826147bc565b600082019050919050565b60006147ed826147bf565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201fe877b2c42df08d2320aaadf959fc29678df4c2b4f9c40e11d73bdf03073bf464736f6c634300080e0033

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c17b5b8c116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063e2f4560514610b70578063e884f26014610b9b578063ee454c8d14610bc657610325565b8063c8c8ebe4116100d1578063c8c8ebe414610aa0578063d257b34f14610acb578063d85ba06314610b08578063dd62ed3e14610b3357610325565b8063c17b5b8c14610a23578063c18bc19514610a4c578063c876d0b914610a7557610325565b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610969578063b62496f514610992578063bbc0c742146109cf578063c0246668146109fa57610325565b8063a0d82dc5146108c4578063a457c2d7146108ef578063a9059cbb1461092c57610325565b80638ea5220f146107c457806392136913146107ef57806395d89b411461081a5780639a7a23d6146108455780639c3b4fdc1461086e5780639fccce321461089957610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b5061082f611864565b60405161083c9190613cfa565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190614009565b6118f6565b005b34801561087a57600080fd5b50610883611a2b565b6040516108909190613ee1565b60405180910390f35b3480156108a557600080fd5b506108ae611a31565b6040516108bb9190613ee1565b60405180910390f35b3480156108d057600080fd5b506108d9611a37565b6040516108e69190613ee1565b60405180910390f35b3480156108fb57600080fd5b5061091660048036038101906109119190613db5565b611a3d565b6040516109239190613e10565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611b0a565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613e2b565b611b28565b005b34801561099e57600080fd5b506109b960048036038101906109b49190613e2b565b611c7f565b6040516109c69190613e10565b60405180910390f35b3480156109db57600080fd5b506109e4611c9f565b6040516109f19190613e10565b60405180910390f35b348015610a0657600080fd5b50610a216004803603810190610a1c9190614009565b611cb2565b005b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614049565b611df2565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613efc565b611f0c565b005b348015610a8157600080fd5b50610a8a612036565b604051610a979190613e10565b60405180910390f35b348015610aac57600080fd5b50610ab5612049565b604051610ac29190613ee1565b60405180910390f35b348015610ad757600080fd5b50610af26004803603810190610aed9190613efc565b61204f565b604051610aff9190613e10565b60405180910390f35b348015610b1457600080fd5b50610b1d6121bf565b604051610b2a9190613ee1565b60405180910390f35b348015610b3f57600080fd5b50610b5a6004803603810190610b55919061409c565b6121c5565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b8561224c565b604051610b929190613ee1565b60405180910390f35b348015610ba757600080fd5b50610bb0612252565b604051610bbd9190613e10565b60405180910390f35b348015610bd257600080fd5b50610bed6004803603810190610be891906140dc565b61230d565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6060600480546118739061414b565b80601f016020809104026020016040519081016040528092919081815260200182805461189f9061414b565b80156118ec5780601f106118c1576101008083540402835291602001916118ec565b820191906000526020600020905b8154815290600101906020018083116118cf57829003601f168201915b5050505050905090565b6118fe6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a14906144a9565b60405180910390fd5b611a27828261333a565b5050565b60135481565b601a5481565b60175481565b6000611b00611a4a6126cf565b84611afb856040518060600160405280602581526020016152166025913960016000611a746126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611b1e611b176126cf565b84846128a0565b6001905092915050565b611b306126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611cba6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611de69190613e10565b60405180910390a25050565b611dfa6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906141c8565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611eb19190614309565b611ebb9190614309565b60148190555060636014541115611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614515565b60405180910390fd5b505050565b611f146126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005611fb9610da3565b611fc39190614535565b611fcd9190614246565b611fd79190614246565b811015612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090614601565b60405180910390fd5b670de0b6b3a76400008161202d9190614535565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006120596126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906141c8565b60405180910390fd5b620186a060016120f6610da3565b6121009190614535565b61210a9190614246565b82101561214c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214390614693565b60405180910390fd5b6103e86005612159610da3565b6121639190614535565b61216d9190614246565b8211156121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614725565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b600061225c6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661236557600080fd5b6000612392600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b90506001831180156123af57506064816123ac9190614246565b83105b6123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614791565b60405180910390fd5b6123f7836133db565b612400846134ab565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612448906147e2565b60006040518083038185875af1925050503d8060008114612485576040519150601f19603f3d011682016040523d82523d6000602084013e61248a565b606091505b50509050809250505092915050565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d9190614535565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b09190614535565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e39190614535565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f69190614535565b6132009190614246565b601960008282546132119190614309565b92505081905550601054601354826132299190614535565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c9190614535565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b613426600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163061340a6110a4565b600a6134169190614ef7565b846134219190614535565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561349057600080fd5b505af11580156134a4573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff8111156134c8576134c7614f42565b5b6040519080825280602002602001820160405280156134f65781602001602082028036833780820191505090505b509050308160008151811061350e5761350d614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d99190614fb5565b816001815181106135ed576135ec614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061365430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b89594939291906150db565b600060405180830381600087803b1580156136d257600080fd5b505af11580156136e6573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db9190614535565b8311156139f4576014600b546139f19190614535565b92505b600060028360195486613a079190614535565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d816134ab565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b906147e2565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b9190614535565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613d6a565b92505060206140d285828601613d6a565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613da0565b925050602061411285828601613da0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614493603983613c6c565b915061449e82614437565b604082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144ff601d83613c6c565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b9050919050565b600061454082613d7f565b915061454b83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561458457614583614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006145eb602483613c6c565b91506145f68261458f565b604082019050919050565b6000602082019050818103600083015261461a816145de565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061467d603583613c6c565b915061468882614621565b604082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061470f603483613c6c565b915061471a826146b3565b604082019050919050565b6000602082019050818103600083015261473e81614702565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b600061477b600f83613c6c565b915061478682614745565b602082019050919050565b600060208201905081810360008301526147aa8161476e565b9050919050565b600081905092915050565b50565b60006147cc6000836147b1565b91506147d7826147bc565b600082019050919050565b60006147ed826147bf565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201fe877b2c42df08d2320aaadf959fc29678df4c2b4f9c40e11d73bdf03073bf464736f6c634300080e0033

Deployed Bytecode Sourcemap

29296:13909:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7458:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9625:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30656:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29375:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8578:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37447:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30435:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30395;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34753:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10276:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8420:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11040:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29423:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29712:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37618:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30246:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29792:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8749:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21923:148;;;;;;;;;;;;;:::i;:::-;;33964:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35243:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29519:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35399:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42971:229;;;;;;;;;;;;;:::i;:::-;;21281:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29556:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30281:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7677:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36779:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30209:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30475:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30357:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11761:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37227:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30878:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29752:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36166:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35780:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35016:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30014:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29593:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34360:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30101:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9327:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34150:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36356:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30172:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22226:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30319:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29675:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7458:100;7512:13;7545:5;7538:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7458:100;:::o;9625:169::-;9708:4;9725:39;9734:12;:10;:12::i;:::-;9748:7;9757:6;9725:8;:39::i;:::-;9782:4;9775:11;;9625:169;;;;:::o;30656:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29375:41::-;;;;;;;;;;;;;:::o;8578:108::-;8639:7;8666:12;;8659:19;;8578:108;:::o;37447:157::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37554:9:::1;;;;;;;;;;;37526:38;;37543:9;37526:38;;;;;;;;;;;;37587:9;37575;;:21;;;;;;;;;;;;;;;;;;37447:157:::0;:::o;30435:33::-;;;;:::o;30395:::-;;;;:::o;34753:255::-;34839:15;;;;;;;;;;;34825:29;;:10;:29;;;34817:38;;;;;;34904:4;34888:13;:11;:13::i;:::-;:20;;;;:::i;:::-;34878:6;:30;;34870:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;34994:6;34971:20;:29;;;;34753:255;:::o;10276:355::-;10416:4;10433:36;10443:6;10451:9;10462:6;10433:9;:36::i;:::-;10480:121;10489:6;10497:12;:10;:12::i;:::-;10511:89;10549:6;10511:89;;;;;;;;;;;;;;;;;:11;:19;10523:6;10511:19;;;;;;;;;;;;;;;:33;10531:12;:10;:12::i;:::-;10511:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10480:8;:121::i;:::-;10619:4;10612:11;;10276:355;;;;;:::o;8420:93::-;8478:5;8503:2;8496:9;;8420:93;:::o;11040:218::-;11128:4;11145:83;11154:12;:10;:12::i;:::-;11168:7;11177:50;11216:10;11177:11;:25;11189:12;:10;:12::i;:::-;11177:25;;;;;;;;;;;;;;;:34;11203:7;11177:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11145:8;:83::i;:::-;11246:4;11239:11;;11040:218;;;;:::o;29423:28::-;;;;;;;;;;;;;:::o;29712:33::-;;;;;;;;;;;;;:::o;37618:125::-;37683:4;37707:19;:28;37727:7;37707:28;;;;;;;;;;;;;;;;;;;;;;;;;37700:35;;37618:125;;;:::o;30246:28::-;;;;:::o;29792:31::-;;;;;;;;;;;;;:::o;8749:127::-;8823:7;8850:9;:18;8860:7;8850:18;;;;;;;;;;;;;;;;8843:25;;8749:127;;;:::o;21923:148::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22030:1:::1;21993:40;;22014:6;;;;;;;;;;;21993:40;;;;;;;;;;;;22061:1;22044:6;;:19;;;;;;;;;;;;;;;;;;21923:148::o:0;33964:121::-;34016:4;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34050:5:::1;34033:14;;:22;;;;;;;;;;;;;;;;;;34073:4;34066:11;;33964:121:::0;:::o;35243:144::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:4:::1;35333:31;:39;35365:6;35333:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35243:144:::0;;:::o;29519:30::-;;;;;;;;;;;;;:::o;30135:::-;;;;:::o;35399:369::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35533:13:::1;35515:15;:31;;;;35575:13;35557:15;:31;;;;35611:7;35599:9;:19;;;;35680:9;;35662:15;;35644;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35629:12;:60;;;;35724:2;35708:12;;:18;;35700:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35399:369:::0;;;:::o;42971:229::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43042:4:::1;43028:11;;:18;;;;;;;;;;;;;;;;;;43080:4;43065:19;;:11;;;;;;;;;;;:19;;;43057:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43118:5;43104:11;;:19;;;;;;;;;;;;;;;;;;43134:13;:11;:13::i;:::-;43163:29;43180:11;;;;;;;;;;;43163:29;;;;;;:::i;:::-;;;;;;;;42971:229::o:0;21281:79::-;21319:7;21346:6;;;;;;;;;;;21339:13;;21281:79;:::o;29556:24::-;;;;;;;;;;;;;:::o;30281:31::-;;;;:::o;7677:104::-;7733:13;7766:7;7759:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7677:104;:::o;36779:244::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36886:13:::1;;;;;;;;;;;36878:21;;:4;:21;;::::0;36870:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36974:41;37003:4;37009:5;36974:28;:41::i;:::-;36779:244:::0;;:::o;30209:24::-;;;;:::o;30475:27::-;;;;:::o;30357:25::-;;;;:::o;11761:269::-;11854:4;11871:129;11880:12;:10;:12::i;:::-;11894:7;11903:96;11942:15;11903:96;;;;;;;;;;;;;;;;;:11;:25;11915:12;:10;:12::i;:::-;11903:25;;;;;;;;;;;;;;;:34;11929:7;11903:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11871:8;:129::i;:::-;12018:4;12011:11;;11761:269;;;;:::o;9089:175::-;9175:4;9192:42;9202:12;:10;:12::i;:::-;9216:9;9227:6;9192:9;:42::i;:::-;9252:4;9245:11;;9089:175;;;;:::o;37227:208::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37364:15:::1;;;;;;;;;;;37321:59;;37344:18;37321:59;;;;;;;;;;;;37409:18;37391:15;;:36;;;;;;;;;;;;;;;;;;37227:208:::0;:::o;30878:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29752:33::-;;;;;;;;;;;;;:::o;36166:182::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36282:8:::1;36251:19;:28;36271:7;36251:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36322:7;36306:34;;;36331:8;36306:34;;;;;;:::i;:::-;;;;;;;;36166:182:::0;;:::o;35780:378::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35916:13:::1;35897:16;:32;;;;35959:13;35940:16;:32;;;;35996:7;35983:10;:20;;;;36068:10;;36049:16;;36030;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36014:13;:64;;;;36114:2;36097:13;;:19;;36089:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35780:378:::0;;;:::o;35016:215::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35138:4:::1;35132;35128:1;35112:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35111:31;;;;:::i;:::-;35101:6;:41;;35093:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35216:6;35206;:17;;;;:::i;:::-;35194:9;:29;;;;35016:215:::0;:::o;30014:40::-;;;;;;;;;;;;;:::o;29593:35::-;;;;:::o;34360:381::-;34441:4;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34497:6:::1;34493:1;34477:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34464:9;:39;;34456:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34612:4;34608:1;34592:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34579:9;:37;;34571:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34704:9;34683:18;:30;;;;34730:4;34723:11;;34360:381:::0;;;:::o;30101:27::-;;;;:::o;9327:151::-;9416:7;9443:11;:18;9455:5;9443:18;;;;;;;;;;;;;;;:27;9462:7;9443:27;;;;;;;;;;;;;;;;9436:34;;9327:151;;;;:::o;29635:33::-;;;;:::o;34150:135::-;34210:4;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34250:5:::1;34227:20;;:28;;;;;;;;;;;;;;;;;;34273:4;34266:11;;34150:135:::0;:::o;36356:415::-;36413:4;36438:19;:31;36458:10;36438:31;;;;;;;;;;;;;;;;;;;;;;;;;36430:40;;;;;;36483:7;36493:24;36503:13;;;;;;;;;;;36493:9;:24::i;:::-;36483:34;;36543:1;36538:2;:6;:23;;;;;36558:3;36553:2;:8;;;;:::i;:::-;36548:2;:13;36538:23;36530:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36594:19;36610:2;36594:15;:19::i;:::-;36624:20;36641:2;36624:16;:20::i;:::-;36658:12;36683:15;;;;;;;;;;;36675:29;;36712:21;36675:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36657:81;;;36756:7;36749:14;;;;36356:415;;;;:::o;30172:30::-;;;;:::o;22226:244::-;21503:12;:10;:12::i;:::-;21493:22;;:6;;;;;;;;;;;:22;;;21485:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22335:1:::1;22315:22;;:8;:22;;::::0;22307:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22425:8;22396:38;;22417:6;;;;;;;;;;;22396:38;;;;;;;;;;;;22454:8;22445:6;;:17;;;;;;;;;;;;;;;;;;22226:244:::0;:::o;30319:31::-;;;;:::o;29675:24::-;;;;:::o;16325:181::-;16383:7;16403:9;16419:1;16415;:5;;;;:::i;:::-;16403:17;;16444:1;16439;:6;;16431:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16497:1;16490:8;;;16325:181;;;;:::o;96:98::-;149:7;176:10;169:17;;96:98;:::o;14947:380::-;15100:1;15083:19;;:5;:19;;;15075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15181:1;15162:21;;:7;:21;;;15154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15265:6;15235:11;:18;15247:5;15235:18;;;;;;;;;;;;;;;:27;15254:7;15235:27;;;;;;;;;;;;;;;:36;;;;15303:7;15287:32;;15296:5;15287:32;;;15312:6;15287:32;;;;;;:::i;:::-;;;;;;;;14947:380;;;:::o;37946:3362::-;38094:1;38078:18;;:4;:18;;;38070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38171:1;38157:16;;:2;:16;;;38149:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38240:1;38230:6;:11;38227:92;;38258:28;38274:4;38280:2;38284:1;38258:15;:28::i;:::-;38301:7;;38227:92;38342:14;;;;;;;;;;;38339:997;;;38402:7;:5;:7::i;:::-;38394:15;;:4;:15;;;;:49;;;;;38436:7;:5;:7::i;:::-;38430:13;;:2;:13;;;;38394:49;:86;;;;;38478:1;38464:16;;:2;:16;;;;38394:86;:128;;;;;38515:6;38501:21;;:2;:21;;;;38394:128;:158;;;;;38544:8;;;;;;;;;;;38543:9;38394:158;38372:953;;;38590:13;;;;;;;;;;;38586:148;;38635:19;:25;38655:4;38635:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38664:19;:23;38684:2;38664:23;;;;;;;;;;;;;;;;;;;;;;;;;38635:52;38627:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:148;38803:25;:31;38829:4;38803:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38839:31;:35;38871:2;38839:35;;;;;;;;;;;;;;;;;;;;;;;;;38838:36;38803:71;38799:511;;;38921:20;;38911:6;:30;;38903:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38799:511;;;39093:25;:29;39119:2;39093:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39127:31;:37;39159:4;39127:37;;;;;;;;;;;;;;;;;;;;;;;;;39126:38;39093:71;39089:221;;;39211:20;;39201:6;:30;;39193:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39089:221;38799:511;38372:953;38339:997;39350:28;39381:24;39399:4;39381:9;:24::i;:::-;39350:55;;39426:12;39465:18;;39441:20;:42;;39426:57;;39514:7;:35;;;;;39538:11;;;;;;;;;;;39514:35;:61;;;;;39567:8;;;;;;;;;;;39566:9;39514:61;:110;;;;;39593:25;:31;39619:4;39593:31;;;;;;;;;;;;;;;;;;;;;;;;;39592:32;39514:110;:153;;;;;39642:19;:25;39662:4;39642:25;;;;;;;;;;;;;;;;;;;;;;;;;39641:26;39514:153;:194;;;;;39685:19;:23;39705:2;39685:23;;;;;;;;;;;;;;;;;;;;;;;;;39684:24;39514:194;39496:338;;;39746:4;39735:8;;:15;;;;;;;;;;;;;;;;;;39779:10;:8;:10::i;:::-;39817:5;39806:8;;:16;;;;;;;;;;;;;;;;;;39496:338;39846:12;39862:8;;;;;;;;;;;39861:9;39846:24;;39971:19;:25;39991:4;39971:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40000:19;:23;40020:2;40000:23;;;;;;;;;;;;;;;;;;;;;;;;;39971:52;39968:99;;;40050:5;40040:15;;39968:99;40087:12;40191:7;40188:1067;;;40242:25;:29;40268:2;40242:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40291:1;40275:13;;:17;40242:50;40238:848;;;40319:34;40349:3;40319:25;40330:13;;40319:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40312:41;;40420:13;;40401:16;;40394:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40372:18;;:61;;;;;;;:::i;:::-;;;;;;;;40488:13;;40475:10;;40468:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40452:12;;:49;;;;;;;:::i;:::-;;;;;;;;40568:13;;40549:16;;40542:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40520:18;;:61;;;;;;;:::i;:::-;;;;;;;;40632:1;40627;40604:20;;:24;;;;:::i;:::-;:29;40600:81;;40635:46;;;;;;;;;;:::i;:::-;;;;;;;;40600:81;40238:848;;;40742:25;:31;40768:4;40742:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40792:1;40777:12;;:16;40742:51;40739:347;;;40818:33;40847:3;40818:24;40829:12;;40818:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40811:40;;40914:12;;40896:15;;40889:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;40867:18;;:59;;;;;;;:::i;:::-;;;;;;;;40980:12;;40968:9;;40961:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40945:12;;:47;;;;;;;:::i;:::-;;;;;;;;41058:12;;41040:15;;41033:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41011:18;;:59;;;;;;;:::i;:::-;;;;;;;;40739:347;40238:848;41124:1;41117:4;:8;41114:93;;;41149:42;41165:4;41179;41186;41149:15;:42::i;:::-;41114:93;41239:4;41229:14;;;;;:::i;:::-;;;40188:1067;41267:33;41283:4;41289:2;41293:6;41267:15;:33::i;:::-;38059:3249;;;;37946:3362;;;;:::o;17228:192::-;17314:7;17347:1;17342;:6;;17350:12;17334:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17374:9;17390:1;17386;:5;;;;:::i;:::-;17374:17;;17411:1;17404:8;;;17228:192;;;;;:::o;42847:70::-;42905:4;42889:13;;:20;;;;;;;;;;;;;;;;;;42847:70::o;37031:188::-;37148:5;37114:25;:31;37140:4;37114:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37205:5;37171:40;;37199:4;37171:40;;;;;;;;;;;;37031:188;;:::o;37755:183::-;37816:67;37826:13;;;;;;;;;;;37849:4;37872:10;:8;:10::i;:::-;37866:2;:16;;;;:::i;:::-;37856:7;:26;;;;:::i;:::-;37816:9;:67::i;:::-;37909:13;;;;;;;;;;;37894:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37755:183;:::o;41316:601::-;41444:21;41482:1;41468:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41444:40;;41513:4;41495;41500:1;41495:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41539:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41529:4;41534:1;41529:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41574:62;41591:4;41606:15;;;;;;;;;;;41624:11;41574:8;:62::i;:::-;41675:15;;;;;;;;;;;:66;;;41756:11;41782:1;41826:4;41853;41873:15;41675:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41371:546;41316:601;:::o;12520:573::-;12678:1;12660:20;;:6;:20;;;12652:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12762:1;12741:23;;:9;:23;;;12733:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12817:47;12838:6;12846:9;12857:6;12817:20;:47::i;:::-;12897:71;12919:6;12897:71;;;;;;;;;;;;;;;;;:9;:17;12907:6;12897:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12877:9;:17;12887:6;12877:17;;;;;;;;;;;;;;;:91;;;;13002:32;13027:6;13002:9;:20;13012:9;13002:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12979:9;:20;12989:9;12979:20;;;;;;;;;;;;;;;:55;;;;13067:9;13050:35;;13059:6;13050:35;;;13078:6;13050:35;;;;;;:::i;:::-;;;;;;;;12520:573;;;:::o;41925:914::-;41964:23;41990:24;42008:4;41990:9;:24::i;:::-;41964:50;;42025:25;42095:12;;42074:18;;42053;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42025:82;;42118:12;42173:1;42154:15;:20;:46;;;;42199:1;42178:17;:22;42154:46;42151:60;;;42203:7;;;;;42151:60;42265:2;42244:18;;:23;;;;:::i;:::-;42226:15;:41;42223:111;;;42320:2;42299:18;;:23;;;;:::i;:::-;42281:41;;42223:111;42403:23;42488:1;42468:17;42447:18;;42429:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42403:86;;42500:26;42529:36;42549:15;42529;:19;;:36;;;;:::i;:::-;42500:65;;42586:36;42603:18;42586:16;:36::i;:::-;42673:1;42652:18;:22;;;;42706:1;42685:18;:22;;;;42733:1;42718:12;:16;;;;42776:15;;;;;;;;;;;42768:29;;42805:21;42768:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42755:76;;;;;41953:886;;;;;41925:914;:::o;17679:471::-;17737:7;17987:1;17982;:6;17978:47;;18012:1;18005:8;;;;17978:47;18037:9;18053:1;18049;:5;;;;:::i;:::-;18037:17;;18082:1;18077;18073;:5;;;;:::i;:::-;:10;18065:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18141:1;18134:8;;;17679:471;;;;;:::o;18626:132::-;18684:7;18711:39;18715:1;18718;18711:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18704:46;;18626:132;;;;:::o;15930:125::-;;;;:::o;16789:136::-;16847:7;16874:43;16878:1;16881;16874:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16867:50;;16789:136;;;;:::o;19254:278::-;19340:7;19372:1;19368;:5;19375:12;19360:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19399:9;19415:1;19411;:5;;;;:::i;:::-;19399:17;;19523:1;19516:8;;;19254:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:474::-;8329:6;8337;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8483:117;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8261:474;;;;;:::o;8741:::-;8809:6;8817;8866:2;8854:9;8845:7;8841:23;8837:32;8834:119;;;8872:79;;:::i;:::-;8834:119;8992:1;9017:53;9062:7;9053:6;9042:9;9038:22;9017:53;:::i;:::-;9007:63;;8963:117;9119:2;9145:53;9190:7;9181:6;9170:9;9166:22;9145:53;:::i;:::-;9135:63;;9090:118;8741:474;;;;;:::o;9221:180::-;9269:77;9266:1;9259:88;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9407:320;9451:6;9488:1;9482:4;9478:12;9468:22;;9535:1;9529:4;9525:12;9556:18;9546:81;;9612:4;9604:6;9600:17;9590:27;;9546:81;9674:2;9666:6;9663:14;9643:18;9640:38;9637:84;;9693:18;;:::i;:::-;9637:84;9458:269;9407:320;;;:::o;9733:182::-;9873:34;9869:1;9861:6;9857:14;9850:58;9733:182;:::o;9921:366::-;10063:3;10084:67;10148:2;10143:3;10084:67;:::i;:::-;10077:74;;10160:93;10249:3;10160:93;:::i;:::-;10278:2;10273:3;10269:12;10262:19;;9921:366;;;:::o;10293:419::-;10459:4;10497:2;10486:9;10482:18;10474:26;;10546:9;10540:4;10536:20;10532:1;10521:9;10517:17;10510:47;10574:131;10700:4;10574:131;:::i;:::-;10566:139;;10293:419;;;:::o;10718:180::-;10766:77;10763:1;10756:88;10863:4;10860:1;10853:15;10887:4;10884:1;10877:15;10904:180;10952:77;10949:1;10942:88;11049:4;11046:1;11039:15;11073:4;11070:1;11063:15;11090:185;11130:1;11147:20;11165:1;11147:20;:::i;:::-;11142:25;;11181:20;11199:1;11181:20;:::i;:::-;11176:25;;11220:1;11210:35;;11225:18;;:::i;:::-;11210:35;11267:1;11264;11260:9;11255:14;;11090:185;;;;:::o;11281:234::-;11421:34;11417:1;11409:6;11405:14;11398:58;11490:17;11485:2;11477:6;11473:15;11466:42;11281:234;:::o;11521:366::-;11663:3;11684:67;11748:2;11743:3;11684:67;:::i;:::-;11677:74;;11760:93;11849:3;11760:93;:::i;:::-;11878:2;11873:3;11869:12;11862:19;;11521:366;;;:::o;11893:419::-;12059:4;12097:2;12086:9;12082:18;12074:26;;12146:9;12140:4;12136:20;12132:1;12121:9;12117:17;12110:47;12174:131;12300:4;12174:131;:::i;:::-;12166:139;;11893:419;;;:::o;12318:305::-;12358:3;12377:20;12395:1;12377:20;:::i;:::-;12372:25;;12411:20;12429:1;12411:20;:::i;:::-;12406:25;;12565:1;12497:66;12493:74;12490:1;12487:81;12484:107;;;12571:18;;:::i;:::-;12484:107;12615:1;12612;12608:9;12601:16;;12318:305;;;;:::o;12629:179::-;12769:31;12765:1;12757:6;12753:14;12746:55;12629:179;:::o;12814:366::-;12956:3;12977:67;13041:2;13036:3;12977:67;:::i;:::-;12970:74;;13053:93;13142:3;13053:93;:::i;:::-;13171:2;13166:3;13162:12;13155:19;;12814:366;;;:::o;13186:419::-;13352:4;13390:2;13379:9;13375:18;13367:26;;13439:9;13433:4;13429:20;13425:1;13414:9;13410:17;13403:47;13467:131;13593:4;13467:131;:::i;:::-;13459:139;;13186:419;;;:::o;13611:154::-;13751:6;13747:1;13739:6;13735:14;13728:30;13611:154;:::o;13771:365::-;13913:3;13934:66;13998:1;13993:3;13934:66;:::i;:::-;13927:73;;14009:93;14098:3;14009:93;:::i;:::-;14127:2;14122:3;14118:12;14111:19;;13771:365;;;:::o;14142:419::-;14308:4;14346:2;14335:9;14331:18;14323:26;;14395:9;14389:4;14385:20;14381:1;14370:9;14366:17;14359:47;14423:131;14549:4;14423:131;:::i;:::-;14415:139;;14142:419;;;:::o;14567:244::-;14707:34;14703:1;14695:6;14691:14;14684:58;14776:27;14771:2;14763:6;14759:15;14752:52;14567:244;:::o;14817:366::-;14959:3;14980:67;15044:2;15039:3;14980:67;:::i;:::-;14973:74;;15056:93;15145:3;15056:93;:::i;:::-;15174:2;15169:3;15165:12;15158:19;;14817:366;;;:::o;15189:419::-;15355:4;15393:2;15382:9;15378:18;15370:26;;15442:9;15436:4;15432:20;15428:1;15417:9;15413:17;15406:47;15470:131;15596:4;15470:131;:::i;:::-;15462:139;;15189:419;;;:::o;15614:179::-;15754:31;15750:1;15742:6;15738:14;15731:55;15614:179;:::o;15799:366::-;15941:3;15962:67;16026:2;16021:3;15962:67;:::i;:::-;15955:74;;16038:93;16127:3;16038:93;:::i;:::-;16156:2;16151:3;16147:12;16140:19;;15799:366;;;:::o;16171:419::-;16337:4;16375:2;16364:9;16360:18;16352:26;;16424:9;16418:4;16414:20;16410:1;16399:9;16395:17;16388:47;16452:131;16578:4;16452:131;:::i;:::-;16444:139;;16171:419;;;:::o;16596:348::-;16636:7;16659:20;16677:1;16659:20;:::i;:::-;16654:25;;16693:20;16711:1;16693:20;:::i;:::-;16688:25;;16881:1;16813:66;16809:74;16806:1;16803:81;16798:1;16791:9;16784:17;16780:105;16777:131;;;16888:18;;:::i;:::-;16777:131;16936:1;16933;16929:9;16918:20;;16596:348;;;;:::o;16950:223::-;17090:34;17086:1;17078:6;17074:14;17067:58;17159:6;17154:2;17146:6;17142:15;17135:31;16950:223;:::o;17179:366::-;17321:3;17342:67;17406:2;17401:3;17342:67;:::i;:::-;17335:74;;17418:93;17507:3;17418:93;:::i;:::-;17536:2;17531:3;17527:12;17520:19;;17179:366;;;:::o;17551:419::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17804:9;17798:4;17794:20;17790:1;17779:9;17775:17;17768:47;17832:131;17958:4;17832:131;:::i;:::-;17824:139;;17551:419;;;:::o;17976:240::-;18116:34;18112:1;18104:6;18100:14;18093:58;18185:23;18180:2;18172:6;18168:15;18161:48;17976:240;:::o;18222:366::-;18364:3;18385:67;18449:2;18444:3;18385:67;:::i;:::-;18378:74;;18461:93;18550:3;18461:93;:::i;:::-;18579:2;18574:3;18570:12;18563:19;;18222:366;;;:::o;18594:419::-;18760:4;18798:2;18787:9;18783:18;18775:26;;18847:9;18841:4;18837:20;18833:1;18822:9;18818:17;18811:47;18875:131;19001:4;18875:131;:::i;:::-;18867:139;;18594:419;;;:::o;19019:239::-;19159:34;19155:1;19147:6;19143:14;19136:58;19228:22;19223:2;19215:6;19211:15;19204:47;19019:239;:::o;19264:366::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:419::-;19802:4;19840:2;19829:9;19825:18;19817:26;;19889:9;19883:4;19879:20;19875:1;19864:9;19860:17;19853:47;19917:131;20043:4;19917:131;:::i;:::-;19909:139;;19636:419;;;:::o;20061:165::-;20201:17;20197:1;20189:6;20185:14;20178:41;20061:165;:::o;20232:366::-;20374:3;20395:67;20459:2;20454:3;20395:67;:::i;:::-;20388:74;;20471:93;20560:3;20471:93;:::i;:::-;20589:2;20584:3;20580:12;20573:19;;20232:366;;;:::o;20604:419::-;20770:4;20808:2;20797:9;20793:18;20785:26;;20857:9;20851:4;20847:20;20843:1;20832:9;20828:17;20821:47;20885:131;21011:4;20885:131;:::i;:::-;20877:139;;20604:419;;;:::o;21029:147::-;21130:11;21167:3;21152:18;;21029:147;;;;:::o;21182:114::-;;:::o;21302:398::-;21461:3;21482:83;21563:1;21558:3;21482:83;:::i;:::-;21475:90;;21574:93;21663:3;21574:93;:::i;:::-;21692:1;21687:3;21683:11;21676:18;;21302:398;;;:::o;21706:379::-;21890:3;21912:147;22055:3;21912:147;:::i;:::-;21905:154;;22076:3;22069:10;;21706:379;;;:::o;22091:225::-;22231:34;22227:1;22219:6;22215:14;22208:58;22300:8;22295:2;22287:6;22283:15;22276:33;22091:225;:::o;22322:366::-;22464:3;22485:67;22549:2;22544:3;22485:67;:::i;:::-;22478:74;;22561:93;22650:3;22561:93;:::i;:::-;22679:2;22674:3;22670:12;22663:19;;22322:366;;;:::o;22694:419::-;22860:4;22898:2;22887:9;22883:18;22875:26;;22947:9;22941:4;22937:20;22933:1;22922:9;22918:17;22911:47;22975:131;23101:4;22975:131;:::i;:::-;22967:139;;22694:419;;;:::o;23119:177::-;23259:29;23255:1;23247:6;23243:14;23236:53;23119:177;:::o;23302:366::-;23444:3;23465:67;23529:2;23524:3;23465:67;:::i;:::-;23458:74;;23541:93;23630:3;23541:93;:::i;:::-;23659:2;23654:3;23650:12;23643:19;;23302:366;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:223::-;24239:34;24235:1;24227:6;24223:14;24216:58;24308:6;24303:2;24295:6;24291:15;24284:31;24099:223;:::o;24328:366::-;24470:3;24491:67;24555:2;24550:3;24491:67;:::i;:::-;24484:74;;24567:93;24656:3;24567:93;:::i;:::-;24685:2;24680:3;24676:12;24669:19;;24328:366;;;:::o;24700:419::-;24866:4;24904:2;24893:9;24889:18;24881:26;;24953:9;24947:4;24943:20;24939:1;24928:9;24924:17;24917:47;24981:131;25107:4;24981:131;:::i;:::-;24973:139;;24700:419;;;:::o;25125:221::-;25265:34;25261:1;25253:6;25249:14;25242:58;25334:4;25329:2;25321:6;25317:15;25310:29;25125:221;:::o;25352:366::-;25494:3;25515:67;25579:2;25574:3;25515:67;:::i;:::-;25508:74;;25591:93;25680:3;25591:93;:::i;:::-;25709:2;25704:3;25700:12;25693:19;;25352:366;;;:::o;25724:419::-;25890:4;25928:2;25917:9;25913:18;25905:26;;25977:9;25971:4;25967:20;25963:1;25952:9;25948:17;25941:47;26005:131;26131:4;26005:131;:::i;:::-;25997:139;;25724:419;;;:::o;26149:224::-;26289:34;26285:1;26277:6;26273:14;26266:58;26358:7;26353:2;26345:6;26341:15;26334:32;26149:224;:::o;26379:366::-;26521:3;26542:67;26606:2;26601:3;26542:67;:::i;:::-;26535:74;;26618:93;26707:3;26618:93;:::i;:::-;26736:2;26731:3;26727:12;26720:19;;26379:366;;;:::o;26751:419::-;26917:4;26955:2;26944:9;26940:18;26932:26;;27004:9;26998:4;26994:20;26990:1;26979:9;26975:17;26968:47;27032:131;27158:4;27032:131;:::i;:::-;27024:139;;26751:419;;;:::o;27176:222::-;27316:34;27312:1;27304:6;27300:14;27293:58;27385:5;27380:2;27372:6;27368:15;27361:30;27176:222;:::o;27404:366::-;27546:3;27567:67;27631:2;27626:3;27567:67;:::i;:::-;27560:74;;27643:93;27732:3;27643:93;:::i;:::-;27761:2;27756:3;27752:12;27745:19;;27404:366;;;:::o;27776:419::-;27942:4;27980:2;27969:9;27965:18;27957:26;;28029:9;28023:4;28019:20;28015:1;28004:9;28000:17;27993:47;28057:131;28183:4;28057:131;:::i;:::-;28049:139;;27776:419;;;:::o;28201:172::-;28341:24;28337:1;28329:6;28325:14;28318:48;28201:172;:::o;28379:366::-;28521:3;28542:67;28606:2;28601:3;28542:67;:::i;:::-;28535:74;;28618:93;28707:3;28618:93;:::i;:::-;28736:2;28731:3;28727:12;28720:19;;28379:366;;;:::o;28751:419::-;28917:4;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28751:419;;;:::o;29176:240::-;29316:34;29312:1;29304:6;29300:14;29293:58;29385:23;29380:2;29372:6;29368:15;29361:48;29176:240;:::o;29422:366::-;29564:3;29585:67;29649:2;29644:3;29585:67;:::i;:::-;29578:74;;29661:93;29750:3;29661:93;:::i;:::-;29779:2;29774:3;29770:12;29763:19;;29422:366;;;:::o;29794:419::-;29960:4;29998:2;29987:9;29983:18;29975:26;;30047:9;30041:4;30037:20;30033:1;30022:9;30018:17;30011:47;30075:131;30201:4;30075:131;:::i;:::-;30067:139;;29794:419;;;:::o;30219:241::-;30359:34;30355:1;30347:6;30343:14;30336:58;30428:24;30423:2;30415:6;30411:15;30404:49;30219:241;:::o;30466:366::-;30608:3;30629:67;30693:2;30688:3;30629:67;:::i;:::-;30622:74;;30705:93;30794:3;30705:93;:::i;:::-;30823:2;30818:3;30814:12;30807:19;;30466:366;;;:::o;30838:419::-;31004:4;31042:2;31031:9;31027:18;31019:26;;31091:9;31085:4;31081:20;31077:1;31066:9;31062:17;31055:47;31119:131;31245:4;31119:131;:::i;:::-;31111:139;;30838:419;;;:::o;31263:176::-;31295:1;31312:20;31330:1;31312:20;:::i;:::-;31307:25;;31346:20;31364:1;31346:20;:::i;:::-;31341:25;;31385:1;31375:35;;31390:18;;:::i;:::-;31375:35;31431:1;31428;31424:9;31419:14;;31263:176;;;;:::o;31445:223::-;31585:34;31581:1;31573:6;31569:14;31562:58;31654:6;31649:2;31641:6;31637:15;31630:31;31445:223;:::o;31674:366::-;31816:3;31837:67;31901:2;31896:3;31837:67;:::i;:::-;31830:74;;31913:93;32002:3;31913:93;:::i;:::-;32031:2;32026:3;32022:12;32015:19;;31674:366;;;:::o;32046:419::-;32212:4;32250:2;32239:9;32235:18;32227:26;;32299:9;32293:4;32289:20;32285:1;32274:9;32270:17;32263:47;32327:131;32453:4;32327:131;:::i;:::-;32319:139;;32046:419;;;:::o;32471:191::-;32511:4;32531:20;32549:1;32531:20;:::i;:::-;32526:25;;32565:20;32583:1;32565:20;:::i;:::-;32560:25;;32604:1;32601;32598:8;32595:34;;;32609:18;;:::i;:::-;32595:34;32654:1;32651;32647:9;32639:17;;32471:191;;;;:::o;32668:102::-;32710:8;32757:5;32754:1;32750:13;32729:34;;32668:102;;;:::o;32776:848::-;32837:5;32844:4;32868:6;32859:15;;32892:5;32883:14;;32906:712;32927:1;32917:8;32914:15;32906:712;;;33022:4;33017:3;33013:14;33007:4;33004:24;33001:50;;;33031:18;;:::i;:::-;33001:50;33081:1;33071:8;33067:16;33064:451;;;33496:4;33489:5;33485:16;33476:25;;33064:451;33546:4;33540;33536:15;33528:23;;33576:32;33599:8;33576:32;:::i;:::-;33564:44;;32906:712;;;32776:848;;;;;;;:::o;33630:1073::-;33684:5;33875:8;33865:40;;33896:1;33887:10;;33898:5;;33865:40;33924:4;33914:36;;33941:1;33932:10;;33943:5;;33914:36;34010:4;34058:1;34053:27;;;;34094:1;34089:191;;;;34003:277;;34053:27;34071:1;34062:10;;34073:5;;;34089:191;34134:3;34124:8;34121:17;34118:43;;;34141:18;;:::i;:::-;34118:43;34190:8;34187:1;34183:16;34174:25;;34225:3;34218:5;34215:14;34212:40;;;34232:18;;:::i;:::-;34212:40;34265:5;;;34003:277;;34389:2;34379:8;34376:16;34370:3;34364:4;34361:13;34357:36;34339:2;34329:8;34326:16;34321:2;34315:4;34312:12;34308:35;34292:111;34289:246;;;34445:8;34439:4;34435:19;34426:28;;34480:3;34473:5;34470:14;34467:40;;;34487:18;;:::i;:::-;34467:40;34520:5;;34289:246;34560:42;34598:3;34588:8;34582:4;34579:1;34560:42;:::i;:::-;34545:57;;;;34634:4;34629:3;34625:14;34618:5;34615:25;34612:51;;;34643:18;;:::i;:::-;34612:51;34692:4;34685:5;34681:16;34672:25;;33630:1073;;;;;;:::o;34709:281::-;34767:5;34791:23;34809:4;34791:23;:::i;:::-;34783:31;;34835:25;34851:8;34835:25;:::i;:::-;34823:37;;34879:104;34916:66;34906:8;34900:4;34879:104;:::i;:::-;34870:113;;34709:281;;;;:::o;34996:180::-;35044:77;35041:1;35034:88;35141:4;35138:1;35131:15;35165:4;35162:1;35155:15;35182:180;35230:77;35227:1;35220:88;35327:4;35324:1;35317:15;35351:4;35348:1;35341:15;35368:143;35425:5;35456:6;35450:13;35441:22;;35472:33;35499:5;35472:33;:::i;:::-;35368:143;;;;:::o;35517:351::-;35587:6;35636:2;35624:9;35615:7;35611:23;35607:32;35604:119;;;35642:79;;:::i;:::-;35604:119;35762:1;35787:64;35843:7;35834:6;35823:9;35819:22;35787:64;:::i;:::-;35777:74;;35733:128;35517:351;;;;:::o;35874:85::-;35919:7;35948:5;35937:16;;35874:85;;;:::o;35965:158::-;36023:9;36056:61;36074:42;36083:32;36109:5;36083:32;:::i;:::-;36074:42;:::i;:::-;36056:61;:::i;:::-;36043:74;;35965:158;;;:::o;36129:147::-;36224:45;36263:5;36224:45;:::i;:::-;36219:3;36212:58;36129:147;;:::o;36282:114::-;36349:6;36383:5;36377:12;36367:22;;36282:114;;;:::o;36402:184::-;36501:11;36535:6;36530:3;36523:19;36575:4;36570:3;36566:14;36551:29;;36402:184;;;;:::o;36592:132::-;36659:4;36682:3;36674:11;;36712:4;36707:3;36703:14;36695:22;;36592:132;;;:::o;36730:108::-;36807:24;36825:5;36807:24;:::i;:::-;36802:3;36795:37;36730:108;;:::o;36844:179::-;36913:10;36934:46;36976:3;36968:6;36934:46;:::i;:::-;37012:4;37007:3;37003:14;36989:28;;36844:179;;;;:::o;37029:113::-;37099:4;37131;37126:3;37122:14;37114:22;;37029:113;;;:::o;37178:732::-;37297:3;37326:54;37374:5;37326:54;:::i;:::-;37396:86;37475:6;37470:3;37396:86;:::i;:::-;37389:93;;37506:56;37556:5;37506:56;:::i;:::-;37585:7;37616:1;37601:284;37626:6;37623:1;37620:13;37601:284;;;37702:6;37696:13;37729:63;37788:3;37773:13;37729:63;:::i;:::-;37722:70;;37815:60;37868:6;37815:60;:::i;:::-;37805:70;;37661:224;37648:1;37645;37641:9;37636:14;;37601:284;;;37605:14;37901:3;37894:10;;37302:608;;;37178:732;;;;:::o;37916:831::-;38179:4;38217:3;38206:9;38202:19;38194:27;;38231:71;38299:1;38288:9;38284:17;38275:6;38231:71;:::i;:::-;38312:80;38388:2;38377:9;38373:18;38364:6;38312:80;:::i;:::-;38439:9;38433:4;38429:20;38424:2;38413:9;38409:18;38402:48;38467:108;38570:4;38561:6;38467:108;:::i;:::-;38459:116;;38585:72;38653:2;38642:9;38638:18;38629:6;38585:72;:::i;:::-;38667:73;38735:3;38724:9;38720:19;38711:6;38667:73;:::i;:::-;37916:831;;;;;;;;:::o;38753:220::-;38893:34;38889:1;38881:6;38877:14;38870:58;38962:3;38957:2;38949:6;38945:15;38938:28;38753:220;:::o;38979:366::-;39121:3;39142:67;39206:2;39201:3;39142:67;:::i;:::-;39135:74;;39218:93;39307:3;39218:93;:::i;:::-;39336:2;39331:3;39327:12;39320:19;;38979:366;;;:::o;39351:419::-;39517:4;39555:2;39544:9;39540:18;39532:26;;39604:9;39598:4;39594:20;39590:1;39579:9;39575:17;39568:47;39632:131;39758:4;39632:131;:::i;:::-;39624:139;;39351:419;;;:::o

Swarm Source

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