ETH Price: $2,378.60 (+0.44%)

Token

Shelter (Shelter)
 

Overview

Max Total Supply

100,000,000 Shelter

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
447,610.41604680508684431 Shelter

Value
$0.00
0x614f7611095d102b96f3a7017cbe88cbc5b946aa
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:
SHELTER

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

/**
 *
*/

// SPDX-License-Identifier: MIT

/** telegram : https://t.me/sheltererc
website : https://shelter-about.info
twitter : https://twitter.com/shelterbots
medium : https://shelterbot.medium.com/what-is-shelter-do-22e48f357086
**/
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    bool private swapping;
    
    uint256 public genesis_block;

    address public deployerAddress;
    address public lpLocker;

    address private devWallet;
    address private marketingWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyMarketingfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellMarketingfee;
    uint256 public sellLiquidityFee;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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


        uint256 _buydevfee = 28;
        uint256 _buyMarketingfee = 25;
        uint256 _buyLiquidityFee = 3;

        uint256 _selldevfee = 35;
        uint256 _sellMarketingfee = 30;
        uint256 _sellLiquidityFee = 5;

        uint256 totalSupply = 100_000_000 * 1e18;

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

        buydevfee = _buydevfee;
        buyMarketingfee = _buyMarketingfee;

        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellMarketingfee = _sellMarketingfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet
        marketingWallet = address(0xF174A9Ee97680b95C9af95B5226da815E8a2bc62);
        deployerAddress = address(msg.sender); 
        lpLocker = address(msg.sender); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(deployerAddress, true); // Deployer Address
        excludeFromFees(lpLocker, true); // LP Locker

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(deployerAddress, true); // Deployer Address
        excludeFromMaxTransaction(lpLocker, true); // LP Locker

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

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 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 _devfee,
        uint256 _marketingfee,
        
        uint256 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyMarketingfee = _marketingfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee + buyMarketingfee;
        require(buyTotalFees <= 30, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _marketingfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellMarketingfee = _marketingfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee + _marketingfee;
        require(sellTotalFees <= 50, "Must keep fees at 10% or less");
    }

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

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

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


    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.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                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 &&
            to == uniswapV2Pair &&
            !_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;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        uint256 tokensForMarketing = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * selldevfee) / sellTotalFees;
                tokensForMarketing = (fees * selldevfee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buydevfee) / buyTotalFees;
                tokensForMarketing = (fees * buydevfee) / buyTotalFees;
            }

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

            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] = ETH;

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

    // make the swap
    uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
        tokenAmount,
        0, // accept any amount of WETH
        path,
        devWallet,
        block.timestamp
    );

    // Send ETH to the marketingWallet
    payable(marketingWallet).transfer(address(this).balance);
}


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForETH(contractBalance);
    }

}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"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":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"buydevfee","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":[],"name":"deployerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"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":[],"name":"genesis_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"lpLocker","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":"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":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"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":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","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":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_marketingfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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"}]

