ETH Price: $3,316.02 (+1.24%)
Gas: 3 Gwei

Token

Elongate (ELONGATE)
 

Overview

Max Total Supply

10,000,000 ELONGATE

Holders

559

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.958102180989365344 ELONGATE

Value
$0.00
0x3a9ecbde8fcd0dc2b145e51a0a5b0cfe87f355c7
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:
ELONGATE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-07
*/

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

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

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

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

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

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

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

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

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

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

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

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

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("Elongate", "ELONGATE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

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

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

        uint256 totalSupply = 10000000 * 1e18;

        maxTransactionAmount = (totalSupply) / 50; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply) / 50; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

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

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

        marketingWallet = address(msg.sender); // Marketing Wallet
        devWallet = address(msg.sender); // Dev Wallet

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

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

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

    receive() external payable {}

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

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 10000,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f456c6f6e676174650000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f454c4f4e474154450000000000000000000000000000000000000000000000008152508160039081620000fb919062000d29565b5080600490816200010d919062000d29565b50505062000130620001246200057060201b60201c565b6200057860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200063e60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000e7a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000e7a565b6040518363ffffffff1660e01b8152600401620002af92919062000ebd565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000e7a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200063e60201b60201c565b6200035260a05160016200072860201b60201c565b60006014905060008060006014905060008060006a084595161401484a000000905060328162000383919062000f48565b60088190555060328162000398919062000f48565b600a81905550612710600582620003b0919062000f80565b620003bc919062000f48565b60098190555086600f819055508560108190555084601181905550601154601054600f54620003ec919062000fcb565b620003f8919062000fcb565b600e8190555083601381905550826014819055508160158190555060155460145460135462000428919062000fcb565b62000434919062000fcb565b60128190555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004de620004d0620007c960201b60201c565b6001620007f360201b60201c565b620004f1306001620007f360201b60201c565b6200050661dead6001620007f360201b60201c565b620005286200051a620007c960201b60201c565b60016200063e60201b60201c565b6200053b3060016200063e60201b60201c565b6200055061dead60016200063e60201b60201c565b6200056233826200092d60201b60201c565b505050505050505062001163565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200064e6200057060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000674620007c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c49062001067565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008036200057060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000829620007c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008799062001067565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009219190620010a6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009969062001113565b60405180910390fd5b620009b36000838362000aa560201b60201c565b8060026000828254620009c7919062000fcb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a1e919062000fcb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a85919062001146565b60405180910390a362000aa16000838362000aaa60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b3157607f821691505b60208210810362000b475762000b4662000ae9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bb17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b72565b62000bbd868362000b72565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c0a62000c0462000bfe8462000bd5565b62000bdf565b62000bd5565b9050919050565b6000819050919050565b62000c268362000be9565b62000c3e62000c358262000c11565b84845462000b7f565b825550505050565b600090565b62000c5562000c46565b62000c6281848462000c1b565b505050565b5b8181101562000c8a5762000c7e60008262000c4b565b60018101905062000c68565b5050565b601f82111562000cd95762000ca38162000b4d565b62000cae8462000b62565b8101602085101562000cbe578190505b62000cd662000ccd8562000b62565b83018262000c67565b50505b505050565b600082821c905092915050565b600062000cfe6000198460080262000cde565b1980831691505092915050565b600062000d19838362000ceb565b9150826002028217905092915050565b62000d348262000aaf565b67ffffffffffffffff81111562000d505762000d4f62000aba565b5b62000d5c825462000b18565b62000d6982828562000c8e565b600060209050601f83116001811462000da1576000841562000d8c578287015190505b62000d98858262000d0b565b86555062000e08565b601f19841662000db18662000b4d565b60005b8281101562000ddb5784890151825560018201915060208501945060208101905062000db4565b8683101562000dfb578489015162000df7601f89168262000ceb565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e428262000e15565b9050919050565b62000e548162000e35565b811462000e6057600080fd5b50565b60008151905062000e748162000e49565b92915050565b60006020828403121562000e935762000e9262000e10565b5b600062000ea38482850162000e63565b91505092915050565b62000eb78162000e35565b82525050565b600060408201905062000ed4600083018562000eac565b62000ee3602083018462000eac565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f558262000bd5565b915062000f628362000bd5565b92508262000f755762000f7462000eea565b5b828204905092915050565b600062000f8d8262000bd5565b915062000f9a8362000bd5565b925082820262000faa8162000bd5565b9150828204841483151762000fc45762000fc362000f19565b5b5092915050565b600062000fd88262000bd5565b915062000fe58362000bd5565b9250828201905080821115620010005762000fff62000f19565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200104f60208362001006565b91506200105c8262001017565b602082019050919050565b60006020820190508181036000830152620010828162001040565b9050919050565b60008115159050919050565b620010a08162001089565b82525050565b6000602082019050620010bd600083018462001095565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010fb601f8362001006565b91506200110882620010c3565b602082019050919050565b600060208201905081810360008301526200112e81620010ec565b9050919050565b620011408162000bd5565b82525050565b60006020820190506200115d600083018462001135565b92915050565b60805160a051614fe9620011c1600039600081816111e9015281816118b20152612838015260008181610db1015281816127e0015281816138d2015281816139b3015281816139da01528181613a760152613a9d0152614fe96000f3fe6080604052600436106103395760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c35578063f2fde38b14610c60578063f637434214610c89578063f8b45b0514610cb457610340565b8063dd62ed3e14610ba2578063e2f4560514610bdf578063e884f26014610c0a57610340565b8063c876d0b9116100d1578063c876d0b914610ae4578063c8c8ebe414610b0f578063d257b34f14610b3a578063d85ba06314610b7757610340565b8063c024666814610a69578063c17b5b8c14610a92578063c18bc19514610abb57610340565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb1461099b578063aacebbe3146109d8578063b62496f514610a01578063bbc0c74214610a3e57610340565b80639fccce3214610908578063a0d82dc514610933578063a457c2d71461095e57610340565b80638ea5220f1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b45780639c3b4fdc146108dd57610340565b806349bd5a5e11610285578063751039fc116102235780637bce5a04116101fd5780637bce5a04146107745780638095d5641461079f5780638a8c523c146107c85780638da5cb5b146107df57610340565b8063751039fc146106f55780637571336a1461072057806375f0a8741461074957610340565b80636a486a8e1161025f5780636a486a8e1461064b5780636ddd17131461067657806370a08231146106a1578063715018a6146106de57610340565b806349bd5a5e146105b85780634a62bb65146105e35780634fbee1931461060e57610340565b80631a8145bb116102f257806323b872dd116102cc57806323b872dd146104e857806327c8f83514610525578063313ce56714610550578063395093511461057b57610340565b80631a8145bb146104695780631f3fed8f14610494578063203e727e146104bf57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b6040516103679190613bdc565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613c97565b610d71565b6040516103a49190613cf2565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613d0d565b610d8f565b6040516103e19190613cf2565b60405180910390f35b3480156103f657600080fd5b506103ff610daf565b60405161040c9190613d99565b60405180910390f35b34801561042157600080fd5b5061042a610dd3565b6040516104379190613dc3565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613d0d565b610ddd565b005b34801561047557600080fd5b5061047e610f19565b60405161048b9190613dc3565b60405180910390f35b3480156104a057600080fd5b506104a9610f1f565b6040516104b69190613dc3565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613dde565b610f25565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190613e0b565b611034565b60405161051c9190613cf2565b60405180910390f35b34801561053157600080fd5b5061053a61112c565b6040516105479190613e6d565b60405180910390f35b34801561055c57600080fd5b50610565611132565b6040516105729190613ea4565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190613c97565b61113b565b6040516105af9190613cf2565b60405180910390f35b3480156105c457600080fd5b506105cd6111e7565b6040516105da9190613e6d565b60405180910390f35b3480156105ef57600080fd5b506105f861120b565b6040516106059190613cf2565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613d0d565b61121e565b6040516106429190613cf2565b60405180910390f35b34801561065757600080fd5b50610660611274565b60405161066d9190613dc3565b60405180910390f35b34801561068257600080fd5b5061068b61127a565b6040516106989190613cf2565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613d0d565b61128d565b6040516106d59190613dc3565b60405180910390f35b3480156106ea57600080fd5b506106f36112d5565b005b34801561070157600080fd5b5061070a61135d565b6040516107179190613cf2565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613eeb565b6113fd565b005b34801561075557600080fd5b5061075e6114d4565b60405161076b9190613e6d565b60405180910390f35b34801561078057600080fd5b506107896114fa565b6040516107969190613dc3565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613f2b565b611500565b005b3480156107d457600080fd5b506107dd6115ff565b005b3480156107eb57600080fd5b506107f46116b3565b6040516108019190613e6d565b60405180910390f35b34801561081657600080fd5b5061081f6116dd565b60405161082c9190613e6d565b60405180910390f35b34801561084157600080fd5b5061084a611703565b6040516108579190613dc3565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613f7e565b611709565b005b34801561089557600080fd5b5061089e6117a2565b6040516108ab9190613bdc565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613eeb565b611834565b005b3480156108e957600080fd5b506108f261194c565b6040516108ff9190613dc3565b60405180910390f35b34801561091457600080fd5b5061091d611952565b60405161092a9190613dc3565b60405180910390f35b34801561093f57600080fd5b50610948611958565b6040516109559190613dc3565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613c97565b61195e565b6040516109929190613cf2565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190613c97565b611a49565b6040516109cf9190613cf2565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613d0d565b611a67565b005b348015610a0d57600080fd5b50610a286004803603810190610a239190613d0d565b611ba3565b604051610a359190613cf2565b60405180910390f35b348015610a4a57600080fd5b50610a53611bc3565b604051610a609190613cf2565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613eeb565b611bd6565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613f2b565b611cfb565b005b348015610ac757600080fd5b50610ae26004803603810190610add9190613dde565b611dfa565b005b348015610af057600080fd5b50610af9611f09565b604051610b069190613cf2565b60405180910390f35b348015610b1b57600080fd5b50610b24611f1c565b604051610b319190613dc3565b60405180910390f35b348015610b4657600080fd5b50610b616004803603810190610b5c9190613dde565b611f22565b604051610b6e9190613cf2565b60405180910390f35b348015610b8357600080fd5b50610b8c612076565b604051610b999190613dc3565b60405180910390f35b348015610bae57600080fd5b50610bc96004803603810190610bc49190613fab565b61207c565b604051610bd69190613dc3565b60405180910390f35b348015610beb57600080fd5b50610bf4612103565b604051610c019190613dc3565b60405180910390f35b348015610c1657600080fd5b50610c1f612109565b604051610c2c9190613cf2565b60405180910390f35b348015610c4157600080fd5b50610c4a6121a9565b604051610c579190613dc3565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190613d0d565b6121af565b005b348015610c9557600080fd5b50610c9e6122a6565b604051610cab9190613dc3565b60405180910390f35b348015610cc057600080fd5b50610cc96122ac565b604051610cd69190613dc3565b60405180910390f35b606060038054610cee9061401a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a9061401a565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d85610d7e6122b2565b84846122ba565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610de56122b2565b73ffffffffffffffffffffffffffffffffffffffff16610e036116b3565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614097565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b610f2d6122b2565b73ffffffffffffffffffffffffffffffffffffffff16610f4b6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614097565b60405180910390fd5b670de0b6b3a76400006103e86001610fb7610dd3565b610fc191906140e6565b610fcb9190614157565b610fd59190614157565b811015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906141fa565b60405180910390fd5b670de0b6b3a76400008161102b91906140e6565b60088190555050565b6000611041848484612483565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108c6122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111039061428c565b60405180910390fd5b611120856111186122b2565b8584036122ba565b60019150509392505050565b61dead81565b60006012905090565b60006111dd6111486122b2565b8484600160006111566122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d891906142ac565b6122ba565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112dd6122b2565b73ffffffffffffffffffffffffffffffffffffffff166112fb6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614097565b60405180910390fd5b61135b600061311a565b565b60006113676122b2565b73ffffffffffffffffffffffffffffffffffffffff166113856116b3565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614097565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114056122b2565b73ffffffffffffffffffffffffffffffffffffffff166114236116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090614097565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6115086122b2565b73ffffffffffffffffffffffffffffffffffffffff166115266116b3565b73ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390614097565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f546115a491906142ac565b6115ae91906142ac565b600e819055506014600e5411156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f19061432c565b60405180910390fd5b505050565b6116076122b2565b73ffffffffffffffffffffffffffffffffffffffff166116256116b3565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614097565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6117116122b2565b73ffffffffffffffffffffffffffffffffffffffff1661172f6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90614097565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117b19061401a565b80601f01602080910402602001604051908101604052809291908181526020018280546117dd9061401a565b801561182a5780601f106117ff5761010080835404028352916020019161182a565b820191906000526020600020905b81548152906001019060200180831161180d57829003601f168201915b5050505050905090565b61183c6122b2565b73ffffffffffffffffffffffffffffffffffffffff1661185a6116b3565b73ffffffffffffffffffffffffffffffffffffffff16146118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614097565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906143be565b60405180910390fd5b61194882826131e0565b5050565b60115481565b60185481565b60155481565b6000806001600061196d6122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190614450565b60405180910390fd5b611a3e611a356122b2565b858584036122ba565b600191505092915050565b6000611a5d611a566122b2565b8484612483565b6001905092915050565b611a6f6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611a8d6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614097565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611bde6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990614097565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611cef9190613cf2565b60405180910390a25050565b611d036122b2565b73ffffffffffffffffffffffffffffffffffffffff16611d216116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90614097565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611d9f91906142ac565b611da991906142ac565b60128190555060146012541115611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec9061432c565b60405180910390fd5b505050565b611e026122b2565b73ffffffffffffffffffffffffffffffffffffffff16611e206116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614097565b60405180910390fd5b670de0b6b3a76400006103e86005611e8c610dd3565b611e9691906140e6565b611ea09190614157565b611eaa9190614157565b811015611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906144e2565b60405180910390fd5b670de0b6b3a764000081611f0091906140e6565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611f2c6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611f4a6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614097565b60405180910390fd5b6127106001611fad610dd3565b611fb791906140e6565b611fc19190614157565b821015612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90614574565b60405180910390fd5b6103e86005612010610dd3565b61201a91906140e6565b6120249190614157565b821115612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614606565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121136122b2565b73ffffffffffffffffffffffffffffffffffffffff166121316116b3565b73ffffffffffffffffffffffffffffffffffffffff1614612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e90614097565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b6121b76122b2565b73ffffffffffffffffffffffffffffffffffffffff166121d56116b3565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614097565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614698565b60405180910390fd5b6122a38161311a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123209061472a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f906147bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124769190613dc3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e99061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612561576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612558906148e0565b60405180910390fd5b6000810361257a5761257583836000613281565b613115565b600b60009054906101000a900460ff1615612c3d576125976116b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561260557506125d56116b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561263e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612678575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126915750600560149054906101000a900460ff16155b15612c3c57600b60019054906101000a900460ff1661278b57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061274b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61278a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127819061494c565b60405180910390fd5b5b600d60009054906101000a900460ff1615612953576127a86116b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561282f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129525743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614a04565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f65750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9d57600854811115612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790614a96565b60405180910390fd5b600a54612a4c8361128d565b82612a5791906142ac565b1115612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614b02565b60405180910390fd5b612c3b565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b405750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b8f57600854811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614b94565b60405180910390fd5b612c3a565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c3957600a54612bec8361128d565b82612bf791906142ac565b1115612c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2f90614b02565b60405180910390fd5b5b5b5b5b5b6000612c483061128d565b905060006009548210159050808015612c6d5750600b60029054906101000a900460ff165b8015612c865750600560149054906101000a900460ff16155b8015612cdc5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d325750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d885750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dcc576001600560146101000a81548160ff021916908315150217905550612db0613500565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e825750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e8c57600090505b6000811561310557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eef57506000601254115b15612fbc57612f1c6064612f0e601254886137e790919063ffffffff16565b6137fd90919063ffffffff16565b905060125460145482612f2f91906140e6565b612f399190614157565b60176000828254612f4a91906142ac565b9250508190555060125460155482612f6291906140e6565b612f6c9190614157565b60186000828254612f7d91906142ac565b9250508190555060125460135482612f9591906140e6565b612f9f9190614157565b60166000828254612fb091906142ac565b925050819055506130e1565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301757506000600e54115b156130e0576130446064613036600e54886137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600e546010548261305791906140e6565b6130619190614157565b6017600082825461307291906142ac565b92505081905550600e546011548261308a91906140e6565b6130949190614157565b601860008282546130a591906142ac565b92505081905550600e54600f54826130bd91906140e6565b6130c79190614157565b601660008282546130d891906142ac565b925050819055505b5b60008111156130f6576130f5873083613281565b5b80856131029190614bb4565b94505b613110878787613281565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e79061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361335f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613356906148e0565b60405180910390fd5b61336a838383613813565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e790614c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461348391906142ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134e79190613dc3565b60405180910390a36134fa848484613818565b50505050565b600061350b3061128d565b9050600060185460165460175461352291906142ac565b61352c91906142ac565b905060008083148061353e5750600082145b1561354b575050506137e5565b601460095461355a91906140e6565b83111561357357601460095461357091906140e6565b92505b60006002836017548661358691906140e6565b6135909190614157565b61359a9190614157565b905060006135b1828661381d90919063ffffffff16565b905060004790506135c182613833565b60006135d6824761381d90919063ffffffff16565b90506000613601876135f3601654856137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600061362c8861361e601854866137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600081838561363d9190614bb4565b6136479190614bb4565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136a790614cab565b60006040518083038185875af1925050503d80600081146136e4576040519150601f19603f3d011682016040523d82523d6000602084013e6136e9565b606091505b5050809850506000871180156136ff5750600081115b1561374c5761370e8782613a70565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161374393929190614cc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379290614cab565b60006040518083038185875af1925050503d80600081146137cf576040519150601f19603f3d011682016040523d82523d6000602084013e6137d4565b606091505b505080985050505050505050505050505b565b600081836137f591906140e6565b905092915050565b6000818361380b9190614157565b905092915050565b505050565b505050565b6000818361382b9190614bb4565b905092915050565b6000600267ffffffffffffffff8111156138505761384f614cf7565b5b60405190808252806020026020018201604052801561387e5781602001602082028036833780820191505090505b509050308160008151811061389657613895614d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061395f9190614d6a565b8160018151811061397357613972614d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139d8307f0000000000000000000000000000000000000000000000000000000000000000846122ba565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3a959493929190614e90565b600060405180830381600087803b158015613a5457600080fd5b505af1158015613a68573d6000803e3d6000fd5b505050505050565b613a9b307f0000000000000000000000000000000000000000000000000000000000000000846122ba565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b0296959493929190614eea565b60606040518083038185885af1158015613b20573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b459190614f60565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b86578082015181840152602081019050613b6b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bae82613b4c565b613bb88185613b57565b9350613bc8818560208601613b68565b613bd181613b92565b840191505092915050565b60006020820190508181036000830152613bf68184613ba3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2e82613c03565b9050919050565b613c3e81613c23565b8114613c4957600080fd5b50565b600081359050613c5b81613c35565b92915050565b6000819050919050565b613c7481613c61565b8114613c7f57600080fd5b50565b600081359050613c9181613c6b565b92915050565b60008060408385031215613cae57613cad613bfe565b5b6000613cbc85828601613c4c565b9250506020613ccd85828601613c82565b9150509250929050565b60008115159050919050565b613cec81613cd7565b82525050565b6000602082019050613d076000830184613ce3565b92915050565b600060208284031215613d2357613d22613bfe565b5b6000613d3184828501613c4c565b91505092915050565b6000819050919050565b6000613d5f613d5a613d5584613c03565b613d3a565b613c03565b9050919050565b6000613d7182613d44565b9050919050565b6000613d8382613d66565b9050919050565b613d9381613d78565b82525050565b6000602082019050613dae6000830184613d8a565b92915050565b613dbd81613c61565b82525050565b6000602082019050613dd86000830184613db4565b92915050565b600060208284031215613df457613df3613bfe565b5b6000613e0284828501613c82565b91505092915050565b600080600060608486031215613e2457613e23613bfe565b5b6000613e3286828701613c4c565b9350506020613e4386828701613c4c565b9250506040613e5486828701613c82565b9150509250925092565b613e6781613c23565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b600060ff82169050919050565b613e9e81613e88565b82525050565b6000602082019050613eb96000830184613e95565b92915050565b613ec881613cd7565b8114613ed357600080fd5b50565b600081359050613ee581613ebf565b92915050565b60008060408385031215613f0257613f01613bfe565b5b6000613f1085828601613c4c565b9250506020613f2185828601613ed6565b9150509250929050565b600080600060608486031215613f4457613f43613bfe565b5b6000613f5286828701613c82565b9350506020613f6386828701613c82565b9250506040613f7486828701613c82565b9150509250925092565b600060208284031215613f9457613f93613bfe565b5b6000613fa284828501613ed6565b91505092915050565b60008060408385031215613fc257613fc1613bfe565b5b6000613fd085828601613c4c565b9250506020613fe185828601613c4c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061403257607f821691505b60208210810361404557614044613feb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614081602083613b57565b915061408c8261404b565b602082019050919050565b600060208201905081810360008301526140b081614074565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f182613c61565b91506140fc83613c61565b925082820261410a81613c61565b91508282048414831517614121576141206140b7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416282613c61565b915061416d83613c61565b92508261417d5761417c614128565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141e4602f83613b57565b91506141ef82614188565b604082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614276602883613b57565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b60006142b782613c61565b91506142c283613c61565b92508282019050808211156142da576142d96140b7565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614316601d83613b57565b9150614321826142e0565b602082019050919050565b6000602082019050818103600083015261434581614309565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143a8603983613b57565b91506143b38261434c565b604082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061443a602583613b57565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006144cc602483613b57565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061455e603483613b57565b915061456982614502565b604082019050919050565b6000602082019050818103600083015261458d81614551565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006145f0603483613b57565b91506145fb82614594565b604082019050919050565b6000602082019050818103600083015261461f816145e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614682602683613b57565b915061468d82614626565b604082019050919050565b600060208201905081810360008301526146b181614675565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614714602483613b57565b915061471f826146b8565b604082019050919050565b6000602082019050818103600083015261474381614707565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147a6602283613b57565b91506147b18261474a565b604082019050919050565b600060208201905081810360008301526147d581614799565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614838602583613b57565b9150614843826147dc565b604082019050919050565b600060208201905081810360008301526148678161482b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148ca602383613b57565b91506148d58261486e565b604082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614936601683613b57565b915061494182614900565b602082019050919050565b6000602082019050818103600083015261496581614929565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149ee604983613b57565b91506149f98261496c565b606082019050919050565b60006020820190508181036000830152614a1d816149e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a80603583613b57565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614aec601383613b57565b9150614af782614ab6565b602082019050919050565b60006020820190508181036000830152614b1b81614adf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b7e603683613b57565b9150614b8982614b22565b604082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b6000614bbf82613c61565b9150614bca83613c61565b9250828203905081811115614be257614be16140b7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c44602683613b57565b9150614c4f82614be8565b604082019050919050565b60006020820190508181036000830152614c7381614c37565b9050919050565b600081905092915050565b50565b6000614c95600083614c7a565b9150614ca082614c85565b600082019050919050565b6000614cb682614c88565b9150819050919050565b6000606082019050614cd56000830186613db4565b614ce26020830185613db4565b614cef6040830184613db4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d6481613c35565b92915050565b600060208284031215614d8057614d7f613bfe565b5b6000614d8e84828501614d55565b91505092915050565b6000819050919050565b6000614dbc614db7614db284614d97565b613d3a565b613c61565b9050919050565b614dcc81614da1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e0781613c23565b82525050565b6000614e198383614dfe565b60208301905092915050565b6000602082019050919050565b6000614e3d82614dd2565b614e478185614ddd565b9350614e5283614dee565b8060005b83811015614e83578151614e6a8882614e0d565b9750614e7583614e25565b925050600181019050614e56565b5085935050505092915050565b600060a082019050614ea56000830188613db4565b614eb26020830187614dc3565b8181036040830152614ec48186614e32565b9050614ed36060830185613e5e565b614ee06080830184613db4565b9695505050505050565b600060c082019050614eff6000830189613e5e565b614f0c6020830188613db4565b614f196040830187614dc3565b614f266060830186614dc3565b614f336080830185613e5e565b614f4060a0830184613db4565b979650505050505050565b600081519050614f5a81613c6b565b92915050565b600080600060608486031215614f7957614f78613bfe565b5b6000614f8786828701614f4b565b9350506020614f9886828701614f4b565b9250506040614fa986828701614f4b565b915050925092509256fea264697066735822122004f966b9fa3330f16822c7ebcc2749f520c01deb741d1a920d5652f4eee7cd6064736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103395760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c35578063f2fde38b14610c60578063f637434214610c89578063f8b45b0514610cb457610340565b8063dd62ed3e14610ba2578063e2f4560514610bdf578063e884f26014610c0a57610340565b8063c876d0b9116100d1578063c876d0b914610ae4578063c8c8ebe414610b0f578063d257b34f14610b3a578063d85ba06314610b7757610340565b8063c024666814610a69578063c17b5b8c14610a92578063c18bc19514610abb57610340565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb1461099b578063aacebbe3146109d8578063b62496f514610a01578063bbc0c74214610a3e57610340565b80639fccce3214610908578063a0d82dc514610933578063a457c2d71461095e57610340565b80638ea5220f1461080a5780639213691314610835578063924de9b71461086057806395d89b41146108895780639a7a23d6146108b45780639c3b4fdc146108dd57610340565b806349bd5a5e11610285578063751039fc116102235780637bce5a04116101fd5780637bce5a04146107745780638095d5641461079f5780638a8c523c146107c85780638da5cb5b146107df57610340565b8063751039fc146106f55780637571336a1461072057806375f0a8741461074957610340565b80636a486a8e1161025f5780636a486a8e1461064b5780636ddd17131461067657806370a08231146106a1578063715018a6146106de57610340565b806349bd5a5e146105b85780634a62bb65146105e35780634fbee1931461060e57610340565b80631a8145bb116102f257806323b872dd116102cc57806323b872dd146104e857806327c8f83514610525578063313ce56714610550578063395093511461057b57610340565b80631a8145bb146104695780631f3fed8f14610494578063203e727e146104bf57610340565b806306fdde0314610345578063095ea7b31461037057806310d5de53146103ad5780631694505e146103ea57806318160ddd146104155780631816467f1461044057610340565b3661034057005b600080fd5b34801561035157600080fd5b5061035a610cdf565b6040516103679190613bdc565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613c97565b610d71565b6040516103a49190613cf2565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613d0d565b610d8f565b6040516103e19190613cf2565b60405180910390f35b3480156103f657600080fd5b506103ff610daf565b60405161040c9190613d99565b60405180910390f35b34801561042157600080fd5b5061042a610dd3565b6040516104379190613dc3565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613d0d565b610ddd565b005b34801561047557600080fd5b5061047e610f19565b60405161048b9190613dc3565b60405180910390f35b3480156104a057600080fd5b506104a9610f1f565b6040516104b69190613dc3565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190613dde565b610f25565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190613e0b565b611034565b60405161051c9190613cf2565b60405180910390f35b34801561053157600080fd5b5061053a61112c565b6040516105479190613e6d565b60405180910390f35b34801561055c57600080fd5b50610565611132565b6040516105729190613ea4565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190613c97565b61113b565b6040516105af9190613cf2565b60405180910390f35b3480156105c457600080fd5b506105cd6111e7565b6040516105da9190613e6d565b60405180910390f35b3480156105ef57600080fd5b506105f861120b565b6040516106059190613cf2565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190613d0d565b61121e565b6040516106429190613cf2565b60405180910390f35b34801561065757600080fd5b50610660611274565b60405161066d9190613dc3565b60405180910390f35b34801561068257600080fd5b5061068b61127a565b6040516106989190613cf2565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613d0d565b61128d565b6040516106d59190613dc3565b60405180910390f35b3480156106ea57600080fd5b506106f36112d5565b005b34801561070157600080fd5b5061070a61135d565b6040516107179190613cf2565b60405180910390f35b34801561072c57600080fd5b5061074760048036038101906107429190613eeb565b6113fd565b005b34801561075557600080fd5b5061075e6114d4565b60405161076b9190613e6d565b60405180910390f35b34801561078057600080fd5b506107896114fa565b6040516107969190613dc3565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190613f2b565b611500565b005b3480156107d457600080fd5b506107dd6115ff565b005b3480156107eb57600080fd5b506107f46116b3565b6040516108019190613e6d565b60405180910390f35b34801561081657600080fd5b5061081f6116dd565b60405161082c9190613e6d565b60405180910390f35b34801561084157600080fd5b5061084a611703565b6040516108579190613dc3565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190613f7e565b611709565b005b34801561089557600080fd5b5061089e6117a2565b6040516108ab9190613bdc565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613eeb565b611834565b005b3480156108e957600080fd5b506108f261194c565b6040516108ff9190613dc3565b60405180910390f35b34801561091457600080fd5b5061091d611952565b60405161092a9190613dc3565b60405180910390f35b34801561093f57600080fd5b50610948611958565b6040516109559190613dc3565b60405180910390f35b34801561096a57600080fd5b5061098560048036038101906109809190613c97565b61195e565b6040516109929190613cf2565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190613c97565b611a49565b6040516109cf9190613cf2565b60405180910390f35b3480156109e457600080fd5b506109ff60048036038101906109fa9190613d0d565b611a67565b005b348015610a0d57600080fd5b50610a286004803603810190610a239190613d0d565b611ba3565b604051610a359190613cf2565b60405180910390f35b348015610a4a57600080fd5b50610a53611bc3565b604051610a609190613cf2565b60405180910390f35b348015610a7557600080fd5b50610a906004803603810190610a8b9190613eeb565b611bd6565b005b348015610a9e57600080fd5b50610ab96004803603810190610ab49190613f2b565b611cfb565b005b348015610ac757600080fd5b50610ae26004803603810190610add9190613dde565b611dfa565b005b348015610af057600080fd5b50610af9611f09565b604051610b069190613cf2565b60405180910390f35b348015610b1b57600080fd5b50610b24611f1c565b604051610b319190613dc3565b60405180910390f35b348015610b4657600080fd5b50610b616004803603810190610b5c9190613dde565b611f22565b604051610b6e9190613cf2565b60405180910390f35b348015610b8357600080fd5b50610b8c612076565b604051610b999190613dc3565b60405180910390f35b348015610bae57600080fd5b50610bc96004803603810190610bc49190613fab565b61207c565b604051610bd69190613dc3565b60405180910390f35b348015610beb57600080fd5b50610bf4612103565b604051610c019190613dc3565b60405180910390f35b348015610c1657600080fd5b50610c1f612109565b604051610c2c9190613cf2565b60405180910390f35b348015610c4157600080fd5b50610c4a6121a9565b604051610c579190613dc3565b60405180910390f35b348015610c6c57600080fd5b50610c876004803603810190610c829190613d0d565b6121af565b005b348015610c9557600080fd5b50610c9e6122a6565b604051610cab9190613dc3565b60405180910390f35b348015610cc057600080fd5b50610cc96122ac565b604051610cd69190613dc3565b60405180910390f35b606060038054610cee9061401a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1a9061401a565b8015610d675780601f10610d3c57610100808354040283529160200191610d67565b820191906000526020600020905b815481529060010190602001808311610d4a57829003601f168201915b5050505050905090565b6000610d85610d7e6122b2565b84846122ba565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610de56122b2565b73ffffffffffffffffffffffffffffffffffffffff16610e036116b3565b73ffffffffffffffffffffffffffffffffffffffff1614610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090614097565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b610f2d6122b2565b73ffffffffffffffffffffffffffffffffffffffff16610f4b6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890614097565b60405180910390fd5b670de0b6b3a76400006103e86001610fb7610dd3565b610fc191906140e6565b610fcb9190614157565b610fd59190614157565b811015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906141fa565b60405180910390fd5b670de0b6b3a76400008161102b91906140e6565b60088190555050565b6000611041848484612483565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108c6122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111039061428c565b60405180910390fd5b611120856111186122b2565b8584036122ba565b60019150509392505050565b61dead81565b60006012905090565b60006111dd6111486122b2565b8484600160006111566122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d891906142ac565b6122ba565b6001905092915050565b7f000000000000000000000000b8a455dac1e6dd72743fdccb52dbd17ff192f85c81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112dd6122b2565b73ffffffffffffffffffffffffffffffffffffffff166112fb6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890614097565b60405180910390fd5b61135b600061311a565b565b60006113676122b2565b73ffffffffffffffffffffffffffffffffffffffff166113856116b3565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614097565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114056122b2565b73ffffffffffffffffffffffffffffffffffffffff166114236116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090614097565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6115086122b2565b73ffffffffffffffffffffffffffffffffffffffff166115266116b3565b73ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390614097565b60405180910390fd5b82600f819055508160108190555080601181905550601154601054600f546115a491906142ac565b6115ae91906142ac565b600e819055506014600e5411156115fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f19061432c565b60405180910390fd5b505050565b6116076122b2565b73ffffffffffffffffffffffffffffffffffffffff166116256116b3565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614097565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6117116122b2565b73ffffffffffffffffffffffffffffffffffffffff1661172f6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90614097565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117b19061401a565b80601f01602080910402602001604051908101604052809291908181526020018280546117dd9061401a565b801561182a5780601f106117ff5761010080835404028352916020019161182a565b820191906000526020600020905b81548152906001019060200180831161180d57829003601f168201915b5050505050905090565b61183c6122b2565b73ffffffffffffffffffffffffffffffffffffffff1661185a6116b3565b73ffffffffffffffffffffffffffffffffffffffff16146118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614097565b60405180910390fd5b7f000000000000000000000000b8a455dac1e6dd72743fdccb52dbd17ff192f85c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611935906143be565b60405180910390fd5b61194882826131e0565b5050565b60115481565b60185481565b60155481565b6000806001600061196d6122b2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2190614450565b60405180910390fd5b611a3e611a356122b2565b858584036122ba565b600191505092915050565b6000611a5d611a566122b2565b8484612483565b6001905092915050565b611a6f6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611a8d6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90614097565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611bde6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4990614097565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611cef9190613cf2565b60405180910390a25050565b611d036122b2565b73ffffffffffffffffffffffffffffffffffffffff16611d216116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90614097565b60405180910390fd5b826013819055508160148190555080601581905550601554601454601354611d9f91906142ac565b611da991906142ac565b60128190555060146012541115611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec9061432c565b60405180910390fd5b505050565b611e026122b2565b73ffffffffffffffffffffffffffffffffffffffff16611e206116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d90614097565b60405180910390fd5b670de0b6b3a76400006103e86005611e8c610dd3565b611e9691906140e6565b611ea09190614157565b611eaa9190614157565b811015611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906144e2565b60405180910390fd5b670de0b6b3a764000081611f0091906140e6565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611f2c6122b2565b73ffffffffffffffffffffffffffffffffffffffff16611f4a6116b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790614097565b60405180910390fd5b6127106001611fad610dd3565b611fb791906140e6565b611fc19190614157565b821015612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa90614574565b60405180910390fd5b6103e86005612010610dd3565b61201a91906140e6565b6120249190614157565b821115612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614606565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006121136122b2565b73ffffffffffffffffffffffffffffffffffffffff166121316116b3565b73ffffffffffffffffffffffffffffffffffffffff1614612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e90614097565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b6121b76122b2565b73ffffffffffffffffffffffffffffffffffffffff166121d56116b3565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614097565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361229a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229190614698565b60405180910390fd5b6122a38161311a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123209061472a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238f906147bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124769190613dc3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e99061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612561576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612558906148e0565b60405180910390fd5b6000810361257a5761257583836000613281565b613115565b600b60009054906101000a900460ff1615612c3d576125976116b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561260557506125d56116b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561263e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612678575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126915750600560149054906101000a900460ff16155b15612c3c57600b60019054906101000a900460ff1661278b57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061274b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61278a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127819061494c565b60405180910390fd5b5b600d60009054906101000a900460ff1615612953576127a86116b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561282f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561288757507f000000000000000000000000b8a455dac1e6dd72743fdccb52dbd17ff192f85c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129525743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614a04565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f65750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9d57600854811115612a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3790614a96565b60405180910390fd5b600a54612a4c8361128d565b82612a5791906142ac565b1115612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8f90614b02565b60405180910390fd5b612c3b565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b405750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b8f57600854811115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614b94565b60405180910390fd5b612c3a565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612c3957600a54612bec8361128d565b82612bf791906142ac565b1115612c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2f90614b02565b60405180910390fd5b5b5b5b5b5b6000612c483061128d565b905060006009548210159050808015612c6d5750600b60029054906101000a900460ff165b8015612c865750600560149054906101000a900460ff16155b8015612cdc5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d325750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612d885750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dcc576001600560146101000a81548160ff021916908315150217905550612db0613500565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e825750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e8c57600090505b6000811561310557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eef57506000601254115b15612fbc57612f1c6064612f0e601254886137e790919063ffffffff16565b6137fd90919063ffffffff16565b905060125460145482612f2f91906140e6565b612f399190614157565b60176000828254612f4a91906142ac565b9250508190555060125460155482612f6291906140e6565b612f6c9190614157565b60186000828254612f7d91906142ac565b9250508190555060125460135482612f9591906140e6565b612f9f9190614157565b60166000828254612fb091906142ac565b925050819055506130e1565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301757506000600e54115b156130e0576130446064613036600e54886137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600e546010548261305791906140e6565b6130619190614157565b6017600082825461307291906142ac565b92505081905550600e546011548261308a91906140e6565b6130949190614157565b601860008282546130a591906142ac565b92505081905550600e54600f54826130bd91906140e6565b6130c79190614157565b601660008282546130d891906142ac565b925050819055505b5b60008111156130f6576130f5873083613281565b5b80856131029190614bb4565b94505b613110878787613281565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e79061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361335f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613356906148e0565b60405180910390fd5b61336a838383613813565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156133f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e790614c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461348391906142ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134e79190613dc3565b60405180910390a36134fa848484613818565b50505050565b600061350b3061128d565b9050600060185460165460175461352291906142ac565b61352c91906142ac565b905060008083148061353e5750600082145b1561354b575050506137e5565b601460095461355a91906140e6565b83111561357357601460095461357091906140e6565b92505b60006002836017548661358691906140e6565b6135909190614157565b61359a9190614157565b905060006135b1828661381d90919063ffffffff16565b905060004790506135c182613833565b60006135d6824761381d90919063ffffffff16565b90506000613601876135f3601654856137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600061362c8861361e601854866137e790919063ffffffff16565b6137fd90919063ffffffff16565b9050600081838561363d9190614bb4565b6136479190614bb4565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516136a790614cab565b60006040518083038185875af1925050503d80600081146136e4576040519150601f19603f3d011682016040523d82523d6000602084013e6136e9565b606091505b5050809850506000871180156136ff5750600081115b1561374c5761370e8782613a70565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161374393929190614cc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379290614cab565b60006040518083038185875af1925050503d80600081146137cf576040519150601f19603f3d011682016040523d82523d6000602084013e6137d4565b606091505b505080985050505050505050505050505b565b600081836137f591906140e6565b905092915050565b6000818361380b9190614157565b905092915050565b505050565b505050565b6000818361382b9190614bb4565b905092915050565b6000600267ffffffffffffffff8111156138505761384f614cf7565b5b60405190808252806020026020018201604052801561387e5781602001602082028036833780820191505090505b509050308160008151811061389657613895614d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061395f9190614d6a565b8160018151811061397357613972614d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139d8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122ba565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3a959493929190614e90565b600060405180830381600087803b158015613a5457600080fd5b505af1158015613a68573d6000803e3d6000fd5b505050505050565b613a9b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122ba565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b0296959493929190614eea565b60606040518083038185885af1158015613b20573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b459190614f60565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b86578082015181840152602081019050613b6b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613bae82613b4c565b613bb88185613b57565b9350613bc8818560208601613b68565b613bd181613b92565b840191505092915050565b60006020820190508181036000830152613bf68184613ba3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c2e82613c03565b9050919050565b613c3e81613c23565b8114613c4957600080fd5b50565b600081359050613c5b81613c35565b92915050565b6000819050919050565b613c7481613c61565b8114613c7f57600080fd5b50565b600081359050613c9181613c6b565b92915050565b60008060408385031215613cae57613cad613bfe565b5b6000613cbc85828601613c4c565b9250506020613ccd85828601613c82565b9150509250929050565b60008115159050919050565b613cec81613cd7565b82525050565b6000602082019050613d076000830184613ce3565b92915050565b600060208284031215613d2357613d22613bfe565b5b6000613d3184828501613c4c565b91505092915050565b6000819050919050565b6000613d5f613d5a613d5584613c03565b613d3a565b613c03565b9050919050565b6000613d7182613d44565b9050919050565b6000613d8382613d66565b9050919050565b613d9381613d78565b82525050565b6000602082019050613dae6000830184613d8a565b92915050565b613dbd81613c61565b82525050565b6000602082019050613dd86000830184613db4565b92915050565b600060208284031215613df457613df3613bfe565b5b6000613e0284828501613c82565b91505092915050565b600080600060608486031215613e2457613e23613bfe565b5b6000613e3286828701613c4c565b9350506020613e4386828701613c4c565b9250506040613e5486828701613c82565b9150509250925092565b613e6781613c23565b82525050565b6000602082019050613e826000830184613e5e565b92915050565b600060ff82169050919050565b613e9e81613e88565b82525050565b6000602082019050613eb96000830184613e95565b92915050565b613ec881613cd7565b8114613ed357600080fd5b50565b600081359050613ee581613ebf565b92915050565b60008060408385031215613f0257613f01613bfe565b5b6000613f1085828601613c4c565b9250506020613f2185828601613ed6565b9150509250929050565b600080600060608486031215613f4457613f43613bfe565b5b6000613f5286828701613c82565b9350506020613f6386828701613c82565b9250506040613f7486828701613c82565b9150509250925092565b600060208284031215613f9457613f93613bfe565b5b6000613fa284828501613ed6565b91505092915050565b60008060408385031215613fc257613fc1613bfe565b5b6000613fd085828601613c4c565b9250506020613fe185828601613c4c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061403257607f821691505b60208210810361404557614044613feb565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614081602083613b57565b915061408c8261404b565b602082019050919050565b600060208201905081810360008301526140b081614074565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140f182613c61565b91506140fc83613c61565b925082820261410a81613c61565b91508282048414831517614121576141206140b7565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061416282613c61565b915061416d83613c61565b92508261417d5761417c614128565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006141e4602f83613b57565b91506141ef82614188565b604082019050919050565b60006020820190508181036000830152614213816141d7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614276602883613b57565b91506142818261421a565b604082019050919050565b600060208201905081810360008301526142a581614269565b9050919050565b60006142b782613c61565b91506142c283613c61565b92508282019050808211156142da576142d96140b7565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614316601d83613b57565b9150614321826142e0565b602082019050919050565b6000602082019050818103600083015261434581614309565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143a8603983613b57565b91506143b38261434c565b604082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061443a602583613b57565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006144cc602483613b57565b91506144d782614470565b604082019050919050565b600060208201905081810360008301526144fb816144bf565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061455e603483613b57565b915061456982614502565b604082019050919050565b6000602082019050818103600083015261458d81614551565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006145f0603483613b57565b91506145fb82614594565b604082019050919050565b6000602082019050818103600083015261461f816145e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614682602683613b57565b915061468d82614626565b604082019050919050565b600060208201905081810360008301526146b181614675565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614714602483613b57565b915061471f826146b8565b604082019050919050565b6000602082019050818103600083015261474381614707565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006147a6602283613b57565b91506147b18261474a565b604082019050919050565b600060208201905081810360008301526147d581614799565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614838602583613b57565b9150614843826147dc565b604082019050919050565b600060208201905081810360008301526148678161482b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148ca602383613b57565b91506148d58261486e565b604082019050919050565b600060208201905081810360008301526148f9816148bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614936601683613b57565b915061494182614900565b602082019050919050565b6000602082019050818103600083015261496581614929565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006149ee604983613b57565b91506149f98261496c565b606082019050919050565b60006020820190508181036000830152614a1d816149e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614a80603583613b57565b9150614a8b82614a24565b604082019050919050565b60006020820190508181036000830152614aaf81614a73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614aec601383613b57565b9150614af782614ab6565b602082019050919050565b60006020820190508181036000830152614b1b81614adf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614b7e603683613b57565b9150614b8982614b22565b604082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b6000614bbf82613c61565b9150614bca83613c61565b9250828203905081811115614be257614be16140b7565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614c44602683613b57565b9150614c4f82614be8565b604082019050919050565b60006020820190508181036000830152614c7381614c37565b9050919050565b600081905092915050565b50565b6000614c95600083614c7a565b9150614ca082614c85565b600082019050919050565b6000614cb682614c88565b9150819050919050565b6000606082019050614cd56000830186613db4565b614ce26020830185613db4565b614cef6040830184613db4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614d6481613c35565b92915050565b600060208284031215614d8057614d7f613bfe565b5b6000614d8e84828501614d55565b91505092915050565b6000819050919050565b6000614dbc614db7614db284614d97565b613d3a565b613c61565b9050919050565b614dcc81614da1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614e0781613c23565b82525050565b6000614e198383614dfe565b60208301905092915050565b6000602082019050919050565b6000614e3d82614dd2565b614e478185614ddd565b9350614e5283614dee565b8060005b83811015614e83578151614e6a8882614e0d565b9750614e7583614e25565b925050600181019050614e56565b5085935050505092915050565b600060a082019050614ea56000830188613db4565b614eb26020830187614dc3565b8181036040830152614ec48186614e32565b9050614ed36060830185613e5e565b614ee06080830184613db4565b9695505050505050565b600060c082019050614eff6000830189613e5e565b614f0c6020830188613db4565b614f196040830187614dc3565b614f266060830186614dc3565b614f336080830185613e5e565b614f4060a0830184613db4565b979650505050505050565b600081519050614f5a81613c6b565b92915050565b600080600060608486031215614f7957614f78613bfe565b5b6000614f8786828701614f4b565b9350506020614f9886828701614f4b565b9250506040614fa986828701614f4b565b915050925092509256fea264697066735822122004f966b9fa3330f16822c7ebcc2749f520c01deb741d1a920d5652f4eee7cd6064736f6c63430008130033

