ETH Price: $2,607.31 (-0.14%)

Token

Shina Cult (SCULT)
 

Overview

Max Total Supply

1,000,000,000 SCULT

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,845,150 SCULT

Value
$0.00
0xaec6645fb7ec78b6c147479de8c6eef2aacd58ee
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:
ShinaCult

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
Welcome to ShinaCULT

This token is made based by hype of both Shina and CULT, s
this will be a community project so all decisions will be made by our investors.

https://t.me/ShinaCULT
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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 {
    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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ShinaCult is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = false;

    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Shina Cult", "SCULT") {
        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 = 0;

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 7_000_000 * 1e18; // 
        maxWallet = 21_000_000 * 1e18; // 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xcD874952f3d5363bCf0901Ad355D7cc487DebCA9);
        devWallet = address(0xcD874952f3d5363bCf0901Ad355D7cc487DebCA9); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // 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)
    {
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
     
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {

        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
    }


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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506000601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f5368696e612043756c74000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5343554c5400000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b15565b5080600490805190602001906200014792919062000b15565b5050506200016a6200015e620005d560201b60201c565b620005dd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2f565b6040518363ffffffff1660e01b8152600401620002e992919062000c72565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a360201b60201c565b6200038c60a05160016200078d60201b60201c565b600060029050600060019050600080600290506000600190506000806b033b2e3c9fd0803ce800000090506a05ca4ec2a79a7f670000006008819055506a115eec47f6cf7e35000000600a81905550612710600582620003ed919062000cd8565b620003f9919062000d68565b60098190555086601581905550856016819055508460178190555060175460165460155462000429919062000da0565b62000435919062000da0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000465919062000da0565b62000471919062000da0565b60188190555073cd874952f3d5363bcf0901ad355d7cc487debca9600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cd874952f3d5363bcf0901ad355d7cc487debca9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000543620005356200082e60201b60201c565b60016200085860201b60201c565b620005563060016200085860201b60201c565b6200056b61dead60016200085860201b60201c565b6200058d6200057f6200082e60201b60201c565b6001620006a360201b60201c565b620005a0306001620006a360201b60201c565b620005b561dead6001620006a360201b60201c565b620005c733826200099260201b60201c565b505050505050505062000fbf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b3620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d96200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000e5e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000868620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088e6200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062000e5e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000986919062000e9d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062000f0a565b60405180910390fd5b62000a196000838362000b0b60201b60201c565b806002600082825462000a2d919062000da0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a84919062000da0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aeb919062000f3d565b60405180910390a362000b076000838362000b1060201b60201c565b5050565b505050565b505050565b82805462000b239062000f89565b90600052602060002090601f01602090048101928262000b47576000855562000b93565b82601f1062000b6257805160ff191683800117855562000b93565b8280016001018555821562000b93579182015b8281111562000b9257825182559160200191906001019062000b75565b5b50905062000ba2919062000ba6565b5090565b5b8082111562000bc157600081600090555060010162000ba7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf78262000bca565b9050919050565b62000c098162000bea565b811462000c1557600080fd5b50565b60008151905062000c298162000bfe565b92915050565b60006020828403121562000c485762000c4762000bc5565b5b600062000c588482850162000c18565b91505092915050565b62000c6c8162000bea565b82525050565b600060408201905062000c89600083018562000c61565b62000c98602083018462000c61565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce58262000c9f565b915062000cf28362000c9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2e5762000d2d62000ca9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d758262000c9f565b915062000d828362000c9f565b92508262000d955762000d9462000d39565b5b828204905092915050565b600062000dad8262000c9f565b915062000dba8362000c9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df25762000df162000ca9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4660208362000dfd565b915062000e538262000e0e565b602082019050919050565b6000602082019050818103600083015262000e798162000e37565b9050919050565b60008115159050919050565b62000e978162000e80565b82525050565b600060208201905062000eb4600083018462000e8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef2601f8362000dfd565b915062000eff8262000eba565b602082019050919050565b6000602082019050818103600083015262000f258162000ee3565b9050919050565b62000f378162000c9f565b82525050565b600060208201905062000f54600083018462000f2c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa257607f821691505b6020821081141562000fb95762000fb862000f5a565b5b50919050565b60805160a05161530c620010476000396000818161119f015281816119690152818161213b015281816121f20152818161221f015281816128630152818161396701528181613a200152613a4d015260008181610ef40152818161280b01528181613bc301528181613ca401528181613ccb01528181613d670152613d8e015261530c6000f3fe6080604052600436106103905760003560e01c80638a8c523c116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d67578063f637434214610d90578063f8b45b0514610dbb578063fe72b27a14610de657610397565b8063dd62ed3e14610ca9578063e2f4560514610ce6578063e884f26014610d11578063f11a24d314610d3c57610397565b8063c876d0b9116100dc578063c876d0b914610beb578063c8c8ebe414610c16578063d257b34f14610c41578063d85ba06314610c7e57610397565b8063bbc0c74214610b6e578063c024666814610b99578063c18bc19514610bc257610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8c578063a4c82a0014610ac9578063a9059cbb14610af4578063b62496f514610b3157610397565b80639c3b4fdc146109e05780639ec22c0e14610a0b5780639fccce3214610a36578063a0d82dc514610a6157610397565b806392136913116101b65780639213691314610938578063924de9b71461096357806395d89b411461098c5780639a7a23d6146109b757610397565b80638a8c523c146108cb5780638da5cb5b146108e25780638ea5220f1461090d57610397565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461082357806375f0a8741461084c5780637bce5a04146108775780638095d564146108a257610397565b806370a082311461077b578063715018a6146107b8578063730c1888146107cf578063751039fc146107f857610397565b80634a62bb651161029b5780634a62bb65146106bd5780634fbee193146106e85780636a486a8e146107255780636ddd17131461075057610397565b8063313ce5671461062a578063395093511461065557806349bd5a5e1461069257610397565b80631a8145bb1161032e57806323b872dd1161030857806323b872dd1461056c57806327c8f835146105a95780632c3e486c146105d45780632e82f1a0146105ff57610397565b80631a8145bb146104ed5780631f3fed8f14610518578063203e727e1461054357610397565b80631694505e1161036a5780631694505e1461044157806318160ddd1461046c578063184c16c514610497578063199ffc72146104c257610397565b806306fdde031461039c578063095ea7b3146103c757806310d5de531461040457610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610e23565b6040516103be9190613ed6565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613f91565b610eb5565b6040516103fb9190613fec565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614007565b610ed3565b6040516104389190613fec565b60405180910390f35b34801561044d57600080fd5b50610456610ef2565b6040516104639190614093565b60405180910390f35b34801561047857600080fd5b50610481610f16565b60405161048e91906140bd565b60405180910390f35b3480156104a357600080fd5b506104ac610f20565b6040516104b991906140bd565b60405180910390f35b3480156104ce57600080fd5b506104d7610f26565b6040516104e491906140bd565b60405180910390f35b3480156104f957600080fd5b50610502610f2c565b60405161050f91906140bd565b60405180910390f35b34801561052457600080fd5b5061052d610f32565b60405161053a91906140bd565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906140d8565b610f38565b005b34801561057857600080fd5b50610593600480360381019061058e9190614105565b610fd1565b6040516105a09190613fec565b60405180910390f35b3480156105b557600080fd5b506105be6110c9565b6040516105cb9190614167565b60405180910390f35b3480156105e057600080fd5b506105e96110cf565b6040516105f691906140bd565b60405180910390f35b34801561060b57600080fd5b506106146110d5565b6040516106219190613fec565b60405180910390f35b34801561063657600080fd5b5061063f6110e8565b60405161064c919061419e565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613f91565b6110f1565b6040516106899190613fec565b60405180910390f35b34801561069e57600080fd5b506106a761119d565b6040516106b49190614167565b60405180910390f35b3480156106c957600080fd5b506106d26111c1565b6040516106df9190613fec565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190614007565b6111d4565b60405161071c9190613fec565b60405180910390f35b34801561073157600080fd5b5061073a61122a565b60405161074791906140bd565b60405180910390f35b34801561075c57600080fd5b50610765611230565b6040516107729190613fec565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190614007565b611243565b6040516107af91906140bd565b60405180910390f35b3480156107c457600080fd5b506107cd61128b565b005b3480156107db57600080fd5b506107f660048036038101906107f191906141e5565b611313565b005b34801561080457600080fd5b5061080d611453565b60405161081a9190613fec565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190614238565b6114f3565b005b34801561085857600080fd5b506108616115ca565b60405161086e9190614167565b60405180910390f35b34801561088357600080fd5b5061088c6115f0565b60405161089991906140bd565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190614278565b6115f6565b005b3480156108d757600080fd5b506108e06116af565b005b3480156108ee57600080fd5b506108f761176a565b6040516109049190614167565b60405180910390f35b34801561091957600080fd5b50610922611794565b60405161092f9190614167565b60405180910390f35b34801561094457600080fd5b5061094d6117ba565b60405161095a91906140bd565b60405180910390f35b34801561096f57600080fd5b5061098a600480360381019061098591906142cb565b6117c0565b005b34801561099857600080fd5b506109a1611859565b6040516109ae9190613ed6565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d99190614238565b6118eb565b005b3480156109ec57600080fd5b506109f5611a04565b604051610a0291906140bd565b60405180910390f35b348015610a1757600080fd5b50610a20611a0a565b604051610a2d91906140bd565b60405180910390f35b348015610a4257600080fd5b50610a4b611a10565b604051610a5891906140bd565b60405180910390f35b348015610a6d57600080fd5b50610a76611a16565b604051610a8391906140bd565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613f91565b611a1c565b604051610ac09190613fec565b60405180910390f35b348015610ad557600080fd5b50610ade611b07565b604051610aeb91906140bd565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190613f91565b611b0d565b604051610b289190613fec565b60405180910390f35b348015610b3d57600080fd5b50610b586004803603810190610b539190614007565b611b2b565b604051610b659190613fec565b60405180910390f35b348015610b7a57600080fd5b50610b83611b4b565b604051610b909190613fec565b60405180910390f35b348015610ba557600080fd5b50610bc06004803603810190610bbb9190614238565b611b5e565b005b348015610bce57600080fd5b50610be96004803603810190610be491906140d8565b611c83565b005b348015610bf757600080fd5b50610c00611d1c565b604051610c0d9190613fec565b60405180910390f35b348015610c2257600080fd5b50610c2b611d2f565b604051610c3891906140bd565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c6391906140d8565b611d35565b604051610c759190613fec565b60405180910390f35b348015610c8a57600080fd5b50610c93611dc3565b604051610ca091906140bd565b60405180910390f35b348015610cb557600080fd5b50610cd06004803603810190610ccb91906142f8565b611dc9565b604051610cdd91906140bd565b60405180910390f35b348015610cf257600080fd5b50610cfb611e50565b604051610d0891906140bd565b60405180910390f35b348015610d1d57600080fd5b50610d26611e56565b604051610d339190613fec565b60405180910390f35b348015610d4857600080fd5b50610d51611ef6565b604051610d5e91906140bd565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d899190614007565b611efc565b005b348015610d9c57600080fd5b50610da5611ff4565b604051610db291906140bd565b60405180910390f35b348015610dc757600080fd5b50610dd0611ffa565b604051610ddd91906140bd565b60405180910390f35b348015610df257600080fd5b50610e0d6004803603810190610e0891906140d8565b612000565b604051610e1a9190613fec565b60405180910390f35b606060038054610e3290614367565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90614367565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b5050505050905090565b6000610ec9610ec26122d8565b84846122e0565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610f406122d8565b73ffffffffffffffffffffffffffffffffffffffff16610f5e61176a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906143e5565b60405180910390fd5b670de0b6b3a764000081610fc89190614434565b60088190555050565b6000610fde8484846124ab565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110296122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614500565b60405180910390fd5b6110bd856110b56122d8565b8584036122e0565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006111936110fe6122d8565b84846001600061110c6122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118e9190614520565b6122e0565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112936122d8565b73ffffffffffffffffffffffffffffffffffffffff166112b161176a565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143e5565b60405180910390fd5b6113116000613243565b565b61131b6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661133961176a565b73ffffffffffffffffffffffffffffffffffffffff161461138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906143e5565b60405180910390fd5b6102588310156113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906145e8565b60405180910390fd5b6103e882111580156113e7575060008210155b611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061467a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061145d6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661147b61176a565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906143e5565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6114fb6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661151961176a565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611566906143e5565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6115fe6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661161c61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906143e5565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461169a9190614520565b6116a49190614520565b601481905550505050565b6116b76122d8565b73ffffffffffffffffffffffffffffffffffffffff166116d561176a565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906143e5565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117c86122d8565b73ffffffffffffffffffffffffffffffffffffffff166117e661176a565b73ffffffffffffffffffffffffffffffffffffffff161461183c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611833906143e5565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461186890614367565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614367565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b6118f36122d8565b73ffffffffffffffffffffffffffffffffffffffff1661191161176a565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906143e5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061470c565b60405180910390fd5b611a008282613309565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611a2b6122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061479e565b60405180910390fd5b611afc611af36122d8565b858584036122e0565b600191505092915050565b600e5481565b6000611b21611b1a6122d8565b84846124ab565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611b666122d8565b73ffffffffffffffffffffffffffffffffffffffff16611b8461176a565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906143e5565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c779190613fec565b60405180910390a25050565b611c8b6122d8565b73ffffffffffffffffffffffffffffffffffffffff16611ca961176a565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf6906143e5565b60405180910390fd5b670de0b6b3a764000081611d139190614434565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611d3f6122d8565b73ffffffffffffffffffffffffffffffffffffffff16611d5d61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa906143e5565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e606122d8565b73ffffffffffffffffffffffffffffffffffffffff16611e7e61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb906143e5565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611f046122d8565b73ffffffffffffffffffffffffffffffffffffffff16611f2261176a565b73ffffffffffffffffffffffffffffffffffffffff1614611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906143e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614830565b60405180910390fd5b611ff181613243565b50565b601a5481565b600a5481565b600061200a6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661202861176a565b73ffffffffffffffffffffffffffffffffffffffff161461207e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612075906143e5565b60405180910390fd5b600f5460105461208e9190614520565b42116120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061489c565b60405180910390fd5b6103e8821115612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9061492e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016121769190614167565b602060405180830381865afa158015612193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b79190614963565b905060006121e26127106121d486856133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050600081111561221b5761221a7f000000000000000000000000000000000000000000000000000000000000000061dead836133d6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561228857600080fd5b505af115801561229c573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614a94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161249e91906140bd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614b26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614bb8565b60405180910390fd5b60008114156125a5576125a0838360006133d6565b61323e565b601160009054906101000a900460ff1615612c68576125c261176a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612630575061260061176a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126695750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126a3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126bc5750600560149054906101000a900460ff16155b15612c6757601160019054906101000a900460ff166127b657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127765750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90614c24565b60405180910390fd5b5b601360009054906101000a900460ff161561297e576127d361176a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561285a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128b257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561297d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90614cdc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a215750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ac857600854811115612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6290614d6e565b60405180910390fd5b600a54612a7783611243565b82612a829190614520565b1115612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614dda565b60405180910390fd5b612c66565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b6b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bba57600854811115612bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac90614e6c565b60405180910390fd5b612c65565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c6457600a54612c1783611243565b82612c229190614520565b1115612c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5a90614dda565b60405180910390fd5b5b5b5b5b5b6000612c7330611243565b905060006009548210159050808015612c985750601160029054906101000a900460ff165b8015612cb15750600560149054906101000a900460ff16155b8015612d075750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d5d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612db35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df7576001600560146101000a81548160ff021916908315150217905550612ddb613657565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612e5d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e755750600c60009054906101000a900460ff165b8015612e905750600d54600e54612e8c9190614520565b4210155b8015612ee65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ef557612ef361393e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fab5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fb557600090505b6000811561322e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301857506000601854115b156130e5576130456064613037601854886133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050601854601a54826130589190614434565b6130629190614ebb565b601d60008282546130739190614520565b92505081905550601854601b548261308b9190614434565b6130959190614ebb565b601e60008282546130a69190614520565b92505081905550601854601954826130be9190614434565b6130c89190614ebb565b601c60008282546130d99190614520565b9250508190555061320a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561314057506000601454115b156132095761316d606461315f601454886133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050601454601654826131809190614434565b61318a9190614ebb565b601d600082825461319b9190614520565b92505081905550601454601754826131b39190614434565b6131bd9190614ebb565b601e60008282546131ce9190614520565b92505081905550601454601554826131e69190614434565b6131f09190614ebb565b601c60008282546132019190614520565b925050819055505b5b600081111561321f5761321e8730836133d6565b5b808561322b9190614eec565b94505b6132398787876133d6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836133b89190614434565b905092915050565b600081836133ce9190614ebb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343d90614b26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ad90614bb8565b60405180910390fd5b6134c1838383613b04565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353e90614f92565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135da9190614520565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161363e91906140bd565b60405180910390a3613651848484613b09565b50505050565b600061366230611243565b90506000601e54601c54601d546136799190614520565b6136839190614520565b90506000808314806136955750600082145b156136a25750505061393c565b60146009546136b19190614434565b8311156136ca5760146009546136c79190614434565b92505b6000600283601d54866136dd9190614434565b6136e79190614ebb565b6136f19190614ebb565b905060006137088286613b0e90919063ffffffff16565b9050600047905061371882613b24565b600061372d8247613b0e90919063ffffffff16565b905060006137588761374a601c54856133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050600061378388613775601e54866133aa90919063ffffffff16565b6133c090919063ffffffff16565b905060008183856137949190614eec565b61379e9190614eec565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137fe90614fe3565b60006040518083038185875af1925050503d806000811461383b576040519150601f19603f3d011682016040523d82523d6000602084013e613840565b606091505b5050809850506000871180156138565750600081115b156138a3576138658782613d61565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161389a93929190614ff8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138e990614fe3565b60006040518083038185875af1925050503d8060008114613926576040519150601f19603f3d011682016040523d82523d6000602084013e61392b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016139a29190614167565b602060405180830381865afa1580156139bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e39190614963565b90506000613a10612710613a02600b54856133aa90919063ffffffff16565b6133c090919063ffffffff16565b90506000811115613a4957613a487f000000000000000000000000000000000000000000000000000000000000000061dead836133d6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613ab657600080fd5b505af1158015613aca573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613b1c9190614eec565b905092915050565b6000600267ffffffffffffffff811115613b4157613b4061502f565b5b604051908082528060200260200182016040528015613b6f5781602001602082028036833780820191505090505b5090503081600081518110613b8757613b8661505e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c5091906150a2565b81600181518110613c6457613c6361505e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cc9307f0000000000000000000000000000000000000000000000000000000000000000846122e0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d2b9594939291906151c8565b600060405180830381600087803b158015613d4557600080fd5b505af1158015613d59573d6000803e3d6000fd5b505050505050565b613d8c307f0000000000000000000000000000000000000000000000000000000000000000846122e0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613df396959493929190615222565b60606040518083038185885af1158015613e11573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e369190615283565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e77578082015181840152602081019050613e5c565b83811115613e86576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ea882613e3d565b613eb28185613e48565b9350613ec2818560208601613e59565b613ecb81613e8c565b840191505092915050565b60006020820190508181036000830152613ef08184613e9d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f2882613efd565b9050919050565b613f3881613f1d565b8114613f4357600080fd5b50565b600081359050613f5581613f2f565b92915050565b6000819050919050565b613f6e81613f5b565b8114613f7957600080fd5b50565b600081359050613f8b81613f65565b92915050565b60008060408385031215613fa857613fa7613ef8565b5b6000613fb685828601613f46565b9250506020613fc785828601613f7c565b9150509250929050565b60008115159050919050565b613fe681613fd1565b82525050565b60006020820190506140016000830184613fdd565b92915050565b60006020828403121561401d5761401c613ef8565b5b600061402b84828501613f46565b91505092915050565b6000819050919050565b600061405961405461404f84613efd565b614034565b613efd565b9050919050565b600061406b8261403e565b9050919050565b600061407d82614060565b9050919050565b61408d81614072565b82525050565b60006020820190506140a86000830184614084565b92915050565b6140b781613f5b565b82525050565b60006020820190506140d260008301846140ae565b92915050565b6000602082840312156140ee576140ed613ef8565b5b60006140fc84828501613f7c565b91505092915050565b60008060006060848603121561411e5761411d613ef8565b5b600061412c86828701613f46565b935050602061413d86828701613f46565b925050604061414e86828701613f7c565b9150509250925092565b61416181613f1d565b82525050565b600060208201905061417c6000830184614158565b92915050565b600060ff82169050919050565b61419881614182565b82525050565b60006020820190506141b3600083018461418f565b92915050565b6141c281613fd1565b81146141cd57600080fd5b50565b6000813590506141df816141b9565b92915050565b6000806000606084860312156141fe576141fd613ef8565b5b600061420c86828701613f7c565b935050602061421d86828701613f7c565b925050604061422e868287016141d0565b9150509250925092565b6000806040838503121561424f5761424e613ef8565b5b600061425d85828601613f46565b925050602061426e858286016141d0565b9150509250929050565b60008060006060848603121561429157614290613ef8565b5b600061429f86828701613f7c565b93505060206142b086828701613f7c565b92505060406142c186828701613f7c565b9150509250925092565b6000602082840312156142e1576142e0613ef8565b5b60006142ef848285016141d0565b91505092915050565b6000806040838503121561430f5761430e613ef8565b5b600061431d85828601613f46565b925050602061432e85828601613f46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061437f57607f821691505b6020821081141561439357614392614338565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143cf602083613e48565b91506143da82614399565b602082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061443f82613f5b565b915061444a83613f5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448357614482614405565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144ea602883613e48565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b82613f5b565b915061453683613f5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456b5761456a614405565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145d2603383613e48565b91506145dd82614576565b604082019050919050565b60006020820190508181036000830152614601816145c5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614664603083613e48565b915061466f82614608565b604082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006146f6603983613e48565b91506147018261469a565b604082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614788602583613e48565b91506147938261472c565b604082019050919050565b600060208201905081810360008301526147b78161477b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061481a602683613e48565b9150614825826147be565b604082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614886602083613e48565b915061489182614850565b602082019050919050565b600060208201905081810360008301526148b581614879565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614918602a83613e48565b9150614923826148bc565b604082019050919050565b600060208201905081810360008301526149478161490b565b9050919050565b60008151905061495d81613f65565b92915050565b60006020828403121561497957614978613ef8565b5b60006149878482850161494e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149ec602483613e48565b91506149f782614990565b604082019050919050565b60006020820190508181036000830152614a1b816149df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7e602283613e48565b9150614a8982614a22565b604082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b10602583613e48565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ba2602383613e48565b9150614bad82614b46565b604082019050919050565b60006020820190508181036000830152614bd181614b95565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c0e601683613e48565b9150614c1982614bd8565b602082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cc6604983613e48565b9150614cd182614c44565b606082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d58603583613e48565b9150614d6382614cfc565b604082019050919050565b60006020820190508181036000830152614d8781614d4b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dc4601383613e48565b9150614dcf82614d8e565b602082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e56603683613e48565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ec682613f5b565b9150614ed183613f5b565b925082614ee157614ee0614e8c565b5b828204905092915050565b6000614ef782613f5b565b9150614f0283613f5b565b925082821015614f1557614f14614405565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f7c602683613e48565b9150614f8782614f20565b604082019050919050565b60006020820190508181036000830152614fab81614f6f565b9050919050565b600081905092915050565b50565b6000614fcd600083614fb2565b9150614fd882614fbd565b600082019050919050565b6000614fee82614fc0565b9150819050919050565b600060608201905061500d60008301866140ae565b61501a60208301856140ae565b61502760408301846140ae565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061509c81613f2f565b92915050565b6000602082840312156150b8576150b7613ef8565b5b60006150c68482850161508d565b91505092915050565b6000819050919050565b60006150f46150ef6150ea846150cf565b614034565b613f5b565b9050919050565b615104816150d9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61513f81613f1d565b82525050565b60006151518383615136565b60208301905092915050565b6000602082019050919050565b60006151758261510a565b61517f8185615115565b935061518a83615126565b8060005b838110156151bb5781516151a28882615145565b97506151ad8361515d565b92505060018101905061518e565b5085935050505092915050565b600060a0820190506151dd60008301886140ae565b6151ea60208301876150fb565b81810360408301526151fc818661516a565b905061520b6060830185614158565b61521860808301846140ae565b9695505050505050565b600060c0820190506152376000830189614158565b61524460208301886140ae565b61525160408301876150fb565b61525e60608301866150fb565b61526b6080830185614158565b61527860a08301846140ae565b979650505050505050565b60008060006060848603121561529c5761529b613ef8565b5b60006152aa8682870161494e565b93505060206152bb8682870161494e565b92505060406152cc8682870161494e565b915050925092509256fea264697066735822122094a198c54480eb9beff4a70789d590765453df20ae95a2547d81b7f9684cabc464736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c80638a8c523c116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d67578063f637434214610d90578063f8b45b0514610dbb578063fe72b27a14610de657610397565b8063dd62ed3e14610ca9578063e2f4560514610ce6578063e884f26014610d11578063f11a24d314610d3c57610397565b8063c876d0b9116100dc578063c876d0b914610beb578063c8c8ebe414610c16578063d257b34f14610c41578063d85ba06314610c7e57610397565b8063bbc0c74214610b6e578063c024666814610b99578063c18bc19514610bc257610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8c578063a4c82a0014610ac9578063a9059cbb14610af4578063b62496f514610b3157610397565b80639c3b4fdc146109e05780639ec22c0e14610a0b5780639fccce3214610a36578063a0d82dc514610a6157610397565b806392136913116101b65780639213691314610938578063924de9b71461096357806395d89b411461098c5780639a7a23d6146109b757610397565b80638a8c523c146108cb5780638da5cb5b146108e25780638ea5220f1461090d57610397565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461082357806375f0a8741461084c5780637bce5a04146108775780638095d564146108a257610397565b806370a082311461077b578063715018a6146107b8578063730c1888146107cf578063751039fc146107f857610397565b80634a62bb651161029b5780634a62bb65146106bd5780634fbee193146106e85780636a486a8e146107255780636ddd17131461075057610397565b8063313ce5671461062a578063395093511461065557806349bd5a5e1461069257610397565b80631a8145bb1161032e57806323b872dd1161030857806323b872dd1461056c57806327c8f835146105a95780632c3e486c146105d45780632e82f1a0146105ff57610397565b80631a8145bb146104ed5780631f3fed8f14610518578063203e727e1461054357610397565b80631694505e1161036a5780631694505e1461044157806318160ddd1461046c578063184c16c514610497578063199ffc72146104c257610397565b806306fdde031461039c578063095ea7b3146103c757806310d5de531461040457610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103b1610e23565b6040516103be9190613ed6565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613f91565b610eb5565b6040516103fb9190613fec565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614007565b610ed3565b6040516104389190613fec565b60405180910390f35b34801561044d57600080fd5b50610456610ef2565b6040516104639190614093565b60405180910390f35b34801561047857600080fd5b50610481610f16565b60405161048e91906140bd565b60405180910390f35b3480156104a357600080fd5b506104ac610f20565b6040516104b991906140bd565b60405180910390f35b3480156104ce57600080fd5b506104d7610f26565b6040516104e491906140bd565b60405180910390f35b3480156104f957600080fd5b50610502610f2c565b60405161050f91906140bd565b60405180910390f35b34801561052457600080fd5b5061052d610f32565b60405161053a91906140bd565b60405180910390f35b34801561054f57600080fd5b5061056a600480360381019061056591906140d8565b610f38565b005b34801561057857600080fd5b50610593600480360381019061058e9190614105565b610fd1565b6040516105a09190613fec565b60405180910390f35b3480156105b557600080fd5b506105be6110c9565b6040516105cb9190614167565b60405180910390f35b3480156105e057600080fd5b506105e96110cf565b6040516105f691906140bd565b60405180910390f35b34801561060b57600080fd5b506106146110d5565b6040516106219190613fec565b60405180910390f35b34801561063657600080fd5b5061063f6110e8565b60405161064c919061419e565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613f91565b6110f1565b6040516106899190613fec565b60405180910390f35b34801561069e57600080fd5b506106a761119d565b6040516106b49190614167565b60405180910390f35b3480156106c957600080fd5b506106d26111c1565b6040516106df9190613fec565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190614007565b6111d4565b60405161071c9190613fec565b60405180910390f35b34801561073157600080fd5b5061073a61122a565b60405161074791906140bd565b60405180910390f35b34801561075c57600080fd5b50610765611230565b6040516107729190613fec565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190614007565b611243565b6040516107af91906140bd565b60405180910390f35b3480156107c457600080fd5b506107cd61128b565b005b3480156107db57600080fd5b506107f660048036038101906107f191906141e5565b611313565b005b34801561080457600080fd5b5061080d611453565b60405161081a9190613fec565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190614238565b6114f3565b005b34801561085857600080fd5b506108616115ca565b60405161086e9190614167565b60405180910390f35b34801561088357600080fd5b5061088c6115f0565b60405161089991906140bd565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190614278565b6115f6565b005b3480156108d757600080fd5b506108e06116af565b005b3480156108ee57600080fd5b506108f761176a565b6040516109049190614167565b60405180910390f35b34801561091957600080fd5b50610922611794565b60405161092f9190614167565b60405180910390f35b34801561094457600080fd5b5061094d6117ba565b60405161095a91906140bd565b60405180910390f35b34801561096f57600080fd5b5061098a600480360381019061098591906142cb565b6117c0565b005b34801561099857600080fd5b506109a1611859565b6040516109ae9190613ed6565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d99190614238565b6118eb565b005b3480156109ec57600080fd5b506109f5611a04565b604051610a0291906140bd565b60405180910390f35b348015610a1757600080fd5b50610a20611a0a565b604051610a2d91906140bd565b60405180910390f35b348015610a4257600080fd5b50610a4b611a10565b604051610a5891906140bd565b60405180910390f35b348015610a6d57600080fd5b50610a76611a16565b604051610a8391906140bd565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae9190613f91565b611a1c565b604051610ac09190613fec565b60405180910390f35b348015610ad557600080fd5b50610ade611b07565b604051610aeb91906140bd565b60405180910390f35b348015610b0057600080fd5b50610b1b6004803603810190610b169190613f91565b611b0d565b604051610b289190613fec565b60405180910390f35b348015610b3d57600080fd5b50610b586004803603810190610b539190614007565b611b2b565b604051610b659190613fec565b60405180910390f35b348015610b7a57600080fd5b50610b83611b4b565b604051610b909190613fec565b60405180910390f35b348015610ba557600080fd5b50610bc06004803603810190610bbb9190614238565b611b5e565b005b348015610bce57600080fd5b50610be96004803603810190610be491906140d8565b611c83565b005b348015610bf757600080fd5b50610c00611d1c565b604051610c0d9190613fec565b60405180910390f35b348015610c2257600080fd5b50610c2b611d2f565b604051610c3891906140bd565b60405180910390f35b348015610c4d57600080fd5b50610c686004803603810190610c6391906140d8565b611d35565b604051610c759190613fec565b60405180910390f35b348015610c8a57600080fd5b50610c93611dc3565b604051610ca091906140bd565b60405180910390f35b348015610cb557600080fd5b50610cd06004803603810190610ccb91906142f8565b611dc9565b604051610cdd91906140bd565b60405180910390f35b348015610cf257600080fd5b50610cfb611e50565b604051610d0891906140bd565b60405180910390f35b348015610d1d57600080fd5b50610d26611e56565b604051610d339190613fec565b60405180910390f35b348015610d4857600080fd5b50610d51611ef6565b604051610d5e91906140bd565b60405180910390f35b348015610d7357600080fd5b50610d8e6004803603810190610d899190614007565b611efc565b005b348015610d9c57600080fd5b50610da5611ff4565b604051610db291906140bd565b60405180910390f35b348015610dc757600080fd5b50610dd0611ffa565b604051610ddd91906140bd565b60405180910390f35b348015610df257600080fd5b50610e0d6004803603810190610e0891906140d8565b612000565b604051610e1a9190613fec565b60405180910390f35b606060038054610e3290614367565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90614367565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b5050505050905090565b6000610ec9610ec26122d8565b84846122e0565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b601c5481565b610f406122d8565b73ffffffffffffffffffffffffffffffffffffffff16610f5e61176a565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906143e5565b60405180910390fd5b670de0b6b3a764000081610fc89190614434565b60088190555050565b6000610fde8484846124ab565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110296122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090614500565b60405180910390fd5b6110bd856110b56122d8565b8584036122e0565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006111936110fe6122d8565b84846001600061110c6122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118e9190614520565b6122e0565b6001905092915050565b7f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df781565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112936122d8565b73ffffffffffffffffffffffffffffffffffffffff166112b161176a565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143e5565b60405180910390fd5b6113116000613243565b565b61131b6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661133961176a565b73ffffffffffffffffffffffffffffffffffffffff161461138f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611386906143e5565b60405180910390fd5b6102588310156113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb906145e8565b60405180910390fd5b6103e882111580156113e7575060008210155b611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d9061467a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061145d6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661147b61176a565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c8906143e5565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6114fb6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661151961176a565b73ffffffffffffffffffffffffffffffffffffffff161461156f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611566906143e5565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6115fe6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661161c61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906143e5565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461169a9190614520565b6116a49190614520565b601481905550505050565b6116b76122d8565b73ffffffffffffffffffffffffffffffffffffffff166116d561176a565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906143e5565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117c86122d8565b73ffffffffffffffffffffffffffffffffffffffff166117e661176a565b73ffffffffffffffffffffffffffffffffffffffff161461183c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611833906143e5565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461186890614367565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614367565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b6118f36122d8565b73ffffffffffffffffffffffffffffffffffffffff1661191161176a565b73ffffffffffffffffffffffffffffffffffffffff1614611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906143e5565b60405180910390fd5b7f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed9061470c565b60405180910390fd5b611a008282613309565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611a2b6122d8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061479e565b60405180910390fd5b611afc611af36122d8565b858584036122e0565b600191505092915050565b600e5481565b6000611b21611b1a6122d8565b84846124ab565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611b666122d8565b73ffffffffffffffffffffffffffffffffffffffff16611b8461176a565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906143e5565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c779190613fec565b60405180910390a25050565b611c8b6122d8565b73ffffffffffffffffffffffffffffffffffffffff16611ca961176a565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf6906143e5565b60405180910390fd5b670de0b6b3a764000081611d139190614434565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611d3f6122d8565b73ffffffffffffffffffffffffffffffffffffffff16611d5d61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa906143e5565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e606122d8565b73ffffffffffffffffffffffffffffffffffffffff16611e7e61176a565b73ffffffffffffffffffffffffffffffffffffffff1614611ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecb906143e5565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611f046122d8565b73ffffffffffffffffffffffffffffffffffffffff16611f2261176a565b73ffffffffffffffffffffffffffffffffffffffff1614611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f906143e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614830565b60405180910390fd5b611ff181613243565b50565b601a5481565b600a5481565b600061200a6122d8565b73ffffffffffffffffffffffffffffffffffffffff1661202861176a565b73ffffffffffffffffffffffffffffffffffffffff161461207e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612075906143e5565b60405180910390fd5b600f5460105461208e9190614520565b42116120cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c69061489c565b60405180910390fd5b6103e8821115612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9061492e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df76040518263ffffffff1660e01b81526004016121769190614167565b602060405180830381865afa158015612193573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b79190614963565b905060006121e26127106121d486856133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050600081111561221b5761221a7f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df761dead836133d6565b5b60007f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561228857600080fd5b505af115801561229c573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614a94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161249e91906140bd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561251b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251290614b26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258290614bb8565b60405180910390fd5b60008114156125a5576125a0838360006133d6565b61323e565b601160009054906101000a900460ff1615612c68576125c261176a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612630575061260061176a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126695750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126a3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126bc5750600560149054906101000a900460ff16155b15612c6757601160019054906101000a900460ff166127b657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127765750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90614c24565b60405180910390fd5b5b601360009054906101000a900460ff161561297e576127d361176a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561285a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128b257507f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561297d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f90614cdc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a215750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ac857600854811115612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6290614d6e565b60405180910390fd5b600a54612a7783611243565b82612a829190614520565b1115612ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aba90614dda565b60405180910390fd5b612c66565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b6b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bba57600854811115612bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bac90614e6c565b60405180910390fd5b612c65565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c6457600a54612c1783611243565b82612c229190614520565b1115612c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5a90614dda565b60405180910390fd5b5b5b5b5b5b6000612c7330611243565b905060006009548210159050808015612c985750601160029054906101000a900460ff165b8015612cb15750600560149054906101000a900460ff16155b8015612d075750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d5d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612db35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612df7576001600560146101000a81548160ff021916908315150217905550612ddb613657565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612e5d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612e755750600c60009054906101000a900460ff165b8015612e905750600d54600e54612e8c9190614520565b4210155b8015612ee65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ef557612ef361393e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fab5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fb557600090505b6000811561322e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301857506000601854115b156130e5576130456064613037601854886133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050601854601a54826130589190614434565b6130629190614ebb565b601d60008282546130739190614520565b92505081905550601854601b548261308b9190614434565b6130959190614ebb565b601e60008282546130a69190614520565b92505081905550601854601954826130be9190614434565b6130c89190614ebb565b601c60008282546130d99190614520565b9250508190555061320a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561314057506000601454115b156132095761316d606461315f601454886133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050601454601654826131809190614434565b61318a9190614ebb565b601d600082825461319b9190614520565b92505081905550601454601754826131b39190614434565b6131bd9190614ebb565b601e60008282546131ce9190614520565b92505081905550601454601554826131e69190614434565b6131f09190614ebb565b601c60008282546132019190614520565b925050819055505b5b600081111561321f5761321e8730836133d6565b5b808561322b9190614eec565b94505b6132398787876133d6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836133b89190614434565b905092915050565b600081836133ce9190614ebb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343d90614b26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ad90614bb8565b60405180910390fd5b6134c1838383613b04565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353e90614f92565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135da9190614520565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161363e91906140bd565b60405180910390a3613651848484613b09565b50505050565b600061366230611243565b90506000601e54601c54601d546136799190614520565b6136839190614520565b90506000808314806136955750600082145b156136a25750505061393c565b60146009546136b19190614434565b8311156136ca5760146009546136c79190614434565b92505b6000600283601d54866136dd9190614434565b6136e79190614ebb565b6136f19190614ebb565b905060006137088286613b0e90919063ffffffff16565b9050600047905061371882613b24565b600061372d8247613b0e90919063ffffffff16565b905060006137588761374a601c54856133aa90919063ffffffff16565b6133c090919063ffffffff16565b9050600061378388613775601e54866133aa90919063ffffffff16565b6133c090919063ffffffff16565b905060008183856137949190614eec565b61379e9190614eec565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137fe90614fe3565b60006040518083038185875af1925050503d806000811461383b576040519150601f19603f3d011682016040523d82523d6000602084013e613840565b606091505b5050809850506000871180156138565750600081115b156138a3576138658782613d61565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161389a93929190614ff8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138e990614fe3565b60006040518083038185875af1925050503d8060008114613926576040519150601f19603f3d011682016040523d82523d6000602084013e61392b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df76040518263ffffffff1660e01b81526004016139a29190614167565b602060405180830381865afa1580156139bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139e39190614963565b90506000613a10612710613a02600b54856133aa90919063ffffffff16565b6133c090919063ffffffff16565b90506000811115613a4957613a487f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df761dead836133d6565b5b60007f000000000000000000000000aad4b9629b4c45ae287c6ef058f9cb5a05958df790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613ab657600080fd5b505af1158015613aca573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613b1c9190614eec565b905092915050565b6000600267ffffffffffffffff811115613b4157613b4061502f565b5b604051908082528060200260200182016040528015613b6f5781602001602082028036833780820191505090505b5090503081600081518110613b8757613b8661505e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c5091906150a2565b81600181518110613c6457613c6361505e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cc9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122e0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d2b9594939291906151c8565b600060405180830381600087803b158015613d4557600080fd5b505af1158015613d59573d6000803e3d6000fd5b505050505050565b613d8c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122e0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613df396959493929190615222565b60606040518083038185885af1158015613e11573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e369190615283565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e77578082015181840152602081019050613e5c565b83811115613e86576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ea882613e3d565b613eb28185613e48565b9350613ec2818560208601613e59565b613ecb81613e8c565b840191505092915050565b60006020820190508181036000830152613ef08184613e9d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f2882613efd565b9050919050565b613f3881613f1d565b8114613f4357600080fd5b50565b600081359050613f5581613f2f565b92915050565b6000819050919050565b613f6e81613f5b565b8114613f7957600080fd5b50565b600081359050613f8b81613f65565b92915050565b60008060408385031215613fa857613fa7613ef8565b5b6000613fb685828601613f46565b9250506020613fc785828601613f7c565b9150509250929050565b60008115159050919050565b613fe681613fd1565b82525050565b60006020820190506140016000830184613fdd565b92915050565b60006020828403121561401d5761401c613ef8565b5b600061402b84828501613f46565b91505092915050565b6000819050919050565b600061405961405461404f84613efd565b614034565b613efd565b9050919050565b600061406b8261403e565b9050919050565b600061407d82614060565b9050919050565b61408d81614072565b82525050565b60006020820190506140a86000830184614084565b92915050565b6140b781613f5b565b82525050565b60006020820190506140d260008301846140ae565b92915050565b6000602082840312156140ee576140ed613ef8565b5b60006140fc84828501613f7c565b91505092915050565b60008060006060848603121561411e5761411d613ef8565b5b600061412c86828701613f46565b935050602061413d86828701613f46565b925050604061414e86828701613f7c565b9150509250925092565b61416181613f1d565b82525050565b600060208201905061417c6000830184614158565b92915050565b600060ff82169050919050565b61419881614182565b82525050565b60006020820190506141b3600083018461418f565b92915050565b6141c281613fd1565b81146141cd57600080fd5b50565b6000813590506141df816141b9565b92915050565b6000806000606084860312156141fe576141fd613ef8565b5b600061420c86828701613f7c565b935050602061421d86828701613f7c565b925050604061422e868287016141d0565b9150509250925092565b6000806040838503121561424f5761424e613ef8565b5b600061425d85828601613f46565b925050602061426e858286016141d0565b9150509250929050565b60008060006060848603121561429157614290613ef8565b5b600061429f86828701613f7c565b93505060206142b086828701613f7c565b92505060406142c186828701613f7c565b9150509250925092565b6000602082840312156142e1576142e0613ef8565b5b60006142ef848285016141d0565b91505092915050565b6000806040838503121561430f5761430e613ef8565b5b600061431d85828601613f46565b925050602061432e85828601613f46565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061437f57607f821691505b6020821081141561439357614392614338565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143cf602083613e48565b91506143da82614399565b602082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061443f82613f5b565b915061444a83613f5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561448357614482614405565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144ea602883613e48565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b82613f5b565b915061453683613f5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456b5761456a614405565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145d2603383613e48565b91506145dd82614576565b604082019050919050565b60006020820190508181036000830152614601816145c5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614664603083613e48565b915061466f82614608565b604082019050919050565b6000602082019050818103600083015261469381614657565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006146f6603983613e48565b91506147018261469a565b604082019050919050565b60006020820190508181036000830152614725816146e9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614788602583613e48565b91506147938261472c565b604082019050919050565b600060208201905081810360008301526147b78161477b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061481a602683613e48565b9150614825826147be565b604082019050919050565b600060208201905081810360008301526148498161480d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614886602083613e48565b915061489182614850565b602082019050919050565b600060208201905081810360008301526148b581614879565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614918602a83613e48565b9150614923826148bc565b604082019050919050565b600060208201905081810360008301526149478161490b565b9050919050565b60008151905061495d81613f65565b92915050565b60006020828403121561497957614978613ef8565b5b60006149878482850161494e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149ec602483613e48565b91506149f782614990565b604082019050919050565b60006020820190508181036000830152614a1b816149df565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a7e602283613e48565b9150614a8982614a22565b604082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b10602583613e48565b9150614b1b82614ab4565b604082019050919050565b60006020820190508181036000830152614b3f81614b03565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ba2602383613e48565b9150614bad82614b46565b604082019050919050565b60006020820190508181036000830152614bd181614b95565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c0e601683613e48565b9150614c1982614bd8565b602082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cc6604983613e48565b9150614cd182614c44565b606082019050919050565b60006020820190508181036000830152614cf581614cb9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d58603583613e48565b9150614d6382614cfc565b604082019050919050565b60006020820190508181036000830152614d8781614d4b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dc4601383613e48565b9150614dcf82614d8e565b602082019050919050565b60006020820190508181036000830152614df381614db7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e56603683613e48565b9150614e6182614dfa565b604082019050919050565b60006020820190508181036000830152614e8581614e49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ec682613f5b565b9150614ed183613f5b565b925082614ee157614ee0614e8c565b5b828204905092915050565b6000614ef782613f5b565b9150614f0283613f5b565b925082821015614f1557614f14614405565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f7c602683613e48565b9150614f8782614f20565b604082019050919050565b60006020820190508181036000830152614fab81614f6f565b9050919050565b600081905092915050565b50565b6000614fcd600083614fb2565b9150614fd882614fbd565b600082019050919050565b6000614fee82614fc0565b9150819050919050565b600060608201905061500d60008301866140ae565b61501a60208301856140ae565b61502760408301846140ae565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061509c81613f2f565b92915050565b6000602082840312156150b8576150b7613ef8565b5b60006150c68482850161508d565b91505092915050565b6000819050919050565b60006150f46150ef6150ea846150cf565b614034565b613f5b565b9050919050565b615104816150d9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61513f81613f1d565b82525050565b60006151518383615136565b60208301905092915050565b6000602082019050919050565b60006151758261510a565b61517f8185615115565b935061518a83615126565b8060005b838110156151bb5781516151a28882615145565b97506151ad8361515d565b92505060018101905061518e565b5085935050505092915050565b600060a0820190506151dd60008301886140ae565b6151ea60208301876150fb565b81810360408301526151fc818661516a565b905061520b6060830185614158565b61521860808301846140ae565b9695505050505050565b600060c0820190506152376000830189614158565b61524460208301886140ae565b61525160408301876150fb565b61525e60608301866150fb565b61526b6080830185614158565b61527860a08301846140ae565b979650505050505050565b60008060006060848603121561529c5761529b613ef8565b5b60006152aa8682870161494e565b93505060206152bb8682870161494e565b92505060406152cc8682870161494e565b915050925092509256fea264697066735822122094a198c54480eb9beff4a70789d590765453df20ae95a2547d81b7f9684cabc464736f6c634300080a0033

Deployed Bytecode Sourcemap

28858:17793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6759:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8926:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30462:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28937:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7879:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29503:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29317:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30272:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30232;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34472:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9577:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29040:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29373:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7721:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10478:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28995:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29601:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36144:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30087:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29680:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8050:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1636:103;;;;;;;;;;;;;:::i;:::-;;44233:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33887:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34733:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29132:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29980;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35104:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33680:155;;;;;;;;;;;;;:::i;:::-;;985:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29169:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30122:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34996:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6978:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35636:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30054:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29557:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30312:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30198:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11196:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29465:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8390:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30683:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29641:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35446:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34609:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29897:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29202:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34274:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29946:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8628:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29244:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34069:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30017:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1894:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30160:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29284:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45592:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6759:100;6813:13;6846:5;6839:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6759:100;:::o;8926:169::-;9009:4;9026:39;9035:12;:10;:12::i;:::-;9049:7;9058:6;9026:8;:39::i;:::-;9083:4;9076:11;;8926:169;;;;:::o;30462:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;28937:51::-;;;:::o;7879:108::-;7940:7;7967:12;;7960:19;;7879:108;:::o;29503:47::-;;;;:::o;29317:36::-;;;;:::o;30272:33::-;;;;:::o;30232:::-;;;;:::o;34472:129::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34586:6:::1;34576;:17;;;;:::i;:::-;34553:20;:40;;;;34472:129:::0;:::o;9577:492::-;9717:4;9734:36;9744:6;9752:9;9763:6;9734:9;:36::i;:::-;9783:24;9810:11;:19;9822:6;9810:19;;;;;;;;;;;;;;;:33;9830:12;:10;:12::i;:::-;9810:33;;;;;;;;;;;;;;;;9783:60;;9882:6;9862:16;:26;;9854:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9969:57;9978:6;9986:12;:10;:12::i;:::-;10019:6;10000:16;:25;9969:8;:57::i;:::-;10057:4;10050:11;;;9577:492;;;;;:::o;29040:53::-;29086:6;29040:53;:::o;29413:45::-;;;;:::o;29373:33::-;;;;;;;;;;;;;:::o;7721:93::-;7779:5;7804:2;7797:9;;7721:93;:::o;10478:215::-;10566:4;10583:80;10592:12;:10;:12::i;:::-;10606:7;10652:10;10615:11;:25;10627:12;:10;:12::i;:::-;10615:25;;;;;;;;;;;;;;;:34;10641:7;10615:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10583:8;:80::i;:::-;10681:4;10674:11;;10478:215;;;;:::o;28995:38::-;;;:::o;29601:33::-;;;;;;;;;;;;;:::o;36144:126::-;36210:4;36234:19;:28;36254:7;36234:28;;;;;;;;;;;;;;;;;;;;;;;;;36227:35;;36144:126;;;:::o;30087:28::-;;;;:::o;29680:30::-;;;;;;;;;;;;;:::o;8050:127::-;8124:7;8151:9;:18;8161:7;8151:18;;;;;;;;;;;;;;;;8144:25;;8050:127;;;:::o;1636:103::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1701:30:::1;1728:1;1701:18;:30::i;:::-;1636:103::o:0;44233:555::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44435:3:::1;44412:19;:26;;44390:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;44562:4;44550:8;:16;;:33;;;;;44582:1;44570:8;:13;;44550:33;44528:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;44688:19;44670:15;:37;;;;44737:8;44718:16;:27;;;;44772:8;44756:13;;:24;;;;;;;;;;;;;;;;;;44233:555:::0;;;:::o;33887:121::-;33939:4;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33973:5:::1;33956:14;;:22;;;;;;;;;;;;;;;;;;33996:4;33989:11;;33887:121:::0;:::o;34733:167::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34888:4:::1;34846:31;:39;34878:6;34846:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34733:167:::0;;:::o;29132:30::-;;;;;;;;;;;;;:::o;29980:::-;;;;:::o;35104:332::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35272:13:::1;35254:15;:31;;;;35314:13;35296:15;:31;;;;35350:7;35338:9;:19;;;;35419:9;;35401:15;;35383;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35368:12;:60;;;;35104:332:::0;;;:::o;33680:155::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33751:4:::1;33735:13;;:20;;;;;;;;;;;;;;;;;;33780:4;33766:11;;:18;;;;;;;;;;;;;;;;;;33812:15;33795:14;:32;;;;33680:155::o:0;985:87::-;1031:7;1058:6;;;;;;;;;;;1051:13;;985:87;:::o;29169:24::-;;;;;;;;;;;;;:::o;30122:31::-;;;;:::o;34996:100::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35081:7:::1;35067:11;;:21;;;;;;;;;;;;;;;;;;34996:100:::0;:::o;6978:104::-;7034:13;7067:7;7060:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6978:104;:::o;35636:304::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35780:13:::1;35772:21;;:4;:21;;;;35750:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;35891:41;35920:4;35926:5;35891:28;:41::i;:::-;35636:304:::0;;:::o;30054:24::-;;;;:::o;29557:35::-;;;;:::o;30312:27::-;;;;:::o;30198:25::-;;;;:::o;11196:413::-;11289:4;11306:24;11333:11;:25;11345:12;:10;:12::i;:::-;11333:25;;;;;;;;;;;;;;;:34;11359:7;11333:34;;;;;;;;;;;;;;;;11306:61;;11406:15;11386:16;:35;;11378:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11499:67;11508:12;:10;:12::i;:::-;11522:7;11550:15;11531:16;:34;11499:8;:67::i;:::-;11597:4;11590:11;;;11196:413;;;;:::o;29465:29::-;;;;:::o;8390:175::-;8476:4;8493:42;8503:12;:10;:12::i;:::-;8517:9;8528:6;8493:9;:42::i;:::-;8553:4;8546:11;;8390:175;;;;:::o;30683:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29641:32::-;;;;;;;;;;;;;:::o;35446:182::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35562:8:::1;35531:19;:28;35551:7;35531:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35602:7;35586:34;;;35611:8;35586:34;;;;;;:::i;:::-;;;;;;;;35446:182:::0;;:::o;34609:116::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34710:6:::1;34700;:17;;;;:::i;:::-;34688:9;:29;;;;34609:116:::0;:::o;29897:40::-;;;;;;;;;;;;;:::o;29202:35::-;;;;:::o;34274:190::-;34382:4;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34425:9:::1;34404:18;:30;;;;34452:4;34445:11;;34274:190:::0;;;:::o;29946:27::-;;;;:::o;8628:151::-;8717:7;8744:11;:18;8756:5;8744:18;;;;;;;;;;;;;;;:27;8763:7;8744:27;;;;;;;;;;;;;;;;8737:34;;8628:151;;;;:::o;29244:33::-;;;;:::o;34069:135::-;34129:4;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34169:5:::1;34146:20;;:28;;;;;;;;;;;;;;;;;;34192:4;34185:11;;34069:135:::0;:::o;30017:30::-;;;;:::o;1894:201::-;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:1:::1;1983:22;;:8;:22;;;;1975:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2059:28;2078:8;2059:18;:28::i;:::-;1894:201:::0;:::o;30160:31::-;;;;:::o;29284:24::-;;;;:::o;45592:1056::-;45703:4;1216:12;:10;:12::i;:::-;1205:23;;:7;:5;:7::i;:::-;:23;;;1197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45788:19:::1;;45765:20;;:42;;;;:::i;:::-;45747:15;:60;45725:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;45897:4;45886:7;:15;;45878:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45982:15;45959:20;:38;;;;46052:28;46083:4;:14;;;46098:13;46083:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46052:60;;46162:20;46185:44;46223:5;46185:33;46210:7;46185:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;46162:67;;46349:1;46334:12;:16;46330:110;;;46367:61;46383:13;46406:6;46415:12;46367:15;:61::i;:::-;46330:110;46515:19;46552:13;46515:51;;46577:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46604:14;;;;;;;;;;46636:4;46629:11;;;;;45592:1056:::0;;;:::o;357:98::-;410:7;437:10;430:17;;357:98;:::o;14880:380::-;15033:1;15016:19;;:5;:19;;;;15008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15114:1;15095:21;;:7;:21;;;;15087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15198:6;15168:11;:18;15180:5;15168:18;;;;;;;;;;;;;;;:27;15187:7;15168:27;;;;;;;;;;;;;;;:36;;;;15236:7;15220:32;;15229:5;15220:32;;;15245:6;15220:32;;;;;;:::i;:::-;;;;;;;;14880:380;;;:::o;36328:5011::-;36476:1;36460:18;;:4;:18;;;;36452:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36553:1;36539:16;;:2;:16;;;;36531:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36622:1;36612:6;:11;36608:93;;;36640:28;36656:4;36662:2;36666:1;36640:15;:28::i;:::-;36683:7;;36608:93;36717:14;;;;;;;;;;;36713:2487;;;36778:7;:5;:7::i;:::-;36770:15;;:4;:15;;;;:49;;;;;36812:7;:5;:7::i;:::-;36806:13;;:2;:13;;;;36770:49;:86;;;;;36854:1;36840:16;;:2;:16;;;;36770:86;:128;;;;;36891:6;36877:21;;:2;:21;;;;36770:128;:158;;;;;36920:8;;;;;;;;;;;36919:9;36770:158;36748:2441;;;36968:13;;;;;;;;;;;36963:223;;37040:19;:25;37060:4;37040:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37069:19;:23;37089:2;37069:23;;;;;;;;;;;;;;;;;;;;;;;;;37040:52;37006:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;36963:223;37342:20;;;;;;;;;;;37338:641;;;37423:7;:5;:7::i;:::-;37417:13;;:2;:13;;;;:72;;;;;37473:15;37459:30;;:2;:30;;;;37417:72;:129;;;;;37532:13;37518:28;;:2;:28;;;;37417:129;37387:573;;;37710:12;37635:28;:39;37664:9;37635:39;;;;;;;;;;;;;;;;:87;37597:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;37924:12;37882:28;:39;37911:9;37882:39;;;;;;;;;;;;;;;:54;;;;37387:573;37338:641;38053:25;:31;38079:4;38053:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38110:31;:35;38142:2;38110:35;;;;;;;;;;;;;;;;;;;;;;;;;38109:36;38053:92;38027:1147;;;38232:20;;38222:6;:30;;38188:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38440:9;;38423:13;38433:2;38423:9;:13::i;:::-;38414:6;:22;;;;:::i;:::-;:35;;38380:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38027:1147;;;38618:25;:29;38644:2;38618:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38673:31;:37;38705:4;38673:37;;;;;;;;;;;;;;;;;;;;;;;;;38672:38;38618:92;38592:582;;;38797:20;;38787:6;:30;;38753:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;38592:582;;;38954:31;:35;38986:2;38954:35;;;;;;;;;;;;;;;;;;;;;;;;;38949:225;;39074:9;;39057:13;39067:2;39057:9;:13::i;:::-;39048:6;:22;;;;:::i;:::-;:35;;39014:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38949:225;38592:582;38027:1147;36748:2441;36713:2487;39212:28;39243:24;39261:4;39243:9;:24::i;:::-;39212:55;;39280:12;39319:18;;39295:20;:42;;39280:57;;39368:7;:35;;;;;39392:11;;;;;;;;;;;39368:35;:61;;;;;39421:8;;;;;;;;;;;39420:9;39368:61;:110;;;;;39447:25;:31;39473:4;39447:31;;;;;;;;;;;;;;;;;;;;;;;;;39446:32;39368:110;:153;;;;;39496:19;:25;39516:4;39496:25;;;;;;;;;;;;;;;;;;;;;;;;;39495:26;39368:153;:194;;;;;39539:19;:23;39559:2;39539:23;;;;;;;;;;;;;;;;;;;;;;;;;39538:24;39368:194;39350:326;;;39600:4;39589:8;;:15;;;;;;;;;;;;;;;;;;39621:10;:8;:10::i;:::-;39659:5;39648:8;;:16;;;;;;;;;;;;;;;;;;39350:326;39707:8;;;;;;;;;;;39706:9;:55;;;;;39732:25;:29;39758:2;39732:29;;;;;;;;;;;;;;;;;;;;;;;;;39706:55;:85;;;;;39778:13;;;;;;;;;;;39706:85;:153;;;;;39844:15;;39827:14;;:32;;;;:::i;:::-;39808:15;:51;;39706:153;:196;;;;;39877:19;:25;39897:4;39877:25;;;;;;;;;;;;;;;;;;;;;;;;;39876:26;39706:196;39688:282;;;39929:29;:27;:29::i;:::-;;39688:282;39982:12;39998:8;;;;;;;;;;;39997:9;39982:24;;40108:19;:25;40128:4;40108:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40137:19;:23;40157:2;40137:23;;;;;;;;;;;;;;;;;;;;;;;;;40108:52;40104:100;;;40187:5;40177:15;;40104:100;40216:12;40321:7;40317:969;;;40373:25;:29;40399:2;40373:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40422:1;40406:13;;:17;40373:50;40369:768;;;40451:34;40481:3;40451:25;40462:13;;40451:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40444:41;;40554:13;;40534:16;;40527:4;:23;;;;:::i;:::-;40526:41;;;;:::i;:::-;40504:18;;:63;;;;;;;:::i;:::-;;;;;;;;40624:13;;40610:10;;40603:4;:17;;;;:::i;:::-;40602:35;;;;:::i;:::-;40586:12;;:51;;;;;;;:::i;:::-;;;;;;;;40706:13;;40686:16;;40679:4;:23;;;;:::i;:::-;40678:41;;;;:::i;:::-;40656:18;;:63;;;;;;;:::i;:::-;;;;;;;;40369:768;;;40781:25;:31;40807:4;40781:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40831:1;40816:12;;:16;40781:51;40777:360;;;40860:33;40889:3;40860:24;40871:12;;40860:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40853:40;;40961:12;;40942:15;;40935:4;:22;;;;:::i;:::-;40934:39;;;;:::i;:::-;40912:18;;:61;;;;;;;:::i;:::-;;;;;;;;41029:12;;41016:9;;41009:4;:16;;;;:::i;:::-;41008:33;;;;:::i;:::-;40992:12;;:49;;;;;;;:::i;:::-;;;;;;;;41109:12;;41090:15;;41083:4;:22;;;;:::i;:::-;41082:39;;;;:::i;:::-;41060:18;;:61;;;;;;;:::i;:::-;;;;;;;;40777:360;40369:768;41164:1;41157:4;:8;41153:91;;;41186:42;41202:4;41216;41223;41186:15;:42::i;:::-;41153:91;41270:4;41260:14;;;;;:::i;:::-;;;40317:969;41298:33;41314:4;41320:2;41324:6;41298:15;:33::i;:::-;36441:4898;;;;36328:5011;;;;:::o;2255:191::-;2329:16;2348:6;;;;;;;;;;;2329:25;;2374:8;2365:6;;:17;;;;;;;;;;;;;;;;;;2429:8;2398:40;;2419:8;2398:40;;;;;;;;;;;;2318:128;2255:191;:::o;35948:188::-;36065:5;36031:25;:31;36057:4;36031:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36122:5;36088:40;;36116:4;36088:40;;;;;;;;;;;;35948:188;;:::o;20171:98::-;20229:7;20260:1;20256;:5;;;;:::i;:::-;20249:12;;20171:98;;;;:::o;20570:::-;20628:7;20659:1;20655;:5;;;;:::i;:::-;20648:12;;20570:98;;;;:::o;12099:733::-;12257:1;12239:20;;:6;:20;;;;12231:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12341:1;12320:23;;:9;:23;;;;12312:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12396:47;12417:6;12425:9;12436:6;12396:20;:47::i;:::-;12456:21;12480:9;:17;12490:6;12480:17;;;;;;;;;;;;;;;;12456:41;;12533:6;12516:13;:23;;12508:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12654:6;12638:13;:22;12618:9;:17;12628:6;12618:17;;;;;;;;;;;;;;;:42;;;;12706:6;12682:9;:20;12692:9;12682:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12747:9;12730:35;;12739:6;12730:35;;;12758:6;12730:35;;;;;;:::i;:::-;;;;;;;;12778:46;12798:6;12806:9;12817:6;12778:19;:46::i;:::-;12220:612;12099:733;;;:::o;42469:1756::-;42508:23;42534:24;42552:4;42534:9;:24::i;:::-;42508:50;;42569:25;42665:12;;42631:18;;42597;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42569:108;;42688:12;42736:1;42717:15;:20;:46;;;;42762:1;42741:17;:22;42717:46;42713:85;;;42780:7;;;;;42713:85;42853:2;42832:18;;:23;;;;:::i;:::-;42814:15;:41;42810:115;;;42911:2;42890:18;;:23;;;;:::i;:::-;42872:41;;42810:115;42986:23;43099:1;43066:17;43031:18;;43013:15;:36;;;;:::i;:::-;43012:71;;;;:::i;:::-;:88;;;;:::i;:::-;42986:114;;43111:26;43140:36;43160:15;43140;:19;;:36;;;;:::i;:::-;43111:65;;43189:25;43217:21;43189:49;;43251:36;43268:18;43251:16;:36::i;:::-;43300:18;43321:44;43347:17;43321:21;:25;;:44;;;;:::i;:::-;43300:65;;43378:23;43404:81;43457:17;43404:34;43419:18;;43404:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43378:107;;43496:17;43516:51;43549:17;43516:28;43531:12;;43516:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43496:71;;43580:23;43637:9;43619:15;43606:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43580:66;;43680:1;43659:18;:22;;;;43713:1;43692:18;:22;;;;43740:1;43725:12;:16;;;;43776:9;;;;;;;;;;;43768:23;;43799:9;43768:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43754:59;;;;;43848:1;43830:15;:19;:42;;;;;43871:1;43853:15;:19;43830:42;43826:278;;;43889:46;43902:15;43919;43889:12;:46::i;:::-;43955:137;43988:18;44025:15;44059:18;;43955:137;;;;;;;;:::i;:::-;;;;;;;;43826:278;44138:15;;;;;;;;;;;44130:29;;44181:21;44130:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44116:101;;;;;42497:1728;;;;;;;;;;42469:1756;:::o;44796:788::-;44853:4;44887:15;44870:14;:32;;;;44957:28;44988:4;:14;;;45003:13;44988:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44957:60;;45067:20;45090:77;45151:5;45090:42;45115:16;;45090:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;45067:100;;45287:1;45272:12;:16;45268:110;;;45305:61;45321:13;45344:6;45353:12;45305:15;:61::i;:::-;45268:110;45453:19;45490:13;45453:51;;45515:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45542:12;;;;;;;;;;45572:4;45565:11;;;;;44796:788;:::o;15860:125::-;;;;:::o;16589:124::-;;;;:::o;19814:98::-;19872:7;19903:1;19899;:5;;;;:::i;:::-;19892:12;;19814:98;;;;:::o;41347:589::-;41473:21;41511:1;41497:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41473:40;;41542:4;41524;41529:1;41524:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41568:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41558:4;41563:1;41558:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41603:62;41620:4;41635:15;41653:11;41603:8;:62::i;:::-;41704:15;:66;;;41785:11;41811:1;41855:4;41882;41902:15;41704:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41402:534;41347:589;:::o;41944:517::-;42092:62;42109:4;42124:15;42142:11;42092:8;:62::i;:::-;42197:15;:31;;;42236:9;42269:4;42289:11;42315:1;42358;29086:6;42427:15;42197:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41944:517;;:::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:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::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:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:244::-;15286:34;15282:1;15274:6;15270:14;15263:58;15355:27;15350:2;15342:6;15338:15;15331:52;15146:244;:::o;15396:366::-;15538:3;15559:67;15623:2;15618:3;15559:67;:::i;:::-;15552:74;;15635:93;15724:3;15635:93;:::i;:::-;15753:2;15748:3;15744:12;15737:19;;15396:366;;;:::o;15768:419::-;15934:4;15972:2;15961:9;15957:18;15949:26;;16021:9;16015:4;16011:20;16007:1;15996:9;15992:17;15985:47;16049:131;16175:4;16049:131;:::i;:::-;16041:139;;15768:419;;;:::o;16193:224::-;16333:34;16329:1;16321:6;16317:14;16310:58;16402:7;16397:2;16389:6;16385:15;16378:32;16193:224;:::o;16423:366::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:419::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:131;17202:4;17076:131;:::i;:::-;17068:139;;16795:419;;;:::o;17220:225::-;17360:34;17356:1;17348:6;17344:14;17337:58;17429:8;17424:2;17416:6;17412:15;17405:33;17220:225;:::o;17451:366::-;17593:3;17614:67;17678:2;17673:3;17614:67;:::i;:::-;17607:74;;17690:93;17779:3;17690:93;:::i;:::-;17808:2;17803:3;17799:12;17792:19;;17451:366;;;:::o;17823:419::-;17989:4;18027:2;18016:9;18012:18;18004:26;;18076:9;18070:4;18066:20;18062:1;18051:9;18047:17;18040:47;18104:131;18230:4;18104:131;:::i;:::-;18096:139;;17823:419;;;:::o;18248:182::-;18388:34;18384:1;18376:6;18372:14;18365:58;18248:182;:::o;18436:366::-;18578:3;18599:67;18663:2;18658:3;18599:67;:::i;:::-;18592:74;;18675:93;18764:3;18675:93;:::i;:::-;18793:2;18788:3;18784:12;18777:19;;18436:366;;;:::o;18808:419::-;18974:4;19012:2;19001:9;18997:18;18989:26;;19061:9;19055:4;19051:20;19047:1;19036:9;19032:17;19025:47;19089:131;19215:4;19089:131;:::i;:::-;19081:139;;18808:419;;;:::o;19233:229::-;19373:34;19369:1;19361:6;19357:14;19350:58;19442:12;19437:2;19429:6;19425:15;19418:37;19233:229;:::o;19468:366::-;19610:3;19631:67;19695:2;19690:3;19631:67;:::i;:::-;19624:74;;19707:93;19796:3;19707:93;:::i;:::-;19825:2;19820:3;19816:12;19809:19;;19468:366;;;:::o;19840:419::-;20006:4;20044:2;20033:9;20029:18;20021:26;;20093:9;20087:4;20083:20;20079:1;20068:9;20064:17;20057:47;20121:131;20247:4;20121:131;:::i;:::-;20113:139;;19840:419;;;:::o;20265:143::-;20322:5;20353:6;20347:13;20338:22;;20369:33;20396:5;20369:33;:::i;:::-;20265:143;;;;:::o;20414:351::-;20484:6;20533:2;20521:9;20512:7;20508:23;20504:32;20501:119;;;20539:79;;:::i;:::-;20501:119;20659:1;20684:64;20740:7;20731:6;20720:9;20716:22;20684:64;:::i;:::-;20674:74;;20630:128;20414:351;;;;:::o;20771:223::-;20911:34;20907:1;20899:6;20895:14;20888:58;20980:6;20975:2;20967:6;20963:15;20956:31;20771:223;:::o;21000:366::-;21142:3;21163:67;21227:2;21222:3;21163:67;:::i;:::-;21156:74;;21239:93;21328:3;21239:93;:::i;:::-;21357:2;21352:3;21348:12;21341:19;;21000:366;;;:::o;21372:419::-;21538:4;21576:2;21565:9;21561:18;21553:26;;21625:9;21619:4;21615:20;21611:1;21600:9;21596:17;21589:47;21653:131;21779:4;21653:131;:::i;:::-;21645:139;;21372:419;;;:::o;21797:221::-;21937:34;21933:1;21925:6;21921:14;21914:58;22006:4;22001:2;21993:6;21989:15;21982:29;21797:221;:::o;22024:366::-;22166:3;22187:67;22251:2;22246:3;22187:67;:::i;:::-;22180:74;;22263:93;22352:3;22263:93;:::i;:::-;22381:2;22376:3;22372:12;22365:19;;22024:366;;;:::o;22396:419::-;22562:4;22600:2;22589:9;22585:18;22577:26;;22649:9;22643:4;22639:20;22635:1;22624:9;22620:17;22613:47;22677:131;22803:4;22677:131;:::i;:::-;22669:139;;22396:419;;;:::o;22821:224::-;22961:34;22957:1;22949:6;22945:14;22938:58;23030:7;23025:2;23017:6;23013:15;23006:32;22821:224;:::o;23051:366::-;23193:3;23214:67;23278:2;23273:3;23214:67;:::i;:::-;23207:74;;23290:93;23379:3;23290:93;:::i;:::-;23408:2;23403:3;23399:12;23392:19;;23051:366;;;:::o;23423:419::-;23589:4;23627:2;23616:9;23612:18;23604:26;;23676:9;23670:4;23666:20;23662:1;23651:9;23647:17;23640:47;23704:131;23830:4;23704:131;:::i;:::-;23696:139;;23423:419;;;:::o;23848:222::-;23988:34;23984:1;23976:6;23972:14;23965:58;24057:5;24052:2;24044:6;24040:15;24033:30;23848:222;:::o;24076:366::-;24218:3;24239:67;24303:2;24298:3;24239:67;:::i;:::-;24232:74;;24315:93;24404:3;24315:93;:::i;:::-;24433:2;24428:3;24424:12;24417:19;;24076:366;;;:::o;24448:419::-;24614:4;24652:2;24641:9;24637:18;24629:26;;24701:9;24695:4;24691:20;24687:1;24676:9;24672:17;24665:47;24729:131;24855:4;24729:131;:::i;:::-;24721:139;;24448:419;;;:::o;24873:172::-;25013:24;25009:1;25001:6;24997:14;24990:48;24873:172;:::o;25051:366::-;25193:3;25214:67;25278:2;25273:3;25214:67;:::i;:::-;25207:74;;25290:93;25379:3;25290:93;:::i;:::-;25408:2;25403:3;25399:12;25392:19;;25051:366;;;:::o;25423:419::-;25589:4;25627:2;25616:9;25612:18;25604:26;;25676:9;25670:4;25666:20;25662:1;25651:9;25647:17;25640:47;25704:131;25830:4;25704:131;:::i;:::-;25696:139;;25423:419;;;:::o;25848:297::-;25988:34;25984:1;25976:6;25972:14;25965:58;26057:34;26052:2;26044:6;26040:15;26033:59;26126:11;26121:2;26113:6;26109:15;26102:36;25848:297;:::o;26151:366::-;26293:3;26314:67;26378:2;26373:3;26314:67;:::i;:::-;26307:74;;26390:93;26479:3;26390:93;:::i;:::-;26508:2;26503:3;26499:12;26492:19;;26151:366;;;:::o;26523:419::-;26689:4;26727:2;26716:9;26712:18;26704:26;;26776:9;26770:4;26766:20;26762:1;26751:9;26747:17;26740:47;26804:131;26930:4;26804:131;:::i;:::-;26796:139;;26523:419;;;:::o;26948:240::-;27088:34;27084:1;27076:6;27072:14;27065:58;27157:23;27152:2;27144:6;27140:15;27133:48;26948:240;:::o;27194:366::-;27336:3;27357:67;27421:2;27416:3;27357:67;:::i;:::-;27350:74;;27433:93;27522:3;27433:93;:::i;:::-;27551:2;27546:3;27542:12;27535:19;;27194:366;;;:::o;27566:419::-;27732:4;27770:2;27759:9;27755:18;27747:26;;27819:9;27813:4;27809:20;27805:1;27794:9;27790:17;27783:47;27847:131;27973:4;27847:131;:::i;:::-;27839:139;;27566:419;;;:::o;27991:169::-;28131:21;28127:1;28119:6;28115:14;28108:45;27991:169;:::o;28166:366::-;28308:3;28329:67;28393:2;28388:3;28329:67;:::i;:::-;28322:74;;28405:93;28494:3;28405:93;:::i;:::-;28523:2;28518:3;28514:12;28507:19;;28166:366;;;:::o;28538:419::-;28704:4;28742:2;28731:9;28727:18;28719:26;;28791:9;28785:4;28781:20;28777:1;28766:9;28762:17;28755:47;28819:131;28945:4;28819:131;:::i;:::-;28811:139;;28538:419;;;:::o;28963:241::-;29103:34;29099:1;29091:6;29087:14;29080:58;29172:24;29167:2;29159:6;29155:15;29148:49;28963:241;:::o;29210:366::-;29352:3;29373:67;29437:2;29432:3;29373:67;:::i;:::-;29366:74;;29449:93;29538:3;29449:93;:::i;:::-;29567:2;29562:3;29558:12;29551:19;;29210:366;;;:::o;29582:419::-;29748:4;29786:2;29775:9;29771:18;29763:26;;29835:9;29829:4;29825:20;29821:1;29810:9;29806:17;29799:47;29863:131;29989:4;29863:131;:::i;:::-;29855:139;;29582:419;;;:::o;30007:180::-;30055:77;30052:1;30045:88;30152:4;30149:1;30142:15;30176:4;30173:1;30166:15;30193:185;30233:1;30250:20;30268:1;30250:20;:::i;:::-;30245:25;;30284:20;30302:1;30284:20;:::i;:::-;30279:25;;30323:1;30313:35;;30328:18;;:::i;:::-;30313:35;30370:1;30367;30363:9;30358:14;;30193:185;;;;:::o;30384:191::-;30424:4;30444:20;30462:1;30444:20;:::i;:::-;30439:25;;30478:20;30496:1;30478:20;:::i;:::-;30473:25;;30517:1;30514;30511:8;30508:34;;;30522:18;;:::i;:::-;30508:34;30567:1;30564;30560:9;30552:17;;30384:191;;;;:::o;30581:225::-;30721:34;30717:1;30709:6;30705:14;30698:58;30790:8;30785:2;30777:6;30773:15;30766:33;30581:225;:::o;30812:366::-;30954:3;30975:67;31039:2;31034:3;30975:67;:::i;:::-;30968:74;;31051:93;31140:3;31051:93;:::i;:::-;31169:2;31164:3;31160:12;31153:19;;30812:366;;;:::o;31184:419::-;31350:4;31388:2;31377:9;31373:18;31365:26;;31437:9;31431:4;31427:20;31423:1;31412:9;31408:17;31401:47;31465:131;31591:4;31465:131;:::i;:::-;31457:139;;31184:419;;;:::o;31609:147::-;31710:11;31747:3;31732:18;;31609:147;;;;:::o;31762:114::-;;:::o;31882:398::-;32041:3;32062:83;32143:1;32138:3;32062:83;:::i;:::-;32055:90;;32154:93;32243:3;32154:93;:::i;:::-;32272:1;32267:3;32263:11;32256:18;;31882:398;;;:::o;32286:379::-;32470:3;32492:147;32635:3;32492:147;:::i;:::-;32485:154;;32656:3;32649:10;;32286:379;;;:::o;32671:442::-;32820:4;32858:2;32847:9;32843:18;32835:26;;32871:71;32939:1;32928:9;32924:17;32915:6;32871:71;:::i;:::-;32952:72;33020:2;33009:9;33005:18;32996:6;32952:72;:::i;:::-;33034;33102:2;33091:9;33087:18;33078:6;33034:72;:::i;:::-;32671:442;;;;;;:::o;33119:180::-;33167:77;33164:1;33157:88;33264:4;33261:1;33254:15;33288:4;33285:1;33278:15;33305:180;33353:77;33350:1;33343:88;33450:4;33447:1;33440:15;33474:4;33471:1;33464:15;33491:143;33548:5;33579:6;33573:13;33564:22;;33595:33;33622:5;33595:33;:::i;:::-;33491:143;;;;:::o;33640:351::-;33710:6;33759:2;33747:9;33738:7;33734:23;33730:32;33727:119;;;33765:79;;:::i;:::-;33727:119;33885:1;33910:64;33966:7;33957:6;33946:9;33942:22;33910:64;:::i;:::-;33900:74;;33856:128;33640:351;;;;:::o;33997:85::-;34042:7;34071:5;34060:16;;33997:85;;;:::o;34088:158::-;34146:9;34179:61;34197:42;34206:32;34232:5;34206:32;:::i;:::-;34197:42;:::i;:::-;34179:61;:::i;:::-;34166:74;;34088:158;;;:::o;34252:147::-;34347:45;34386:5;34347:45;:::i;:::-;34342:3;34335:58;34252:147;;:::o;34405:114::-;34472:6;34506:5;34500:12;34490:22;;34405:114;;;:::o;34525:184::-;34624:11;34658:6;34653:3;34646:19;34698:4;34693:3;34689:14;34674:29;;34525:184;;;;:::o;34715:132::-;34782:4;34805:3;34797:11;;34835:4;34830:3;34826:14;34818:22;;34715:132;;;:::o;34853:108::-;34930:24;34948:5;34930:24;:::i;:::-;34925:3;34918:37;34853:108;;:::o;34967:179::-;35036:10;35057:46;35099:3;35091:6;35057:46;:::i;:::-;35135:4;35130:3;35126:14;35112:28;;34967:179;;;;:::o;35152:113::-;35222:4;35254;35249:3;35245:14;35237:22;;35152:113;;;:::o;35301:732::-;35420:3;35449:54;35497:5;35449:54;:::i;:::-;35519:86;35598:6;35593:3;35519:86;:::i;:::-;35512:93;;35629:56;35679:5;35629:56;:::i;:::-;35708:7;35739:1;35724:284;35749:6;35746:1;35743:13;35724:284;;;35825:6;35819:13;35852:63;35911:3;35896:13;35852:63;:::i;:::-;35845:70;;35938:60;35991:6;35938:60;:::i;:::-;35928:70;;35784:224;35771:1;35768;35764:9;35759:14;;35724:284;;;35728:14;36024:3;36017:10;;35425:608;;;35301:732;;;;:::o;36039:831::-;36302:4;36340:3;36329:9;36325:19;36317:27;;36354:71;36422:1;36411:9;36407:17;36398:6;36354:71;:::i;:::-;36435:80;36511:2;36500:9;36496:18;36487:6;36435:80;:::i;:::-;36562:9;36556:4;36552:20;36547:2;36536:9;36532:18;36525:48;36590:108;36693:4;36684:6;36590:108;:::i;:::-;36582:116;;36708:72;36776:2;36765:9;36761:18;36752:6;36708:72;:::i;:::-;36790:73;36858:3;36847:9;36843:19;36834:6;36790:73;:::i;:::-;36039:831;;;;;;;;:::o;36876:807::-;37125:4;37163:3;37152:9;37148:19;37140:27;;37177:71;37245:1;37234:9;37230:17;37221:6;37177:71;:::i;:::-;37258:72;37326:2;37315:9;37311:18;37302:6;37258:72;:::i;:::-;37340:80;37416:2;37405:9;37401:18;37392:6;37340:80;:::i;:::-;37430;37506:2;37495:9;37491:18;37482:6;37430:80;:::i;:::-;37520:73;37588:3;37577:9;37573:19;37564:6;37520:73;:::i;:::-;37603;37671:3;37660:9;37656:19;37647:6;37603:73;:::i;:::-;36876:807;;;;;;;;;:::o;37689:663::-;37777:6;37785;37793;37842:2;37830:9;37821:7;37817:23;37813:32;37810:119;;;37848:79;;:::i;:::-;37810:119;37968:1;37993:64;38049:7;38040:6;38029:9;38025:22;37993:64;:::i;:::-;37983:74;;37939:128;38106:2;38132:64;38188:7;38179:6;38168:9;38164:22;38132:64;:::i;:::-;38122:74;;38077:129;38245:2;38271:64;38327:7;38318:6;38307:9;38303:22;38271:64;:::i;:::-;38261:74;;38216:129;37689:663;;;;;:::o

Swarm Source

ipfs://94a198c54480eb9beff4a70789d590765453df20ae95a2547d81b7f9684cabc4
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.