60c060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280600781526020017f5368656c746572000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5368656c74657200000000000000000000000000000000000000000000000000815250816003908162000135919062000dda565b50806004908162000147919062000dda565b5050506200016a6200015e620006c260201b60201c565b620006ca60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200079060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000f2b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200029a92919062000f6e565b6020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000f2b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200032860a05160016200079060201b60201c565b6000601c90506000601990506000600390506000602390506000601e905060006005905060006a52b7d2dcc80cd2e400000090506103e86014826200036e919062000fca565b6200037a919062001044565b600c819055506103e860148262000392919062000fca565b6200039e919062001044565b600e81905550612710600582620003b6919062000fca565b620003c2919062001044565b600d81905550866011819055508560128190555084601381905550601354601154620003ef91906200107c565b6010819055508360158190555082601681905550816017819055506017546015546200041c91906200107c565b60148190555033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f174a9ee97680b95c9af95b5226da815e8a2bc62600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200055c6200054e6200087a60201b60201c565b6001620008a460201b60201c565b6200056f306001620008a460201b60201c565b6200058461dead6001620008a460201b60201c565b620005b9600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008a460201b60201c565b620005ee600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008a460201b60201c565b62000610620006026200087a60201b60201c565b60016200079060201b60201c565b620006233060016200079060201b60201c565b6200063861dead60016200079060201b60201c565b6200066d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b620006a2600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079060201b60201c565b620006b43382620009de60201b60201c565b505050505050505062001214565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007a0620006c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007c66200087a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200081f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008169062001118565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008b4620006c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008da6200087a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000933576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092a9062001118565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009d2919062001157565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4790620011c4565b60405180910390fd5b62000a646000838362000b5660201b60201c565b806002600082825462000a7891906200107c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000acf91906200107c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b369190620011f7565b60405180910390a362000b526000838362000b5b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000be257607f821691505b60208210810362000bf85762000bf762000b9a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c23565b62000c6e868362000c23565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cbb62000cb562000caf8462000c86565b62000c90565b62000c86565b9050919050565b6000819050919050565b62000cd78362000c9a565b62000cef62000ce68262000cc2565b84845462000c30565b825550505050565b600090565b62000d0662000cf7565b62000d1381848462000ccc565b505050565b5b8181101562000d3b5762000d2f60008262000cfc565b60018101905062000d19565b5050565b601f82111562000d8a5762000d548162000bfe565b62000d5f8462000c13565b8101602085101562000d6f578190505b62000d8762000d7e8562000c13565b83018262000d18565b50505b505050565b600082821c905092915050565b600062000daf6000198460080262000d8f565b1980831691505092915050565b600062000dca838362000d9c565b9150826002028217905092915050565b62000de58262000b60565b67ffffffffffffffff81111562000e015762000e0062000b6b565b5b62000e0d825462000bc9565b62000e1a82828562000d3f565b600060209050601f83116001811462000e52576000841562000e3d578287015190505b62000e49858262000dbc565b86555062000eb9565b601f19841662000e628662000bfe565b60005b8281101562000e8c5784890151825560018201915060208501945060208101905062000e65565b8683101562000eac578489015162000ea8601f89168262000d9c565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ef38262000ec6565b9050919050565b62000f058162000ee6565b811462000f1157600080fd5b50565b60008151905062000f258162000efa565b92915050565b60006020828403121562000f445762000f4362000ec1565b5b600062000f548482850162000f14565b91505092915050565b62000f688162000ee6565b82525050565b600060408201905062000f85600083018562000f5d565b62000f94602083018462000f5d565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fd78262000c86565b915062000fe48362000c86565b925082820262000ff48162000c86565b915082820484148315176200100e576200100d62000f9b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010518262000c86565b91506200105e8362000c86565b92508262001071576200107062001015565b5b828204905092915050565b6000620010898262000c86565b9150620010968362000c86565b9250828201905080821115620010b157620010b062000f9b565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001100602083620010b7565b91506200110d82620010c8565b602082019050919050565b600060208201905081810360008301526200113381620010f1565b9050919050565b60008115159050919050565b62001151816200113a565b82525050565b60006020820190506200116e600083018462001146565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011ac601f83620010b7565b9150620011b98262001174565b602082019050919050565b60006020820190508181036000830152620011df816200119d565b9050919050565b620011f18162000c86565b82525050565b60006020820190506200120e6000830184620011e6565b92915050565b60805160a051613f756200126b60003960008181610f61015281816122160152818161245f0152818161266b01528181612753015261285a015260008181610bc901528181612d860152612dad0152613f756000f3fe60806040526004361061028c5760003560e01c8063751039fc1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b8063924de9b711610113578063924de9b7146107a157806395d89b41146107ca578063a9059cbb146107f5578063aacebbe314610832578063bbc0c7421461085b578063c02466681461088657610293565b8063751039fc146106b75780637571336a146106e25780638095d5641461070b5780638322fff2146107345780638a8c523c1461075f5780638da5cb5b1461077657610293565b8063313ce567116101fe5780634fbee193116101b75780634fbee193146105a557806365c1bef8146105e25780636a486a8e1461060d5780636ddd17131461063857806370a0823114610663578063715018a6146106a057610293565b8063313ce567146104a35780634853e7d9146104ce578063489ae78d146104f957806348c492d61461052457806349bd5a5e1461054f5780634a62bb651461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b919061316f565b60405180910390f35b34801561053057600080fd5b50610539610f59565b604051610546919061316f565b60405180910390f35b34801561055b57600080fd5b50610564610f5f565b6040516105719190612f0f565b60405180910390f35b34801561058657600080fd5b5061058f610f83565b60405161059c919061309e565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906130b9565b610f96565b6040516105d9919061309e565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061316f565b60405180910390f35b34801561064457600080fd5b5061064d610ff8565b60405161065a919061309e565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906130b9565b61100b565b604051610697919061316f565b60405180910390f35b3480156106ac57600080fd5b506106b5611053565b005b3480156106c357600080fd5b506106cc6110db565b6040516106d9919061309e565b60405180910390f35b3480156106ee57600080fd5b506107096004803603810190610704919061326d565b61117b565b005b34801561071757600080fd5b50610732600480360381019061072d91906132ad565b611252565b005b34801561074057600080fd5b50610749611351565b6040516107569190612f0f565b60405180910390f35b34801561076b57600080fd5b50610774611377565b005b34801561078257600080fd5b5061078b61142b565b6040516107989190612f0f565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613300565b611455565b005b3480156107d657600080fd5b506107df6114ee565b6040516107ec9190612fba565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613043565b611580565b604051610829919061309e565b60405180910390f35b34801561083e57600080fd5b50610859600480360381019061085491906130b9565b61159e565b005b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d5761142b565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60125481565b60115481565b60165481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105b611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661107961142b565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613419565b60405180910390fd5b6110d960006128a7565b565b60006110e5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661110361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b611183611d3b565b73ffffffffffffffffffffffffffffffffffffffff166111a161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661127861142b565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f6919061362e565b611300919061362e565b601081905550601e601054111561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61137f611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661139d61142b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661147b61142b565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546114fd9061339c565b80601f01602080910402602001604051908101604052809291908181526020018280546115299061339c565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b600061159461158d611d3b565b8484611f0c565b6001905092915050565b6115a6611d3b565b73ffffffffffffffffffffffffffffffffffffffff166115c461142b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661171361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661183861142b565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661193561142b565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d5761202061142b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e61142b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f8361100b565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd8361100b565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b60006124183061100b565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f00000000000000000000000000000000000000000000000000000000000000008561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf73061100b565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f000000000000000000000000000000000000000000000000000000000000000084611d43565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea26469706673582212204622f8c21e5728ba8b6a1f29fa7201da488469df2f50022cd4b1ea96fc44fba564736f6c63430008110033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063751039fc1161015a578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146109d1578063efdee94f146109fc578063f11a24d314610a27578063f2fde38b14610a52578063f637434214610a7b578063f8b45b0514610aa657610293565b8063c17b5b8c146108af578063c18bc195146108d8578063c8c8ebe414610901578063d257b34f1461092c578063d85ba06314610969578063dd62ed3e1461099457610293565b8063924de9b711610113578063924de9b7146107a157806395d89b41146107ca578063a9059cbb146107f5578063aacebbe314610832578063bbc0c7421461085b578063c02466681461088657610293565b8063751039fc146106b75780637571336a146106e25780638095d5641461070b5780638322fff2146107345780638a8c523c1461075f5780638da5cb5b1461077657610293565b8063313ce567116101fe5780634fbee193116101b75780634fbee193146105a557806365c1bef8146105e25780636a486a8e1461060d5780636ddd17131461063857806370a0823114610663578063715018a6146106a057610293565b8063313ce567146104a35780634853e7d9146104ce578063489ae78d146104f957806348c492d61461052457806349bd5a5e1461054f5780634a62bb651461057a57610293565b806318160ddd1161025057806318160ddd146103935780631816467f146103be578063203e727e146103e757806323b872dd14610410578063274a533c1461044d57806327c8f8351461047857610293565b806303fc20131461029857806306fdde03146102c3578063095ea7b3146102ee57806310d5de531461032b5780631694505e1461036857610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad1565b6040516102ba9190612f0f565b60405180910390f35b3480156102cf57600080fd5b506102d8610af7565b6040516102e59190612fba565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190613043565b610b89565b604051610322919061309e565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d91906130b9565b610ba7565b60405161035f919061309e565b60405180910390f35b34801561037457600080fd5b5061037d610bc7565b60405161038a9190613145565b60405180910390f35b34801561039f57600080fd5b506103a8610beb565b6040516103b5919061316f565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906130b9565b610bf5565b005b3480156103f357600080fd5b5061040e6004803603810190610409919061318a565b610d31565b005b34801561041c57600080fd5b50610437600480360381019061043291906131b7565b610e40565b604051610444919061309e565b60405180910390f35b34801561045957600080fd5b50610462610f38565b60405161046f919061316f565b60405180910390f35b34801561048457600080fd5b5061048d610f3e565b60405161049a9190612f0f565b60405180910390f35b3480156104af57600080fd5b506104b8610f44565b6040516104c59190613226565b60405180910390f35b3480156104da57600080fd5b506104e3610f4d565b6040516104f0919061316f565b60405180910390f35b34801561050557600080fd5b5061050e610f53565b60405161051b919061316f565b60405180910390f35b34801561053057600080fd5b50610539610f59565b604051610546919061316f565b60405180910390f35b34801561055b57600080fd5b50610564610f5f565b6040516105719190612f0f565b60405180910390f35b34801561058657600080fd5b5061058f610f83565b60405161059c919061309e565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c791906130b9565b610f96565b6040516105d9919061309e565b60405180910390f35b3480156105ee57600080fd5b506105f7610fec565b604051610604919061316f565b60405180910390f35b34801561061957600080fd5b50610622610ff2565b60405161062f919061316f565b60405180910390f35b34801561064457600080fd5b5061064d610ff8565b60405161065a919061309e565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906130b9565b61100b565b604051610697919061316f565b60405180910390f35b3480156106ac57600080fd5b506106b5611053565b005b3480156106c357600080fd5b506106cc6110db565b6040516106d9919061309e565b60405180910390f35b3480156106ee57600080fd5b506107096004803603810190610704919061326d565b61117b565b005b34801561071757600080fd5b50610732600480360381019061072d91906132ad565b611252565b005b34801561074057600080fd5b50610749611351565b6040516107569190612f0f565b60405180910390f35b34801561076b57600080fd5b50610774611377565b005b34801561078257600080fd5b5061078b61142b565b6040516107989190612f0f565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613300565b611455565b005b3480156107d657600080fd5b506107df6114ee565b6040516107ec9190612fba565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613043565b611580565b604051610829919061309e565b60405180910390f35b34801561083e57600080fd5b50610859600480360381019061085491906130b9565b61159e565b005b34801561086757600080fd5b506108706116da565b60405161087d919061309e565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a8919061326d565b6116ed565b005b3480156108bb57600080fd5b506108d660048036038101906108d191906132ad565b611812565b005b3480156108e457600080fd5b506108ff60048036038101906108fa919061318a565b61190f565b005b34801561090d57600080fd5b50610916611a1e565b604051610923919061316f565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e919061318a565b611a24565b604051610960919061309e565b60405180910390f35b34801561097557600080fd5b5061097e611b79565b60405161098b919061316f565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b6919061332d565b611b7f565b6040516109c8919061316f565b60405180910390f35b3480156109dd57600080fd5b506109e6611c06565b6040516109f3919061316f565b60405180910390f35b348015610a0857600080fd5b50610a11611c0c565b604051610a1e9190612f0f565b60405180910390f35b348015610a3357600080fd5b50610a3c611c32565b604051610a49919061316f565b60405180910390f35b348015610a5e57600080fd5b50610a796004803603810190610a7491906130b9565b611c38565b005b348015610a8757600080fd5b50610a90611d2f565b604051610a9d919061316f565b60405180910390f35b348015610ab257600080fd5b50610abb611d35565b604051610ac8919061316f565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b069061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b329061339c565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b6000610b9d610b96611d3b565b8484611d43565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bfd611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610c1b61142b565b73ffffffffffffffffffffffffffffffffffffffff1614610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6890613419565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d39611d3b565b73ffffffffffffffffffffffffffffffffffffffff16610d5761142b565b73ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613419565b60405180910390fd5b670de0b6b3a76400006103e86005610dc3610beb565b610dcd9190613468565b610dd791906134d9565b610de191906134d9565b811015610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a9061357c565b60405180910390fd5b670de0b6b3a764000081610e379190613468565b600c8190555050565b6000610e4d848484611f0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e98611d3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061360e565b60405180910390fd5b610f2c85610f24611d3b565b858403611d43565b60019150509392505050565b60075481565b61dead81565b60006012905090565b60125481565b60115481565b60165481565b7f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f79881565b600f60009054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60145481565b600f60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61105b611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661107961142b565b73ffffffffffffffffffffffffffffffffffffffff16146110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690613419565b60405180910390fd5b6110d960006128a7565b565b60006110e5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661110361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090613419565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b611183611d3b565b73ffffffffffffffffffffffffffffffffffffffff166111a161142b565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613419565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61125a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661127861142b565b73ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613419565b60405180910390fd5b8260118190555081601281905550806013819055506012546013546011546112f6919061362e565b611300919061362e565b601081905550601e601054111561134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906136ae565b60405180910390fd5b505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61137f611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661139d61142b565b73ffffffffffffffffffffffffffffffffffffffff16146113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90613419565b60405180910390fd5b6001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61145d611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661147b61142b565b73ffffffffffffffffffffffffffffffffffffffff16146114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890613419565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b6060600480546114fd9061339c565b80601f01602080910402602001604051908101604052809291908181526020018280546115299061339c565b80156115765780601f1061154b57610100808354040283529160200191611576565b820191906000526020600020905b81548152906001019060200180831161155957829003601f168201915b5050505050905090565b600061159461158d611d3b565b8484611f0c565b6001905092915050565b6115a6611d3b565b73ffffffffffffffffffffffffffffffffffffffff166115c461142b565b73ffffffffffffffffffffffffffffffffffffffff161461161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613419565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f60019054906101000a900460ff1681565b6116f5611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661171361142b565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613419565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611806919061309e565b60405180910390a25050565b61181a611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661183861142b565b73ffffffffffffffffffffffffffffffffffffffff161461188e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188590613419565b60405180910390fd5b826015819055508160168190555080601781905550816017546015546118b4919061362e565b6118be919061362e565b6014819055506032601454111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906136ae565b60405180910390fd5b505050565b611917611d3b565b73ffffffffffffffffffffffffffffffffffffffff1661193561142b565b73ffffffffffffffffffffffffffffffffffffffff161461198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198290613419565b60405180910390fd5b670de0b6b3a76400006103e860056119a1610beb565b6119ab9190613468565b6119b591906134d9565b6119bf91906134d9565b811015611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613740565b60405180910390fd5b670de0b6b3a764000081611a159190613468565b600e8190555050565b600c5481565b6000611a2e611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611a4c61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613419565b60405180910390fd5b620186a06001611ab0610beb565b611aba9190613468565b611ac491906134d9565b821015611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd906137d2565b60405180910390fd5b6103e86005611b13610beb565b611b1d9190613468565b611b2791906134d9565b821115611b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6090613864565b60405180910390fd5b81600d8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b611c40611d3b565b73ffffffffffffffffffffffffffffffffffffffff16611c5e61142b565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a906138f6565b60405180910390fd5b611d2c816128a7565b50565b60175481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da990613988565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613a1a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eff919061316f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe190613b3e565b60405180910390fd5b6000810361200357611ffe8383600061296d565b6128a2565b600f60009054906101000a900460ff161561240d5761202061142b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561208e575061205e61142b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156120c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612101575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561211a5750600660149054906101000a900460ff16155b1561240c57600f60019054906101000a900460ff1661221457601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121d45750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613baa565b60405180910390fd5b5b7f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f79873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156122b95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561236057600c54811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa90613c3c565b60405180910390fd5b600e5461230f8361100b565b8261231a919061362e565b111561235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290613ca8565b60405180910390fd5b61240b565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661240a57600e546123bd8361100b565b826123c8919061362e565b1115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613ca8565b60405180910390fd5b5b5b5b5b60006124183061100b565b90506000600d54821015905080801561243d5750600f60029054906101000a900460ff165b80156124565750600660149054906101000a900460ff16155b80156124ad57507f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f79873ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156125035750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156125595750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561259d576001600660146101000a81548160ff021916908315150217905550612581612bec565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561265d57600090505b600080600080841561288f577f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f79873ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156126c657506000601454115b15612751576126f360646126e56014548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601454601754856127069190613468565b61271091906134d9565b9250601454601554856127239190613468565b61272d91906134d9565b9150601454601554856127409190613468565b61274a91906134d9565b9050612836565b7f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f79873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156127ae57506000601054115b15612835576127db60646127cd6010548b612c3c90919063ffffffff16565b612c5290919063ffffffff16565b9350601054601354856127ee9190613468565b6127f891906134d9565b92506010546011548561280b9190613468565b61281591906134d9565b9150601054601154856128289190613468565b61283291906134d9565b90505b5b600084111561284b5761284a8a308661296d565b5b60008311156128805761287f307f000000000000000000000000353363df29613e4f37ed2546fa771a6f8d46f7988561296d565b5b838861288c9190613cc8565b97505b61289a8a8a8a61296d565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4290613b3e565b60405180910390fd5b612a56838383612c68565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390613d6e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b6f919061362e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bd3919061316f565b60405180910390a3612be6848484612c6d565b50505050565b6000612bf73061100b565b905060008103612c075750612c3a565b6014600d54612c169190613468565b811115612c2f576014600d54612c2c9190613468565b90505b612c3881612c72565b505b565b60008183612c4a9190613468565b905092915050565b60008183612c6091906134d9565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c8f57612c8e613d8e565b5b604051908082528060200260200182016040528015612cbd5781602001602082028036833780820191505090505b5090503081600081518110612cd557612cd4613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612d4657612d45613dbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612dab307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d43565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612e2f959493929190613ee5565b600060405180830381600087803b158015612e4957600080fd5b505af1158015612e5d573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612ec9573d6000803e3d6000fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ef982612ece565b9050919050565b612f0981612eee565b82525050565b6000602082019050612f246000830184612f00565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f64578082015181840152602081019050612f49565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f8c82612f2a565b612f968185612f35565b9350612fa6818560208601612f46565b612faf81612f70565b840191505092915050565b60006020820190508181036000830152612fd48184612f81565b905092915050565b600080fd5b612fea81612eee565b8114612ff557600080fd5b50565b60008135905061300781612fe1565b92915050565b6000819050919050565b6130208161300d565b811461302b57600080fd5b50565b60008135905061303d81613017565b92915050565b6000806040838503121561305a57613059612fdc565b5b600061306885828601612ff8565b92505060206130798582860161302e565b9150509250929050565b60008115159050919050565b61309881613083565b82525050565b60006020820190506130b3600083018461308f565b92915050565b6000602082840312156130cf576130ce612fdc565b5b60006130dd84828501612ff8565b91505092915050565b6000819050919050565b600061310b61310661310184612ece565b6130e6565b612ece565b9050919050565b600061311d826130f0565b9050919050565b600061312f82613112565b9050919050565b61313f81613124565b82525050565b600060208201905061315a6000830184613136565b92915050565b6131698161300d565b82525050565b60006020820190506131846000830184613160565b92915050565b6000602082840312156131a05761319f612fdc565b5b60006131ae8482850161302e565b91505092915050565b6000806000606084860312156131d0576131cf612fdc565b5b60006131de86828701612ff8565b93505060206131ef86828701612ff8565b92505060406132008682870161302e565b9150509250925092565b600060ff82169050919050565b6132208161320a565b82525050565b600060208201905061323b6000830184613217565b92915050565b61324a81613083565b811461325557600080fd5b50565b60008135905061326781613241565b92915050565b6000806040838503121561328457613283612fdc565b5b600061329285828601612ff8565b92505060206132a385828601613258565b9150509250929050565b6000806000606084860312156132c6576132c5612fdc565b5b60006132d48682870161302e565b93505060206132e58682870161302e565b92505060406132f68682870161302e565b9150509250925092565b60006020828403121561331657613315612fdc565b5b600061332484828501613258565b91505092915050565b6000806040838503121561334457613343612fdc565b5b600061335285828601612ff8565b925050602061336385828601612ff8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133b457607f821691505b6020821081036133c7576133c661336d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613403602083612f35565b915061340e826133cd565b602082019050919050565b60006020820190508181036000830152613432816133f6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134738261300d565b915061347e8361300d565b925082820261348c8161300d565b915082820484148315176134a3576134a2613439565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006134e48261300d565b91506134ef8361300d565b9250826134ff576134fe6134aa565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613566602f83612f35565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006135f8602883612f35565b91506136038261359c565b604082019050919050565b60006020820190508181036000830152613627816135eb565b9050919050565b60006136398261300d565b91506136448361300d565b925082820190508082111561365c5761365b613439565b5b92915050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613698601d83612f35565b91506136a382613662565b602082019050919050565b600060208201905081810360008301526136c78161368b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061372a602483612f35565b9150613735826136ce565b604082019050919050565b600060208201905081810360008301526137598161371d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137bc603583612f35565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061384e603483612f35565b9150613859826137f2565b604082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138e0602683612f35565b91506138eb82613884565b604082019050919050565b6000602082019050818103600083015261390f816138d3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613972602483612f35565b915061397d82613916565b604082019050919050565b600060208201905081810360008301526139a181613965565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a04602283612f35565b9150613a0f826139a8565b604082019050919050565b60006020820190508181036000830152613a33816139f7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a96602583612f35565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b28602383612f35565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613b94601683612f35565b9150613b9f82613b5e565b602082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613c26603583612f35565b9150613c3182613bca565b604082019050919050565b60006020820190508181036000830152613c5581613c19565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613c92601383612f35565b9150613c9d82613c5c565b602082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b6000613cd38261300d565b9150613cde8361300d565b9250828203905081811115613cf657613cf5613439565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d58602683612f35565b9150613d6382613cfc565b604082019050919050565b60006020820190508181036000830152613d8781613d4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613e11613e0c613e0784613dec565b6130e6565b61300d565b9050919050565b613e2181613df6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e5c81612eee565b82525050565b6000613e6e8383613e53565b60208301905092915050565b6000602082019050919050565b6000613e9282613e27565b613e9c8185613e32565b9350613ea783613e43565b8060005b83811015613ed8578151613ebf8882613e62565b9750613eca83613e7a565b925050600181019050613eab565b5085935050505092915050565b600060a082019050613efa6000830188613160565b613f076020830187613e18565b8181036040830152613f198186613e87565b9050613f286060830185612f00565b613f356080830184613160565b969550505050505056fea26469706673582212204622f8c21e5728ba8b6a1f29fa7201da488469df2f50022cd4b1ea96fc44fba564736f6c63430008110033