Deployed Bytecode Sourcemap

27799:16220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6066:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8233:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29145:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27877:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7186:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36115:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28929:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28889;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33429:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8884:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27980:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7028:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9785:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27935:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28257:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36280:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28744:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28337:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7357:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1372:103;;;;;;;;;;;;;:::i;:::-;;32539:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28072:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28637;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34347:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32375:112;;;;;;;;;;;;;:::i;:::-;;721:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28109:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28779:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34239:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6285:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35368:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28711:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28969:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28855:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10503:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7697:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35876:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29370:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28297:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35178:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34758:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33712:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28555:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28142:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32926:495;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28603:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7935:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28184:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32721:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28674:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1630:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28817:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28224:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6066:100;6120:13;6153:5;6146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6066:100;:::o;8233:169::-;8316:4;8333:39;8342:12;:10;:12::i;:::-;8356:7;8365:6;8333:8;:39::i;:::-;8390:4;8383:11;;8233:169;;;;:::o;29145:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;27877:51::-;;;:::o;7186:108::-;7247:7;7274:12;;7267:19;;7186:108;:::o;36115:157::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36222:9:::1;;;;;;;;;;;36194:38;;36211:9;36194:38;;;;;;;;;;;;36255:9;36243;;:21;;;;;;;;;;;;;;;;;;36115:157:::0;:::o;28929:33::-;;;;:::o;28889:::-;;;;:::o;33429:275::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33566:4:::1;33558;33553:1;33537:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33536:26;;;;:::i;:::-;33535:35;;;;:::i;:::-;33525:6;:45;;33503:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;33689:6;33679;:17;;;;:::i;:::-;33656:20;:40;;;;33429:275:::0;:::o;8884:492::-;9024:4;9041:36;9051:6;9059:9;9070:6;9041:9;:36::i;:::-;9090:24;9117:11;:19;9129:6;9117:19;;;;;;;;;;;;;;;:33;9137:12;:10;:12::i;:::-;9117:33;;;;;;;;;;;;;;;;9090:60;;9189:6;9169:16;:26;;9161:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9276:57;9285:6;9293:12;:10;:12::i;:::-;9326:6;9307:16;:25;9276:8;:57::i;:::-;9364:4;9357:11;;;8884:492;;;;;:::o;27980:53::-;28026:6;27980:53;:::o;7028:93::-;7086:5;7111:2;7104:9;;7028:93;:::o;9785:215::-;9873:4;9890:80;9899:12;:10;:12::i;:::-;9913:7;9959:10;9922:11;:25;9934:12;:10;:12::i;:::-;9922:25;;;;;;;;;;;;;;;:34;9948:7;9922:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9890:8;:80::i;:::-;9988:4;9981:11;;9785:215;;;;:::o;27935:38::-;;;:::o;28257:33::-;;;;;;;;;;;;;:::o;36280:126::-;36346:4;36370:19;:28;36390:7;36370:28;;;;;;;;;;;;;;;;;;;;;;;;;36363:35;;36280:126;;;:::o;28744:28::-;;;;:::o;28337:31::-;;;;;;;;;;;;;:::o;7357:127::-;7431:7;7458:9;:18;7468:7;7458:18;;;;;;;;;;;;;;;;7451:25;;7357:127;;;:::o;1372:103::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1437:30:::1;1464:1;1437:18;:30::i;:::-;1372:103::o:0;32539:121::-;32591:4;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32625:5:::1;32608:14;;:22;;;;;;;;;;;;;;;;;;32648:4;32641:11;;32539:121:::0;:::o;33976:167::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34131:4:::1;34089:31;:39;34121:6;34089:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33976:167:::0;;:::o;28072:30::-;;;;;;;;;;;;;:::o;28637:::-;;;;:::o;34347:403::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34515:13:::1;34497:15;:31;;;;34557:13;34539:15;:31;;;;34593:7;34581:9;:19;;;;34662:9;;34644:15;;34626;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;34611:12;:60;;;;34706:2;34690:12;;:18;;34682:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34347:403:::0;;;:::o;32375:112::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32446:4:::1;32430:13;;:20;;;;;;;;;;;;;;;;;;32475:4;32461:11;;:18;;;;;;;;;;;;;;;;;;32375:112::o:0;721:87::-;767:7;794:6;;;;;;;;;;;787:13;;721:87;:::o;28109:24::-;;;;;;;;;;;;;:::o;28779:31::-;;;;:::o;34239:100::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34324:7:::1;34310:11;;:21;;;;;;;;;;;;;;;;;;34239:100:::0;:::o;6285:104::-;6341:13;6374:7;6367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6285:104;:::o;35368:304::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35512:13:::1;35504:21;;:4;:21;;::::0;35482:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35623:41;35652:4;35658:5;35623:28;:41::i;:::-;35368:304:::0;;:::o;28711:24::-;;;;:::o;28969:27::-;;;;:::o;28855:25::-;;;;:::o;10503:413::-;10596:4;10613:24;10640:11;:25;10652:12;:10;:12::i;:::-;10640:25;;;;;;;;;;;;;;;:34;10666:7;10640:34;;;;;;;;;;;;;;;;10613:61;;10713:15;10693:16;:35;;10685:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10806:67;10815:12;:10;:12::i;:::-;10829:7;10857:15;10838:16;:34;10806:8;:67::i;:::-;10904:4;10897:11;;;10503:413;;;;:::o;7697:175::-;7783:4;7800:42;7810:12;:10;:12::i;:::-;7824:9;7835:6;7800:9;:42::i;:::-;7860:4;7853:11;;7697:175;;;;:::o;35876:231::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:15:::1;;;;;;;;;;;35993:59;;36016:18;35993:59;;;;;;;;;;;;36081:18;36063:15;;:36;;;;;;;;;;;;;;;;;;35876:231:::0;:::o;29370:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;28297:33::-;;;;;;;;;;;;;:::o;35178:182::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35294:8:::1;35263:19;:28;35283:7;35263:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35334:7;35318:34;;;35343:8;35318:34;;;;;;:::i;:::-;;;;;;;;35178:182:::0;;:::o;34758:412::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34928:13:::1;34909:16;:32;;;;34971:13;34952:16;:32;;;;35008:7;34995:10;:20;;;;35080:10;;35061:16;;35042;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;35026:13;:64;;;;35126:2;35109:13;;:19;;35101:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34758:412:::0;;;:::o;33712:256::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33852:4:::1;33844;33839:1;33823:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33822:26;;;;:::i;:::-;33821:35;;;;:::i;:::-;33811:6;:45;;33789:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;33953:6;33943;:17;;;;:::i;:::-;33931:9;:29;;;;33712:256:::0;:::o;28555:39::-;;;;;;;;;;;;;:::o;28142:35::-;;;;:::o;32926:495::-;33034:4;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33113:5:::1;33108:1;33092:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33091:27;;;;:::i;:::-;33078:9;:40;;33056:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;33266:4;33261:1;33245:13;:11;:13::i;:::-;:17;;;;:::i;:::-;33244:26;;;;:::i;:::-;33231:9;:39;;33209:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;33382:9;33361:18;:30;;;;33409:4;33402:11;;32926:495:::0;;;:::o;28603:27::-;;;;:::o;7935:151::-;8024:7;8051:11;:18;8063:5;8051:18;;;;;;;;;;;;;;;:27;8070:7;8051:27;;;;;;;;;;;;;;;;8044:34;;7935:151;;;;:::o;28184:33::-;;;;:::o;32721:135::-;32781:4;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32821:5:::1;32798:20;;:28;;;;;;;;;;;;;;;;;;32844:4;32837:11;;32721:135:::0;:::o;28674:30::-;;;;:::o;1630:201::-;952:12;:10;:12::i;:::-;941:23;;:7;:5;:7::i;:::-;:23;;;933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1739:1:::1;1719:22;;:8;:22;;::::0;1711:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1795:28;1814:8;1795:18;:28::i;:::-;1630:201:::0;:::o;28817:31::-;;;;:::o;28224:24::-;;;;:::o;95:98::-;148:7;175:10;168:17;;95:98;:::o;14187:380::-;14340:1;14323:19;;:5;:19;;;14315:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:1;14402:21;;:7;:21;;;14394:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14505:6;14475:11;:18;14487:5;14475:18;;;;;;;;;;;;;;;:27;14494:7;14475:27;;;;;;;;;;;;;;;:36;;;;14543:7;14527:32;;14536:5;14527:32;;;14552:6;14527:32;;;;;;:::i;:::-;;;;;;;;14187:380;;;:::o;36414:4716::-;36562:1;36546:18;;:4;:18;;;36538:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36639:1;36625:16;;:2;:16;;;36617:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36708:1;36698:6;:11;36694:94;;36727:28;36743:4;36749:2;36753:1;36727:15;:28::i;:::-;36770:7;;36694:94;36802:14;;;;;;;;;;;36798:2487;;;36863:7;:5;:7::i;:::-;36855:15;;:4;:15;;;;:49;;;;;36897:7;:5;:7::i;:::-;36891:13;;:2;:13;;;;36855:49;:86;;;;;36939:1;36925:16;;:2;:16;;;;36855:86;:128;;;;;36976:6;36962:21;;:2;:21;;;;36855:128;:158;;;;;37005:8;;;;;;;;;;;37004:9;36855:158;36833:2441;;;37053:13;;;;;;;;;;;37048:223;;37125:19;:25;37145:4;37125:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37154:19;:23;37174:2;37154:23;;;;;;;;;;;;;;;;;;;;;;;;;37125:52;37091:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37048:223;37427:20;;;;;;;;;;;37423:641;;;37508:7;:5;:7::i;:::-;37502:13;;:2;:13;;;;:72;;;;;37558:15;37544:30;;:2;:30;;;;37502:72;:129;;;;;37617:13;37603:28;;:2;:28;;;;37502:129;37472:573;;;37795:12;37720:28;:39;37749:9;37720:39;;;;;;;;;;;;;;;;:87;37682:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;38009:12;37967:28;:39;37996:9;37967:39;;;;;;;;;;;;;;;:54;;;;37472:573;37423:641;38138:25;:31;38164:4;38138:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38195:31;:35;38227:2;38195:35;;;;;;;;;;;;;;;;;;;;;;;;;38194:36;38138:92;38112:1147;;;38317:20;;38307:6;:30;;38273:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;38525:9;;38508:13;38518:2;38508:9;:13::i;:::-;38499:6;:22;;;;:::i;:::-;:35;;38465:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38112:1147;;;38703:25;:29;38729:2;38703:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;38758:31;:37;38790:4;38758:37;;;;;;;;;;;;;;;;;;;;;;;;;38757:38;38703:92;38677:582;;;38882:20;;38872:6;:30;;38838:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;38677:582;;;39039:31;:35;39071:2;39039:35;;;;;;;;;;;;;;;;;;;;;;;;;39034:225;;39159:9;;39142:13;39152:2;39142:9;:13::i;:::-;39133:6;:22;;;;:::i;:::-;:35;;39099:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39034:225;38677:582;38112:1147;36833:2441;36798:2487;39297:28;39328:24;39346:4;39328:9;:24::i;:::-;39297:55;;39365:12;39404:18;;39380:20;:42;;39365:57;;39453:7;:35;;;;;39477:11;;;;;;;;;;;39453:35;:61;;;;;39506:8;;;;;;;;;;;39505:9;39453:61;:110;;;;;39532:25;:31;39558:4;39532:31;;;;;;;;;;;;;;;;;;;;;;;;;39531:32;39453:110;:153;;;;;39581:19;:25;39601:4;39581:25;;;;;;;;;;;;;;;;;;;;;;;;;39580:26;39453:153;:194;;;;;39624:19;:23;39644:2;39624:23;;;;;;;;;;;;;;;;;;;;;;;;;39623:24;39453:194;39435:326;;;39685:4;39674:8;;:15;;;;;;;;;;;;;;;;;;39706:10;:8;:10::i;:::-;39744:5;39733:8;;:16;;;;;;;;;;;;;;;;;;39435:326;39773:12;39789:8;;;;;;;;;;;39788:9;39773:24;;39899:19;:25;39919:4;39899:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39928:19;:23;39948:2;39928:23;;;;;;;;;;;;;;;;;;;;;;;;;39899:52;39895:100;;;39978:5;39968:15;;39895:100;40007:12;40112:7;40108:969;;;40164:25;:29;40190:2;40164:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40213:1;40197:13;;:17;40164:50;40160:768;;;40242:34;40272:3;40242:25;40253:13;;40242:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40235:41;;40345:13;;40325:16;;40318:4;:23;;;;:::i;:::-;40317:41;;;;:::i;:::-;40295:18;;:63;;;;;;;:::i;:::-;;;;;;;;40415:13;;40401:10;;40394:4;:17;;;;:::i;:::-;40393:35;;;;:::i;:::-;40377:12;;:51;;;;;;;:::i;:::-;;;;;;;;40497:13;;40477:16;;40470:4;:23;;;;:::i;:::-;40469:41;;;;:::i;:::-;40447:18;;:63;;;;;;;:::i;:::-;;;;;;;;40160:768;;;40572:25;:31;40598:4;40572:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40622:1;40607:12;;:16;40572:51;40568:360;;;40651:33;40680:3;40651:24;40662:12;;40651:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40644:40;;40752:12;;40733:15;;40726:4;:22;;;;:::i;:::-;40725:39;;;;:::i;:::-;40703:18;;:61;;;;;;;:::i;:::-;;;;;;;;40820:12;;40807:9;;40800:4;:16;;;;:::i;:::-;40799:33;;;;:::i;:::-;40783:12;;:49;;;;;;;:::i;:::-;;;;;;;;40900:12;;40881:15;;40874:4;:22;;;;:::i;:::-;40873:39;;;;:::i;:::-;40851:18;;:61;;;;;;;:::i;:::-;;;;;;;;40568:360;40160:768;40955:1;40948:4;:8;40944:91;;;40977:42;40993:4;41007;41014;40977:15;:42::i;:::-;40944:91;41061:4;41051:14;;;;;:::i;:::-;;;40108:969;41089:33;41105:4;41111:2;41115:6;41089:15;:33::i;:::-;36527:4603;;;;36414:4716;;;;:::o;1991:191::-;2065:16;2084:6;;;;;;;;;;;2065:25;;2110:8;2101:6;;:17;;;;;;;;;;;;;;;;;;2165:8;2134:40;;2155:8;2134:40;;;;;;;;;;;;2054:128;1991:191;:::o;35680:188::-;35797:5;35763:25;:31;35789:4;35763:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35854:5;35820:40;;35848:4;35820:40;;;;;;;;;;;;35680:188;;:::o;11406:733::-;11564:1;11546:20;;:6;:20;;;11538:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11648:1;11627:23;;:9;:23;;;11619:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11703:47;11724:6;11732:9;11743:6;11703:20;:47::i;:::-;11763:21;11787:9;:17;11797:6;11787:17;;;;;;;;;;;;;;;;11763:41;;11840:6;11823:13;:23;;11815:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11961:6;11945:13;:22;11925:9;:17;11935:6;11925:17;;;;;;;;;;;;;;;:42;;;;12013:6;11989:9;:20;11999:9;11989:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12054:9;12037:35;;12046:6;12037:35;;;12065:6;12037:35;;;;;;:::i;:::-;;;;;;;;12085:46;12105:6;12113:9;12124:6;12085:19;:46::i;:::-;11527:612;11406:733;;;:::o;42260:1756::-;42299:23;42325:24;42343:4;42325:9;:24::i;:::-;42299:50;;42360:25;42456:12;;42422:18;;42388;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;42360:108;;42479:12;42527:1;42508:15;:20;:46;;;;42553:1;42532:17;:22;42508:46;42504:85;;;42571:7;;;;;42504:85;42644:2;42623:18;;:23;;;;:::i;:::-;42605:15;:41;42601:115;;;42702:2;42681:18;;:23;;;;:::i;:::-;42663:41;;42601:115;42777:23;42890:1;42857:17;42822:18;;42804:15;:36;;;;:::i;:::-;42803:71;;;;:::i;:::-;:88;;;;:::i;:::-;42777:114;;42902:26;42931:36;42951:15;42931;:19;;:36;;;;:::i;:::-;42902:65;;42980:25;43008:21;42980:49;;43042:36;43059:18;43042:16;:36::i;:::-;43091:18;43112:44;43138:17;43112:21;:25;;:44;;;;:::i;:::-;43091:65;;43169:23;43195:81;43248:17;43195:34;43210:18;;43195:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;43169:107;;43287:17;43307:51;43340:17;43307:28;43322:12;;43307:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43287:71;;43371:23;43428:9;43410:15;43397:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;43371:66;;43471:1;43450:18;:22;;;;43504:1;43483:18;:22;;;;43531:1;43516:12;:16;;;;43567:9;;;;;;;;;;;43559:23;;43590:9;43559:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43545:59;;;;;43639:1;43621:15;:19;:42;;;;;43662:1;43644:15;:19;43621:42;43617:278;;;43680:46;43693:15;43710;43680:12;:46::i;:::-;43746:137;43779:18;43816:15;43850:18;;43746:137;;;;;;;;:::i;:::-;;;;;;;;43617:278;43929:15;;;;;;;;;;;43921:29;;43972:21;43921:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43907:101;;;;;42288:1728;;;;;;;;;;42260:1756;:::o;19116:98::-;19174:7;19205:1;19201;:5;;;;:::i;:::-;19194:12;;19116:98;;;;:::o;19515:::-;19573:7;19604:1;19600;:5;;;;:::i;:::-;19593:12;;19515:98;;;;:::o;15167:125::-;;;;:::o;15896:124::-;;;;:::o;18759:98::-;18817:7;18848:1;18844;:5;;;;:::i;:::-;18837:12;;18759:98;;;;:::o;41138:589::-;41264:21;41302:1;41288:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41264:40;;41333:4;41315;41320:1;41315:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41359:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41349:4;41354:1;41349:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41394:62;41411:4;41426:15;41444:11;41394:8;:62::i;:::-;41495:15;:66;;;41576:11;41602:1;41646:4;41673;41693:15;41495:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41193:534;41138:589;:::o;41735:517::-;41883:62;41900:4;41915:15;41933:11;41883:8;:62::i;:::-;41988:15;:31;;;42027:9;42060:4;42080:11;42106:1;42149;28026:6;42218:15;41988:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41735:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:179::-;13902:31;13898:1;13890:6;13886:14;13879:55;13762:179;:::o;13947:366::-;14089:3;14110:67;14174:2;14169:3;14110:67;:::i;:::-;14103:74;;14186:93;14275:3;14186:93;:::i;:::-;14304:2;14299:3;14295:12;14288:19;;13947:366;;;:::o;14319:419::-;14485:4;14523:2;14512:9;14508:18;14500:26;;14572:9;14566:4;14562:20;14558:1;14547:9;14543:17;14536:47;14600:131;14726:4;14600:131;:::i;:::-;14592:139;;14319:419;;;:::o;14744:244::-;14884:34;14880:1;14872:6;14868:14;14861:58;14953:27;14948:2;14940:6;14936:15;14929:52;14744:244;:::o;14994:366::-;15136:3;15157:67;15221:2;15216:3;15157:67;:::i;:::-;15150:74;;15233:93;15322:3;15233:93;:::i;:::-;15351:2;15346:3;15342:12;15335:19;;14994:366;;;:::o;15366:419::-;15532:4;15570:2;15559:9;15555:18;15547:26;;15619:9;15613:4;15609:20;15605:1;15594:9;15590:17;15583:47;15647:131;15773:4;15647:131;:::i;:::-;15639:139;;15366:419;;;:::o;15791:224::-;15931:34;15927:1;15919:6;15915:14;15908:58;16000:7;15995:2;15987:6;15983:15;15976:32;15791:224;:::o;16021:366::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:419::-;16559:4;16597:2;16586:9;16582:18;16574:26;;16646:9;16640:4;16636:20;16632:1;16621:9;16617:17;16610:47;16674:131;16800:4;16674:131;:::i;:::-;16666:139;;16393:419;;;:::o;16818:223::-;16958:34;16954:1;16946:6;16942:14;16935:58;17027:6;17022:2;17014:6;17010:15;17003:31;16818:223;:::o;17047:366::-;17189:3;17210:67;17274:2;17269:3;17210:67;:::i;:::-;17203:74;;17286:93;17375:3;17286:93;:::i;:::-;17404:2;17399:3;17395:12;17388:19;;17047:366;;;:::o;17419:419::-;17585:4;17623:2;17612:9;17608:18;17600:26;;17672:9;17666:4;17662:20;17658:1;17647:9;17643:17;17636:47;17700:131;17826:4;17700:131;:::i;:::-;17692:139;;17419:419;;;:::o;17844:239::-;17984:34;17980:1;17972:6;17968:14;17961:58;18053:22;18048:2;18040:6;18036:15;18029:47;17844:239;:::o;18089:366::-;18231:3;18252:67;18316:2;18311:3;18252:67;:::i;:::-;18245:74;;18328:93;18417:3;18328:93;:::i;:::-;18446:2;18441:3;18437:12;18430:19;;18089:366;;;:::o;18461:419::-;18627:4;18665:2;18654:9;18650:18;18642:26;;18714:9;18708:4;18704:20;18700:1;18689:9;18685:17;18678:47;18742:131;18868:4;18742:131;:::i;:::-;18734:139;;18461:419;;;:::o;18886:239::-;19026:34;19022:1;19014:6;19010:14;19003:58;19095:22;19090:2;19082:6;19078:15;19071:47;18886:239;:::o;19131:366::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:419::-;19669:4;19707:2;19696:9;19692:18;19684:26;;19756:9;19750:4;19746:20;19742:1;19731:9;19727:17;19720:47;19784:131;19910:4;19784:131;:::i;:::-;19776:139;;19503:419;;;:::o;19928:225::-;20068:34;20064:1;20056:6;20052:14;20045:58;20137:8;20132:2;20124:6;20120:15;20113:33;19928:225;:::o;20159:366::-;20301:3;20322:67;20386:2;20381:3;20322:67;:::i;:::-;20315:74;;20398:93;20487:3;20398:93;:::i;:::-;20516:2;20511:3;20507:12;20500:19;;20159:366;;;:::o;20531:419::-;20697:4;20735:2;20724:9;20720:18;20712:26;;20784:9;20778:4;20774:20;20770:1;20759:9;20755:17;20748:47;20812:131;20938:4;20812:131;:::i;:::-;20804:139;;20531:419;;;:::o;20956:223::-;21096:34;21092:1;21084:6;21080:14;21073:58;21165:6;21160:2;21152:6;21148:15;21141:31;20956:223;:::o;21185:366::-;21327:3;21348:67;21412:2;21407:3;21348:67;:::i;:::-;21341:74;;21424:93;21513:3;21424:93;:::i;:::-;21542:2;21537:3;21533:12;21526:19;;21185:366;;;:::o;21557:419::-;21723:4;21761:2;21750:9;21746:18;21738:26;;21810:9;21804:4;21800:20;21796:1;21785:9;21781:17;21774:47;21838:131;21964:4;21838:131;:::i;:::-;21830:139;;21557:419;;;:::o;21982:221::-;22122:34;22118:1;22110:6;22106:14;22099:58;22191:4;22186:2;22178:6;22174:15;22167:29;21982:221;:::o;22209:366::-;22351:3;22372:67;22436:2;22431:3;22372:67;:::i;:::-;22365:74;;22448:93;22537:3;22448:93;:::i;:::-;22566:2;22561:3;22557:12;22550:19;;22209:366;;;:::o;22581:419::-;22747:4;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22581:419;;;:::o;23006:224::-;23146:34;23142:1;23134:6;23130:14;23123:58;23215:7;23210:2;23202:6;23198:15;23191:32;23006:224;:::o;23236:366::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:419::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:222::-;24173:34;24169:1;24161:6;24157:14;24150:58;24242:5;24237:2;24229:6;24225:15;24218:30;24033:222;:::o;24261:366::-;24403:3;24424:67;24488:2;24483:3;24424:67;:::i;:::-;24417:74;;24500:93;24589:3;24500:93;:::i;:::-;24618:2;24613:3;24609:12;24602:19;;24261:366;;;:::o;24633:419::-;24799:4;24837:2;24826:9;24822:18;24814:26;;24886:9;24880:4;24876:20;24872:1;24861:9;24857:17;24850:47;24914:131;25040:4;24914:131;:::i;:::-;24906:139;;24633:419;;;:::o;25058:172::-;25198:24;25194:1;25186:6;25182:14;25175:48;25058:172;:::o;25236:366::-;25378:3;25399:67;25463:2;25458:3;25399:67;:::i;:::-;25392:74;;25475:93;25564:3;25475:93;:::i;:::-;25593:2;25588:3;25584:12;25577:19;;25236:366;;;:::o;25608:419::-;25774:4;25812:2;25801:9;25797:18;25789:26;;25861:9;25855:4;25851:20;25847:1;25836:9;25832:17;25825:47;25889:131;26015:4;25889:131;:::i;:::-;25881:139;;25608:419;;;:::o;26033:297::-;26173:34;26169:1;26161:6;26157:14;26150:58;26242:34;26237:2;26229:6;26225:15;26218:59;26311:11;26306:2;26298:6;26294:15;26287:36;26033:297;:::o;26336:366::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:419::-;26874:4;26912:2;26901:9;26897:18;26889:26;;26961:9;26955:4;26951:20;26947:1;26936:9;26932:17;26925:47;26989:131;27115:4;26989:131;:::i;:::-;26981:139;;26708:419;;;:::o;27133:240::-;27273:34;27269:1;27261:6;27257:14;27250:58;27342:23;27337:2;27329:6;27325:15;27318:48;27133:240;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:169::-;28316:21;28312:1;28304:6;28300:14;28293:45;28176:169;:::o;28351:366::-;28493:3;28514:67;28578:2;28573:3;28514:67;:::i;:::-;28507:74;;28590:93;28679:3;28590:93;:::i;:::-;28708:2;28703:3;28699:12;28692:19;;28351:366;;;:::o;28723:419::-;28889:4;28927:2;28916:9;28912:18;28904:26;;28976:9;28970:4;28966:20;28962:1;28951:9;28947:17;28940:47;29004:131;29130:4;29004:131;:::i;:::-;28996:139;;28723:419;;;:::o;29148:241::-;29288:34;29284:1;29276:6;29272:14;29265:58;29357:24;29352:2;29344:6;29340:15;29333:49;29148:241;:::o;29395:366::-;29537:3;29558:67;29622:2;29617:3;29558:67;:::i;:::-;29551:74;;29634:93;29723:3;29634:93;:::i;:::-;29752:2;29747:3;29743:12;29736:19;;29395:366;;;:::o;29767:419::-;29933:4;29971:2;29960:9;29956:18;29948:26;;30020:9;30014:4;30010:20;30006:1;29995:9;29991:17;29984:47;30048:131;30174:4;30048:131;:::i;:::-;30040:139;;29767:419;;;:::o;30192:194::-;30232:4;30252:20;30270:1;30252:20;:::i;:::-;30247:25;;30286:20;30304:1;30286:20;:::i;:::-;30281:25;;30330:1;30327;30323:9;30315:17;;30354:1;30348:4;30345:11;30342:37;;;30359:18;;:::i;:::-;30342:37;30192:194;;;;:::o;30392:225::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:8;30596:2;30588:6;30584:15;30577:33;30392:225;:::o;30623:366::-;30765:3;30786:67;30850:2;30845:3;30786:67;:::i;:::-;30779:74;;30862:93;30951:3;30862:93;:::i;:::-;30980:2;30975:3;30971:12;30964:19;;30623:366;;;:::o;30995:419::-;31161:4;31199:2;31188:9;31184:18;31176:26;;31248:9;31242:4;31238:20;31234:1;31223:9;31219:17;31212:47;31276:131;31402:4;31276:131;:::i;:::-;31268:139;;30995:419;;;:::o;31420:147::-;31521:11;31558:3;31543:18;;31420:147;;;;:::o;31573:114::-;;:::o;31693:398::-;31852:3;31873:83;31954:1;31949:3;31873:83;:::i;:::-;31866:90;;31965:93;32054:3;31965:93;:::i;:::-;32083:1;32078:3;32074:11;32067:18;;31693:398;;;:::o;32097:379::-;32281:3;32303:147;32446:3;32303:147;:::i;:::-;32296:154;;32467:3;32460:10;;32097:379;;;:::o;32482:442::-;32631:4;32669:2;32658:9;32654:18;32646:26;;32682:71;32750:1;32739:9;32735:17;32726:6;32682:71;:::i;:::-;32763:72;32831:2;32820:9;32816:18;32807:6;32763:72;:::i;:::-;32845;32913:2;32902:9;32898:18;32889:6;32845:72;:::i;:::-;32482:442;;;;;;:::o;32930:180::-;32978:77;32975:1;32968:88;33075:4;33072:1;33065:15;33099:4;33096:1;33089:15;33116:180;33164:77;33161:1;33154:88;33261:4;33258:1;33251:15;33285:4;33282:1;33275:15;33302:143;33359:5;33390:6;33384:13;33375:22;;33406:33;33433:5;33406:33;:::i;:::-;33302:143;;;;:::o;33451:351::-;33521:6;33570:2;33558:9;33549:7;33545:23;33541:32;33538:119;;;33576:79;;:::i;:::-;33538:119;33696:1;33721:64;33777:7;33768:6;33757:9;33753:22;33721:64;:::i;:::-;33711:74;;33667:128;33451:351;;;;:::o;33808:85::-;33853:7;33882:5;33871:16;;33808:85;;;:::o;33899:158::-;33957:9;33990:61;34008:42;34017:32;34043:5;34017:32;:::i;:::-;34008:42;:::i;:::-;33990:61;:::i;:::-;33977:74;;33899:158;;;:::o;34063:147::-;34158:45;34197:5;34158:45;:::i;:::-;34153:3;34146:58;34063:147;;:::o;34216:114::-;34283:6;34317:5;34311:12;34301:22;;34216:114;;;:::o;34336:184::-;34435:11;34469:6;34464:3;34457:19;34509:4;34504:3;34500:14;34485:29;;34336:184;;;;:::o;34526:132::-;34593:4;34616:3;34608:11;;34646:4;34641:3;34637:14;34629:22;;34526:132;;;:::o;34664:108::-;34741:24;34759:5;34741:24;:::i;:::-;34736:3;34729:37;34664:108;;:::o;34778:179::-;34847:10;34868:46;34910:3;34902:6;34868:46;:::i;:::-;34946:4;34941:3;34937:14;34923:28;;34778:179;;;;:::o;34963:113::-;35033:4;35065;35060:3;35056:14;35048:22;;34963:113;;;:::o;35112:732::-;35231:3;35260:54;35308:5;35260:54;:::i;:::-;35330:86;35409:6;35404:3;35330:86;:::i;:::-;35323:93;;35440:56;35490:5;35440:56;:::i;:::-;35519:7;35550:1;35535:284;35560:6;35557:1;35554:13;35535:284;;;35636:6;35630:13;35663:63;35722:3;35707:13;35663:63;:::i;:::-;35656:70;;35749:60;35802:6;35749:60;:::i;:::-;35739:70;;35595:224;35582:1;35579;35575:9;35570:14;;35535:284;;;35539:14;35835:3;35828:10;;35236:608;;;35112:732;;;;:::o;35850:831::-;36113:4;36151:3;36140:9;36136:19;36128:27;;36165:71;36233:1;36222:9;36218:17;36209:6;36165:71;:::i;:::-;36246:80;36322:2;36311:9;36307:18;36298:6;36246:80;:::i;:::-;36373:9;36367:4;36363:20;36358:2;36347:9;36343:18;36336:48;36401:108;36504:4;36495:6;36401:108;:::i;:::-;36393:116;;36519:72;36587:2;36576:9;36572:18;36563:6;36519:72;:::i;:::-;36601:73;36669:3;36658:9;36654:19;36645:6;36601:73;:::i;:::-;35850:831;;;;;;;;:::o;36687:807::-;36936:4;36974:3;36963:9;36959:19;36951:27;;36988:71;37056:1;37045:9;37041:17;37032:6;36988:71;:::i;:::-;37069:72;37137:2;37126:9;37122:18;37113:6;37069:72;:::i;:::-;37151:80;37227:2;37216:9;37212:18;37203:6;37151:80;:::i;:::-;37241;37317:2;37306:9;37302:18;37293:6;37241:80;:::i;:::-;37331:73;37399:3;37388:9;37384:19;37375:6;37331:73;:::i;:::-;37414;37482:3;37471:9;37467:19;37458:6;37414:73;:::i;:::-;36687:807;;;;;;;;;:::o;37500:143::-;37557:5;37588:6;37582:13;37573:22;;37604:33;37631:5;37604:33;:::i;:::-;37500:143;;;;:::o;37649:663::-;37737:6;37745;37753;37802:2;37790:9;37781:7;37777:23;37773:32;37770:119;;;37808:79;;:::i;:::-;37770:119;37928:1;37953:64;38009:7;38000:6;37989:9;37985:22;37953:64;:::i;:::-;37943:74;;37899:128;38066:2;38092:64;38148:7;38139:6;38128:9;38124:22;38092:64;:::i;:::-;38082:74;;38037:129;38205:2;38231:64;38287:7;38278:6;38267:9;38263:22;38231:64;:::i;:::-;38221:74;;38176:129;37649:663;;;;;:::o

Swarm Source

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