ETH Price: $2,431.68 (+5.49%)

Token

XETH (XETH)
 

Overview

Max Total Supply

100,000,000 XETH

Holders

690

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
124.5434 XETH

Value
$0.00
0x1EF0b555415C50c082Fc2974f88A43F6217A158c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
XETH

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-26
*/

/**
What is striking in the chart below from Santiment is that whales are currently more active on the Ethereum blockchain than on Bitcoin's.
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller XETHis not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 theXETH 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);
    }
}

// OpenZeppelin Contracts (last XETHupdated v4.6.0) (token/ERC20/IERC20.sol)

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` XETHtokens 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 allowanceXETH 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
    );

    /**
     * @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 XETHcaller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number XETHof 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.
     *
     XETH
     * 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *XETH
 * _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);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

// pragma solidity ^0.8.0;

// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 XETHEIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
    XETHny 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased XETHallowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount XETHexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allXETH balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint XETHto the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from XETHthe zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn XETHamount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: XETHapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero XETHaddress");

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned XETHintegers, 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 subtraction 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 XETHunsigned 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 XETHunsigned 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 XETHis 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 XETHof 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.
     *
    XETH
     * 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.
     *
    XETHrevert (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}.
    XETH
     *
     * 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;
        }
    }
}

// pragma solidity >=0.5.0;

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

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity, uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,  uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,  uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,   uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,    address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,   uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,     uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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 XETH is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees; uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("XETH", "XETH") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already XETHactive.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excludeEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

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


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the XETHzero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        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,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        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 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","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":[],"name":"_maxlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"account","type":"address"}],"name":"balanceOf","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeEnobleTrading","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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600481526020017f58455448000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f584554480000000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a2058455448617070726f76652066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b600062000b9360288362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20584554486160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60268362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e742058455448746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000cf160238362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161323062000d6a600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132306000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b806375f0a874146104605780637a791c741461048b5780638a8c523c146104b4576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906124f8565b61092d565b005b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed919061244d565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906124f8565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b604051610611919061244d565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516109d2919061232c565b60405180910390a25050565b6109e6611704565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c6581858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920584554486163746976652e0000000000600082015250565b6000612671601b83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265205860008201527f45544872656d6f7665642066726f6d206175746f6d617465644d61726b65744d60208201527f616b657250616972730000000000000000000000000000000000000000000000604082015250565b6000612729604983612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a206465637265617365642058455448616c6c6f77616e6365206260008201527f656c6f77207a65726f0000000000000000000000000000000000000000000000602082015250565b60006127bb602983612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e65722069732074686558455448207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061284d602a83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a2058455448617070726f76652066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006128df602883612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20584554486160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612971602683612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d2074686520584554487a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612a6f602983612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c657220584554486973206e6f7420746865206f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602483612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a20584554487472616e736665722066726f6d20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612d67602983612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f5845544845524332303a207472616e7366657220746f20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612df9602783612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742058455448657863656560008201527f64732062616c616e636500000000000000000000000000000000000000000000602082015250565b6000612e8b602a83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220fee65448d80420180586b3134dd56f3ab7508f9c0cef3b03476e39ce85f9452a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b806375f0a874146104605780637a791c741461048b5780638a8c523c146104b4576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906124f8565b61092d565b005b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed919061244d565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906124f8565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b604051610611919061244d565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c919061244d565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610cc2565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516109d2919061232c565b60405180910390a25050565b6109e6611704565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c6581858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c726561647920584554486163746976652e0000000000600082015250565b6000612671601b83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265205860008201527f45544872656d6f7665642066726f6d206175746f6d617465644d61726b65744d60208201527f616b657250616972730000000000000000000000000000000000000000000000604082015250565b6000612729604983612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a206465637265617365642058455448616c6c6f77616e6365206260008201527f656c6f77207a65726f0000000000000000000000000000000000000000000000602082015250565b60006127bb602983612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e65722069732074686558455448207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061284d602a83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a2058455448617070726f76652066726f6d20746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006128df602883612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20584554486160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612971602683612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d2074686520584554487a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612a6f602983612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c657220584554486973206e6f7420746865206f60008201527f776e657200000000000000000000000000000000000000000000000000000000602082015250565b6000612cd5602483612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a20584554487472616e736665722066726f6d20746865207a657260008201527f6f20616464726573730000000000000000000000000000000000000000000000602082015250565b6000612d67602983612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f5845544845524332303a207472616e7366657220746f20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b6000612df9602783612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742058455448657863656560008201527f64732062616c616e636500000000000000000000000000000000000000000000602082015250565b6000612e8b602a83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea2646970667358221220fee65448d80420180586b3134dd56f3ab7508f9c0cef3b03476e39ce85f9452a64736f6c63430008110033

Deployed Bytecode Sourcemap

26570:8652:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7393:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9228:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26644:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8168:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9478:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26852:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8010:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9781:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26702:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26914:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27200:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26947:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8339:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1961:103;;;;;;;;;;;;;:::i;:::-;;26739:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29586:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29399:177;;;;;;;;;;;;;:::i;:::-;;1316:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6932:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7612:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29795:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10059:509;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8722:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26776:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26815:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27050:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9019:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27008:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2219:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7393:100;7447:13;7480:5;7473:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7393:100;:::o;9228:242::-;9347:4;9369:13;9385:12;:10;:12::i;:::-;9369:28;;9408:32;9417:5;9424:7;9433:6;9408:8;:32::i;:::-;9458:4;9451:11;;;9228:242;;;;:::o;26644:51::-;;;:::o;8168:108::-;8229:7;8256:12;;8249:19;;8168:108;:::o;9478:295::-;9609:4;9626:15;9644:12;:10;:12::i;:::-;9626:30;;9667:38;9683:4;9689:7;9698:6;9667:15;:38::i;:::-;9716:27;9726:4;9732:2;9736:6;9716:9;:27::i;:::-;9761:4;9754:11;;;9478:295;;;;;:::o;26852:53::-;26898:6;26852:53;:::o;8010:93::-;8068:5;8093:2;8086:9;;8010:93;:::o;9781:270::-;9896:4;9918:13;9934:12;:10;:12::i;:::-;9918:28;;9957:64;9966:5;9973:7;10010:10;9982:25;9992:5;9999:7;9982:9;:25::i;:::-;:38;;;;:::i;:::-;9957:8;:64::i;:::-;10039:4;10032:11;;;9781:270;;;;:::o;26702:28::-;;;;;;;;;;;;;:::o;26914:26::-;;;;;;;;;;;;;:::o;27200:28::-;;;;:::o;26947:23::-;;;;;;;;;;;;;:::o;8339:177::-;8458:7;8490:9;:18;8500:7;8490:18;;;;;;;;;;;;;;;;8483:25;;8339:177;;;:::o;1961:103::-;1202:13;:11;:13::i;:::-;2026:30:::1;2053:1;2026:18;:30::i;:::-;1961:103::o:0;26739:30::-;;;;;;;;;;;;;:::o;29586:201::-;1202:13;:11;:13::i;:::-;29721:8:::1;29684:25;:34;29710:7;29684:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29761:7;29745:34;;;29770:8;29745:34;;;;;;:::i;:::-;;;;;;;;29586:201:::0;;:::o;29399:177::-;1202:13;:11;:13::i;:::-;29461:14:::1;;;;;;;;;;;29460:15;29452:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;29535:4;29518:14;;:21;;;;;;;;;;;;;;;;;;29564:4;29550:11;;:18;;;;;;;;;;;;;;;;;;29399:177::o:0;1316:87::-;1362:7;1389:6;;;;;;;;;;;1382:13;;1316:87;:::o;6932:26::-;;;;:::o;7612:104::-;7668:13;7701:7;7694:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7612:104;:::o;29795:258::-;1202:13;:11;:13::i;:::-;29902::::1;;;;;;;;;;;29894:21;;:4;:21;;::::0;29886:107:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30004:41;30033:4;30039:5;30004:28;:41::i;:::-;29795:258:::0;;:::o;10059:509::-;10179:4;10201:13;10217:12;:10;:12::i;:::-;10201:28;;10240:24;10267:25;10277:5;10284:7;10267:9;:25::i;:::-;10240:52;;10345:15;10325:16;:35;;10303:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;10465:60;10474:5;10481:7;10509:15;10490:16;:34;10465:8;:60::i;:::-;10556:4;10549:11;;;;10059:509;;;;:::o;8722:234::-;8837:4;8859:13;8875:12;:10;:12::i;:::-;8859:28;;8898;8908:5;8915:2;8919:6;8898:9;:28::i;:::-;8944:4;8937:11;;;8722:234;;;;:::o;26776:32::-;;;;;;;;;;;;;:::o;26815:30::-;;;;;;;;;;;;;:::o;27050:27::-;;;;:::o;9019:201::-;9153:7;9185:11;:18;9197:5;9185:18;;;;;;;;;;;;;;;:27;9204:7;9185:27;;;;;;;;;;;;;;;;9178:34;;9019:201;;;;:::o;27008:33::-;;;;:::o;2219:242::-;1202:13;:11;:13::i;:::-;2342:1:::1;2322:22;;:8;:22;;::::0;2300:114:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2425:28;2444:8;2425:18;:28::i;:::-;2219:242:::0;:::o;368:98::-;421:7;448:10;441:17;;368:98;:::o;12728:388::-;12881:1;12864:19;;:5;:19;;;12856:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12966:1;12947:21;;:7;:21;;;12939:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13054:6;13024:11;:18;13036:5;13024:18;;;;;;;;;;;;;;;:27;13043:7;13024:27;;;;;;;;;;;;;;;:36;;;;13092:7;13076:32;;13085:5;13076:32;;;13101:6;13076:32;;;;;;:::i;:::-;;;;;;;;12728:388;;;:::o;13124:502::-;13259:24;13286:25;13296:5;13303:7;13286:9;:25::i;:::-;13259:52;;13346:17;13326:16;:37;13322:297;;13426:6;13406:16;:26;;13380:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13541:51;13550:5;13557:7;13585:6;13566:16;:25;13541:8;:51::i;:::-;13322:297;13248:378;13124:502;;;:::o;30259:2452::-;30407:1;30391:18;;:4;:18;;;30383:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;30488:1;30474:16;;:2;:16;;;30466:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30549:14;;;;;;;;;;;:49;;;;30567:25;:31;30593:4;30567:31;;;;;;;;;;;;;;;;;;;;;;;;;30549:49;:82;;;;30602:25;:29;30628:2;30602:29;;;;;;;;;;;;;;;;;;;;;;;;;30549:82;30541:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30685:1;30675:6;:11;30671:93;;30703:28;30719:4;30725:2;30729:1;30703:15;:28::i;:::-;30746:7;;30671:93;30778:28;30809:24;30827:4;30809:9;:24::i;:::-;30778:55;;30846:12;30885:18;;30861:20;:42;;30846:57;;30934:7;:35;;;;;30958:11;;;;;;;;;;;30934:35;:48;;;;;30973:9;;;;;;;;;;;30972:10;30934:48;:82;;;;;30984:26;:32;31011:4;30984:32;;;;;;;;;;;;;;;;;;;;;;;;;30934:82;:131;;;;;31034:25;:31;31060:4;31034:31;;;;;;;;;;;;;;;;;;;;;;;;;31033:32;30934:131;:178;;;;;31083:25;:29;31109:2;31083:29;;;;;;;;;;;;;;;;;;;;;;;;;31082:30;30934:178;30916:313;;;31151:4;31139:9;;:16;;;;;;;;;;;;;;;;;;31172:11;:9;:11::i;:::-;31212:5;31200:9;;:17;;;;;;;;;;;;;;;;;;30916:313;31241:12;31257:9;;;;;;;;;;;31256:10;31241:25;;31283;:31;31309:4;31283:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31318:25;:29;31344:2;31318:29;;;;;;;;;;;;;;;;;;;;;;;;;31283:64;31279:112;;;31374:5;31364:15;;31279:112;31403:12;31436:7;31432:1187;;;31488:26;:30;31515:2;31488:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31538:1;31522:13;;:17;31488:51;31484:986;;;31567:36;31597:5;31567:25;31578:13;;31567:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31560:43;;31716:13;;31674:17;;31667:4;:24;;;;:::i;:::-;31666:63;;;;:::i;:::-;31622:19;;:107;;;;;;;:::i;:::-;;;;;;;;31842:13;;31800:17;;31793:4;:24;;;;:::i;:::-;31792:63;;;;:::i;:::-;31748:19;;:107;;;;;;;:::i;:::-;;;;;;;;31972:13;;31928:19;;31921:4;:26;;;;:::i;:::-;31920:65;;;;:::i;:::-;31874:21;;:111;;;;;;;:::i;:::-;;;;;;;;31484:986;;;32047:26;:32;32074:4;32047:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32098:1;32083:12;;:16;32047:52;32043:427;;;32127:35;32156:5;32127:24;32138:12;;32127:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32120:42;;32232:12;;32212:16;;32205:4;:23;;;;:::i;:::-;32204:40;;;;:::i;:::-;32181:19;;:63;;;;;;;:::i;:::-;;;;;;;;32314:12;;32294:16;;32287:4;:23;;;;:::i;:::-;32286:40;;;;:::i;:::-;32263:19;;:63;;;;;;;:::i;:::-;;;;;;;;32442:12;;32399:18;;32392:4;:25;;;;:::i;:::-;32391:63;;;;:::i;:::-;32345:21;;:109;;;;;;;:::i;:::-;;;;;;;;32043:427;31484:986;32497:1;32490:4;:8;32486:91;;;32519:42;32535:4;32549;32556;32519:15;:42::i;:::-;32486:91;32603:4;32593:14;;;;;:::i;:::-;;;31432:1187;32631:33;32647:4;32653:2;32657:6;32631:15;:33::i;:::-;32691:12;;32675:13;:28;;;;30372:2339;;;;30259:2452;;;;:::o;1481:136::-;1556:12;:10;:12::i;:::-;1545:23;;:7;:5;:7::i;:::-;:23;;;1537:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1481:136::o;2621:191::-;2695:16;2714:6;;;;;;;;;;;2695:25;;2740:8;2731:6;;:17;;;;;;;;;;;;;;;;;;2795:8;2764:40;;2785:8;2764:40;;;;;;;;;;;;2684:128;2621:191;:::o;30063:188::-;30182:5;30147:26;:32;30174:4;30147:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30237:5;30203:40;;30231:4;30203:40;;;;;;;;;;;;30063:188;;:::o;10576:893::-;10723:1;10707:18;;:4;:18;;;10699:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10804:1;10790:16;;:2;:16;;;10782:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10863:38;10884:4;10890:2;10894:6;10863:20;:38::i;:::-;10914:19;10936:9;:15;10946:4;10936:15;;;;;;;;;;;;;;;;10914:37;;10999:6;10984:11;:21;;10962:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;11143:6;11129:11;:20;11111:9;:15;11121:4;11111:15;;;;;;;;;;;;;;;:38;;;;11350:6;11333:9;:13;11343:2;11333:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11400:2;11385:26;;11394:4;11385:26;;;11404:6;11385:26;;;;;;:::i;:::-;;;;;;;;11424:37;11444:4;11450:2;11454:6;11424:19;:37::i;:::-;10688:781;10576:893;;;:::o;33610:1607::-;33651:23;33677:24;33695:4;33677:9;:24::i;:::-;33651:50;;33712:25;33810:21;;33775:19;;33740;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33712:119;;33842:12;33869:23;33983:1;33950:17;33914:19;;33896:15;:37;;;;:::i;:::-;33895:72;;;;:::i;:::-;:89;;;;:::i;:::-;33869:115;;33995:26;34024:36;34044:15;34024;:19;;:36;;;;:::i;:::-;33995:65;;34073:25;34101:21;34073:49;;34135:37;34153:18;34135:17;:37::i;:::-;34185:18;34206:44;34232:17;34206:21;:25;;:44;;;;:::i;:::-;34185:65;;34263:23;34289:82;34343:17;34289:35;34304:19;;34289:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34263:108;;34384:25;34412:84;34468:17;34412:37;34427:21;;34412:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34384:112;;34509:23;34592:17;34561:15;34535:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34509:100;;34644:1;34622:19;:23;;;;34678:1;34656:19;:23;;;;34714:1;34690:21;:25;;;;34750:1;34732:15;:19;:42;;;;;34773:1;34755:15;:19;34732:42;34728:280;;;34791:47;34805:15;34822;34791:13;:47::i;:::-;34858:138;34891:18;34928:15;34962:19;;34858:138;;;;;;;;:::i;:::-;;;;;;;;34728:280;35042:17;;;;;;;;;;;35034:31;;35073:17;35034:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35020:75;;;;;35130:15;;;;;;;;;;;35122:29;;35173:21;35122:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35108:101;;;;;33640:1577;;;;;;;;;;33610:1607::o;17273:98::-;17331:7;17362:1;17358;:5;;;;:::i;:::-;17351:12;;17273:98;;;;:::o;17672:::-;17730:7;17761:1;17757;:5;;;;:::i;:::-;17750:12;;17672:98;;;;:::o;13634:125::-;;;;:::o;13767:124::-;;;;:::o;16912:98::-;16970:7;17001:1;16997;:5;;;;:::i;:::-;16990:12;;16912:98;;;;:::o;32719:503::-;32787:21;32825:1;32811:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:40;;32856:4;32838;32843:1;32838:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32882:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32872:4;32877:1;32872:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32917:62;32934:4;32949:15;32967:11;32917:8;:62::i;:::-;33018:15;:66;;;33099:11;33125:1;33141:4;33168;33188:15;33018:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32776:446;32719:503;:::o;33230:372::-;33313:62;33330:4;33345:15;33363:11;33313:8;:62::i;:::-;33388:15;:31;;;33427:9;33460:4;33480:11;33506:1;33522;33538:15;;;;;;;;;;;33568;33388:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33230:372;;:::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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::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:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:177::-;8768:29;8764:1;8756:6;8752:14;8745:53;8628:177;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8811:366;;;:::o;9183:419::-;9349:4;9387:2;9376:9;9372:18;9364:26;;9436:9;9430:4;9426:20;9422:1;9411:9;9407:17;9400:47;9464:131;9590:4;9464:131;:::i;:::-;9456:139;;9183:419;;;:::o;9608:297::-;9748:34;9744:1;9736:6;9732:14;9725:58;9817:34;9812:2;9804:6;9800:15;9793:59;9886:11;9881:2;9873:6;9869:15;9862:36;9608:297;:::o;9911:366::-;10053:3;10074:67;10138:2;10133:3;10074:67;:::i;:::-;10067:74;;10150:93;10239:3;10150:93;:::i;:::-;10268:2;10263:3;10259:12;10252:19;;9911:366;;;:::o;10283:419::-;10449:4;10487:2;10476:9;10472:18;10464:26;;10536:9;10530:4;10526:20;10522:1;10511:9;10507:17;10500:47;10564:131;10690:4;10564:131;:::i;:::-;10556:139;;10283:419;;;:::o;10708:228::-;10848:34;10844:1;10836:6;10832:14;10825:58;10917:11;10912:2;10904:6;10900:15;10893:36;10708:228;:::o;10942:366::-;11084:3;11105:67;11169:2;11164:3;11105:67;:::i;:::-;11098:74;;11181:93;11270:3;11181:93;:::i;:::-;11299:2;11294:3;11290:12;11283:19;;10942:366;;;:::o;11314:419::-;11480:4;11518:2;11507:9;11503:18;11495:26;;11567:9;11561:4;11557:20;11553:1;11542:9;11538:17;11531:47;11595:131;11721:4;11595:131;:::i;:::-;11587:139;;11314:419;;;:::o;11739:229::-;11879:34;11875:1;11867:6;11863:14;11856:58;11948:12;11943:2;11935:6;11931:15;11924:37;11739:229;:::o;11974:366::-;12116:3;12137:67;12201:2;12196:3;12137:67;:::i;:::-;12130:74;;12213:93;12302:3;12213:93;:::i;:::-;12331:2;12326:3;12322:12;12315:19;;11974:366;;;:::o;12346:419::-;12512:4;12550:2;12539:9;12535:18;12527:26;;12599:9;12593:4;12589:20;12585:1;12574:9;12570:17;12563:47;12627:131;12753:4;12627:131;:::i;:::-;12619:139;;12346:419;;;:::o;12771:227::-;12911:34;12907:1;12899:6;12895:14;12888:58;12980:10;12975:2;12967:6;12963:15;12956:35;12771:227;:::o;13004:366::-;13146:3;13167:67;13231:2;13226:3;13167:67;:::i;:::-;13160:74;;13243:93;13332:3;13243:93;:::i;:::-;13361:2;13356:3;13352:12;13345:19;;13004:366;;;:::o;13376:419::-;13542:4;13580:2;13569:9;13565:18;13557:26;;13629:9;13623:4;13619:20;13615:1;13604:9;13600:17;13593:47;13657:131;13783:4;13657:131;:::i;:::-;13649:139;;13376:419;;;:::o;13801:225::-;13941:34;13937:1;13929:6;13925:14;13918:58;14010:8;14005:2;13997:6;13993:15;13986:33;13801:225;:::o;14032:366::-;14174:3;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14032:366;;;:::o;14404:419::-;14570:4;14608:2;14597:9;14593:18;14585:26;;14657:9;14651:4;14647:20;14643:1;14632:9;14628:17;14621:47;14685:131;14811:4;14685:131;:::i;:::-;14677:139;;14404:419;;;:::o;14829:179::-;14969:31;14965:1;14957:6;14953:14;14946:55;14829:179;:::o;15014:366::-;15156:3;15177:67;15241:2;15236:3;15177:67;:::i;:::-;15170:74;;15253:93;15342:3;15253:93;:::i;:::-;15371:2;15366:3;15362:12;15355:19;;15014:366;;;:::o;15386:419::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15639:9;15633:4;15629:20;15625:1;15614:9;15610:17;15603:47;15667:131;15793:4;15667:131;:::i;:::-;15659:139;;15386:419;;;:::o;15811:228::-;15951:34;15947:1;15939:6;15935:14;15928:58;16020:11;16015:2;16007:6;16003:15;15996:36;15811:228;:::o;16045:366::-;16187:3;16208:67;16272:2;16267:3;16208:67;:::i;:::-;16201:74;;16284:93;16373:3;16284:93;:::i;:::-;16402:2;16397:3;16393:12;16386:19;;16045:366;;;:::o;16417:419::-;16583:4;16621:2;16610:9;16606:18;16598:26;;16670:9;16664:4;16660:20;16656:1;16645:9;16641:17;16634:47;16698:131;16824:4;16698:131;:::i;:::-;16690:139;;16417:419;;;:::o;16842:222::-;16982:34;16978:1;16970:6;16966:14;16959:58;17051:5;17046:2;17038:6;17034:15;17027:30;16842:222;:::o;17070:366::-;17212:3;17233:67;17297:2;17292:3;17233:67;:::i;:::-;17226:74;;17309:93;17398:3;17309:93;:::i;:::-;17427:2;17422:3;17418:12;17411:19;;17070:366;;;:::o;17442:419::-;17608:4;17646:2;17635:9;17631:18;17623:26;;17695:9;17689:4;17685:20;17681:1;17670:9;17666:17;17659:47;17723:131;17849:4;17723:131;:::i;:::-;17715:139;;17442:419;;;:::o;17867:174::-;18007:26;18003:1;17995:6;17991:14;17984:50;17867:174;:::o;18047:366::-;18189:3;18210:67;18274:2;18269:3;18210:67;:::i;:::-;18203:74;;18286:93;18375:3;18286:93;:::i;:::-;18404:2;18399:3;18395:12;18388:19;;18047:366;;;:::o;18419:419::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18672:9;18666:4;18662:20;18658:1;18647:9;18643:17;18636:47;18700:131;18826:4;18700:131;:::i;:::-;18692:139;;18419:419;;;:::o;18844:410::-;18884:7;18907:20;18925:1;18907:20;:::i;:::-;18902:25;;18941:20;18959:1;18941:20;:::i;:::-;18936:25;;18996:1;18993;18989:9;19018:30;19036:11;19018:30;:::i;:::-;19007:41;;19197:1;19188:7;19184:15;19181:1;19178:22;19158:1;19151:9;19131:83;19108:139;;19227:18;;:::i;:::-;19108:139;18892:362;18844:410;;;;:::o;19260:180::-;19308:77;19305:1;19298:88;19405:4;19402:1;19395:15;19429:4;19426:1;19419:15;19446:185;19486:1;19503:20;19521:1;19503:20;:::i;:::-;19498:25;;19537:20;19555:1;19537:20;:::i;:::-;19532:25;;19576:1;19566:35;;19581:18;;:::i;:::-;19566:35;19623:1;19620;19616:9;19611:14;;19446:185;;;;:::o;19637:194::-;19677:4;19697:20;19715:1;19697:20;:::i;:::-;19692:25;;19731:20;19749:1;19731:20;:::i;:::-;19726:25;;19775:1;19772;19768:9;19760:17;;19799:1;19793:4;19790:11;19787:37;;;19804:18;;:::i;:::-;19787:37;19637:194;;;;:::o;19837:223::-;19977:34;19973:1;19965:6;19961:14;19954:58;20046:6;20041:2;20033:6;20029:15;20022:31;19837:223;:::o;20066:366::-;20208:3;20229:67;20293:2;20288:3;20229:67;:::i;:::-;20222:74;;20305:93;20394:3;20305:93;:::i;:::-;20423:2;20418:3;20414:12;20407:19;;20066:366;;;:::o;20438:419::-;20604:4;20642:2;20631:9;20627:18;20619:26;;20691:9;20685:4;20681:20;20677:1;20666:9;20662:17;20655:47;20719:131;20845:4;20719:131;:::i;:::-;20711:139;;20438:419;;;:::o;20863:228::-;21003:34;20999:1;20991:6;20987:14;20980:58;21072:11;21067:2;21059:6;21055:15;21048:36;20863:228;:::o;21097:366::-;21239:3;21260:67;21324:2;21319:3;21260:67;:::i;:::-;21253:74;;21336:93;21425:3;21336:93;:::i;:::-;21454:2;21449:3;21445:12;21438:19;;21097:366;;;:::o;21469:419::-;21635:4;21673:2;21662:9;21658:18;21650:26;;21722:9;21716:4;21712:20;21708:1;21697:9;21693:17;21686:47;21750:131;21876:4;21750:131;:::i;:::-;21742:139;;21469:419;;;:::o;21894:226::-;22034:34;22030:1;22022:6;22018:14;22011:58;22103:9;22098:2;22090:6;22086:15;22079:34;21894:226;:::o;22126:366::-;22268:3;22289:67;22353:2;22348:3;22289:67;:::i;:::-;22282:74;;22365:93;22454:3;22365:93;:::i;:::-;22483:2;22478:3;22474:12;22467:19;;22126:366;;;:::o;22498:419::-;22664:4;22702:2;22691:9;22687:18;22679:26;;22751:9;22745:4;22741:20;22737:1;22726:9;22722:17;22715:47;22779:131;22905:4;22779:131;:::i;:::-;22771:139;;22498:419;;;:::o;22923:229::-;23063:34;23059:1;23051:6;23047:14;23040:58;23132:12;23127:2;23119:6;23115:15;23108:37;22923:229;:::o;23158:366::-;23300:3;23321:67;23385:2;23380:3;23321:67;:::i;:::-;23314:74;;23397:93;23486:3;23397:93;:::i;:::-;23515:2;23510:3;23506:12;23499:19;;23158:366;;;:::o;23530:419::-;23696:4;23734:2;23723:9;23719:18;23711:26;;23783:9;23777:4;23773:20;23769:1;23758:9;23754:17;23747:47;23811:131;23937:4;23811:131;:::i;:::-;23803:139;;23530:419;;;:::o;23955:442::-;24104:4;24142:2;24131:9;24127:18;24119:26;;24155:71;24223:1;24212:9;24208:17;24199:6;24155:71;:::i;:::-;24236:72;24304:2;24293:9;24289:18;24280:6;24236:72;:::i;:::-;24318;24386:2;24375:9;24371:18;24362:6;24318:72;:::i;:::-;23955:442;;;;;;:::o;24403:147::-;24504:11;24541:3;24526:18;;24403:147;;;;:::o;24556:114::-;;:::o;24676:398::-;24835:3;24856:83;24937:1;24932:3;24856:83;:::i;:::-;24849:90;;24948:93;25037:3;24948:93;:::i;:::-;25066:1;25061:3;25057:11;25050:18;;24676:398;;;:::o;25080:379::-;25264:3;25286:147;25429:3;25286:147;:::i;:::-;25279:154;;25450:3;25443:10;;25080:379;;;:::o;25465:180::-;25513:77;25510:1;25503:88;25610:4;25607:1;25600:15;25634:4;25631:1;25624:15;25651:180;25699:77;25696:1;25689:88;25796:4;25793:1;25786:15;25820:4;25817:1;25810:15;25837:143;25894:5;25925:6;25919:13;25910:22;;25941:33;25968:5;25941:33;:::i;:::-;25837:143;;;;:::o;25986:351::-;26056:6;26105:2;26093:9;26084:7;26080:23;26076:32;26073:119;;;26111:79;;:::i;:::-;26073:119;26231:1;26256:64;26312:7;26303:6;26292:9;26288:22;26256:64;:::i;:::-;26246:74;;26202:128;25986:351;;;;:::o;26343:85::-;26388:7;26417:5;26406:16;;26343:85;;;:::o;26434:158::-;26492:9;26525:61;26543:42;26552:32;26578:5;26552:32;:::i;:::-;26543:42;:::i;:::-;26525:61;:::i;:::-;26512:74;;26434:158;;;:::o;26598:147::-;26693:45;26732:5;26693:45;:::i;:::-;26688:3;26681:58;26598:147;;:::o;26751:114::-;26818:6;26852:5;26846:12;26836:22;;26751:114;;;:::o;26871:184::-;26970:11;27004:6;26999:3;26992:19;27044:4;27039:3;27035:14;27020:29;;26871:184;;;;:::o;27061:132::-;27128:4;27151:3;27143:11;;27181:4;27176:3;27172:14;27164:22;;27061:132;;;:::o;27199:108::-;27276:24;27294:5;27276:24;:::i;:::-;27271:3;27264:37;27199:108;;:::o;27313:179::-;27382:10;27403:46;27445:3;27437:6;27403:46;:::i;:::-;27481:4;27476:3;27472:14;27458:28;;27313:179;;;;:::o;27498:113::-;27568:4;27600;27595:3;27591:14;27583:22;;27498:113;;;:::o;27647:732::-;27766:3;27795:54;27843:5;27795:54;:::i;:::-;27865:86;27944:6;27939:3;27865:86;:::i;:::-;27858:93;;27975:56;28025:5;27975:56;:::i;:::-;28054:7;28085:1;28070:284;28095:6;28092:1;28089:13;28070:284;;;28171:6;28165:13;28198:63;28257:3;28242:13;28198:63;:::i;:::-;28191:70;;28284:60;28337:6;28284:60;:::i;:::-;28274:70;;28130:224;28117:1;28114;28110:9;28105:14;;28070:284;;;28074:14;28370:3;28363:10;;27771:608;;;27647:732;;;;:::o;28385:831::-;28648:4;28686:3;28675:9;28671:19;28663:27;;28700:71;28768:1;28757:9;28753:17;28744:6;28700:71;:::i;:::-;28781:80;28857:2;28846:9;28842:18;28833:6;28781:80;:::i;:::-;28908:9;28902:4;28898:20;28893:2;28882:9;28878:18;28871:48;28936:108;29039:4;29030:6;28936:108;:::i;:::-;28928:116;;29054:72;29122:2;29111:9;29107:18;29098:6;29054:72;:::i;:::-;29136:73;29204:3;29193:9;29189:19;29180:6;29136:73;:::i;:::-;28385:831;;;;;;;;:::o;29222:807::-;29471:4;29509:3;29498:9;29494:19;29486:27;;29523:71;29591:1;29580:9;29576:17;29567:6;29523:71;:::i;:::-;29604:72;29672:2;29661:9;29657:18;29648:6;29604:72;:::i;:::-;29686:80;29762:2;29751:9;29747:18;29738:6;29686:80;:::i;:::-;29776;29852:2;29841:9;29837:18;29828:6;29776:80;:::i;:::-;29866:73;29934:3;29923:9;29919:19;29910:6;29866:73;:::i;:::-;29949;30017:3;30006:9;30002:19;29993:6;29949:73;:::i;:::-;29222:807;;;;;;;;;:::o;30035:143::-;30092:5;30123:6;30117:13;30108:22;;30139:33;30166:5;30139:33;:::i;:::-;30035:143;;;;:::o;30184:663::-;30272:6;30280;30288;30337:2;30325:9;30316:7;30312:23;30308:32;30305:119;;;30343:79;;:::i;:::-;30305:119;30463:1;30488:64;30544:7;30535:6;30524:9;30520:22;30488:64;:::i;:::-;30478:74;;30434:128;30601:2;30627:64;30683:7;30674:6;30663:9;30659:22;30627:64;:::i;:::-;30617:74;;30572:129;30740:2;30766:64;30822:7;30813:6;30802:9;30798:22;30766:64;:::i;:::-;30756:74;;30711:129;30184:663;;;;;:::o

Swarm Source

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