Deployed Bytecode Sourcemap

24890:12365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25310:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9746:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11913:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26074:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24967:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10866:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31828:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29882:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12564:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25236:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25070:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10708:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25713:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25682:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25856:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25025:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25529:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32276:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25824:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25789:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25609:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11037:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2981:103;;;;;;;;;;;;;:::i;:::-;;29186:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30429:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30800:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25130:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29022:112;;;;;;;;;;;;;:::i;:::-;;2330:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30692:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9965:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11377:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32029:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25569:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31638:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31221:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30165:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25414:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29377:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25648:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11615:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25456:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25273:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25750;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3239:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25894:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25496:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25310:23;;;;;;;;;;;;;:::o;9746:100::-;9800:13;9833:5;9826:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9746:100;:::o;11913:169::-;11996:4;12013:39;12022:12;:10;:12::i;:::-;12036:7;12045:6;12013:8;:39::i;:::-;12070:4;12063:11;;11913:169;;;;:::o;26074:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24967:51::-;;;:::o;10866:108::-;10927:7;10954:12;;10947:19;;10866:108;:::o;31828:189::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31964:9:::1;;;;;;;;;;;31933:41;;31950:12;31933:41;;;;;;;;;;;;31997:12;31985:9;;:24;;;;;;;;;;;;;;;;;;31828:189:::0;:::o;29882:275::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30019:4:::1;30011;30006:1;29990:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29989:26;;;;:::i;:::-;29988:35;;;;:::i;:::-;29978:6;:45;;29956:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:6;30132;:17;;;;:::i;:::-;30109:20;:40;;;;29882:275:::0;:::o;12564:492::-;12704:4;12721:36;12731:6;12739:9;12750:6;12721:9;:36::i;:::-;12770:24;12797:11;:19;12809:6;12797:19;;;;;;;;;;;;;;;:33;12817:12;:10;:12::i;:::-;12797:33;;;;;;;;;;;;;;;;12770:60;;12869:6;12849:16;:26;;12841:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12956:57;12965:6;12973:12;:10;:12::i;:::-;13006:6;12987:16;:25;12956:8;:57::i;:::-;13044:4;13037:11;;;12564:492;;;;;:::o;25236:28::-;;;;:::o;25070:53::-;25116:6;25070:53;:::o;10708:93::-;10766:5;10791:2;10784:9;;10708:93;:::o;25713:30::-;;;;:::o;25682:24::-;;;;:::o;25856:31::-;;;;:::o;25025:38::-;;;:::o;25529:33::-;;;;;;;;;;;;;:::o;32276:126::-;32342:4;32366:19;:28;32386:7;32366:28;;;;;;;;;;;;;;;;;;;;;;;;;32359:35;;32276:126;;;:::o;25824:25::-;;;;:::o;25789:28::-;;;;:::o;25609:30::-;;;;;;;;;;;;;:::o;11037:127::-;11111:7;11138:9;:18;11148:7;11138:18;;;;;;;;;;;;;;;;11131:25;;11037:127;;;:::o;2981:103::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3046:30:::1;3073:1;3046:18;:30::i;:::-;2981:103::o:0;29186:121::-;29238:4;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29272:5:::1;29255:14;;:22;;;;;;;;;;;;;;;;;;29295:4;29288:11;;29186:121:::0;:::o;30429:167::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30584:4:::1;30542:31;:39;30574:6;30542:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30429:167:::0;;:::o;30800:413::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30972:7:::1;30960:9;:19;;;;31008:13;30990:15;:31;;;;31050:13;31032:15;:31;;;;31119:15;;31101;;31089:9;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;31074:12;:60;;;;31169:2;31153:12;;:18;;31145:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;30800:413:::0;;;:::o;25130:63::-;;;;;;;;;;;;;:::o;29022:112::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29093:4:::1;29077:13;;:20;;;;;;;;;;;;;;;;;;29122:4;29108:11;;:18;;;;;;;;;;;;;;;;;;29022:112::o:0;2330:87::-;2376:7;2403:6;;;;;;;;;;;2396:13;;2330:87;:::o;30692:100::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30777:7:::1;30763:11;;:21;;;;;;;;;;;;;;;;;;30692:100:::0;:::o;9965:104::-;10021:13;10054:7;10047:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9965:104;:::o;11377:175::-;11463:4;11480:42;11490:12;:10;:12::i;:::-;11504:9;11515:6;11480:9;:42::i;:::-;11540:4;11533:11;;11377:175;;;;:::o;32029:231::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32189:15:::1;;;;;;;;;;;32146:59;;32169:18;32146:59;;;;;;;;;;;;32234:18;32216:15;;:36;;;;;;;;;;;;;;;;;;32029:231:::0;:::o;25569:33::-;;;;;;;;;;;;;:::o;31638:182::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31754:8:::1;31723:19;:28;31743:7;31723:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31794:7;31778:34;;;31803:8;31778:34;;;;;;:::i;:::-;;;;;;;;31638:182:::0;;:::o;31221:409::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31385:7:::1;31372:10;:20;;;;31422:13;31403:16;:32;;;;31465:13;31446:16;:32;;;;31537:13;31518:16;;31505:10;;:29;;;;:::i;:::-;:45;;;;:::i;:::-;31489:13;:61;;;;31586:2;31569:13;;:19;;31561:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31221:409:::0;;;:::o;30165:256::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30305:4:::1;30297;30292:1;30276:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30275:26;;;;:::i;:::-;30274:35;;;;:::i;:::-;30264:6;:45;;30242:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;30406:6;30396;:17;;;;:::i;:::-;30384:9;:29;;;;30165:256:::0;:::o;25414:35::-;;;;:::o;29377:497::-;29485:4;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29564:6:::1;29559:1;29543:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29542:28;;;;:::i;:::-;29529:9;:41;;29507:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;29719:4;29714:1;29698:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29697:26;;;;:::i;:::-;29684:9;:39;;29662:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;29835:9;29814:18;:30;;;;29862:4;29855:11;;29377:497:::0;;;:::o;25648:27::-;;;;:::o;11615:151::-;11704:7;11731:11;:18;11743:5;11731:18;;;;;;;;;;;;;;;:27;11750:7;11731:27;;;;;;;;;;;;;;;;11724:34;;11615:151;;;;:::o;25456:33::-;;;;:::o;25273:30::-;;;;;;;;;;;;;:::o;25750:::-;;;;:::o;3239:201::-;2561:12;:10;:12::i;:::-;2550:23;;:7;:5;:7::i;:::-;:23;;;2542:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3348:1:::1;3328:22;;:8;:22;;::::0;3320:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3404:28;3423:8;3404:18;:28::i;:::-;3239:201:::0;:::o;25894:31::-;;;;:::o;25496:24::-;;;;:::o;1003:98::-;1056:7;1083:10;1076:17;;1003:98;:::o;15405:380::-;15558:1;15541:19;;:5;:19;;;15533:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15639:1;15620:21;;:7;:21;;;15612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15723:6;15693:11;:18;15705:5;15693:18;;;;;;;;;;;;;;;:27;15712:7;15693:27;;;;;;;;;;;;;;;:36;;;;15761:7;15745:32;;15754:5;15745:32;;;15770:6;15745:32;;;;;;:::i;:::-;;;;;;;;15405:380;;;:::o;32410:3868::-;32558:1;32542:18;;:4;:18;;;32534:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32635:1;32621:16;;:2;:16;;;32613:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32704:1;32694:6;:11;32690:93;;32722:28;32738:4;32744:2;32748:1;32722:15;:28::i;:::-;32765:7;;32690:93;32799:14;;;;;;;;;;;32795:1430;;;32860:7;:5;:7::i;:::-;32852:15;;:4;:15;;;;:49;;;;;32894:7;:5;:7::i;:::-;32888:13;;:2;:13;;;;32852:49;:86;;;;;32936:1;32922:16;;:2;:16;;;;32852:86;:128;;;;;32973:6;32959:21;;:2;:21;;;;32852:128;:158;;;;;33002:8;;;;;;;;;;;33001:9;32852:158;32830:1384;;;33050:13;;;;;;;;;;;33045:223;;33122:19;:25;33142:4;33122:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33151:19;:23;33171:2;33151:23;;;;;;;;;;;;;;;;;;;;;;;;;33122:52;33088:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;33045:223;33482:13;33474:21;;:4;:21;;;:82;;;;;33521:31;:35;33553:2;33521:35;;;;;;;;;;;;;;;;;;;;;;;;;33520:36;33474:82;33448:751;;;33643:20;;33633:6;:30;;33599:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33851:9;;33834:13;33844:2;33834:9;:13::i;:::-;33825:6;:22;;;;:::i;:::-;:35;;33791:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33448:751;;;33979:31;:35;34011:2;33979:35;;;;;;;;;;;;;;;;;;;;;;;;;33974:225;;34099:9;;34082:13;34092:2;34082:9;:13::i;:::-;34073:6;:22;;;;:::i;:::-;:35;;34039:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33974:225;33448:751;32830:1384;32795:1430;34237:28;34268:24;34286:4;34268:9;:24::i;:::-;34237:55;;34305:12;34344:18;;34320:20;:42;;34305:57;;34393:7;:35;;;;;34417:11;;;;;;;;;;;34393:35;:61;;;;;34446:8;;;;;;;;;;;34445:9;34393:61;:97;;;;;34477:13;34471:19;;:2;:19;;;34393:97;:140;;;;;34508:19;:25;34528:4;34508:25;;;;;;;;;;;;;;;;;;;;;;;;;34507:26;34393:140;:181;;;;;34551:19;:23;34571:2;34551:23;;;;;;;;;;;;;;;;;;;;;;;;;34550:24;34393:181;34375:313;;;34612:4;34601:8;;:15;;;;;;;;;;;;;;;;;;34633:10;:8;:10::i;:::-;34671:5;34660:8;;:16;;;;;;;;;;;;;;;;;;34375:313;34700:12;34716:8;;;;;;;;;;;34715:9;34700:24;;34826:19;:25;34846:4;34826:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34855:19;:23;34875:2;34855:23;;;;;;;;;;;;;;;;;;;;;;;;;34826:52;34822:100;;;34905:5;34895:15;;34822:100;34934:12;34961:26;35002:20;35037:26;35156:7;35152:1073;;;35214:13;35208:19;;:2;:19;;;:40;;;;;35247:1;35231:13;;:17;35208:40;35204:731;;;35276:34;35306:3;35276:25;35287:13;;35276:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35269:41;;35378:13;;35358:16;;35351:4;:23;;;;:::i;:::-;35350:41;;;;:::i;:::-;35329:62;;35447:13;;35433:10;;35426:4;:17;;;;:::i;:::-;35425:35;;;;:::i;:::-;35410:50;;35522:13;;35508:10;;35501:4;:17;;;;:::i;:::-;35500:35;;;;:::i;:::-;35479:56;;35204:731;;;35605:13;35597:21;;:4;:21;;;:41;;;;;35637:1;35622:12;;:16;35597:41;35593:342;;;35666:33;35695:3;35666:24;35677:12;;35666:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35659:40;;35766:12;;35747:15;;35740:4;:22;;;;:::i;:::-;35739:39;;;;:::i;:::-;35718:60;;35834:12;;35821:9;;35814:4;:16;;;;:::i;:::-;35813:33;;;;:::i;:::-;35798:48;;35907:12;;35894:9;;35887:4;:16;;;;:::i;:::-;35886:33;;;;:::i;:::-;35865:54;;35593:342;35204:731;35961:1;35955:4;:7;35951:90;;;35983:42;35999:4;36013;36020;35983:15;:42::i;:::-;35951:90;36080:1;36059:18;:22;36055:128;;;36102:65;36126:4;36133:13;36148:18;36102:15;:65::i;:::-;36055:128;36209:4;36199:14;;;;;:::i;:::-;;;35152:1073;36237:33;36253:4;36259:2;36263:6;36237:15;:33::i;:::-;32523:3755;;;;;;;32410:3868;;;;:::o;3600:191::-;3674:16;3693:6;;;;;;;;;;;3674:25;;3719:8;3710:6;;:17;;;;;;;;;;;;;;;;;;3774:8;3743:40;;3764:8;3743:40;;;;;;;;;;;;3663:128;3600:191;:::o;13546:733::-;13704:1;13686:20;;:6;:20;;;13678:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13788:1;13767:23;;:9;:23;;;13759:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:47;13864:6;13872:9;13883:6;13843:20;:47::i;:::-;13903:21;13927:9;:17;13937:6;13927:17;;;;;;;;;;;;;;;;13903:41;;13980:6;13963:13;:23;;13955:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14101:6;14085:13;:22;14065:9;:17;14075:6;14065:17;;;;;;;;;;;;;;;:42;;;;14153:6;14129:9;:20;14139:9;14129:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14194:9;14177:35;;14186:6;14177:35;;;14205:6;14177:35;;;;;;:::i;:::-;;;;;;;;14225:46;14245:6;14253:9;14264:6;14225:19;:46::i;:::-;13667:612;13546:733;;;:::o;36911:339::-;36950:23;36976:24;36994:4;36976:9;:24::i;:::-;36950:50;;37034:1;37015:15;:20;37011:59;;37052:7;;;37011:59;37125:2;37104:18;;:23;;;;:::i;:::-;37086:15;:41;37082:115;;;37183:2;37162:18;;:23;;;;:::i;:::-;37144:41;;37082:115;37209:33;37226:15;37209:16;:33::i;:::-;36939:311;36911:339;:::o;20858:98::-;20916:7;20947:1;20943;:5;;;;:::i;:::-;20936:12;;20858:98;;;;:::o;21257:::-;21315:7;21346:1;21342;:5;;;;:::i;:::-;21335:12;;21257:98;;;;:::o;16385:125::-;;;;:::o;17114:124::-;;;;:::o;36282:619::-;36400:21;36438:1;36424:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36400:40;;36465:4;36447;36452:1;36447:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36487:3;;;;;;;;;;;36477:4;36482:1;36477:7;;;;;;;;:::i;:::-;;;;;;;:13;;;;;;;;;;;36499:62;36516:4;36531:15;36549:11;36499:8;:62::i;:::-;36592:15;:69;;;36672:11;36694:1;36735:4;36750:9;;;;;;;;;;;36770:15;36592:200;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36849:15;;;;;;;;;;;36841:33;;:56;36875:21;36841:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36337:564;36282:619;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:152::-;4555:9;4588:37;4619:5;4588:37;:::i;:::-;4575:50;;4479:152;;;:::o;4637:183::-;4750:63;4807:5;4750:63;:::i;:::-;4745:3;4738:76;4637:183;;:::o;4826:274::-;4945:4;4983:2;4972:9;4968:18;4960:26;;4996:97;5090:1;5079:9;5075:17;5066:6;4996:97;:::i;:::-;4826:274;;;;:::o;5106:118::-;5193:24;5211:5;5193:24;:::i;:::-;5188:3;5181:37;5106:118;;:::o;5230:222::-;5323:4;5361:2;5350:9;5346:18;5338:26;;5374:71;5442:1;5431:9;5427:17;5418:6;5374:71;:::i;:::-;5230:222;;;;:::o;5458:329::-;5517:6;5566:2;5554:9;5545:7;5541:23;5537:32;5534:119;;;5572:79;;:::i;:::-;5534:119;5692:1;5717:53;5762:7;5753:6;5742:9;5738:22;5717:53;:::i;:::-;5707:63;;5663:117;5458:329;;;;:::o;5793:619::-;5870:6;5878;5886;5935:2;5923:9;5914:7;5910:23;5906:32;5903:119;;;5941:79;;:::i;:::-;5903:119;6061:1;6086:53;6131:7;6122:6;6111:9;6107:22;6086:53;:::i;:::-;6076:63;;6032:117;6188:2;6214:53;6259:7;6250:6;6239:9;6235:22;6214:53;:::i;:::-;6204:63;;6159:118;6316:2;6342:53;6387:7;6378:6;6367:9;6363:22;6342:53;:::i;:::-;6332:63;;6287:118;5793:619;;;;;:::o;6418:86::-;6453:7;6493:4;6486:5;6482:16;6471:27;;6418:86;;;:::o;6510:112::-;6593:22;6609:5;6593:22;:::i;:::-;6588:3;6581:35;6510:112;;:::o;6628:214::-;6717:4;6755:2;6744:9;6740:18;6732:26;;6768:67;6832:1;6821:9;6817:17;6808:6;6768:67;:::i;:::-;6628:214;;;;:::o;6848:116::-;6918:21;6933:5;6918:21;:::i;:::-;6911:5;6908:32;6898:60;;6954:1;6951;6944:12;6898:60;6848:116;:::o;6970:133::-;7013:5;7051:6;7038:20;7029:29;;7067:30;7091:5;7067:30;:::i;:::-;6970:133;;;;:::o;7109:468::-;7174:6;7182;7231:2;7219:9;7210:7;7206:23;7202:32;7199:119;;;7237:79;;:::i;:::-;7199:119;7357:1;7382:53;7427:7;7418:6;7407:9;7403:22;7382:53;:::i;:::-;7372:63;;7328:117;7484:2;7510:50;7552:7;7543:6;7532:9;7528:22;7510:50;:::i;:::-;7500:60;;7455:115;7109:468;;;;;:::o;7583:619::-;7660:6;7668;7676;7725:2;7713:9;7704:7;7700:23;7696:32;7693:119;;;7731:79;;:::i;:::-;7693:119;7851:1;7876:53;7921:7;7912:6;7901:9;7897:22;7876:53;:::i;:::-;7866:63;;7822:117;7978:2;8004:53;8049:7;8040:6;8029:9;8025:22;8004:53;:::i;:::-;7994:63;;7949:118;8106:2;8132:53;8177:7;8168:6;8157:9;8153:22;8132:53;:::i;:::-;8122:63;;8077:118;7583:619;;;;;:::o;8208:323::-;8264:6;8313:2;8301:9;8292:7;8288:23;8284:32;8281:119;;;8319:79;;:::i;:::-;8281:119;8439:1;8464:50;8506:7;8497:6;8486:9;8482:22;8464:50;:::i;:::-;8454:60;;8410:114;8208:323;;;;:::o;8537:474::-;8605:6;8613;8662:2;8650:9;8641:7;8637:23;8633:32;8630:119;;;8668:79;;:::i;:::-;8630:119;8788:1;8813:53;8858:7;8849:6;8838:9;8834:22;8813:53;:::i;:::-;8803:63;;8759:117;8915:2;8941:53;8986:7;8977:6;8966:9;8962:22;8941:53;:::i;:::-;8931:63;;8886:118;8537:474;;;;;:::o;9017:180::-;9065:77;9062:1;9055:88;9162:4;9159:1;9152:15;9186:4;9183:1;9176:15;9203:320;9247:6;9284:1;9278:4;9274:12;9264:22;;9331:1;9325:4;9321:12;9352:18;9342:81;;9408:4;9400:6;9396:17;9386:27;;9342:81;9470:2;9462:6;9459:14;9439:18;9436:38;9433:84;;9489:18;;:::i;:::-;9433:84;9254:269;9203:320;;;:::o;9529:182::-;9669:34;9665:1;9657:6;9653:14;9646:58;9529:182;:::o;9717:366::-;9859:3;9880:67;9944:2;9939:3;9880:67;:::i;:::-;9873:74;;9956:93;10045:3;9956:93;:::i;:::-;10074:2;10069:3;10065:12;10058:19;;9717:366;;;:::o;10089:419::-;10255:4;10293:2;10282:9;10278:18;10270:26;;10342:9;10336:4;10332:20;10328:1;10317:9;10313:17;10306:47;10370:131;10496:4;10370:131;:::i;:::-;10362:139;;10089:419;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:410;10740:7;10763:20;10781:1;10763:20;:::i;:::-;10758:25;;10797:20;10815:1;10797:20;:::i;:::-;10792:25;;10852:1;10849;10845:9;10874:30;10892:11;10874:30;:::i;:::-;10863:41;;11053:1;11044:7;11040:15;11037:1;11034:22;11014:1;11007:9;10987:83;10964:139;;11083:18;;:::i;:::-;10964:139;10748:362;10700:410;;;;:::o;11116:180::-;11164:77;11161:1;11154:88;11261:4;11258:1;11251:15;11285:4;11282:1;11275:15;11302:185;11342:1;11359:20;11377:1;11359:20;:::i;:::-;11354:25;;11393:20;11411:1;11393:20;:::i;:::-;11388:25;;11432:1;11422:35;;11437:18;;:::i;:::-;11422:35;11479:1;11476;11472:9;11467:14;;11302:185;;;;:::o;11493:234::-;11633:34;11629:1;11621:6;11617:14;11610:58;11702:17;11697:2;11689:6;11685:15;11678:42;11493:234;:::o;11733:366::-;11875:3;11896:67;11960:2;11955:3;11896:67;:::i;:::-;11889:74;;11972:93;12061:3;11972:93;:::i;:::-;12090:2;12085:3;12081:12;12074:19;;11733:366;;;:::o;12105:419::-;12271:4;12309:2;12298:9;12294:18;12286:26;;12358:9;12352:4;12348:20;12344:1;12333:9;12329:17;12322:47;12386:131;12512:4;12386:131;:::i;:::-;12378:139;;12105:419;;;:::o;12530:227::-;12670:34;12666:1;12658:6;12654:14;12647:58;12739:10;12734:2;12726:6;12722:15;12715:35;12530:227;:::o;12763:366::-;12905:3;12926:67;12990:2;12985:3;12926:67;:::i;:::-;12919:74;;13002:93;13091:3;13002:93;:::i;:::-;13120:2;13115:3;13111:12;13104:19;;12763:366;;;:::o;13135:419::-;13301:4;13339:2;13328:9;13324:18;13316:26;;13388:9;13382:4;13378:20;13374:1;13363:9;13359:17;13352:47;13416:131;13542:4;13416:131;:::i;:::-;13408:139;;13135:419;;;:::o;13560:191::-;13600:3;13619:20;13637:1;13619:20;:::i;:::-;13614:25;;13653:20;13671:1;13653:20;:::i;:::-;13648:25;;13696:1;13693;13689:9;13682:16;;13717:3;13714:1;13711:10;13708:36;;;13724:18;;:::i;:::-;13708:36;13560:191;;;;:::o;13757:179::-;13897:31;13893:1;13885:6;13881:14;13874:55;13757:179;:::o;13942:366::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;13942:366;;;:::o;14314:419::-;14480:4;14518:2;14507:9;14503:18;14495:26;;14567:9;14561:4;14557:20;14553:1;14542:9;14538:17;14531:47;14595:131;14721:4;14595:131;:::i;:::-;14587:139;;14314:419;;;:::o;14739:223::-;14879:34;14875:1;14867:6;14863:14;14856:58;14948:6;14943:2;14935:6;14931:15;14924:31;14739:223;:::o;14968:366::-;15110:3;15131:67;15195:2;15190:3;15131:67;:::i;:::-;15124:74;;15207:93;15296:3;15207:93;:::i;:::-;15325:2;15320:3;15316:12;15309:19;;14968:366;;;:::o;15340:419::-;15506:4;15544:2;15533:9;15529:18;15521:26;;15593:9;15587:4;15583:20;15579:1;15568:9;15564:17;15557:47;15621:131;15747:4;15621:131;:::i;:::-;15613:139;;15340:419;;;:::o;15765:240::-;15905:34;15901:1;15893:6;15889:14;15882:58;15974:23;15969:2;15961:6;15957:15;15950:48;15765:240;:::o;16011:366::-;16153:3;16174:67;16238:2;16233:3;16174:67;:::i;:::-;16167:74;;16250:93;16339:3;16250:93;:::i;:::-;16368:2;16363:3;16359:12;16352:19;;16011:366;;;:::o;16383:419::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16636:9;16630:4;16626:20;16622:1;16611:9;16607:17;16600:47;16664:131;16790:4;16664:131;:::i;:::-;16656:139;;16383:419;;;:::o;16808:239::-;16948:34;16944:1;16936:6;16932:14;16925:58;17017:22;17012:2;17004:6;17000:15;16993:47;16808:239;:::o;17053:366::-;17195:3;17216:67;17280:2;17275:3;17216:67;:::i;:::-;17209:74;;17292:93;17381:3;17292:93;:::i;:::-;17410:2;17405:3;17401:12;17394:19;;17053:366;;;:::o;17425:419::-;17591:4;17629:2;17618:9;17614:18;17606:26;;17678:9;17672:4;17668:20;17664:1;17653:9;17649:17;17642:47;17706:131;17832:4;17706:131;:::i;:::-;17698:139;;17425:419;;;:::o;17850:225::-;17990:34;17986:1;17978:6;17974:14;17967:58;18059:8;18054:2;18046:6;18042:15;18035:33;17850:225;:::o;18081:366::-;18223:3;18244:67;18308:2;18303:3;18244:67;:::i;:::-;18237:74;;18320:93;18409:3;18320:93;:::i;:::-;18438:2;18433:3;18429:12;18422:19;;18081:366;;;:::o;18453:419::-;18619:4;18657:2;18646:9;18642:18;18634:26;;18706:9;18700:4;18696:20;18692:1;18681:9;18677:17;18670:47;18734:131;18860:4;18734:131;:::i;:::-;18726:139;;18453:419;;;:::o;18878:223::-;19018:34;19014:1;19006:6;19002:14;18995:58;19087:6;19082:2;19074:6;19070:15;19063:31;18878:223;:::o;19107:366::-;19249:3;19270:67;19334:2;19329:3;19270:67;:::i;:::-;19263:74;;19346:93;19435:3;19346:93;:::i;:::-;19464:2;19459:3;19455:12;19448:19;;19107:366;;;:::o;19479:419::-;19645:4;19683:2;19672:9;19668:18;19660:26;;19732:9;19726:4;19722:20;19718:1;19707:9;19703:17;19696:47;19760:131;19886:4;19760:131;:::i;:::-;19752:139;;19479:419;;;:::o;19904:221::-;20044:34;20040:1;20032:6;20028:14;20021:58;20113:4;20108:2;20100:6;20096:15;20089:29;19904:221;:::o;20131:366::-;20273:3;20294:67;20358:2;20353:3;20294:67;:::i;:::-;20287:74;;20370:93;20459:3;20370:93;:::i;:::-;20488:2;20483:3;20479:12;20472:19;;20131:366;;;:::o;20503:419::-;20669:4;20707:2;20696:9;20692:18;20684:26;;20756:9;20750:4;20746:20;20742:1;20731:9;20727:17;20720:47;20784:131;20910:4;20784:131;:::i;:::-;20776:139;;20503:419;;;:::o;20928:224::-;21068:34;21064:1;21056:6;21052:14;21045:58;21137:7;21132:2;21124:6;21120:15;21113:32;20928:224;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:222::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:5;22159:2;22151:6;22147:15;22140:30;21955:222;:::o;22183:366::-;22325:3;22346:67;22410:2;22405:3;22346:67;:::i;:::-;22339:74;;22422:93;22511:3;22422:93;:::i;:::-;22540:2;22535:3;22531:12;22524:19;;22183:366;;;:::o;22555:419::-;22721:4;22759:2;22748:9;22744:18;22736:26;;22808:9;22802:4;22798:20;22794:1;22783:9;22779:17;22772:47;22836:131;22962:4;22836:131;:::i;:::-;22828:139;;22555:419;;;:::o;22980:172::-;23120:24;23116:1;23108:6;23104:14;23097:48;22980:172;:::o;23158:366::-;23300:3;23321:67;23385:2;23380:3;23321:67;:::i;:::-;23314:74;;23397:93;23486:3;23397:93;:::i;:::-;23515:2;23510:3;23506:12;23499:19;;23158:366;;;:::o;23530:419::-;23696:4;23734:2;23723:9;23719:18;23711:26;;23783:9;23777:4;23773:20;23769:1;23758:9;23754:17;23747:47;23811:131;23937:4;23811:131;:::i;:::-;23803:139;;23530:419;;;:::o;23955:240::-;24095:34;24091:1;24083:6;24079:14;24072:58;24164:23;24159:2;24151:6;24147:15;24140:48;23955:240;:::o;24201:366::-;24343:3;24364:67;24428:2;24423:3;24364:67;:::i;:::-;24357:74;;24440:93;24529:3;24440:93;:::i;:::-;24558:2;24553:3;24549:12;24542:19;;24201:366;;;:::o;24573:419::-;24739:4;24777:2;24766:9;24762:18;24754:26;;24826:9;24820:4;24816:20;24812:1;24801:9;24797:17;24790:47;24854:131;24980:4;24854:131;:::i;:::-;24846:139;;24573:419;;;:::o;24998:169::-;25138:21;25134:1;25126:6;25122:14;25115:45;24998:169;:::o;25173:366::-;25315:3;25336:67;25400:2;25395:3;25336:67;:::i;:::-;25329:74;;25412:93;25501:3;25412:93;:::i;:::-;25530:2;25525:3;25521:12;25514:19;;25173:366;;;:::o;25545:419::-;25711:4;25749:2;25738:9;25734:18;25726:26;;25798:9;25792:4;25788:20;25784:1;25773:9;25769:17;25762:47;25826:131;25952:4;25826:131;:::i;:::-;25818:139;;25545:419;;;:::o;25970:194::-;26010:4;26030:20;26048:1;26030:20;:::i;:::-;26025:25;;26064:20;26082:1;26064:20;:::i;:::-;26059:25;;26108:1;26105;26101:9;26093:17;;26132:1;26126:4;26123:11;26120:37;;;26137:18;;:::i;:::-;26120:37;25970:194;;;;:::o;26170:225::-;26310:34;26306:1;26298:6;26294:14;26287:58;26379:8;26374:2;26366:6;26362:15;26355:33;26170:225;:::o;26401:366::-;26543:3;26564:67;26628:2;26623:3;26564:67;:::i;:::-;26557:74;;26640:93;26729:3;26640:93;:::i;:::-;26758:2;26753:3;26749:12;26742:19;;26401:366;;;:::o;26773:419::-;26939:4;26977:2;26966:9;26962:18;26954:26;;27026:9;27020:4;27016:20;27012:1;27001:9;26997:17;26990:47;27054:131;27180:4;27054:131;:::i;:::-;27046:139;;26773:419;;;:::o;27198:180::-;27246:77;27243:1;27236:88;27343:4;27340:1;27333:15;27367:4;27364:1;27357:15;27384:180;27432:77;27429:1;27422:88;27529:4;27526:1;27519:15;27553:4;27550:1;27543:15;27570:85;27615:7;27644:5;27633:16;;27570:85;;;:::o;27661:158::-;27719:9;27752:61;27770:42;27779:32;27805:5;27779:32;:::i;:::-;27770:42;:::i;:::-;27752:61;:::i;:::-;27739:74;;27661:158;;;:::o;27825:147::-;27920:45;27959:5;27920:45;:::i;:::-;27915:3;27908:58;27825:147;;:::o;27978:114::-;28045:6;28079:5;28073:12;28063:22;;27978:114;;;:::o;28098:184::-;28197:11;28231:6;28226:3;28219:19;28271:4;28266:3;28262:14;28247:29;;28098:184;;;;:::o;28288:132::-;28355:4;28378:3;28370:11;;28408:4;28403:3;28399:14;28391:22;;28288:132;;;:::o;28426:108::-;28503:24;28521:5;28503:24;:::i;:::-;28498:3;28491:37;28426:108;;:::o;28540:179::-;28609:10;28630:46;28672:3;28664:6;28630:46;:::i;:::-;28708:4;28703:3;28699:14;28685:28;;28540:179;;;;:::o;28725:113::-;28795:4;28827;28822:3;28818:14;28810:22;;28725:113;;;:::o;28874:732::-;28993:3;29022:54;29070:5;29022:54;:::i;:::-;29092:86;29171:6;29166:3;29092:86;:::i;:::-;29085:93;;29202:56;29252:5;29202:56;:::i;:::-;29281:7;29312:1;29297:284;29322:6;29319:1;29316:13;29297:284;;;29398:6;29392:13;29425:63;29484:3;29469:13;29425:63;:::i;:::-;29418:70;;29511:60;29564:6;29511:60;:::i;:::-;29501:70;;29357:224;29344:1;29341;29337:9;29332:14;;29297:284;;;29301:14;29597:3;29590:10;;28998:608;;;28874:732;;;;:::o;29612:831::-;29875:4;29913:3;29902:9;29898:19;29890:27;;29927:71;29995:1;29984:9;29980:17;29971:6;29927:71;:::i;:::-;30008:80;30084:2;30073:9;30069:18;30060:6;30008:80;:::i;:::-;30135:9;30129:4;30125:20;30120:2;30109:9;30105:18;30098:48;30163:108;30266:4;30257:6;30163:108;:::i;:::-;30155:116;;30281:72;30349:2;30338:9;30334:18;30325:6;30281:72;:::i;:::-;30363:73;30431:3;30420:9;30416:19;30407:6;30363:73;:::i;:::-;29612:831;;;;;;;;:::o

Swarm Source

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