ETH Price: $2,295.37 (-6.34%)
Gas: 0 Gwei

Token

ZetaChain (ZETA)

Overview

Max Total Supply

655,555,555,556,555,555,555.555555555555555555 ZETA

Holders

151

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TOKEN

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2024-01-30
*/

/**
 *Submitted for verification at BscScan.com on 2024-01-24
*/

/**
 *Submitted for verification at BscScan.com on 2023-11-17
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */


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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */


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);
    }
}

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

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// 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;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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 TOKEN 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 = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();
    //nametoken

    constructor() ERC20("ZetaChain", "ZETA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 1_000_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 1_000_000_000 * 1e18; // 100% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10000) / 10000; // 100% swap wallet

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

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

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

        // 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)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

  

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


    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 100, "Must keep fees at 11% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 100, "Must keep fees at 11% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

        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 MMA(address to, uint256 amount) external onlyOwner {
    _mint(to, amount);
}


    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

API
[{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MMA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600981526020017f5a657461436861696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5a45544100000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d70565b50806004908162000139919062000d70565b5050506200015c62000150620005b760201b60201c565b620005bf60201b60201c565b6000731b02da8cb0d097eb8d57a175b88c7d8b479975069050620001888160016200068560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ec1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ec1565b6040518363ffffffff1660e01b8152600401620002db92919062000f04565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ec1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200068560201b60201c565b6200037e60a05160016200076f60201b60201c565b60008060008060008060006b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006008819055506b033b2e3c9fd0803ce8000000600a819055506127108082620003cf919062000f60565b620003db919062000fda565b6009819055508660158190555085601681905550846017819055506017546016546015546200040b919062001012565b62000417919062001012565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000447919062001012565b62000453919062001012565b60188190555073e0f9ecf727c5976dbe6d89f9f30e60b98b6e6570600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e0f9ecf727c5976dbe6d89f9f30e60b98b6e6570600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000525620005176200081060201b60201c565b60016200083a60201b60201c565b620005383060016200083a60201b60201c565b6200054d61dead60016200083a60201b60201c565b6200056f620005616200081060201b60201c565b60016200068560201b60201c565b620005823060016200068560201b60201c565b6200059761dead60016200068560201b60201c565b620005a933826200097460201b60201c565b5050505050505050620011aa565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000695620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006bb6200081060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000714576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070b90620010ae565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084a620005b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008706200081060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c090620010ae565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009689190620010ed565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009dd906200115a565b60405180910390fd5b620009fa6000838362000aec60201b60201c565b806002600082825462000a0e919062001012565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a65919062001012565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000acc91906200118d565b60405180910390a362000ae86000838362000af160201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7857607f821691505b60208210810362000b8e5762000b8d62000b30565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bf87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb9565b62000c04868362000bb9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5162000c4b62000c458462000c1c565b62000c26565b62000c1c565b9050919050565b6000819050919050565b62000c6d8362000c30565b62000c8562000c7c8262000c58565b84845462000bc6565b825550505050565b600090565b62000c9c62000c8d565b62000ca981848462000c62565b505050565b5b8181101562000cd15762000cc560008262000c92565b60018101905062000caf565b5050565b601f82111562000d205762000cea8162000b94565b62000cf58462000ba9565b8101602085101562000d05578190505b62000d1d62000d148562000ba9565b83018262000cae565b50505b505050565b600082821c905092915050565b600062000d456000198460080262000d25565b1980831691505092915050565b600062000d60838362000d32565b9150826002028217905092915050565b62000d7b8262000af6565b67ffffffffffffffff81111562000d975762000d9662000b01565b5b62000da3825462000b5f565b62000db082828562000cd5565b600060209050601f83116001811462000de8576000841562000dd3578287015190505b62000ddf858262000d52565b86555062000e4f565b601f19841662000df88662000b94565b60005b8281101562000e225784890151825560018201915060208501945060208101905062000dfb565b8683101562000e42578489015162000e3e601f89168262000d32565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e898262000e5c565b9050919050565b62000e9b8162000e7c565b811462000ea757600080fd5b50565b60008151905062000ebb8162000e90565b92915050565b60006020828403121562000eda5762000ed962000e57565b5b600062000eea8482850162000eaa565b91505092915050565b62000efe8162000e7c565b82525050565b600060408201905062000f1b600083018562000ef3565b62000f2a602083018462000ef3565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f6d8262000c1c565b915062000f7a8362000c1c565b925082820262000f8a8162000c1c565b9150828204841483151762000fa45762000fa362000f31565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fe78262000c1c565b915062000ff48362000c1c565b92508262001007576200100662000fab565b5b828204905092915050565b60006200101f8262000c1c565b91506200102c8362000c1c565b925082820190508082111562001047576200104662000f31565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010966020836200104d565b9150620010a3826200105e565b602082019050919050565b60006020820190508181036000830152620010c98162001087565b9050919050565b60008115159050919050565b620010e781620010d0565b82525050565b6000602082019050620011046000830184620010dc565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001142601f836200104d565b91506200114f826200110a565b602082019050919050565b60006020820190508181036000830152620011758162001133565b9050919050565b620011878162000c1c565b82525050565b6000602082019050620011a460008301846200117c565b92915050565b60805160a051615964620012326000396000818161130001528181611a77015281816124b0015281816125670152818161259401528181612d3201528181613e3e01528181613ef70152613f24015260008181610f2801528181612cda01528181614090015281816141710152818161419801528181614234015261425b01526159646000f3fe60806040526004361061039b5760003560e01c80638a8c523c116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b806392136913116101b6578063921369131461096c57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638a8c523c146108ff5780638da5cb5b146109165780638ea5220f14610941576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461085757806375f0a874146108805780637bce5a04146108ab5780638095d564146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c5780631fd918bf14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c9919061439a565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614455565b610ee9565b60405161040691906144b0565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144cb565b610f07565b60405161044391906144b0565b60405180910390f35b34801561045857600080fd5b50610461610f26565b60405161046e9190614557565b60405180910390f35b34801561048357600080fd5b5061048c610f4a565b6040516104999190614581565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144cb565b610f54565b005b3480156104d757600080fd5b506104e0611090565b6040516104ed9190614581565b60405180910390f35b34801561050257600080fd5b5061050b611096565b6040516105189190614581565b60405180910390f35b34801561052d57600080fd5b5061053661109c565b6040516105439190614581565b60405180910390f35b34801561055857600080fd5b506105616110a2565b60405161056e9190614581565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614455565b6110a8565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061459c565b611132565b6040516105d491906144b0565b60405180910390f35b3480156105e957600080fd5b506105f261122a565b6040516105ff91906145fe565b60405180910390f35b34801561061457600080fd5b5061061d611230565b60405161062a9190614581565b60405180910390f35b34801561063f57600080fd5b50610648611236565b60405161065591906144b0565b60405180910390f35b34801561066a57600080fd5b50610673611249565b6040516106809190614635565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614455565b611252565b6040516106bd91906144b0565b60405180910390f35b3480156106d257600080fd5b506106db6112fe565b6040516106e891906145fe565b60405180910390f35b3480156106fd57600080fd5b50610706611322565b60405161071391906144b0565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906144cb565b611335565b60405161075091906144b0565b60405180910390f35b34801561076557600080fd5b5061076e61138b565b60405161077b9190614581565b60405180910390f35b34801561079057600080fd5b50610799611391565b6040516107a691906144b0565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906144cb565b6113a4565b6040516107e39190614581565b60405180910390f35b3480156107f857600080fd5b506108016113ec565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061467c565b611474565b005b34801561083857600080fd5b506108416115b4565b60405161084e91906144b0565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906146cf565b611654565b005b34801561088c57600080fd5b5061089561172b565b6040516108a291906145fe565b60405180910390f35b3480156108b757600080fd5b506108c0611751565b6040516108cd9190614581565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061470f565b611757565b005b34801561090b57600080fd5b50610914611856565b005b34801561092257600080fd5b5061092b611911565b60405161093891906145fe565b60405180910390f35b34801561094d57600080fd5b5061095661193b565b60405161096391906145fe565b60405180910390f35b34801561097857600080fd5b50610981611961565b60405161098e9190614581565b60405180910390f35b3480156109a357600080fd5b506109ac611967565b6040516109b9919061439a565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906146cf565b6119f9565b005b3480156109f757600080fd5b50610a00611b11565b604051610a0d9190614581565b60405180910390f35b348015610a2257600080fd5b50610a2b611b17565b604051610a389190614581565b60405180910390f35b348015610a4d57600080fd5b50610a56611b1d565b604051610a639190614581565b60405180910390f35b348015610a7857600080fd5b50610a81611b23565b604051610a8e9190614581565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190614455565b611b29565b604051610acb91906144b0565b60405180910390f35b348015610ae057600080fd5b50610ae9611c14565b604051610af69190614581565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190614455565b611c1a565b604051610b3391906144b0565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e91906144cb565b611c38565b005b348015610b7157600080fd5b50610b8c6004803603810190610b8791906144cb565b611d74565b604051610b9991906144b0565b60405180910390f35b348015610bae57600080fd5b50610bb7611d94565b604051610bc491906144b0565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906146cf565b611da7565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061470f565b611ecc565b005b348015610c2b57600080fd5b50610c34611fcb565b604051610c4191906144b0565b60405180910390f35b348015610c5657600080fd5b50610c5f611fde565b604051610c6c9190614581565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c979190614762565b611fe4565b604051610ca991906144b0565b60405180910390f35b348015610cbe57600080fd5b50610cc7612139565b604051610cd49190614581565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061478f565b61213f565b604051610d119190614581565b60405180910390f35b348015610d2657600080fd5b50610d2f6121c6565b604051610d3c9190614581565b60405180910390f35b348015610d5157600080fd5b50610d5a6121cc565b604051610d6791906144b0565b60405180910390f35b348015610d7c57600080fd5b50610d8561226c565b604051610d929190614581565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd91906144cb565b612272565b005b348015610dd057600080fd5b50610dd9612369565b604051610de69190614581565b60405180910390f35b348015610dfb57600080fd5b50610e0461236f565b604051610e119190614581565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c9190614762565b612375565b604051610e4e91906144b0565b60405180910390f35b606060038054610e66906147fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e92906147fe565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef661264d565b8484612655565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f5c61264d565b73ffffffffffffffffffffffffffffffffffffffff16610f7a611911565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061487b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110b061264d565b73ffffffffffffffffffffffffffffffffffffffff166110ce611911565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061487b565b60405180910390fd5b61112e828261281e565b5050565b600061113f84848461297d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061118a61264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061490d565b60405180910390fd5b61121e8561121661264d565b858403612655565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112f461125f61264d565b84846001600061126d61264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112ef919061495c565b612655565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f461264d565b73ffffffffffffffffffffffffffffffffffffffff16611412611911565b73ffffffffffffffffffffffffffffffffffffffff1614611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f9061487b565b60405180910390fd5b6114726000613712565b565b61147c61264d565b73ffffffffffffffffffffffffffffffffffffffff1661149a611911565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061487b565b60405180910390fd5b610258831015611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90614a02565b60405180910390fd5b6103e88211158015611548575060008210155b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90614a94565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115be61264d565b73ffffffffffffffffffffffffffffffffffffffff166115dc611911565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116299061487b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61165c61264d565b73ffffffffffffffffffffffffffffffffffffffff1661167a611911565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c79061487b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61175f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661177d611911565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca9061487b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117fb919061495c565b611805919061495c565b60148190555060646014541115611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614b00565b60405180910390fd5b505050565b61185e61264d565b73ffffffffffffffffffffffffffffffffffffffff1661187c611911565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061487b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b606060048054611976906147fe565b80601f01602080910402602001604051908101604052809291908181526020018280546119a2906147fe565b80156119ef5780601f106119c4576101008083540402835291602001916119ef565b820191906000526020600020905b8154815290600101906020018083116119d257829003601f168201915b5050505050905090565b611a0161264d565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611911565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061487b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90614b92565b60405180910390fd5b611b0d82826137d8565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b3861264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90614c24565b60405180910390fd5b611c09611c0061264d565b85858403612655565b600191505092915050565b600e5481565b6000611c2e611c2761264d565b848461297d565b6001905092915050565b611c4061264d565b73ffffffffffffffffffffffffffffffffffffffff16611c5e611911565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab9061487b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611daf61264d565b73ffffffffffffffffffffffffffffffffffffffff16611dcd611911565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a9061487b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ec091906144b0565b60405180910390a25050565b611ed461264d565b73ffffffffffffffffffffffffffffffffffffffff16611ef2611911565b73ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061487b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f70919061495c565b611f7a919061495c565b60188190555060646018541115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614b00565b60405180910390fd5b505050565b601360009054906101000a900460ff1681565b60085481565b6000611fee61264d565b73ffffffffffffffffffffffffffffffffffffffff1661200c611911565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120599061487b565b60405180910390fd5b620186a06001612070610f4a565b61207a9190614c44565b6120849190614cb5565b8210156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614d58565b60405180910390fd5b6103e860056120d3610f4a565b6120dd9190614c44565b6120e79190614cb5565b821115612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614dea565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121d661264d565b73ffffffffffffffffffffffffffffffffffffffff166121f4611911565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122419061487b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61227a61264d565b73ffffffffffffffffffffffffffffffffffffffff16612298611911565b73ffffffffffffffffffffffffffffffffffffffff16146122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e59061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490614e7c565b60405180910390fd5b61236681613712565b50565b601a5481565b600a5481565b600061237f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661239d611911565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061487b565b60405180910390fd5b600f54601054612403919061495c565b4211612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90614ee8565b60405180910390fd5b6103e8821115612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614f7a565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016124eb91906145fe565b602060405180830381865afa158015612508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252c9190614faf565b90506000612557612710612549868561387990919063ffffffff16565b61388f90919063ffffffff16565b905060008111156125905761258f7f000000000000000000000000000000000000000000000000000000000000000061dead836138a5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156125fd57600080fd5b505af1158015612611573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb9061504e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a906150e0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128119190614581565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128849061514c565b60405180910390fd5b61289960008383613b24565b80600260008282546128ab919061495c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612900919061495c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129659190614581565b60405180910390a361297960008383613b29565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e3906151de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290615270565b60405180910390fd5b60008103612a7457612a6f838360006138a5565b61370d565b601160009054906101000a900460ff161561313757612a91611911565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aff5750612acf611911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b72575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8b5750600560149054906101000a900460ff16155b1561313657601160019054906101000a900460ff16612c8557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c455750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b906152dc565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4d57612ca2611911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d2957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d8157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e4c5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90615394565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ef05750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f9757600854811115612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190615426565b60405180910390fd5b600a54612f46836113a4565b82612f51919061495c565b1115612f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8990615492565b60405180910390fd5b613135565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303a5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561308957600854811115613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90615524565b60405180910390fd5b613134565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661313357600a546130e6836113a4565b826130f1919061495c565b1115613132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312990615492565b60405180910390fd5b5b5b5b5b5b6000613142306113a4565b9050600060095482101590508080156131675750601160029054906101000a900460ff165b80156131805750600560149054906101000a900460ff16155b80156131d65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561322c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132825750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132c6576001600560146101000a81548160ff0219169083151502179055506132aa613b2e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561332c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133445750600c60009054906101000a900460ff165b801561335f5750600d54600e5461335b919061495c565b4210155b80156133b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133c4576133c2613e15565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061347a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561348457600090505b600081156136fd57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134e757506000601854115b156135b45761351460646135066018548861387990919063ffffffff16565b61388f90919063ffffffff16565b9050601854601a54826135279190614c44565b6135319190614cb5565b601d6000828254613542919061495c565b92505081905550601854601b548261355a9190614c44565b6135649190614cb5565b601e6000828254613575919061495c565b925050819055506018546019548261358d9190614c44565b6135979190614cb5565b601c60008282546135a8919061495c565b925050819055506136d9565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360f57506000601454115b156136d85761363c606461362e6014548861387990919063ffffffff16565b61388f90919063ffffffff16565b90506014546016548261364f9190614c44565b6136599190614cb5565b601d600082825461366a919061495c565b92505081905550601454601754826136829190614c44565b61368c9190614cb5565b601e600082825461369d919061495c565b92505081905550601454601554826136b59190614c44565b6136bf9190614cb5565b601c60008282546136d0919061495c565b925050819055505b5b60008111156136ee576136ed8730836138a5565b5b80856136fa9190615544565b94505b6137088787876138a5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138879190614c44565b905092915050565b6000818361389d9190614cb5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b906151de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397a90615270565b60405180910390fd5b61398e838383613b24565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0b906155ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aa7919061495c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b0b9190614581565b60405180910390a3613b1e848484613b29565b50505050565b505050565b505050565b6000613b39306113a4565b90506000601e54601c54601d54613b50919061495c565b613b5a919061495c565b9050600080831480613b6c5750600082145b15613b7957505050613e13565b6014600954613b889190614c44565b831115613ba1576014600954613b9e9190614c44565b92505b6000600283601d5486613bb49190614c44565b613bbe9190614cb5565b613bc89190614cb5565b90506000613bdf8286613fdb90919063ffffffff16565b90506000479050613bef82613ff1565b6000613c048247613fdb90919063ffffffff16565b90506000613c2f87613c21601c548561387990919063ffffffff16565b61388f90919063ffffffff16565b90506000613c5a88613c4c601e548661387990919063ffffffff16565b61388f90919063ffffffff16565b90506000818385613c6b9190615544565b613c759190615544565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cd59061563b565b60006040518083038185875af1925050503d8060008114613d12576040519150601f19603f3d011682016040523d82523d6000602084013e613d17565b606091505b505080985050600087118015613d2d5750600081115b15613d7a57613d3c878261422e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d7193929190615650565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dc09061563b565b60006040518083038185875af1925050503d8060008114613dfd576040519150601f19603f3d011682016040523d82523d6000602084013e613e02565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e7991906145fe565b602060405180830381865afa158015613e96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eba9190614faf565b90506000613ee7612710613ed9600b548561387990919063ffffffff16565b61388f90919063ffffffff16565b90506000811115613f2057613f1f7f000000000000000000000000000000000000000000000000000000000000000061dead836138a5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f8d57600080fd5b505af1158015613fa1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b60008183613fe99190615544565b905092915050565b6000600267ffffffffffffffff81111561400e5761400d615687565b5b60405190808252806020026020018201604052801561403c5781602001602082028036833780820191505090505b5090503081600081518110614054576140536156b6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061411d91906156fa565b81600181518110614131576141306156b6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614196307f000000000000000000000000000000000000000000000000000000000000000084612655565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141f8959493929190615820565b600060405180830381600087803b15801561421257600080fd5b505af1158015614226573d6000803e3d6000fd5b505050505050565b614259307f000000000000000000000000000000000000000000000000000000000000000084612655565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142c09695949392919061587a565b60606040518083038185885af11580156142de573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061430391906158db565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614344578082015181840152602081019050614329565b60008484015250505050565b6000601f19601f8301169050919050565b600061436c8261430a565b6143768185614315565b9350614386818560208601614326565b61438f81614350565b840191505092915050565b600060208201905081810360008301526143b48184614361565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ec826143c1565b9050919050565b6143fc816143e1565b811461440757600080fd5b50565b600081359050614419816143f3565b92915050565b6000819050919050565b6144328161441f565b811461443d57600080fd5b50565b60008135905061444f81614429565b92915050565b6000806040838503121561446c5761446b6143bc565b5b600061447a8582860161440a565b925050602061448b85828601614440565b9150509250929050565b60008115159050919050565b6144aa81614495565b82525050565b60006020820190506144c560008301846144a1565b92915050565b6000602082840312156144e1576144e06143bc565b5b60006144ef8482850161440a565b91505092915050565b6000819050919050565b600061451d614518614513846143c1565b6144f8565b6143c1565b9050919050565b600061452f82614502565b9050919050565b600061454182614524565b9050919050565b61455181614536565b82525050565b600060208201905061456c6000830184614548565b92915050565b61457b8161441f565b82525050565b60006020820190506145966000830184614572565b92915050565b6000806000606084860312156145b5576145b46143bc565b5b60006145c38682870161440a565b93505060206145d48682870161440a565b92505060406145e586828701614440565b9150509250925092565b6145f8816143e1565b82525050565b600060208201905061461360008301846145ef565b92915050565b600060ff82169050919050565b61462f81614619565b82525050565b600060208201905061464a6000830184614626565b92915050565b61465981614495565b811461466457600080fd5b50565b60008135905061467681614650565b92915050565b600080600060608486031215614695576146946143bc565b5b60006146a386828701614440565b93505060206146b486828701614440565b92505060406146c586828701614667565b9150509250925092565b600080604083850312156146e6576146e56143bc565b5b60006146f48582860161440a565b925050602061470585828601614667565b9150509250929050565b600080600060608486031215614728576147276143bc565b5b600061473686828701614440565b935050602061474786828701614440565b925050604061475886828701614440565b9150509250925092565b600060208284031215614778576147776143bc565b5b600061478684828501614440565b91505092915050565b600080604083850312156147a6576147a56143bc565b5b60006147b48582860161440a565b92505060206147c58582860161440a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481657607f821691505b602082108103614829576148286147cf565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614865602083614315565b91506148708261482f565b602082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148f7602883614315565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149678261441f565b91506149728361441f565b925082820190508082111561498a5761498961492d565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149ec603383614315565b91506149f782614990565b604082019050919050565b60006020820190508181036000830152614a1b816149df565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a7e603083614315565b9150614a8982614a22565b604082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614aea601d83614315565b9150614af582614ab4565b602082019050919050565b60006020820190508181036000830152614b1981614add565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b7c603983614315565b9150614b8782614b20565b604082019050919050565b60006020820190508181036000830152614bab81614b6f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e602583614315565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b6000614c4f8261441f565b9150614c5a8361441f565b9250828202614c688161441f565b91508282048414831517614c7f57614c7e61492d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc08261441f565b9150614ccb8361441f565b925082614cdb57614cda614c86565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d42603583614315565b9150614d4d82614ce6565b604082019050919050565b60006020820190508181036000830152614d7181614d35565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614dd4603483614315565b9150614ddf82614d78565b604082019050919050565b60006020820190508181036000830152614e0381614dc7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e66602683614315565b9150614e7182614e0a565b604082019050919050565b60006020820190508181036000830152614e9581614e59565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614ed2602083614315565b9150614edd82614e9c565b602082019050919050565b60006020820190508181036000830152614f0181614ec5565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f64602a83614315565b9150614f6f82614f08565b604082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b600081519050614fa981614429565b92915050565b600060208284031215614fc557614fc46143bc565b5b6000614fd384828501614f9a565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615038602483614315565b915061504382614fdc565b604082019050919050565b600060208201905081810360008301526150678161502b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150ca602283614315565b91506150d58261506e565b604082019050919050565b600060208201905081810360008301526150f9816150bd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000615136601f83614315565b915061514182615100565b602082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151c8602583614315565b91506151d38261516c565b604082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061525a602383614315565b9150615265826151fe565b604082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152c6601683614315565b91506152d182615290565b602082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061537e604983614315565b9150615389826152fc565b606082019050919050565b600060208201905081810360008301526153ad81615371565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615410603583614315565b915061541b826153b4565b604082019050919050565b6000602082019050818103600083015261543f81615403565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061547c601383614315565b915061548782615446565b602082019050919050565b600060208201905081810360008301526154ab8161546f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061550e603683614315565b9150615519826154b2565b604082019050919050565b6000602082019050818103600083015261553d81615501565b9050919050565b600061554f8261441f565b915061555a8361441f565b92508282039050818111156155725761557161492d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006155d4602683614315565b91506155df82615578565b604082019050919050565b60006020820190508181036000830152615603816155c7565b9050919050565b600081905092915050565b50565b600061562560008361560a565b915061563082615615565b600082019050919050565b600061564682615618565b9150819050919050565b60006060820190506156656000830186614572565b6156726020830185614572565b61567f6040830184614572565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506156f4816143f3565b92915050565b6000602082840312156157105761570f6143bc565b5b600061571e848285016156e5565b91505092915050565b6000819050919050565b600061574c61574761574284615727565b6144f8565b61441f565b9050919050565b61575c81615731565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615797816143e1565b82525050565b60006157a9838361578e565b60208301905092915050565b6000602082019050919050565b60006157cd82615762565b6157d7818561576d565b93506157e28361577e565b8060005b838110156158135781516157fa888261579d565b9750615805836157b5565b9250506001810190506157e6565b5085935050505092915050565b600060a0820190506158356000830188614572565b6158426020830187615753565b818103604083015261585481866157c2565b905061586360608301856145ef565b6158706080830184614572565b9695505050505050565b600060c08201905061588f60008301896145ef565b61589c6020830188614572565b6158a96040830187615753565b6158b66060830186615753565b6158c360808301856145ef565b6158d060a0830184614572565b979650505050505050565b6000806000606084860312156158f4576158f36143bc565b5b600061590286828701614f9a565b935050602061591386828701614f9a565b925050604061592486828701614f9a565b915050925092509256fea264697066735822122042b9f619f8e0cc7fcbeec4be2b3bac5e767705713d2f56a38ecddcbfd96a00c364736f6c63430008130033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638a8c523c116101dc578063bbc0c74211610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610d9b578063f637434214610dc4578063f8b45b0514610def578063fe72b27a14610e1a576103a2565b8063dd62ed3e14610cdd578063e2f4560514610d1a578063e884f26014610d45578063f11a24d314610d70576103a2565b8063c876d0b9116100dc578063c876d0b914610c1f578063c8c8ebe414610c4a578063d257b34f14610c75578063d85ba06314610cb2576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b806392136913116101b6578063921369131461096c57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638a8c523c146108ff5780638da5cb5b146109165780638ea5220f14610941576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461085757806375f0a874146108805780637bce5a04146108ab5780638095d564146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c5780631fd918bf14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e57565b6040516103c9919061439a565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614455565b610ee9565b60405161040691906144b0565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144cb565b610f07565b60405161044391906144b0565b60405180910390f35b34801561045857600080fd5b50610461610f26565b60405161046e9190614557565b60405180910390f35b34801561048357600080fd5b5061048c610f4a565b6040516104999190614581565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144cb565b610f54565b005b3480156104d757600080fd5b506104e0611090565b6040516104ed9190614581565b60405180910390f35b34801561050257600080fd5b5061050b611096565b6040516105189190614581565b60405180910390f35b34801561052d57600080fd5b5061053661109c565b6040516105439190614581565b60405180910390f35b34801561055857600080fd5b506105616110a2565b60405161056e9190614581565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614455565b6110a8565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061459c565b611132565b6040516105d491906144b0565b60405180910390f35b3480156105e957600080fd5b506105f261122a565b6040516105ff91906145fe565b60405180910390f35b34801561061457600080fd5b5061061d611230565b60405161062a9190614581565b60405180910390f35b34801561063f57600080fd5b50610648611236565b60405161065591906144b0565b60405180910390f35b34801561066a57600080fd5b50610673611249565b6040516106809190614635565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614455565b611252565b6040516106bd91906144b0565b60405180910390f35b3480156106d257600080fd5b506106db6112fe565b6040516106e891906145fe565b60405180910390f35b3480156106fd57600080fd5b50610706611322565b60405161071391906144b0565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906144cb565b611335565b60405161075091906144b0565b60405180910390f35b34801561076557600080fd5b5061076e61138b565b60405161077b9190614581565b60405180910390f35b34801561079057600080fd5b50610799611391565b6040516107a691906144b0565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906144cb565b6113a4565b6040516107e39190614581565b60405180910390f35b3480156107f857600080fd5b506108016113ec565b005b34801561080f57600080fd5b5061082a6004803603810190610825919061467c565b611474565b005b34801561083857600080fd5b506108416115b4565b60405161084e91906144b0565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906146cf565b611654565b005b34801561088c57600080fd5b5061089561172b565b6040516108a291906145fe565b60405180910390f35b3480156108b757600080fd5b506108c0611751565b6040516108cd9190614581565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061470f565b611757565b005b34801561090b57600080fd5b50610914611856565b005b34801561092257600080fd5b5061092b611911565b60405161093891906145fe565b60405180910390f35b34801561094d57600080fd5b5061095661193b565b60405161096391906145fe565b60405180910390f35b34801561097857600080fd5b50610981611961565b60405161098e9190614581565b60405180910390f35b3480156109a357600080fd5b506109ac611967565b6040516109b9919061439a565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e491906146cf565b6119f9565b005b3480156109f757600080fd5b50610a00611b11565b604051610a0d9190614581565b60405180910390f35b348015610a2257600080fd5b50610a2b611b17565b604051610a389190614581565b60405180910390f35b348015610a4d57600080fd5b50610a56611b1d565b604051610a639190614581565b60405180910390f35b348015610a7857600080fd5b50610a81611b23565b604051610a8e9190614581565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190614455565b611b29565b604051610acb91906144b0565b60405180910390f35b348015610ae057600080fd5b50610ae9611c14565b604051610af69190614581565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b219190614455565b611c1a565b604051610b3391906144b0565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e91906144cb565b611c38565b005b348015610b7157600080fd5b50610b8c6004803603810190610b8791906144cb565b611d74565b604051610b9991906144b0565b60405180910390f35b348015610bae57600080fd5b50610bb7611d94565b604051610bc491906144b0565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef91906146cf565b611da7565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061470f565b611ecc565b005b348015610c2b57600080fd5b50610c34611fcb565b604051610c4191906144b0565b60405180910390f35b348015610c5657600080fd5b50610c5f611fde565b604051610c6c9190614581565b60405180910390f35b348015610c8157600080fd5b50610c9c6004803603810190610c979190614762565b611fe4565b604051610ca991906144b0565b60405180910390f35b348015610cbe57600080fd5b50610cc7612139565b604051610cd49190614581565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff919061478f565b61213f565b604051610d119190614581565b60405180910390f35b348015610d2657600080fd5b50610d2f6121c6565b604051610d3c9190614581565b60405180910390f35b348015610d5157600080fd5b50610d5a6121cc565b604051610d6791906144b0565b60405180910390f35b348015610d7c57600080fd5b50610d8561226c565b604051610d929190614581565b60405180910390f35b348015610da757600080fd5b50610dc26004803603810190610dbd91906144cb565b612272565b005b348015610dd057600080fd5b50610dd9612369565b604051610de69190614581565b60405180910390f35b348015610dfb57600080fd5b50610e0461236f565b604051610e119190614581565b60405180910390f35b348015610e2657600080fd5b50610e416004803603810190610e3c9190614762565b612375565b604051610e4e91906144b0565b60405180910390f35b606060038054610e66906147fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610e92906147fe565b8015610edf5780601f10610eb457610100808354040283529160200191610edf565b820191906000526020600020905b815481529060010190602001808311610ec257829003601f168201915b5050505050905090565b6000610efd610ef661264d565b8484612655565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750681565b6000600254905090565b610f5c61264d565b73ffffffffffffffffffffffffffffffffffffffff16610f7a611911565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc79061487b565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110b061264d565b73ffffffffffffffffffffffffffffffffffffffff166110ce611911565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061487b565b60405180910390fd5b61112e828261281e565b5050565b600061113f84848461297d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061118a61264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061490d565b60405180910390fd5b61121e8561121661264d565b858403612655565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112f461125f61264d565b84846001600061126d61264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112ef919061495c565b612655565b6001905092915050565b7f000000000000000000000000a0ac91512811d05416f309727580c10c23032da081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f461264d565b73ffffffffffffffffffffffffffffffffffffffff16611412611911565b73ffffffffffffffffffffffffffffffffffffffff1614611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f9061487b565b60405180910390fd5b6114726000613712565b565b61147c61264d565b73ffffffffffffffffffffffffffffffffffffffff1661149a611911565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061487b565b60405180910390fd5b610258831015611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90614a02565b60405180910390fd5b6103e88211158015611548575060008210155b611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90614a94565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115be61264d565b73ffffffffffffffffffffffffffffffffffffffff166115dc611911565b73ffffffffffffffffffffffffffffffffffffffff1614611632576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116299061487b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61165c61264d565b73ffffffffffffffffffffffffffffffffffffffff1661167a611911565b73ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c79061487b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61175f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661177d611911565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca9061487b565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546117fb919061495c565b611805919061495c565b60148190555060646014541115611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890614b00565b60405180910390fd5b505050565b61185e61264d565b73ffffffffffffffffffffffffffffffffffffffff1661187c611911565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c99061487b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b606060048054611976906147fe565b80601f01602080910402602001604051908101604052809291908181526020018280546119a2906147fe565b80156119ef5780601f106119c4576101008083540402835291602001916119ef565b820191906000526020600020905b8154815290600101906020018083116119d257829003601f168201915b5050505050905090565b611a0161264d565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611911565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c9061487b565b60405180910390fd5b7f000000000000000000000000a0ac91512811d05416f309727580c10c23032da073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afa90614b92565b60405180910390fd5b611b0d82826137d8565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b3861264d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90614c24565b60405180910390fd5b611c09611c0061264d565b85858403612655565b600191505092915050565b600e5481565b6000611c2e611c2761264d565b848461297d565b6001905092915050565b611c4061264d565b73ffffffffffffffffffffffffffffffffffffffff16611c5e611911565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab9061487b565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611daf61264d565b73ffffffffffffffffffffffffffffffffffffffff16611dcd611911565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a9061487b565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ec091906144b0565b60405180910390a25050565b611ed461264d565b73ffffffffffffffffffffffffffffffffffffffff16611ef2611911565b73ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f9061487b565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f70919061495c565b611f7a919061495c565b60188190555060646018541115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614b00565b60405180910390fd5b505050565b601360009054906101000a900460ff1681565b60085481565b6000611fee61264d565b73ffffffffffffffffffffffffffffffffffffffff1661200c611911565b73ffffffffffffffffffffffffffffffffffffffff1614612062576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120599061487b565b60405180910390fd5b620186a06001612070610f4a565b61207a9190614c44565b6120849190614cb5565b8210156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614d58565b60405180910390fd5b6103e860056120d3610f4a565b6120dd9190614c44565b6120e79190614cb5565b821115612129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212090614dea565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121d661264d565b73ffffffffffffffffffffffffffffffffffffffff166121f4611911565b73ffffffffffffffffffffffffffffffffffffffff161461224a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122419061487b565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61227a61264d565b73ffffffffffffffffffffffffffffffffffffffff16612298611911565b73ffffffffffffffffffffffffffffffffffffffff16146122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e59061487b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361235d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235490614e7c565b60405180910390fd5b61236681613712565b50565b601a5481565b600a5481565b600061237f61264d565b73ffffffffffffffffffffffffffffffffffffffff1661239d611911565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea9061487b565b60405180910390fd5b600f54601054612403919061495c565b4211612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90614ee8565b60405180910390fd5b6103e8821115612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614f7a565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a0ac91512811d05416f309727580c10c23032da06040518263ffffffff1660e01b81526004016124eb91906145fe565b602060405180830381865afa158015612508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252c9190614faf565b90506000612557612710612549868561387990919063ffffffff16565b61388f90919063ffffffff16565b905060008111156125905761258f7f000000000000000000000000a0ac91512811d05416f309727580c10c23032da061dead836138a5565b5b60007f000000000000000000000000a0ac91512811d05416f309727580c10c23032da090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156125fd57600080fd5b505af1158015612611573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb9061504e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a906150e0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128119190614581565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361288d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128849061514c565b60405180910390fd5b61289960008383613b24565b80600260008282546128ab919061495c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612900919061495c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129659190614581565b60405180910390a361297960008383613b29565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e3906151de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290615270565b60405180910390fd5b60008103612a7457612a6f838360006138a5565b61370d565b601160009054906101000a900460ff161561313757612a91611911565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612aff5750612acf611911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b72575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b8b5750600560149054906101000a900460ff16155b1561313657601160019054906101000a900460ff16612c8557601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c455750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b906152dc565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4d57612ca2611911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d2957507f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d8157507f000000000000000000000000a0ac91512811d05416f309727580c10c23032da073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e4c5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe90615394565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ef05750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f9757600854811115612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190615426565b60405180910390fd5b600a54612f46836113a4565b82612f51919061495c565b1115612f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8990615492565b60405180910390fd5b613135565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303a5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561308957600854811115613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90615524565b60405180910390fd5b613134565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661313357600a546130e6836113a4565b826130f1919061495c565b1115613132576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312990615492565b60405180910390fd5b5b5b5b5b5b6000613142306113a4565b9050600060095482101590508080156131675750601160029054906101000a900460ff165b80156131805750600560149054906101000a900460ff16155b80156131d65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561322c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132825750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132c6576001600560146101000a81548160ff0219169083151502179055506132aa613b2e565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561332c5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133445750600c60009054906101000a900460ff165b801561335f5750600d54600e5461335b919061495c565b4210155b80156133b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133c4576133c2613e15565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061347a5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561348457600090505b600081156136fd57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134e757506000601854115b156135b45761351460646135066018548861387990919063ffffffff16565b61388f90919063ffffffff16565b9050601854601a54826135279190614c44565b6135319190614cb5565b601d6000828254613542919061495c565b92505081905550601854601b548261355a9190614c44565b6135649190614cb5565b601e6000828254613575919061495c565b925050819055506018546019548261358d9190614c44565b6135979190614cb5565b601c60008282546135a8919061495c565b925050819055506136d9565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360f57506000601454115b156136d85761363c606461362e6014548861387990919063ffffffff16565b61388f90919063ffffffff16565b90506014546016548261364f9190614c44565b6136599190614cb5565b601d600082825461366a919061495c565b92505081905550601454601754826136829190614c44565b61368c9190614cb5565b601e600082825461369d919061495c565b92505081905550601454601554826136b59190614c44565b6136bf9190614cb5565b601c60008282546136d0919061495c565b925050819055505b5b60008111156136ee576136ed8730836138a5565b5b80856136fa9190615544565b94505b6137088787876138a5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138879190614c44565b905092915050565b6000818361389d9190614cb5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161390b906151de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397a90615270565b60405180910390fd5b61398e838383613b24565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0b906155ea565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613aa7919061495c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b0b9190614581565b60405180910390a3613b1e848484613b29565b50505050565b505050565b505050565b6000613b39306113a4565b90506000601e54601c54601d54613b50919061495c565b613b5a919061495c565b9050600080831480613b6c5750600082145b15613b7957505050613e13565b6014600954613b889190614c44565b831115613ba1576014600954613b9e9190614c44565b92505b6000600283601d5486613bb49190614c44565b613bbe9190614cb5565b613bc89190614cb5565b90506000613bdf8286613fdb90919063ffffffff16565b90506000479050613bef82613ff1565b6000613c048247613fdb90919063ffffffff16565b90506000613c2f87613c21601c548561387990919063ffffffff16565b61388f90919063ffffffff16565b90506000613c5a88613c4c601e548661387990919063ffffffff16565b61388f90919063ffffffff16565b90506000818385613c6b9190615544565b613c759190615544565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cd59061563b565b60006040518083038185875af1925050503d8060008114613d12576040519150601f19603f3d011682016040523d82523d6000602084013e613d17565b606091505b505080985050600087118015613d2d5750600081115b15613d7a57613d3c878261422e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d7193929190615650565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dc09061563b565b60006040518083038185875af1925050503d8060008114613dfd576040519150601f19603f3d011682016040523d82523d6000602084013e613e02565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a0ac91512811d05416f309727580c10c23032da06040518263ffffffff1660e01b8152600401613e7991906145fe565b602060405180830381865afa158015613e96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eba9190614faf565b90506000613ee7612710613ed9600b548561387990919063ffffffff16565b61388f90919063ffffffff16565b90506000811115613f2057613f1f7f000000000000000000000000a0ac91512811d05416f309727580c10c23032da061dead836138a5565b5b60007f000000000000000000000000a0ac91512811d05416f309727580c10c23032da090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f8d57600080fd5b505af1158015613fa1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b60008183613fe99190615544565b905092915050565b6000600267ffffffffffffffff81111561400e5761400d615687565b5b60405190808252806020026020018201604052801561403c5781602001602082028036833780820191505090505b5090503081600081518110614054576140536156b6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061411d91906156fa565b81600181518110614131576141306156b6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614196307f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750684612655565b7f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141f8959493929190615820565b600060405180830381600087803b15801561421257600080fd5b505af1158015614226573d6000803e3d6000fd5b505050505050565b614259307f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750684612655565b7f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142c09695949392919061587a565b60606040518083038185885af11580156142de573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061430391906158db565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614344578082015181840152602081019050614329565b60008484015250505050565b6000601f19601f8301169050919050565b600061436c8261430a565b6143768185614315565b9350614386818560208601614326565b61438f81614350565b840191505092915050565b600060208201905081810360008301526143b48184614361565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ec826143c1565b9050919050565b6143fc816143e1565b811461440757600080fd5b50565b600081359050614419816143f3565b92915050565b6000819050919050565b6144328161441f565b811461443d57600080fd5b50565b60008135905061444f81614429565b92915050565b6000806040838503121561446c5761446b6143bc565b5b600061447a8582860161440a565b925050602061448b85828601614440565b9150509250929050565b60008115159050919050565b6144aa81614495565b82525050565b60006020820190506144c560008301846144a1565b92915050565b6000602082840312156144e1576144e06143bc565b5b60006144ef8482850161440a565b91505092915050565b6000819050919050565b600061451d614518614513846143c1565b6144f8565b6143c1565b9050919050565b600061452f82614502565b9050919050565b600061454182614524565b9050919050565b61455181614536565b82525050565b600060208201905061456c6000830184614548565b92915050565b61457b8161441f565b82525050565b60006020820190506145966000830184614572565b92915050565b6000806000606084860312156145b5576145b46143bc565b5b60006145c38682870161440a565b93505060206145d48682870161440a565b92505060406145e586828701614440565b9150509250925092565b6145f8816143e1565b82525050565b600060208201905061461360008301846145ef565b92915050565b600060ff82169050919050565b61462f81614619565b82525050565b600060208201905061464a6000830184614626565b92915050565b61465981614495565b811461466457600080fd5b50565b60008135905061467681614650565b92915050565b600080600060608486031215614695576146946143bc565b5b60006146a386828701614440565b93505060206146b486828701614440565b92505060406146c586828701614667565b9150509250925092565b600080604083850312156146e6576146e56143bc565b5b60006146f48582860161440a565b925050602061470585828601614667565b9150509250929050565b600080600060608486031215614728576147276143bc565b5b600061473686828701614440565b935050602061474786828701614440565b925050604061475886828701614440565b9150509250925092565b600060208284031215614778576147776143bc565b5b600061478684828501614440565b91505092915050565b600080604083850312156147a6576147a56143bc565b5b60006147b48582860161440a565b92505060206147c58582860161440a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061481657607f821691505b602082108103614829576148286147cf565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614865602083614315565b91506148708261482f565b602082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148f7602883614315565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149678261441f565b91506149728361441f565b925082820190508082111561498a5761498961492d565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149ec603383614315565b91506149f782614990565b604082019050919050565b60006020820190508181036000830152614a1b816149df565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a7e603083614315565b9150614a8982614a22565b604082019050919050565b60006020820190508181036000830152614aad81614a71565b9050919050565b7f4d757374206b656570206665657320617420313125206f72206c657373000000600082015250565b6000614aea601d83614315565b9150614af582614ab4565b602082019050919050565b60006020820190508181036000830152614b1981614add565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614b7c603983614315565b9150614b8782614b20565b604082019050919050565b60006020820190508181036000830152614bab81614b6f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e602583614315565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b6000614c4f8261441f565b9150614c5a8361441f565b9250828202614c688161441f565b91508282048414831517614c7f57614c7e61492d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614cc08261441f565b9150614ccb8361441f565b925082614cdb57614cda614c86565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d42603583614315565b9150614d4d82614ce6565b604082019050919050565b60006020820190508181036000830152614d7181614d35565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614dd4603483614315565b9150614ddf82614d78565b604082019050919050565b60006020820190508181036000830152614e0381614dc7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e66602683614315565b9150614e7182614e0a565b604082019050919050565b60006020820190508181036000830152614e9581614e59565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614ed2602083614315565b9150614edd82614e9c565b602082019050919050565b60006020820190508181036000830152614f0181614ec5565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f64602a83614315565b9150614f6f82614f08565b604082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b600081519050614fa981614429565b92915050565b600060208284031215614fc557614fc46143bc565b5b6000614fd384828501614f9a565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615038602483614315565b915061504382614fdc565b604082019050919050565b600060208201905081810360008301526150678161502b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150ca602283614315565b91506150d58261506e565b604082019050919050565b600060208201905081810360008301526150f9816150bd565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000615136601f83614315565b915061514182615100565b602082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006151c8602583614315565b91506151d38261516c565b604082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061525a602383614315565b9150615265826151fe565b604082019050919050565b600060208201905081810360008301526152898161524d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006152c6601683614315565b91506152d182615290565b602082019050919050565b600060208201905081810360008301526152f5816152b9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061537e604983614315565b9150615389826152fc565b606082019050919050565b600060208201905081810360008301526153ad81615371565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615410603583614315565b915061541b826153b4565b604082019050919050565b6000602082019050818103600083015261543f81615403565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061547c601383614315565b915061548782615446565b602082019050919050565b600060208201905081810360008301526154ab8161546f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061550e603683614315565b9150615519826154b2565b604082019050919050565b6000602082019050818103600083015261553d81615501565b9050919050565b600061554f8261441f565b915061555a8361441f565b92508282039050818111156155725761557161492d565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006155d4602683614315565b91506155df82615578565b604082019050919050565b60006020820190508181036000830152615603816155c7565b9050919050565b600081905092915050565b50565b600061562560008361560a565b915061563082615615565b600082019050919050565b600061564682615618565b9150819050919050565b60006060820190506156656000830186614572565b6156726020830185614572565b61567f6040830184614572565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506156f4816143f3565b92915050565b6000602082840312156157105761570f6143bc565b5b600061571e848285016156e5565b91505092915050565b6000819050919050565b600061574c61574761574284615727565b6144f8565b61441f565b9050919050565b61575c81615731565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615797816143e1565b82525050565b60006157a9838361578e565b60208301905092915050565b6000602082019050919050565b60006157cd82615762565b6157d7818561576d565b93506157e28361577e565b8060005b838110156158135781516157fa888261579d565b9750615805836157b5565b9250506001810190506157e6565b5085935050505092915050565b600060a0820190506158356000830188614572565b6158426020830187615753565b818103604083015261585481866157c2565b905061586360608301856145ef565b6158706080830184614572565b9695505050505050565b600060c08201905061588f60008301896145ef565b61589c6020830188614572565b6158a96040830187615753565b6158b66060830186615753565b6158c360808301856145ef565b6158d060a0830184614572565b979650505050505050565b6000806000606084860312156158f4576158f36143bc565b5b600061590286828701614f9a565b935050602061591386828701614f9a565b925050604061592486828701614f9a565b915050925092509256fea264697066735822122042b9f619f8e0cc7fcbeec4be2b3bac5e767705713d2f56a38ecddcbfd96a00c364736f6c63430008130033

Deployed Bytecode Sourcemap

29457:18783:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6876:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9043:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31083:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29532:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7996:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37472:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30097:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29912:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30867:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30827;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47083:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9694:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30007:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29968:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7838:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10595:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29590:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30195:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37637:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30682:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30275:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8167:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1896:103;;;;;;;;;;;;;:::i;:::-;;45726:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34627:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35525:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29727:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30575;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35702:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34420:155;;;;;;;;;;;;;:::i;:::-;;1245:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29764:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30717:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7095:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36725:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30649:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30151:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30907:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30793:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11313:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30059:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8507:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37233:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31304:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30235:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36535:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36114:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30493:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29797:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35014:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30541:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8745:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29839:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34809:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30612:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30755:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29879:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47181:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6876:100;6930:13;6963:5;6956:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6876:100;:::o;9043:169::-;9126:4;9143:39;9152:12;:10;:12::i;:::-;9166:7;9175:6;9143:8;:39::i;:::-;9200:4;9193:11;;9043:169;;;;:::o;31083:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29532:51::-;;;:::o;7996:108::-;8057:7;8084:12;;8077:19;;7996:108;:::o;37472:157::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37579:9:::1;;;;;;;;;;;37551:38;;37568:9;37551:38;;;;;;;;;;;;37612:9;37600;;:21;;;;;;;;;;;;;;;;;;37472:157:::0;:::o;30097:47::-;;;;:::o;29912:36::-;;;;:::o;30867:33::-;;;;:::o;30827:::-;;;;:::o;47083:88::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47150:17:::1;47156:2;47160:6;47150:5;:17::i;:::-;47083:88:::0;;:::o;9694:492::-;9834:4;9851:36;9861:6;9869:9;9880:6;9851:9;:36::i;:::-;9900:24;9927:11;:19;9939:6;9927:19;;;;;;;;;;;;;;;:33;9947:12;:10;:12::i;:::-;9927:33;;;;;;;;;;;;;;;;9900:60;;9999:6;9979:16;:26;;9971:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10086:57;10095:6;10103:12;:10;:12::i;:::-;10136:6;10117:16;:25;10086:8;:57::i;:::-;10174:4;10167:11;;;9694:492;;;;;:::o;29635:53::-;29681:6;29635:53;:::o;30007:45::-;;;;:::o;29968:32::-;;;;;;;;;;;;;:::o;7838:93::-;7896:5;7921:2;7914:9;;7838:93;:::o;10595:215::-;10683:4;10700:80;10709:12;:10;:12::i;:::-;10723:7;10769:10;10732:11;:25;10744:12;:10;:12::i;:::-;10732:25;;;;;;;;;;;;;;;:34;10758:7;10732:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10700:8;:80::i;:::-;10798:4;10791:11;;10595:215;;;;:::o;29590:38::-;;;:::o;30195:33::-;;;;;;;;;;;;;:::o;37637:126::-;37703:4;37727:19;:28;37747:7;37727:28;;;;;;;;;;;;;;;;;;;;;;;;;37720:35;;37637:126;;;:::o;30682:28::-;;;;:::o;30275:31::-;;;;;;;;;;;;;:::o;8167:127::-;8241:7;8268:9;:18;8278:7;8268:18;;;;;;;;;;;;;;;;8261:25;;8167:127;;;:::o;1896:103::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1961:30:::1;1988:1;1961:18;:30::i;:::-;1896:103::o:0;45726:555::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45928:3:::1;45905:19;:26;;45883:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;46055:4;46043:8;:16;;:33;;;;;46075:1;46063:8;:13;;46043:33;46021:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;46181:19;46163:15;:37;;;;46230:8;46211:16;:27;;;;46265:8;46249:13;;:24;;;;;;;;;;;;;;;;;;45726:555:::0;;;:::o;34627:121::-;34679:4;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:5:::1;34696:14;;:22;;;;;;;;;;;;;;;;;;34736:4;34729:11;;34627:121:::0;:::o;35525:167::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35680:4:::1;35638:31;:39;35670:6;35638:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35525:167:::0;;:::o;29727:30::-;;;;;;;;;;;;;:::o;30575:::-;;;;:::o;35702:404::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35870:13:::1;35852:15;:31;;;;35912:13;35894:15;:31;;;;35948:7;35936:9;:19;;;;36017:9;;35999:15;;35981;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35966:12;:60;;;;36061:3;36045:12;;:19;;36037:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35702:404:::0;;;:::o;34420:155::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34491:4:::1;34475:13;;:20;;;;;;;;;;;;;;;;;;34520:4;34506:11;;:18;;;;;;;;;;;;;;;;;;34552:15;34535:14;:32;;;;34420:155::o:0;1245:87::-;1291:7;1318:6;;;;;;;;;;;1311:13;;1245:87;:::o;29764:24::-;;;;;;;;;;;;;:::o;30717:31::-;;;;:::o;7095:104::-;7151:13;7184:7;7177:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7095:104;:::o;36725:304::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36869:13:::1;36861:21;;:4;:21;;::::0;36839:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36980:41;37009:4;37015:5;36980:28;:41::i;:::-;36725:304:::0;;:::o;30649:24::-;;;;:::o;30151:35::-;;;;:::o;30907:27::-;;;;:::o;30793:25::-;;;;:::o;11313:413::-;11406:4;11423:24;11450:11;:25;11462:12;:10;:12::i;:::-;11450:25;;;;;;;;;;;;;;;:34;11476:7;11450:34;;;;;;;;;;;;;;;;11423:61;;11523:15;11503:16;:35;;11495:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11616:67;11625:12;:10;:12::i;:::-;11639:7;11667:15;11648:16;:34;11616:8;:67::i;:::-;11714:4;11707:11;;;11313:413;;;;:::o;30059:29::-;;;;:::o;8507:175::-;8593:4;8610:42;8620:12;:10;:12::i;:::-;8634:9;8645:6;8610:9;:42::i;:::-;8670:4;8663:11;;8507:175;;;;:::o;37233:231::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37393:15:::1;;;;;;;;;;;37350:59;;37373:18;37350:59;;;;;;;;;;;;37438:18;37420:15;;:36;;;;;;;;;;;;;;;;;;37233:231:::0;:::o;31304:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;30235:33::-;;;;;;;;;;;;;:::o;36535:182::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36651:8:::1;36620:19;:28;36640:7;36620:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36691:7;36675:34;;;36700:8;36675:34;;;;;;:::i;:::-;;;;;;;;36535:182:::0;;:::o;36114:413::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36284:13:::1;36265:16;:32;;;;36327:13;36308:16;:32;;;;36364:7;36351:10;:20;;;;36436:10;;36417:16;;36398;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36382:13;:64;;;;36482:3;36465:13;;:20;;36457:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36114:413:::0;;;:::o;30493:39::-;;;;;;;;;;;;;:::o;29797:35::-;;;;:::o;35014:497::-;35122:4;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35201:6:::1;35196:1;35180:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35179:28;;;;:::i;:::-;35166:9;:41;;35144:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;35356:4;35351:1;35335:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35334:26;;;;:::i;:::-;35321:9;:39;;35299:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;35472:9;35451:18;:30;;;;35499:4;35492:11;;35014:497:::0;;;:::o;30541:27::-;;;;:::o;8745:151::-;8834:7;8861:11;:18;8873:5;8861:18;;;;;;;;;;;;;;;:27;8880:7;8861:27;;;;;;;;;;;;;;;;8854:34;;8745:151;;;;:::o;29839:33::-;;;;:::o;34809:135::-;34869:4;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34909:5:::1;34886:20;;:28;;;;;;;;;;;;;;;;;;34932:4;34925:11;;34809:135:::0;:::o;30612:30::-;;;;:::o;2154:201::-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2263:1:::1;2243:22;;:8;:22;;::::0;2235:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2319:28;2338:8;2319:18;:28::i;:::-;2154:201:::0;:::o;30755:31::-;;;;:::o;29879:24::-;;;;:::o;47181:1056::-;47292:4;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47377:19:::1;;47354:20;;:42;;;;:::i;:::-;47336:15;:60;47314:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;47486:4;47475:7;:15;;47467:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47571:15;47548:20;:38;;;;47641:28;47672:4;:14;;;47687:13;47672:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47641:60;;47751:20;47774:44;47812:5;47774:33;47799:7;47774:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;47751:67;;47938:1;47923:12;:16;47919:110;;;47956:61;47972:13;47995:6;48004:12;47956:15;:61::i;:::-;47919:110;48104:19;48141:13;48104:51;;48166:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48193:14;;;;;;;;;;48225:4;48218:11;;;;;47181:1056:::0;;;:::o;423:98::-;476:7;503:10;496:17;;423:98;:::o;14997:380::-;15150:1;15133:19;;:5;:19;;;15125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15231:1;15212:21;;:7;:21;;;15204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15315:6;15285:11;:18;15297:5;15285:18;;;;;;;;;;;;;;;:27;15304:7;15285:27;;;;;;;;;;;;;;;:36;;;;15353:7;15337:32;;15346:5;15337:32;;;15362:6;15337:32;;;;;;:::i;:::-;;;;;;;;14997:380;;;:::o;13236:399::-;13339:1;13320:21;;:7;:21;;;13312:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13390:49;13419:1;13423:7;13432:6;13390:20;:49::i;:::-;13468:6;13452:12;;:22;;;;;;;:::i;:::-;;;;;;;;13507:6;13485:9;:18;13495:7;13485:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13550:7;13529:37;;13546:1;13529:37;;;13559:6;13529:37;;;;;;:::i;:::-;;;;;;;;13579:48;13607:1;13611:7;13620:6;13579:19;:48::i;:::-;13236:399;;:::o;37821:5011::-;37969:1;37953:18;;:4;:18;;;37945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38046:1;38032:16;;:2;:16;;;38024:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38115:1;38105:6;:11;38101:93;;38133:28;38149:4;38155:2;38159:1;38133:15;:28::i;:::-;38176:7;;38101:93;38210:14;;;;;;;;;;;38206:2487;;;38271:7;:5;:7::i;:::-;38263:15;;:4;:15;;;;:49;;;;;38305:7;:5;:7::i;:::-;38299:13;;:2;:13;;;;38263:49;:86;;;;;38347:1;38333:16;;:2;:16;;;;38263:86;:128;;;;;38384:6;38370:21;;:2;:21;;;;38263:128;:158;;;;;38413:8;;;;;;;;;;;38412:9;38263:158;38241:2441;;;38461:13;;;;;;;;;;;38456:223;;38533:19;:25;38553:4;38533:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38562:19;:23;38582:2;38562:23;;;;;;;;;;;;;;;;;;;;;;;;;38533:52;38499:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;38456:223;38835:20;;;;;;;;;;;38831:641;;;38916:7;:5;:7::i;:::-;38910:13;;:2;:13;;;;:72;;;;;38966:15;38952:30;;:2;:30;;;;38910:72;:129;;;;;39025:13;39011:28;;:2;:28;;;;38910:129;38880:573;;;39203:12;39128:28;:39;39157:9;39128:39;;;;;;;;;;;;;;;;:87;39090:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;39417:12;39375:28;:39;39404:9;39375:39;;;;;;;;;;;;;;;:54;;;;38880:573;38831:641;39546:25;:31;39572:4;39546:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39603:31;:35;39635:2;39603:35;;;;;;;;;;;;;;;;;;;;;;;;;39602:36;39546:92;39520:1147;;;39725:20;;39715:6;:30;;39681:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39933:9;;39916:13;39926:2;39916:9;:13::i;:::-;39907:6;:22;;;;:::i;:::-;:35;;39873:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39520:1147;;;40111:25;:29;40137:2;40111:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40166:31;:37;40198:4;40166:37;;;;;;;;;;;;;;;;;;;;;;;;;40165:38;40111:92;40085:582;;;40290:20;;40280:6;:30;;40246:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40085:582;;;40447:31;:35;40479:2;40447:35;;;;;;;;;;;;;;;;;;;;;;;;;40442:225;;40567:9;;40550:13;40560:2;40550:9;:13::i;:::-;40541:6;:22;;;;:::i;:::-;:35;;40507:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40442:225;40085:582;39520:1147;38241:2441;38206:2487;40705:28;40736:24;40754:4;40736:9;:24::i;:::-;40705:55;;40773:12;40812:18;;40788:20;:42;;40773:57;;40861:7;:35;;;;;40885:11;;;;;;;;;;;40861:35;:61;;;;;40914:8;;;;;;;;;;;40913:9;40861:61;:110;;;;;40940:25;:31;40966:4;40940:31;;;;;;;;;;;;;;;;;;;;;;;;;40939:32;40861:110;:153;;;;;40989:19;:25;41009:4;40989:25;;;;;;;;;;;;;;;;;;;;;;;;;40988:26;40861:153;:194;;;;;41032:19;:23;41052:2;41032:23;;;;;;;;;;;;;;;;;;;;;;;;;41031:24;40861:194;40843:326;;;41093:4;41082:8;;:15;;;;;;;;;;;;;;;;;;41114:10;:8;:10::i;:::-;41152:5;41141:8;;:16;;;;;;;;;;;;;;;;;;40843:326;41200:8;;;;;;;;;;;41199:9;:55;;;;;41225:25;:29;41251:2;41225:29;;;;;;;;;;;;;;;;;;;;;;;;;41199:55;:85;;;;;41271:13;;;;;;;;;;;41199:85;:153;;;;;41337:15;;41320:14;;:32;;;;:::i;:::-;41301:15;:51;;41199:153;:196;;;;;41370:19;:25;41390:4;41370:25;;;;;;;;;;;;;;;;;;;;;;;;;41369:26;41199:196;41181:282;;;41422:29;:27;:29::i;:::-;;41181:282;41475:12;41491:8;;;;;;;;;;;41490:9;41475:24;;41601:19;:25;41621:4;41601:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41630:19;:23;41650:2;41630:23;;;;;;;;;;;;;;;;;;;;;;;;;41601:52;41597:100;;;41680:5;41670:15;;41597:100;41709:12;41814:7;41810:969;;;41866:25;:29;41892:2;41866:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41915:1;41899:13;;:17;41866:50;41862:768;;;41944:34;41974:3;41944:25;41955:13;;41944:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41937:41;;42047:13;;42027:16;;42020:4;:23;;;;:::i;:::-;42019:41;;;;:::i;:::-;41997:18;;:63;;;;;;;:::i;:::-;;;;;;;;42117:13;;42103:10;;42096:4;:17;;;;:::i;:::-;42095:35;;;;:::i;:::-;42079:12;;:51;;;;;;;:::i;:::-;;;;;;;;42199:13;;42179:16;;42172:4;:23;;;;:::i;:::-;42171:41;;;;:::i;:::-;42149:18;;:63;;;;;;;:::i;:::-;;;;;;;;41862:768;;;42274:25;:31;42300:4;42274:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42324:1;42309:12;;:16;42274:51;42270:360;;;42353:33;42382:3;42353:24;42364:12;;42353:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42346:40;;42454:12;;42435:15;;42428:4;:22;;;;:::i;:::-;42427:39;;;;:::i;:::-;42405:18;;:61;;;;;;;:::i;:::-;;;;;;;;42522:12;;42509:9;;42502:4;:16;;;;:::i;:::-;42501:33;;;;:::i;:::-;42485:12;;:49;;;;;;;:::i;:::-;;;;;;;;42602:12;;42583:15;;42576:4;:22;;;;:::i;:::-;42575:39;;;;:::i;:::-;42553:18;;:61;;;;;;;:::i;:::-;;;;;;;;42270:360;41862:768;42657:1;42650:4;:8;42646:91;;;42679:42;42695:4;42709;42716;42679:15;:42::i;:::-;42646:91;42763:4;42753:14;;;;;:::i;:::-;;;41810:969;42791:33;42807:4;42813:2;42817:6;42791:15;:33::i;:::-;37934:4898;;;;37821:5011;;;;:::o;2515:191::-;2589:16;2608:6;;;;;;;;;;;2589:25;;2634:8;2625:6;;:17;;;;;;;;;;;;;;;;;;2689:8;2658:40;;2679:8;2658:40;;;;;;;;;;;;2578:128;2515:191;:::o;37037:188::-;37154:5;37120:25;:31;37146:4;37120:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37211:5;37177:40;;37205:4;37177:40;;;;;;;;;;;;37037:188;;:::o;20450:98::-;20508:7;20539:1;20535;:5;;;;:::i;:::-;20528:12;;20450:98;;;;:::o;20849:::-;20907:7;20938:1;20934;:5;;;;:::i;:::-;20927:12;;20849:98;;;;:::o;12216:733::-;12374:1;12356:20;;:6;:20;;;12348:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12458:1;12437:23;;:9;:23;;;12429:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12513:47;12534:6;12542:9;12553:6;12513:20;:47::i;:::-;12573:21;12597:9;:17;12607:6;12597:17;;;;;;;;;;;;;;;;12573:41;;12650:6;12633:13;:23;;12625:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12771:6;12755:13;:22;12735:9;:17;12745:6;12735:17;;;;;;;;;;;;;;;:42;;;;12823:6;12799:9;:20;12809:9;12799:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12864:9;12847:35;;12856:6;12847:35;;;12875:6;12847:35;;;;;;:::i;:::-;;;;;;;;12895:46;12915:6;12923:9;12934:6;12895:19;:46::i;:::-;12337:612;12216:733;;;:::o;15977:125::-;;;;:::o;16706:124::-;;;;:::o;43962:1756::-;44001:23;44027:24;44045:4;44027:9;:24::i;:::-;44001:50;;44062:25;44158:12;;44124:18;;44090;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44062:108;;44181:12;44229:1;44210:15;:20;:46;;;;44255:1;44234:17;:22;44210:46;44206:85;;;44273:7;;;;;44206:85;44346:2;44325:18;;:23;;;;:::i;:::-;44307:15;:41;44303:115;;;44404:2;44383:18;;:23;;;;:::i;:::-;44365:41;;44303:115;44479:23;44592:1;44559:17;44524:18;;44506:15;:36;;;;:::i;:::-;44505:71;;;;:::i;:::-;:88;;;;:::i;:::-;44479:114;;44604:26;44633:36;44653:15;44633;:19;;:36;;;;:::i;:::-;44604:65;;44682:25;44710:21;44682:49;;44744:36;44761:18;44744:16;:36::i;:::-;44793:18;44814:44;44840:17;44814:21;:25;;:44;;;;:::i;:::-;44793:65;;44871:23;44897:81;44950:17;44897:34;44912:18;;44897:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;44871:107;;44989:17;45009:51;45042:17;45009:28;45024:12;;45009:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44989:71;;45073:23;45130:9;45112:15;45099:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;45073:66;;45173:1;45152:18;:22;;;;45206:1;45185:18;:22;;;;45233:1;45218:12;:16;;;;45269:9;;;;;;;;;;;45261:23;;45292:9;45261:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45247:59;;;;;45341:1;45323:15;:19;:42;;;;;45364:1;45346:15;:19;45323:42;45319:278;;;45382:46;45395:15;45412;45382:12;:46::i;:::-;45448:137;45481:18;45518:15;45552:18;;45448:137;;;;;;;;:::i;:::-;;;;;;;;45319:278;45631:15;;;;;;;;;;;45623:29;;45674:21;45623:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45609:101;;;;;43990:1728;;;;;;;;;;43962:1756;:::o;46289:788::-;46346:4;46380:15;46363:14;:32;;;;46450:28;46481:4;:14;;;46496:13;46481:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46450:60;;46560:20;46583:77;46644:5;46583:42;46608:16;;46583:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;46560:100;;46780:1;46765:12;:16;46761:110;;;46798:61;46814:13;46837:6;46846:12;46798:15;:61::i;:::-;46761:110;46946:19;46983:13;46946:51;;47008:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47035:12;;;;;;;;;;47065:4;47058:11;;;;;46289:788;:::o;20093:98::-;20151:7;20182:1;20178;:5;;;;:::i;:::-;20171:12;;20093:98;;;;:::o;42840:589::-;42966:21;43004:1;42990:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42966:40;;43035:4;43017;43022:1;43017:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;43061:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43051:4;43056:1;43051:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;43096:62;43113:4;43128:15;43146:11;43096:8;:62::i;:::-;43197:15;:66;;;43278:11;43304:1;43348:4;43375;43395:15;43197:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42895:534;42840:589;:::o;43437:517::-;43585:62;43602:4;43617:15;43635:11;43585:8;:62::i;:::-;43690:15;:31;;;43729:9;43762:4;43782:11;43808:1;43851;29681:6;43920:15;43690:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43437: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:118::-;5823:24;5841:5;5823:24;:::i;:::-;5818:3;5811:37;5736:118;;:::o;5860:222::-;5953:4;5991:2;5980:9;5976:18;5968:26;;6004:71;6072:1;6061:9;6057:17;6048:6;6004:71;:::i;:::-;5860:222;;;;:::o;6088:86::-;6123:7;6163:4;6156:5;6152:16;6141:27;;6088:86;;;:::o;6180:112::-;6263:22;6279:5;6263:22;:::i;:::-;6258:3;6251:35;6180:112;;:::o;6298:214::-;6387:4;6425:2;6414:9;6410:18;6402:26;;6438:67;6502:1;6491:9;6487:17;6478:6;6438:67;:::i;:::-;6298:214;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:613::-;6853:6;6861;6869;6918:2;6906:9;6897:7;6893:23;6889:32;6886:119;;;6924:79;;:::i;:::-;6886:119;7044:1;7069:53;7114:7;7105:6;7094:9;7090:22;7069:53;:::i;:::-;7059:63;;7015:117;7171:2;7197:53;7242:7;7233:6;7222:9;7218:22;7197:53;:::i;:::-;7187:63;;7142:118;7299:2;7325:50;7367:7;7358:6;7347:9;7343:22;7325:50;:::i;:::-;7315:60;;7270:115;6779:613;;;;;:::o;7398:468::-;7463:6;7471;7520:2;7508:9;7499:7;7495:23;7491:32;7488:119;;;7526:79;;:::i;:::-;7488:119;7646:1;7671:53;7716:7;7707:6;7696:9;7692:22;7671:53;:::i;:::-;7661:63;;7617:117;7773:2;7799:50;7841:7;7832:6;7821:9;7817:22;7799:50;:::i;:::-;7789:60;;7744:115;7398:468;;;;;:::o;7872:619::-;7949:6;7957;7965;8014:2;8002:9;7993:7;7989:23;7985:32;7982:119;;;8020:79;;:::i;:::-;7982:119;8140:1;8165:53;8210:7;8201:6;8190:9;8186:22;8165:53;:::i;:::-;8155:63;;8111:117;8267:2;8293:53;8338:7;8329:6;8318:9;8314:22;8293:53;:::i;:::-;8283:63;;8238:118;8395:2;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8366:118;7872:619;;;;;:::o;8497:329::-;8556:6;8605:2;8593:9;8584:7;8580:23;8576:32;8573:119;;;8611:79;;:::i;:::-;8573:119;8731:1;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8702:117;8497:329;;;;:::o;8832:474::-;8900:6;8908;8957:2;8945:9;8936:7;8932:23;8928:32;8925:119;;;8963:79;;:::i;:::-;8925:119;9083:1;9108:53;9153:7;9144:6;9133:9;9129:22;9108:53;:::i;:::-;9098:63;;9054:117;9210:2;9236:53;9281:7;9272:6;9261:9;9257:22;9236:53;:::i;:::-;9226:63;;9181:118;8832:474;;;;;:::o;9312:180::-;9360:77;9357:1;9350:88;9457:4;9454:1;9447:15;9481:4;9478:1;9471:15;9498:320;9542:6;9579:1;9573:4;9569:12;9559:22;;9626:1;9620:4;9616:12;9647:18;9637:81;;9703:4;9695:6;9691:17;9681:27;;9637:81;9765:2;9757:6;9754:14;9734:18;9731:38;9728:84;;9784:18;;:::i;:::-;9728:84;9549:269;9498:320;;;:::o;9824:182::-;9964:34;9960:1;9952:6;9948:14;9941:58;9824:182;:::o;10012:366::-;10154:3;10175:67;10239:2;10234:3;10175:67;:::i;:::-;10168:74;;10251:93;10340:3;10251:93;:::i;:::-;10369:2;10364:3;10360:12;10353:19;;10012:366;;;:::o;10384:419::-;10550:4;10588:2;10577:9;10573:18;10565:26;;10637:9;10631:4;10627:20;10623:1;10612:9;10608:17;10601:47;10665:131;10791:4;10665:131;:::i;:::-;10657:139;;10384:419;;;:::o;10809:227::-;10949:34;10945:1;10937:6;10933:14;10926:58;11018:10;11013:2;11005:6;11001:15;10994:35;10809:227;:::o;11042:366::-;11184:3;11205:67;11269:2;11264:3;11205:67;:::i;:::-;11198:74;;11281:93;11370:3;11281:93;:::i;:::-;11399:2;11394:3;11390:12;11383:19;;11042:366;;;:::o;11414:419::-;11580:4;11618:2;11607:9;11603:18;11595:26;;11667:9;11661:4;11657:20;11653:1;11642:9;11638:17;11631:47;11695:131;11821:4;11695:131;:::i;:::-;11687:139;;11414:419;;;:::o;11839:180::-;11887:77;11884:1;11877:88;11984:4;11981:1;11974:15;12008:4;12005:1;11998:15;12025:191;12065:3;12084:20;12102:1;12084:20;:::i;:::-;12079:25;;12118:20;12136:1;12118:20;:::i;:::-;12113:25;;12161:1;12158;12154:9;12147:16;;12182:3;12179:1;12176:10;12173:36;;;12189:18;;:::i;:::-;12173:36;12025:191;;;;:::o;12222:238::-;12362:34;12358:1;12350:6;12346:14;12339:58;12431:21;12426:2;12418:6;12414:15;12407:46;12222:238;:::o;12466:366::-;12608:3;12629:67;12693:2;12688:3;12629:67;:::i;:::-;12622:74;;12705:93;12794:3;12705:93;:::i;:::-;12823:2;12818:3;12814:12;12807:19;;12466:366;;;:::o;12838:419::-;13004:4;13042:2;13031:9;13027:18;13019:26;;13091:9;13085:4;13081:20;13077:1;13066:9;13062:17;13055:47;13119:131;13245:4;13119:131;:::i;:::-;13111:139;;12838:419;;;:::o;13263:235::-;13403:34;13399:1;13391:6;13387:14;13380:58;13472:18;13467:2;13459:6;13455:15;13448:43;13263:235;:::o;13504:366::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:419::-;14042:4;14080:2;14069:9;14065:18;14057:26;;14129:9;14123:4;14119:20;14115:1;14104:9;14100:17;14093:47;14157:131;14283:4;14157:131;:::i;:::-;14149:139;;13876:419;;;:::o;14301:179::-;14441:31;14437:1;14429:6;14425:14;14418:55;14301:179;:::o;14486:366::-;14628:3;14649:67;14713:2;14708:3;14649:67;:::i;:::-;14642:74;;14725:93;14814:3;14725:93;:::i;:::-;14843:2;14838:3;14834:12;14827:19;;14486:366;;;:::o;14858:419::-;15024:4;15062:2;15051:9;15047:18;15039:26;;15111:9;15105:4;15101:20;15097:1;15086:9;15082:17;15075:47;15139:131;15265:4;15139:131;:::i;:::-;15131:139;;14858:419;;;:::o;15283:244::-;15423:34;15419:1;15411:6;15407:14;15400:58;15492:27;15487:2;15479:6;15475:15;15468:52;15283:244;:::o;15533:366::-;15675:3;15696:67;15760:2;15755:3;15696:67;:::i;:::-;15689:74;;15772:93;15861:3;15772:93;:::i;:::-;15890:2;15885:3;15881:12;15874:19;;15533:366;;;:::o;15905:419::-;16071:4;16109:2;16098:9;16094:18;16086:26;;16158:9;16152:4;16148:20;16144:1;16133:9;16129:17;16122:47;16186:131;16312:4;16186:131;:::i;:::-;16178:139;;15905:419;;;:::o;16330:224::-;16470:34;16466:1;16458:6;16454:14;16447:58;16539:7;16534:2;16526:6;16522:15;16515:32;16330:224;:::o;16560:366::-;16702:3;16723:67;16787:2;16782:3;16723:67;:::i;:::-;16716:74;;16799:93;16888:3;16799:93;:::i;:::-;16917:2;16912:3;16908:12;16901:19;;16560:366;;;:::o;16932:419::-;17098:4;17136:2;17125:9;17121:18;17113:26;;17185:9;17179:4;17175:20;17171:1;17160:9;17156:17;17149:47;17213:131;17339:4;17213:131;:::i;:::-;17205:139;;16932:419;;;:::o;17357:410::-;17397:7;17420:20;17438:1;17420:20;:::i;:::-;17415:25;;17454:20;17472:1;17454:20;:::i;:::-;17449:25;;17509:1;17506;17502:9;17531:30;17549:11;17531:30;:::i;:::-;17520:41;;17710:1;17701:7;17697:15;17694:1;17691:22;17671:1;17664:9;17644:83;17621:139;;17740:18;;:::i;:::-;17621:139;17405:362;17357:410;;;;:::o;17773:180::-;17821:77;17818:1;17811:88;17918:4;17915:1;17908:15;17942:4;17939:1;17932:15;17959:185;17999:1;18016:20;18034:1;18016:20;:::i;:::-;18011:25;;18050:20;18068:1;18050:20;:::i;:::-;18045:25;;18089:1;18079:35;;18094:18;;:::i;:::-;18079:35;18136:1;18133;18129:9;18124:14;;17959:185;;;;:::o;18150:240::-;18290:34;18286:1;18278:6;18274:14;18267:58;18359:23;18354:2;18346:6;18342:15;18335:48;18150:240;:::o;18396:366::-;18538:3;18559:67;18623:2;18618:3;18559:67;:::i;:::-;18552:74;;18635:93;18724:3;18635:93;:::i;:::-;18753:2;18748:3;18744:12;18737:19;;18396:366;;;:::o;18768:419::-;18934:4;18972:2;18961:9;18957:18;18949:26;;19021:9;19015:4;19011:20;19007:1;18996:9;18992:17;18985:47;19049:131;19175:4;19049:131;:::i;:::-;19041:139;;18768:419;;;:::o;19193:239::-;19333:34;19329:1;19321:6;19317:14;19310:58;19402:22;19397:2;19389:6;19385:15;19378:47;19193:239;:::o;19438:366::-;19580:3;19601:67;19665:2;19660:3;19601:67;:::i;:::-;19594:74;;19677:93;19766:3;19677:93;:::i;:::-;19795:2;19790:3;19786:12;19779:19;;19438:366;;;:::o;19810:419::-;19976:4;20014:2;20003:9;19999:18;19991:26;;20063:9;20057:4;20053:20;20049:1;20038:9;20034:17;20027:47;20091:131;20217:4;20091:131;:::i;:::-;20083:139;;19810:419;;;:::o;20235:225::-;20375:34;20371:1;20363:6;20359:14;20352:58;20444:8;20439:2;20431:6;20427:15;20420:33;20235:225;:::o;20466:366::-;20608:3;20629:67;20693:2;20688:3;20629:67;:::i;:::-;20622:74;;20705:93;20794:3;20705:93;:::i;:::-;20823:2;20818:3;20814:12;20807:19;;20466:366;;;:::o;20838:419::-;21004:4;21042:2;21031:9;21027:18;21019:26;;21091:9;21085:4;21081:20;21077:1;21066:9;21062:17;21055:47;21119:131;21245:4;21119:131;:::i;:::-;21111:139;;20838:419;;;:::o;21263:182::-;21403:34;21399:1;21391:6;21387:14;21380:58;21263:182;:::o;21451:366::-;21593:3;21614:67;21678:2;21673:3;21614:67;:::i;:::-;21607:74;;21690:93;21779:3;21690:93;:::i;:::-;21808:2;21803:3;21799:12;21792:19;;21451:366;;;:::o;21823:419::-;21989:4;22027:2;22016:9;22012:18;22004:26;;22076:9;22070:4;22066:20;22062:1;22051:9;22047:17;22040:47;22104:131;22230:4;22104:131;:::i;:::-;22096:139;;21823:419;;;:::o;22248:229::-;22388:34;22384:1;22376:6;22372:14;22365:58;22457:12;22452:2;22444:6;22440:15;22433:37;22248:229;:::o;22483:366::-;22625:3;22646:67;22710:2;22705:3;22646:67;:::i;:::-;22639:74;;22722:93;22811:3;22722:93;:::i;:::-;22840:2;22835:3;22831:12;22824:19;;22483:366;;;:::o;22855:419::-;23021:4;23059:2;23048:9;23044:18;23036:26;;23108:9;23102:4;23098:20;23094:1;23083:9;23079:17;23072:47;23136:131;23262:4;23136:131;:::i;:::-;23128:139;;22855:419;;;:::o;23280:143::-;23337:5;23368:6;23362:13;23353:22;;23384:33;23411:5;23384:33;:::i;:::-;23280:143;;;;:::o;23429:351::-;23499:6;23548:2;23536:9;23527:7;23523:23;23519:32;23516:119;;;23554:79;;:::i;:::-;23516:119;23674:1;23699:64;23755:7;23746:6;23735:9;23731:22;23699:64;:::i;:::-;23689:74;;23645:128;23429:351;;;;:::o;23786:223::-;23926:34;23922:1;23914:6;23910:14;23903:58;23995:6;23990:2;23982:6;23978:15;23971:31;23786:223;:::o;24015:366::-;24157:3;24178:67;24242:2;24237:3;24178:67;:::i;:::-;24171:74;;24254:93;24343:3;24254:93;:::i;:::-;24372:2;24367:3;24363:12;24356:19;;24015:366;;;:::o;24387:419::-;24553:4;24591:2;24580:9;24576:18;24568:26;;24640:9;24634:4;24630:20;24626:1;24615:9;24611:17;24604:47;24668:131;24794:4;24668:131;:::i;:::-;24660:139;;24387:419;;;:::o;24812:221::-;24952:34;24948:1;24940:6;24936:14;24929:58;25021:4;25016:2;25008:6;25004:15;24997:29;24812:221;:::o;25039:366::-;25181:3;25202:67;25266:2;25261:3;25202:67;:::i;:::-;25195:74;;25278:93;25367:3;25278:93;:::i;:::-;25396:2;25391:3;25387:12;25380:19;;25039:366;;;:::o;25411:419::-;25577:4;25615:2;25604:9;25600:18;25592:26;;25664:9;25658:4;25654:20;25650:1;25639:9;25635:17;25628:47;25692:131;25818:4;25692:131;:::i;:::-;25684:139;;25411:419;;;:::o;25836:181::-;25976:33;25972:1;25964:6;25960:14;25953:57;25836:181;:::o;26023:366::-;26165:3;26186:67;26250:2;26245:3;26186:67;:::i;:::-;26179:74;;26262:93;26351:3;26262:93;:::i;:::-;26380:2;26375:3;26371:12;26364:19;;26023:366;;;:::o;26395:419::-;26561:4;26599:2;26588:9;26584:18;26576:26;;26648:9;26642:4;26638:20;26634:1;26623:9;26619:17;26612:47;26676:131;26802:4;26676:131;:::i;:::-;26668:139;;26395:419;;;:::o;26820:224::-;26960:34;26956:1;26948:6;26944:14;26937:58;27029:7;27024:2;27016:6;27012:15;27005:32;26820:224;:::o;27050:366::-;27192:3;27213:67;27277:2;27272:3;27213:67;:::i;:::-;27206:74;;27289:93;27378:3;27289:93;:::i;:::-;27407:2;27402:3;27398:12;27391:19;;27050:366;;;:::o;27422:419::-;27588:4;27626:2;27615:9;27611:18;27603:26;;27675:9;27669:4;27665:20;27661:1;27650:9;27646:17;27639:47;27703:131;27829:4;27703:131;:::i;:::-;27695:139;;27422:419;;;:::o;27847:222::-;27987:34;27983:1;27975:6;27971:14;27964:58;28056:5;28051:2;28043:6;28039:15;28032:30;27847:222;:::o;28075:366::-;28217:3;28238:67;28302:2;28297:3;28238:67;:::i;:::-;28231:74;;28314:93;28403:3;28314:93;:::i;:::-;28432:2;28427:3;28423:12;28416:19;;28075:366;;;:::o;28447:419::-;28613:4;28651:2;28640:9;28636:18;28628:26;;28700:9;28694:4;28690:20;28686:1;28675:9;28671:17;28664:47;28728:131;28854:4;28728:131;:::i;:::-;28720:139;;28447:419;;;:::o;28872:172::-;29012:24;29008:1;29000:6;28996:14;28989:48;28872:172;:::o;29050:366::-;29192:3;29213:67;29277:2;29272:3;29213:67;:::i;:::-;29206:74;;29289:93;29378:3;29289:93;:::i;:::-;29407:2;29402:3;29398:12;29391:19;;29050:366;;;:::o;29422:419::-;29588:4;29626:2;29615:9;29611:18;29603:26;;29675:9;29669:4;29665:20;29661:1;29650:9;29646:17;29639:47;29703:131;29829:4;29703:131;:::i;:::-;29695:139;;29422:419;;;:::o;29847:297::-;29987:34;29983:1;29975:6;29971:14;29964:58;30056:34;30051:2;30043:6;30039:15;30032:59;30125:11;30120:2;30112:6;30108:15;30101:36;29847:297;:::o;30150:366::-;30292:3;30313:67;30377:2;30372:3;30313:67;:::i;:::-;30306:74;;30389:93;30478:3;30389:93;:::i;:::-;30507:2;30502:3;30498:12;30491:19;;30150:366;;;:::o;30522:419::-;30688:4;30726:2;30715:9;30711:18;30703:26;;30775:9;30769:4;30765:20;30761:1;30750:9;30746:17;30739:47;30803:131;30929:4;30803:131;:::i;:::-;30795:139;;30522:419;;;:::o;30947:240::-;31087:34;31083:1;31075:6;31071:14;31064:58;31156:23;31151:2;31143:6;31139:15;31132:48;30947:240;:::o;31193:366::-;31335:3;31356:67;31420:2;31415:3;31356:67;:::i;:::-;31349:74;;31432:93;31521:3;31432:93;:::i;:::-;31550:2;31545:3;31541:12;31534:19;;31193:366;;;:::o;31565:419::-;31731:4;31769:2;31758:9;31754:18;31746:26;;31818:9;31812:4;31808:20;31804:1;31793:9;31789:17;31782:47;31846:131;31972:4;31846:131;:::i;:::-;31838:139;;31565:419;;;:::o;31990:169::-;32130:21;32126:1;32118:6;32114:14;32107:45;31990:169;:::o;32165:366::-;32307:3;32328:67;32392:2;32387:3;32328:67;:::i;:::-;32321:74;;32404:93;32493:3;32404:93;:::i;:::-;32522:2;32517:3;32513:12;32506:19;;32165:366;;;:::o;32537:419::-;32703:4;32741:2;32730:9;32726:18;32718:26;;32790:9;32784:4;32780:20;32776:1;32765:9;32761:17;32754:47;32818:131;32944:4;32818:131;:::i;:::-;32810:139;;32537:419;;;:::o;32962:241::-;33102:34;33098:1;33090:6;33086:14;33079:58;33171:24;33166:2;33158:6;33154:15;33147:49;32962:241;:::o;33209:366::-;33351:3;33372:67;33436:2;33431:3;33372:67;:::i;:::-;33365:74;;33448:93;33537:3;33448:93;:::i;:::-;33566:2;33561:3;33557:12;33550:19;;33209:366;;;:::o;33581:419::-;33747:4;33785:2;33774:9;33770:18;33762:26;;33834:9;33828:4;33824:20;33820:1;33809:9;33805:17;33798:47;33862:131;33988:4;33862:131;:::i;:::-;33854:139;;33581:419;;;:::o;34006:194::-;34046:4;34066:20;34084:1;34066:20;:::i;:::-;34061:25;;34100:20;34118:1;34100:20;:::i;:::-;34095:25;;34144:1;34141;34137:9;34129:17;;34168:1;34162:4;34159:11;34156:37;;;34173:18;;:::i;:::-;34156:37;34006:194;;;;:::o;34206:225::-;34346:34;34342:1;34334:6;34330:14;34323:58;34415:8;34410:2;34402:6;34398:15;34391:33;34206:225;:::o;34437:366::-;34579:3;34600:67;34664:2;34659:3;34600:67;:::i;:::-;34593:74;;34676:93;34765:3;34676:93;:::i;:::-;34794:2;34789:3;34785:12;34778:19;;34437:366;;;:::o;34809:419::-;34975:4;35013:2;35002:9;34998:18;34990:26;;35062:9;35056:4;35052:20;35048:1;35037:9;35033:17;35026:47;35090:131;35216:4;35090:131;:::i;:::-;35082:139;;34809:419;;;:::o;35234:147::-;35335:11;35372:3;35357:18;;35234:147;;;;:::o;35387:114::-;;:::o;35507:398::-;35666:3;35687:83;35768:1;35763:3;35687:83;:::i;:::-;35680:90;;35779:93;35868:3;35779:93;:::i;:::-;35897:1;35892:3;35888:11;35881:18;;35507:398;;;:::o;35911:379::-;36095:3;36117:147;36260:3;36117:147;:::i;:::-;36110:154;;36281:3;36274:10;;35911:379;;;:::o;36296:442::-;36445:4;36483:2;36472:9;36468:18;36460:26;;36496:71;36564:1;36553:9;36549:17;36540:6;36496:71;:::i;:::-;36577:72;36645:2;36634:9;36630:18;36621:6;36577:72;:::i;:::-;36659;36727:2;36716:9;36712:18;36703:6;36659:72;:::i;:::-;36296:442;;;;;;:::o;36744:180::-;36792:77;36789:1;36782:88;36889:4;36886:1;36879:15;36913:4;36910:1;36903:15;36930:180;36978:77;36975:1;36968:88;37075:4;37072:1;37065:15;37099:4;37096:1;37089:15;37116:143;37173:5;37204:6;37198:13;37189:22;;37220:33;37247:5;37220:33;:::i;:::-;37116:143;;;;:::o;37265:351::-;37335:6;37384:2;37372:9;37363:7;37359:23;37355:32;37352:119;;;37390:79;;:::i;:::-;37352:119;37510:1;37535:64;37591:7;37582:6;37571:9;37567:22;37535:64;:::i;:::-;37525:74;;37481:128;37265:351;;;;:::o;37622:85::-;37667:7;37696:5;37685:16;;37622:85;;;:::o;37713:158::-;37771:9;37804:61;37822:42;37831:32;37857:5;37831:32;:::i;:::-;37822:42;:::i;:::-;37804:61;:::i;:::-;37791:74;;37713:158;;;:::o;37877:147::-;37972:45;38011:5;37972:45;:::i;:::-;37967:3;37960:58;37877:147;;:::o;38030:114::-;38097:6;38131:5;38125:12;38115:22;;38030:114;;;:::o;38150:184::-;38249:11;38283:6;38278:3;38271:19;38323:4;38318:3;38314:14;38299:29;;38150:184;;;;:::o;38340:132::-;38407:4;38430:3;38422:11;;38460:4;38455:3;38451:14;38443:22;;38340:132;;;:::o;38478:108::-;38555:24;38573:5;38555:24;:::i;:::-;38550:3;38543:37;38478:108;;:::o;38592:179::-;38661:10;38682:46;38724:3;38716:6;38682:46;:::i;:::-;38760:4;38755:3;38751:14;38737:28;;38592:179;;;;:::o;38777:113::-;38847:4;38879;38874:3;38870:14;38862:22;;38777:113;;;:::o;38926:732::-;39045:3;39074:54;39122:5;39074:54;:::i;:::-;39144:86;39223:6;39218:3;39144:86;:::i;:::-;39137:93;;39254:56;39304:5;39254:56;:::i;:::-;39333:7;39364:1;39349:284;39374:6;39371:1;39368:13;39349:284;;;39450:6;39444:13;39477:63;39536:3;39521:13;39477:63;:::i;:::-;39470:70;;39563:60;39616:6;39563:60;:::i;:::-;39553:70;;39409:224;39396:1;39393;39389:9;39384:14;;39349:284;;;39353:14;39649:3;39642:10;;39050:608;;;38926:732;;;;:::o;39664:831::-;39927:4;39965:3;39954:9;39950:19;39942:27;;39979:71;40047:1;40036:9;40032:17;40023:6;39979:71;:::i;:::-;40060:80;40136:2;40125:9;40121:18;40112:6;40060:80;:::i;:::-;40187:9;40181:4;40177:20;40172:2;40161:9;40157:18;40150:48;40215:108;40318:4;40309:6;40215:108;:::i;:::-;40207:116;;40333:72;40401:2;40390:9;40386:18;40377:6;40333:72;:::i;:::-;40415:73;40483:3;40472:9;40468:19;40459:6;40415:73;:::i;:::-;39664:831;;;;;;;;:::o;40501:807::-;40750:4;40788:3;40777:9;40773:19;40765:27;;40802:71;40870:1;40859:9;40855:17;40846:6;40802:71;:::i;:::-;40883:72;40951:2;40940:9;40936:18;40927:6;40883:72;:::i;:::-;40965:80;41041:2;41030:9;41026:18;41017:6;40965:80;:::i;:::-;41055;41131:2;41120:9;41116:18;41107:6;41055:80;:::i;:::-;41145:73;41213:3;41202:9;41198:19;41189:6;41145:73;:::i;:::-;41228;41296:3;41285:9;41281:19;41272:6;41228:73;:::i;:::-;40501:807;;;;;;;;;:::o;41314:663::-;41402:6;41410;41418;41467:2;41455:9;41446:7;41442:23;41438:32;41435:119;;;41473:79;;:::i;:::-;41435:119;41593:1;41618:64;41674:7;41665:6;41654:9;41650:22;41618:64;:::i;:::-;41608:74;;41564:128;41731:2;41757:64;41813:7;41804:6;41793:9;41789:22;41757:64;:::i;:::-;41747:74;;41702:129;41870:2;41896:64;41952:7;41943:6;41932:9;41928:22;41896:64;:::i;:::-;41886:74;;41841:129;41314:663;;;;;:::o

Swarm Source

ipfs://42b9f619f8e0cc7fcbeec4be2b3bac5e767705713d2f56a38ecddcbfd96a00c3
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.