ETH Price: $3,484.87 (+0.68%)
Gas: 5 Gwei

Token

FOMC (FOMC)
 

Overview

Max Total Supply

31,380,000,000,000 FOMC

Holders

760

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,329,960,682.088606443282116936 FOMC

Value
$0.00
0x9e4891c41e518c3ab2cee6d9a550c23afaae4748
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:
FOMC

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller 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);
    }
}

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 {}
}

File 3 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

File 4 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the remaining number 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 `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 6 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

    /**
     * @dev Returns the remainder of dividing two 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;
        }
    }
}

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10 : FOMC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public routerCA = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D uniswap

    bool private swapping;

    address public mktgWallet;
    address public devWallet;
    address public liqWallet;
    address public operationsWallet;

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

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;
    uint256 private launchBlock;
    uint256 private deadBlocks;
    mapping(address => bool) public blocked;

    uint256 public buyTotalFees;
    uint256 public buyMktgFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    uint256 public buyOperationsFee;

    uint256 public sellTotalFees;
    uint256 public sellMktgFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;
    uint256 public sellOperationsFee;

    uint256 public tokensForMktg;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    uint256 public tokensForOperations;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

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

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

    constructor() ERC20("FOMC", "FOMC") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(routerCA);

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

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

        // launch buy fees
        uint256 _buyMktgFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;
        uint256 _buyOperationsFee = 0;

        // launch sell fees
        uint256 _sellMktgFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;
        uint256 _sellOperationsFee = 0;

        uint256 totalSupply = 31_380_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply / 10000; // 0.01% max txn
        maxWallet = (totalSupply * 5) / 10000; // 0.05% max wallet
        swapTokensAtAmount = totalSupply / 10000; // 0.01% swap wallet

        buyMktgFee = _buyMktgFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyOperationsFee = _buyOperationsFee;
        buyTotalFees =
            buyMktgFee +
            buyLiquidityFee +
            buyDevFee +
            buyOperationsFee;

        sellMktgFee = _sellMktgFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellOperationsFee = _sellOperationsFee;
        sellTotalFees =
            sellMktgFee +
            sellLiquidityFee +
            sellDevFee +
            sellOperationsFee;

        mktgWallet = address(0x80c934F0BC61fD431DD33CA2fc6e1FB6D34C8483);
        devWallet = address(0x80c934F0BC61fD431DD33CA2fc6e1FB6D34C8483);
        liqWallet = address(0x80c934F0BC61fD431DD33CA2fc6e1FB6D34C8483);
        operationsWallet = address(0x80c934F0BC61fD431DD33CA2fc6e1FB6D34C8483);

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

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading(uint256 _deadBlocks) external onlyOwner {
        require(!tradingActive, "Token launched");
        tradingActive = true;
        launchBlock = block.number;
        swapEnabled = true;
        deadBlocks = _deadBlocks;
    }

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

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

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

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

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

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

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

    function updateBuyFees(
        uint256 _mktgFee,
        uint256 _liquidityFee,
        uint256 _devFee,
        uint256 _operationsFee
    ) external onlyOwner {
        buyMktgFee = _mktgFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyOperationsFee = _operationsFee;
        buyTotalFees =
            buyMktgFee +
            buyLiquidityFee +
            buyDevFee +
            buyOperationsFee;
        require(buyTotalFees <= 99);
    }

    function updateSellFees(
        uint256 _mktgFee,
        uint256 _liquidityFee,
        uint256 _devFee,
        uint256 _operationsFee
    ) external onlyOwner {
        sellMktgFee = _mktgFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellOperationsFee = _operationsFee;
        sellTotalFees =
            sellMktgFee +
            sellLiquidityFee +
            sellDevFee +
            sellOperationsFee;
        require(sellTotalFees <= 99);
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatemktgWallet(address newmktgWallet) external onlyOwner {
        emit mktgWalletUpdated(newmktgWallet, mktgWallet);
        mktgWallet = newmktgWallet;
    }

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

    function updateoperationsWallet(address newWallet) external onlyOwner {
        emit operationsWalletUpdated(newWallet, operationsWallet);
        operationsWallet = newWallet;
    }

    function updateLiqWallet(address newLiqWallet) external onlyOwner {
        emit liqWalletUpdated(newLiqWallet, liqWallet);
        liqWallet = newLiqWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

                if (
                    block.number <= launchBlock + deadBlocks &&
                    from == address(uniswapV2Pair) &&
                    to != routerCA &&
                    to != address(this) &&
                    to != address(uniswapV2Pair)
                ) {
                    blocked[to] = true;
                    emit BoughtEarly(to);
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

    function multiBlock(
        address[] calldata blockees,
        bool shouldBlock
    ) external onlyOwner {
        for (uint256 i = 0; i < blockees.length; i++) {
            address blockee = blockees[i];
            if (
                blockee != address(this) &&
                blockee != routerCA &&
                blockee != address(uniswapV2Pair)
            ) blocked[blockee] = shouldBlock;
        }
    }

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMktg = ethBalance.mul(tokensForMktg).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        uint256 ethForOperations = ethBalance.mul(tokensForOperations).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMktg -
            ethForDev -
            ethForOperations;

        tokensForLiquidity = 0;
        tokensForMktg = 0;
        tokensForDev = 0;
        tokensForOperations = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }
        (success, ) = address(operationsWallet).call{value: ethForOperations}(
            ""
        );
        (success, ) = address(mktgWallet).call{value: address(this).balance}(
            ""
        );
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liqWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktgWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqWallet","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":"mktgWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"blockees","type":"address[]"},{"internalType":"bool","name":"shouldBlock","type":"bool"}],"name":"multiBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"routerCA","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMktgFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMktg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mktgFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiqWallet","type":"address"}],"name":"updateLiqWallet","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":"_mktgFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_operationsFee","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"},{"inputs":[{"internalType":"address","name":"newmktgWallet","type":"address"}],"name":"updatemktgWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateoperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506001601060006101000a81548160ff021916908315150217905550348015620000d257600080fd5b506040518060400160405280600481526020017f464f4d43000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464f4d430000000000000000000000000000000000000000000000000000000081525081600390805190602001906200015792919062000bac565b5080600490805190602001906200017092919062000bac565b5050506200019362000187620006e460201b60201c565b620006ec60201b60201c565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050620001cd816001620007b260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000273919062000cc6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000301919062000cc6565b6040518363ffffffff1660e01b81526004016200032092919062000d09565b6020604051808303816000875af115801562000340573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000366919062000cc6565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ae60a0516001620007b260201b60201c565b620003c360a05160016200081d60201b60201c565b6000806000806000600290506000806000806d018c123f9f35c1a729c620000000905061271081620003f6919062000d9e565b600b819055506127106005826200040e919062000dd6565b6200041a919062000d9e565b600d819055506127108162000430919062000d9e565b600c81905550886015819055508760168190555086601781905550856018819055506018546017546016546015546200046a919062000e37565b62000476919062000e37565b62000482919062000e37565b60148190555084601a8190555083601b8190555082601c8190555081601d81905550601d54601c54601b54601a54620004bc919062000e37565b620004c8919062000e37565b620004d4919062000e37565b6019819055507380c934f0bc61fd431dd33ca2fc6e1fb6d34c8483600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507380c934f0bc61fd431dd33ca2fc6e1fb6d34c8483600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507380c934f0bc61fd431dd33ca2fc6e1fb6d34c8483600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507380c934f0bc61fd431dd33ca2fc6e1fb6d34c8483600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200065062000642620008be60201b60201c565b6001620008e860201b60201c565b62000663306001620008e860201b60201c565b6200067861dead6001620008e860201b60201c565b6200069a6200068c620008be60201b60201c565b6001620007b260201b60201c565b620006ad306001620007b260201b60201c565b620006c261dead6001620007b260201b60201c565b620006d43382620009a360201b60201c565b5050505050505050505062001056565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007c262000b1160201b60201c565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008f862000b1160201b60201c565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000997919062000eb1565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0d9062000f2f565b60405180910390fd5b62000a2a6000838362000ba260201b60201c565b806002600082825462000a3e919062000e37565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af1919062000f62565b60405180910390a362000b0d6000838362000ba760201b60201c565b5050565b62000b21620006e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b47620008be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b979062000fcf565b60405180910390fd5b565b505050565b505050565b82805462000bba9062001020565b90600052602060002090601f01602090048101928262000bde576000855562000c2a565b82601f1062000bf957805160ff191683800117855562000c2a565b8280016001018555821562000c2a579182015b8281111562000c2957825182559160200191906001019062000c0c565b5b50905062000c39919062000c3d565b5090565b5b8082111562000c5857600081600090555060010162000c3e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c8e8262000c61565b9050919050565b62000ca08162000c81565b811462000cac57600080fd5b50565b60008151905062000cc08162000c95565b92915050565b60006020828403121562000cdf5762000cde62000c5c565b5b600062000cef8482850162000caf565b91505092915050565b62000d038162000c81565b82525050565b600060408201905062000d20600083018562000cf8565b62000d2f602083018462000cf8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dab8262000d36565b915062000db88362000d36565b92508262000dcb5762000dca62000d40565b5b828204905092915050565b600062000de38262000d36565b915062000df08362000d36565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e2c5762000e2b62000d6f565b5b828202905092915050565b600062000e448262000d36565b915062000e518362000d36565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e895762000e8862000d6f565b5b828201905092915050565b60008115159050919050565b62000eab8162000e94565b82525050565b600060208201905062000ec8600083018462000ea0565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f17601f8362000ece565b915062000f248262000edf565b602082019050919050565b6000602082019050818103600083015262000f4a8162000f08565b9050919050565b62000f5c8162000d36565b82525050565b600060208201905062000f79600083018462000f51565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fb760208362000ece565b915062000fc48262000f7f565b602082019050919050565b6000602082019050818103600083015262000fea8162000fa8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200103957607f821691505b6020821081141562001050576200104f62000ff1565b5b50919050565b60805160a0516153e5620010c9600039600081816112b2015281816118a101528181611ac3015281816126a40152818161278d015261292a015260008181611010015281816128d201528181613afd01528181613bde01528181613c0501528181613ca10152613cc801526153e56000f3fe6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c18bc1951161010d578063e7ad9fcd116100a0578063f63743421161006f578063f637434214610e8d578063f8b45b0514610eb8578063fb002c9714610ee3578063fd72e22a14610f0e576103ce565b8063e7ad9fcd14610de5578063e884f26014610e0e578063f11a24d314610e39578063f2fde38b14610e64576103ce565b8063d85ba063116100dc578063d85ba06314610d15578063dd62ed3e14610d40578063e2f4560514610d7d578063e596219514610da8576103ce565b8063c18bc19514610c59578063c876d0b914610c82578063c8c8ebe414610cad578063d257b34f14610cd8576103ce565b8063a0d82dc511610185578063b62496f511610154578063b62496f514610b9d578063bbc0c74214610bda578063c024666814610c05578063c0f17acd14610c2e576103ce565b8063a0d82dc514610acf578063a457c2d714610afa578063a9059cbb14610b37578063ae303d0714610b74576103ce565b80639a7a23d6116101c15780639a7a23d614610a255780639bd9bf5f14610a4e5780639c3b4fdc14610a795780639fccce3214610aa4576103ce565b80638da5cb5b1461097b5780638ea5220f146109a6578063924de9b7146109d157806395d89b41146109fa576103ce565b80634a62bb65116102e25780636aebf6271161027557806373dd858c1161024457806373dd858c146108d5578063751039fc146108fe5780637571336a1461092957806382aa7c6814610952576103ce565b80636aebf6271461082d5780636ddd17131461085657806370a0823114610881578063715018a6146108be576103ce565b8063534c0906116102b1578063534c0906146107835780635a139dd4146107ae57806364cd83dd146107d95780636a486a8e14610802576103ce565b80634a62bb65146106c55780634ec39ba9146106f05780634f77f6c01461071b5780634fbee19314610746576103ce565b806323b872dd1161035a578063312394a011610329578063312394a014610607578063313ce56714610632578063395093511461065d57806349bd5a5e1461069a576103ce565b806323b872dd1461054b57806324afaf8d1461058857806327c8f835146105b35780632e6ed7ef146105de576103ce565b806318160ddd1161039657806318160ddd146104a35780631816467f146104ce5780631a8145bb146104f7578063203e727e14610522576103ce565b806306fdde03146103d3578063095ea7b3146103fe57806310d5de531461043b5780631694505e14610478576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f39565b6040516103f59190613e30565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613ef0565b610fcb565b6040516104329190613f4b565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613f66565b610fee565b60405161046f9190613f4b565b60405180910390f35b34801561048457600080fd5b5061048d61100e565b60405161049a9190613ff2565b60405180910390f35b3480156104af57600080fd5b506104b8611032565b6040516104c5919061401c565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613f66565b61103c565b005b34801561050357600080fd5b5061050c611104565b604051610519919061401c565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190614037565b61110a565b005b34801561055757600080fd5b50610572600480360381019061056d9190614064565b6111a5565b60405161057f9190613f4b565b60405180910390f35b34801561059457600080fd5b5061059d6111d4565b6040516105aa91906140c6565b60405180910390f35b3480156105bf57600080fd5b506105c86111fa565b6040516105d591906140c6565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906140e1565b611200565b005b34801561061357600080fd5b5061061c61126a565b604051610629919061401c565b60405180910390f35b34801561063e57600080fd5b50610647611270565b6040516106549190614164565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613ef0565b611279565b6040516106919190613f4b565b60405180910390f35b3480156106a657600080fd5b506106af6112b0565b6040516106bc91906140c6565b60405180910390f35b3480156106d157600080fd5b506106da6112d4565b6040516106e79190613f4b565b60405180910390f35b3480156106fc57600080fd5b506107056112e7565b60405161071291906140c6565b60405180910390f35b34801561072757600080fd5b5061073061130d565b60405161073d919061401c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f66565b611313565b60405161077a9190613f4b565b60405180910390f35b34801561078f57600080fd5b50610798611369565b6040516107a591906140c6565b60405180910390f35b3480156107ba57600080fd5b506107c361138f565b6040516107d0919061401c565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613f66565b611395565b005b34801561080e57600080fd5b5061081761145d565b604051610824919061401c565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613f66565b611463565b005b34801561086257600080fd5b5061086b61152b565b6040516108789190613f4b565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613f66565b61153e565b6040516108b5919061401c565b60405180910390f35b3480156108ca57600080fd5b506108d3611586565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190613f66565b61159a565b005b34801561090a57600080fd5b50610913611662565b6040516109209190613f4b565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b91906141ab565b61168e565b005b34801561095e57600080fd5b5061097960048036038101906109749190614037565b6116f1565b005b34801561098757600080fd5b50610990611790565b60405161099d91906140c6565b60405180910390f35b3480156109b257600080fd5b506109bb6117ba565b6040516109c891906140c6565b60405180910390f35b3480156109dd57600080fd5b506109f860048036038101906109f391906141eb565b6117e0565b005b348015610a0657600080fd5b50610a0f611805565b604051610a1c9190613e30565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906141ab565b611897565b005b348015610a5a57600080fd5b50610a6361193c565b604051610a70919061401c565b60405180910390f35b348015610a8557600080fd5b50610a8e611942565b604051610a9b919061401c565b60405180910390f35b348015610ab057600080fd5b50610ab9611948565b604051610ac6919061401c565b60405180910390f35b348015610adb57600080fd5b50610ae461194e565b604051610af1919061401c565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190613ef0565b611954565b604051610b2e9190613f4b565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b599190613ef0565b6119cb565b604051610b6b9190613f4b565b60405180910390f35b348015610b8057600080fd5b50610b9b6004803603810190610b96919061427d565b6119ee565b005b348015610ba957600080fd5b50610bc46004803603810190610bbf9190613f66565b611b89565b604051610bd19190613f4b565b60405180910390f35b348015610be657600080fd5b50610bef611ba9565b604051610bfc9190613f4b565b60405180910390f35b348015610c1157600080fd5b50610c2c6004803603810190610c2791906141ab565b611bbc565b005b348015610c3a57600080fd5b50610c43611c6d565b604051610c50919061401c565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190614037565b611c73565b005b348015610c8e57600080fd5b50610c97611d0e565b604051610ca49190613f4b565b60405180910390f35b348015610cb957600080fd5b50610cc2611d21565b604051610ccf919061401c565b60405180910390f35b348015610ce457600080fd5b50610cff6004803603810190610cfa9190614037565b611d27565b604051610d0c9190613f4b565b60405180910390f35b348015610d2157600080fd5b50610d2a611e08565b604051610d37919061401c565b60405180910390f35b348015610d4c57600080fd5b50610d676004803603810190610d6291906142dd565b611e0e565b604051610d74919061401c565b60405180910390f35b348015610d8957600080fd5b50610d92611e95565b604051610d9f919061401c565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190613f66565b611e9b565b604051610ddc9190613f4b565b60405180910390f35b348015610df157600080fd5b50610e0c6004803603810190610e0791906140e1565b611ebb565b005b348015610e1a57600080fd5b50610e23611f25565b604051610e309190613f4b565b60405180910390f35b348015610e4557600080fd5b50610e4e611f51565b604051610e5b919061401c565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e869190613f66565b611f57565b005b348015610e9957600080fd5b50610ea2611fdb565b604051610eaf919061401c565b60405180910390f35b348015610ec457600080fd5b50610ecd611fe1565b604051610eda919061401c565b60405180910390f35b348015610eef57600080fd5b50610ef8611fe7565b604051610f05919061401c565b60405180910390f35b348015610f1a57600080fd5b50610f23611fed565b604051610f3091906140c6565b60405180910390f35b606060038054610f489061434c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f749061434c565b8015610fc15780601f10610f9657610100808354040283529160200191610fc1565b820191906000526020600020905b815481529060010190602001808311610fa457829003601f168201915b5050505050905090565b600080610fd6612013565b9050610fe381858561201b565b600191505092915050565b60236020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6110446121e6565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f5481565b6111126121e6565b670de0b6b3a76400006103e86001611128611032565b61113291906143ad565b61113c9190614436565b6111469190614436565b811015611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906144d9565b60405180910390fd5b670de0b6b3a76400008161119c91906143ad565b600b8190555050565b6000806111b0612013565b90506111bd858285612264565b6111c88585856122f0565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b6112086121e6565b8360158190555082601681905550816017819055508060188190555060185460175460165460155461123a91906144f9565b61124491906144f9565b61124e91906144f9565b6014819055506063601454111561126457600080fd5b50505050565b601a5481565b60006012905090565b600080611284612013565b90506112a58185856112968589611e0e565b6112a091906144f9565b61201b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600e60009054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b6000602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61139d6121e6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fceaa6f1f2115d0f5eb9934026e3a197b010d8bc98f70fe27bbfb441d6fe4a69c60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b61146b6121e6565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158e6121e6565b6115986000613272565b565b6115a26121e6565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0308c4544315dbf7c7c2fdbcdf1dd8a57df22fddf234ee3c941eefec5c2287ba60405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061166c6121e6565b6000600e60006101000a81548160ff0219169083151502179055506001905090565b6116966121e6565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116f96121e6565b600e60019054906101000a900460ff1615611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117409061459b565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550436011819055506001600e60026101000a81548160ff0219169083151502179055508060128190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117e86121e6565b80600e60026101000a81548160ff02191690831515021790555050565b6060600480546118149061434c565b80601f01602080910402602001604051908101604052809291908181526020018280546118409061434c565b801561188d5780601f106118625761010080835404028352916020019161188d565b820191906000526020600020905b81548152906001019060200180831161187057829003601f168201915b5050505050905090565b61189f6121e6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119259061462d565b60405180910390fd5b6119388282613338565b5050565b601e5481565b60175481565b60205481565b601c5481565b60008061195f612013565b9050600061196d8286611e0e565b9050838110156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906146bf565b60405180910390fd5b6119bf828686840361201b565b60019250505092915050565b6000806119d6612013565b90506119e38185856122f0565b600191505092915050565b6119f66121e6565b60005b83839050811015611b83576000848483818110611a1957611a186146df565b5b9050602002016020810190611a2e9190613f66565b90503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611aba5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611b1257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611b6f5782601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b508080611b7b9061470e565b9150506119f9565b50505050565b60246020528060005260406000206000915054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b611bc46121e6565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c619190613f4b565b60405180910390a25050565b60155481565b611c7b6121e6565b670de0b6b3a76400006103e86005611c91611032565b611c9b91906143ad565b611ca59190614436565b611caf9190614436565b811015611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906147c9565b60405180910390fd5b670de0b6b3a764000081611d0591906143ad565b600d8190555050565b601060009054906101000a900460ff1681565b600b5481565b6000611d316121e6565b620186a06001611d3f611032565b611d4991906143ad565b611d539190614436565b821015611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c9061485b565b60405180910390fd5b6103e86005611da2611032565b611dac91906143ad565b611db69190614436565b821115611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906148ed565b60405180910390fd5b81600c8190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611ec36121e6565b83601a8190555082601b8190555081601c8190555080601d81905550601d54601c54601b54601a54611ef591906144f9565b611eff91906144f9565b611f0991906144f9565b60198190555060636019541115611f1f57600080fd5b50505050565b6000611f2f6121e6565b6000601060006101000a81548160ff0219169083151502179055506001905090565b60165481565b611f5f6121e6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc69061497f565b60405180910390fd5b611fd881613272565b50565b601b5481565b600d5481565b60215481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290614a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614aa3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121d9919061401c565b60405180910390a3505050565b6121ee612013565b73ffffffffffffffffffffffffffffffffffffffff1661220c611790565b73ffffffffffffffffffffffffffffffffffffffff1614612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614b0f565b60405180910390fd5b565b60006122708484611e0e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122ea57818110156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390614b7b565b60405180910390fd5b6122e9848484840361201b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790614c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614c9f565b60405180910390fd5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614d0b565b60405180910390fd5b600081141561247757612472838360006133d9565b61326d565b600e60009054906101000a900460ff1615612d2f57612494611790565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561250257506124d2611790565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612575575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258e5750600660149054906101000a900460ff16155b15612d2e57600e60019054906101000a900460ff1661268857602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126485750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614d77565b60405180910390fd5b5b60125460115461269891906144f9565b43111580156126f257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561274c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278457503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561287d576001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e260405160405180910390a25b601060009054906101000a900460ff1615612a455761289a611790565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561292157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561297957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a445743600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614e2f565b60405180910390fd5b43600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ae85750602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b8f57600b54811115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614ec1565b60405180910390fd5b600d54612b3e8361153e565b82612b4991906144f9565b1115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614f2d565b60405180910390fd5b612d2d565b602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c325750602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8157600b54811115612c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7390614fbf565b60405180910390fd5b612d2c565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d2b57600d54612cde8361153e565b82612ce991906144f9565b1115612d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2190614f2d565b60405180910390fd5b5b5b5b5b5b6000612d3a3061153e565b90506000600c548210159050808015612d5f5750600e60029054906101000a900460ff165b8015612d785750600660149054906101000a900460ff16155b8015612dce5750602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e245750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e7a5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ebe576001600660146101000a81548160ff021916908315150217905550612ea2613651565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f745750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f7e57600090505b6000811561325d57602460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fe157506000601954115b156130e15761300e606461300060195488613a1290919063ffffffff16565b613a2890919063ffffffff16565b9050601954601b548261302191906143ad565b61302b9190614436565b601f600082825461303c91906144f9565b92505081905550601954601c548261305491906143ad565b61305e9190614436565b6020600082825461306f91906144f9565b92505081905550601954601a548261308791906143ad565b6130919190614436565b601e60008282546130a291906144f9565b92505081905550601954601d54826130ba91906143ad565b6130c49190614436565b602160008282546130d591906144f9565b92505081905550613239565b602460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561313c57506000601454115b1561323857613169606461315b60145488613a1290919063ffffffff16565b613a2890919063ffffffff16565b90506014546016548261317c91906143ad565b6131869190614436565b601f600082825461319791906144f9565b92505081905550601454601754826131af91906143ad565b6131b99190614436565b602060008282546131ca91906144f9565b92505081905550601454601554826131e291906143ad565b6131ec9190614436565b601e60008282546131fd91906144f9565b925050819055506014546018548261321591906143ad565b61321f9190614436565b6021600082825461323091906144f9565b925050819055505b5b600081111561324e5761324d8730836133d9565b5b808561325a9190614fdf565b94505b6132688787876133d9565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344090614c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090614c9f565b60405180910390fd5b6134c4838383613a3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615085565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613638919061401c565b60405180910390a361364b848484613a43565b50505050565b600061365c3061153e565b90506000602154602054601e54601f5461367691906144f9565b61368091906144f9565b61368a91906144f9565b905060008083148061369c5750600082145b156136a957505050613a10565b6014600c546136b891906143ad565b8311156136d1576014600c546136ce91906143ad565b92505b6000600283601f54866136e491906143ad565b6136ee9190614436565b6136f89190614436565b9050600061370f8286613a4890919063ffffffff16565b9050600047905061371f82613a5e565b60006137348247613a4890919063ffffffff16565b9050600061375f87613751601e5485613a1290919063ffffffff16565b613a2890919063ffffffff16565b9050600061378a8861377c60205486613a1290919063ffffffff16565b613a2890919063ffffffff16565b905060006137b5896137a760215487613a1290919063ffffffff16565b613a2890919063ffffffff16565b90506000818385876137c79190614fdf565b6137d19190614fdf565b6137db9190614fdf565b90506000601f819055506000601e8190555060006020819055506000602181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613843906150d6565b60006040518083038185875af1925050503d8060008114613880576040519150601f19603f3d011682016040523d82523d6000602084013e613885565b606091505b50508099505060008811801561389b5750600081115b156138e8576138aa8882613c9b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601f546040516138df939291906150eb565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161392e906150d6565b60006040518083038185875af1925050503d806000811461396b576040519150601f19603f3d011682016040523d82523d6000602084013e613970565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139bc906150d6565b60006040518083038185875af1925050503d80600081146139f9576040519150601f19603f3d011682016040523d82523d6000602084013e6139fe565b606091505b50508099505050505050505050505050505b565b60008183613a2091906143ad565b905092915050565b60008183613a369190614436565b905092915050565b505050565b505050565b60008183613a569190614fdf565b905092915050565b6000600267ffffffffffffffff811115613a7b57613a7a615122565b5b604051908082528060200260200182016040528015613aa95781602001602082028036833780820191505090505b5090503081600081518110613ac157613ac06146df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b8a9190615166565b81600181518110613b9e57613b9d6146df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c03307f00000000000000000000000000000000000000000000000000000000000000008461201b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c6595949392919061528c565b600060405180830381600087803b158015613c7f57600080fd5b505af1158015613c93573d6000803e3d6000fd5b505050505050565b613cc6307f00000000000000000000000000000000000000000000000000000000000000008461201b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d4d969594939291906152e6565b60606040518083038185885af1158015613d6b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d90919061535c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd1578082015181840152602081019050613db6565b83811115613de0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e0282613d97565b613e0c8185613da2565b9350613e1c818560208601613db3565b613e2581613de6565b840191505092915050565b60006020820190508181036000830152613e4a8184613df7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8782613e5c565b9050919050565b613e9781613e7c565b8114613ea257600080fd5b50565b600081359050613eb481613e8e565b92915050565b6000819050919050565b613ecd81613eba565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613e52565b5b6000613f1585828601613ea5565b9250506020613f2685828601613edb565b9150509250929050565b60008115159050919050565b613f4581613f30565b82525050565b6000602082019050613f606000830184613f3c565b92915050565b600060208284031215613f7c57613f7b613e52565b5b6000613f8a84828501613ea5565b91505092915050565b6000819050919050565b6000613fb8613fb3613fae84613e5c565b613f93565b613e5c565b9050919050565b6000613fca82613f9d565b9050919050565b6000613fdc82613fbf565b9050919050565b613fec81613fd1565b82525050565b60006020820190506140076000830184613fe3565b92915050565b61401681613eba565b82525050565b6000602082019050614031600083018461400d565b92915050565b60006020828403121561404d5761404c613e52565b5b600061405b84828501613edb565b91505092915050565b60008060006060848603121561407d5761407c613e52565b5b600061408b86828701613ea5565b935050602061409c86828701613ea5565b92505060406140ad86828701613edb565b9150509250925092565b6140c081613e7c565b82525050565b60006020820190506140db60008301846140b7565b92915050565b600080600080608085870312156140fb576140fa613e52565b5b600061410987828801613edb565b945050602061411a87828801613edb565b935050604061412b87828801613edb565b925050606061413c87828801613edb565b91505092959194509250565b600060ff82169050919050565b61415e81614148565b82525050565b60006020820190506141796000830184614155565b92915050565b61418881613f30565b811461419357600080fd5b50565b6000813590506141a58161417f565b92915050565b600080604083850312156141c2576141c1613e52565b5b60006141d085828601613ea5565b92505060206141e185828601614196565b9150509250929050565b60006020828403121561420157614200613e52565b5b600061420f84828501614196565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261423d5761423c614218565b5b8235905067ffffffffffffffff81111561425a5761425961421d565b5b60208301915083602082028301111561427657614275614222565b5b9250929050565b60008060006040848603121561429657614295613e52565b5b600084013567ffffffffffffffff8111156142b4576142b3613e57565b5b6142c086828701614227565b935093505060206142d386828701614196565b9150509250925092565b600080604083850312156142f4576142f3613e52565b5b600061430285828601613ea5565b925050602061431385828601613ea5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061436457607f821691505b602082108114156143785761437761431d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143b882613eba565b91506143c383613eba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fc576143fb61437e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444182613eba565b915061444c83613eba565b92508261445c5761445b614407565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006144c3602f83613da2565b91506144ce82614467565b604082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b600061450482613eba565b915061450f83613eba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145445761454361437e565b5b828201905092915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000614585600e83613da2565b91506145908261454f565b602082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614617603983613da2565b9150614622826145bb565b604082019050919050565b600060208201905081810360008301526146468161460a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146a9602583613da2565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061471982613eba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561474c5761474b61437e565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147b3602483613da2565b91506147be82614757565b604082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614845603583613da2565b9150614850826147e9565b604082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148d7603483613da2565b91506148e28261487b565b604082019050919050565b60006020820190508181036000830152614906816148ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614969602683613da2565b91506149748261490d565b604082019050919050565b600060208201905081810360008301526149988161495c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149fb602483613da2565b9150614a068261499f565b604082019050919050565b60006020820190508181036000830152614a2a816149ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a8d602283613da2565b9150614a9882614a31565b604082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af9602083613da2565b9150614b0482614ac3565b602082019050919050565b60006020820190508181036000830152614b2881614aec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b65601d83613da2565b9150614b7082614b2f565b602082019050919050565b60006020820190508181036000830152614b9481614b58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614bf7602583613da2565b9150614c0282614b9b565b604082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c89602383613da2565b9150614c9482614c2d565b604082019050919050565b60006020820190508181036000830152614cb881614c7c565b9050919050565b7f536e6970657220626c6f636b6564000000000000000000000000000000000000600082015250565b6000614cf5600e83613da2565b9150614d0082614cbf565b602082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d61601683613da2565b9150614d6c82614d2b565b602082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e19604883613da2565b9150614e2482614d97565b606082019050919050565b60006020820190508181036000830152614e4881614e0c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eab603583613da2565b9150614eb682614e4f565b604082019050919050565b60006020820190508181036000830152614eda81614e9e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f17601383613da2565b9150614f2282614ee1565b602082019050919050565b60006020820190508181036000830152614f4681614f0a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fa9603683613da2565b9150614fb482614f4d565b604082019050919050565b60006020820190508181036000830152614fd881614f9c565b9050919050565b6000614fea82613eba565b9150614ff583613eba565b9250828210156150085761500761437e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061506f602683613da2565b915061507a82615013565b604082019050919050565b6000602082019050818103600083015261509e81615062565b9050919050565b600081905092915050565b50565b60006150c06000836150a5565b91506150cb826150b0565b600082019050919050565b60006150e1826150b3565b9150819050919050565b6000606082019050615100600083018661400d565b61510d602083018561400d565b61511a604083018461400d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061516081613e8e565b92915050565b60006020828403121561517c5761517b613e52565b5b600061518a84828501615151565b91505092915050565b6000819050919050565b60006151b86151b36151ae84615193565b613f93565b613eba565b9050919050565b6151c88161519d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61520381613e7c565b82525050565b600061521583836151fa565b60208301905092915050565b6000602082019050919050565b6000615239826151ce565b61524381856151d9565b935061524e836151ea565b8060005b8381101561527f5781516152668882615209565b975061527183615221565b925050600181019050615252565b5085935050505092915050565b600060a0820190506152a1600083018861400d565b6152ae60208301876151bf565b81810360408301526152c0818661522e565b90506152cf60608301856140b7565b6152dc608083018461400d565b9695505050505050565b600060c0820190506152fb60008301896140b7565b615308602083018861400d565b61531560408301876151bf565b61532260608301866151bf565b61532f60808301856140b7565b61533c60a083018461400d565b979650505050505050565b60008151905061535681613ec4565b92915050565b60008060006060848603121561537557615374613e52565b5b600061538386828701615347565b935050602061539486828701615347565b92505060406153a586828701615347565b915050925092509256fea2646970667358221220f37f08f3a572b5c783d8a5cfabd83f3436e278ac34ebadc4f5bcbfd578d0895764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c18bc1951161010d578063e7ad9fcd116100a0578063f63743421161006f578063f637434214610e8d578063f8b45b0514610eb8578063fb002c9714610ee3578063fd72e22a14610f0e576103ce565b8063e7ad9fcd14610de5578063e884f26014610e0e578063f11a24d314610e39578063f2fde38b14610e64576103ce565b8063d85ba063116100dc578063d85ba06314610d15578063dd62ed3e14610d40578063e2f4560514610d7d578063e596219514610da8576103ce565b8063c18bc19514610c59578063c876d0b914610c82578063c8c8ebe414610cad578063d257b34f14610cd8576103ce565b8063a0d82dc511610185578063b62496f511610154578063b62496f514610b9d578063bbc0c74214610bda578063c024666814610c05578063c0f17acd14610c2e576103ce565b8063a0d82dc514610acf578063a457c2d714610afa578063a9059cbb14610b37578063ae303d0714610b74576103ce565b80639a7a23d6116101c15780639a7a23d614610a255780639bd9bf5f14610a4e5780639c3b4fdc14610a795780639fccce3214610aa4576103ce565b80638da5cb5b1461097b5780638ea5220f146109a6578063924de9b7146109d157806395d89b41146109fa576103ce565b80634a62bb65116102e25780636aebf6271161027557806373dd858c1161024457806373dd858c146108d5578063751039fc146108fe5780637571336a1461092957806382aa7c6814610952576103ce565b80636aebf6271461082d5780636ddd17131461085657806370a0823114610881578063715018a6146108be576103ce565b8063534c0906116102b1578063534c0906146107835780635a139dd4146107ae57806364cd83dd146107d95780636a486a8e14610802576103ce565b80634a62bb65146106c55780634ec39ba9146106f05780634f77f6c01461071b5780634fbee19314610746576103ce565b806323b872dd1161035a578063312394a011610329578063312394a014610607578063313ce56714610632578063395093511461065d57806349bd5a5e1461069a576103ce565b806323b872dd1461054b57806324afaf8d1461058857806327c8f835146105b35780632e6ed7ef146105de576103ce565b806318160ddd1161039657806318160ddd146104a35780631816467f146104ce5780631a8145bb146104f7578063203e727e14610522576103ce565b806306fdde03146103d3578063095ea7b3146103fe57806310d5de531461043b5780631694505e14610478576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f39565b6040516103f59190613e30565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613ef0565b610fcb565b6040516104329190613f4b565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613f66565b610fee565b60405161046f9190613f4b565b60405180910390f35b34801561048457600080fd5b5061048d61100e565b60405161049a9190613ff2565b60405180910390f35b3480156104af57600080fd5b506104b8611032565b6040516104c5919061401c565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190613f66565b61103c565b005b34801561050357600080fd5b5061050c611104565b604051610519919061401c565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190614037565b61110a565b005b34801561055757600080fd5b50610572600480360381019061056d9190614064565b6111a5565b60405161057f9190613f4b565b60405180910390f35b34801561059457600080fd5b5061059d6111d4565b6040516105aa91906140c6565b60405180910390f35b3480156105bf57600080fd5b506105c86111fa565b6040516105d591906140c6565b60405180910390f35b3480156105ea57600080fd5b50610605600480360381019061060091906140e1565b611200565b005b34801561061357600080fd5b5061061c61126a565b604051610629919061401c565b60405180910390f35b34801561063e57600080fd5b50610647611270565b6040516106549190614164565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f9190613ef0565b611279565b6040516106919190613f4b565b60405180910390f35b3480156106a657600080fd5b506106af6112b0565b6040516106bc91906140c6565b60405180910390f35b3480156106d157600080fd5b506106da6112d4565b6040516106e79190613f4b565b60405180910390f35b3480156106fc57600080fd5b506107056112e7565b60405161071291906140c6565b60405180910390f35b34801561072757600080fd5b5061073061130d565b60405161073d919061401c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613f66565b611313565b60405161077a9190613f4b565b60405180910390f35b34801561078f57600080fd5b50610798611369565b6040516107a591906140c6565b60405180910390f35b3480156107ba57600080fd5b506107c361138f565b6040516107d0919061401c565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613f66565b611395565b005b34801561080e57600080fd5b5061081761145d565b604051610824919061401c565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613f66565b611463565b005b34801561086257600080fd5b5061086b61152b565b6040516108789190613f4b565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613f66565b61153e565b6040516108b5919061401c565b60405180910390f35b3480156108ca57600080fd5b506108d3611586565b005b3480156108e157600080fd5b506108fc60048036038101906108f79190613f66565b61159a565b005b34801561090a57600080fd5b50610913611662565b6040516109209190613f4b565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b91906141ab565b61168e565b005b34801561095e57600080fd5b5061097960048036038101906109749190614037565b6116f1565b005b34801561098757600080fd5b50610990611790565b60405161099d91906140c6565b60405180910390f35b3480156109b257600080fd5b506109bb6117ba565b6040516109c891906140c6565b60405180910390f35b3480156109dd57600080fd5b506109f860048036038101906109f391906141eb565b6117e0565b005b348015610a0657600080fd5b50610a0f611805565b604051610a1c9190613e30565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a4791906141ab565b611897565b005b348015610a5a57600080fd5b50610a6361193c565b604051610a70919061401c565b60405180910390f35b348015610a8557600080fd5b50610a8e611942565b604051610a9b919061401c565b60405180910390f35b348015610ab057600080fd5b50610ab9611948565b604051610ac6919061401c565b60405180910390f35b348015610adb57600080fd5b50610ae461194e565b604051610af1919061401c565b60405180910390f35b348015610b0657600080fd5b50610b216004803603810190610b1c9190613ef0565b611954565b604051610b2e9190613f4b565b60405180910390f35b348015610b4357600080fd5b50610b5e6004803603810190610b599190613ef0565b6119cb565b604051610b6b9190613f4b565b60405180910390f35b348015610b8057600080fd5b50610b9b6004803603810190610b96919061427d565b6119ee565b005b348015610ba957600080fd5b50610bc46004803603810190610bbf9190613f66565b611b89565b604051610bd19190613f4b565b60405180910390f35b348015610be657600080fd5b50610bef611ba9565b604051610bfc9190613f4b565b60405180910390f35b348015610c1157600080fd5b50610c2c6004803603810190610c2791906141ab565b611bbc565b005b348015610c3a57600080fd5b50610c43611c6d565b604051610c50919061401c565b60405180910390f35b348015610c6557600080fd5b50610c806004803603810190610c7b9190614037565b611c73565b005b348015610c8e57600080fd5b50610c97611d0e565b604051610ca49190613f4b565b60405180910390f35b348015610cb957600080fd5b50610cc2611d21565b604051610ccf919061401c565b60405180910390f35b348015610ce457600080fd5b50610cff6004803603810190610cfa9190614037565b611d27565b604051610d0c9190613f4b565b60405180910390f35b348015610d2157600080fd5b50610d2a611e08565b604051610d37919061401c565b60405180910390f35b348015610d4c57600080fd5b50610d676004803603810190610d6291906142dd565b611e0e565b604051610d74919061401c565b60405180910390f35b348015610d8957600080fd5b50610d92611e95565b604051610d9f919061401c565b60405180910390f35b348015610db457600080fd5b50610dcf6004803603810190610dca9190613f66565b611e9b565b604051610ddc9190613f4b565b60405180910390f35b348015610df157600080fd5b50610e0c6004803603810190610e0791906140e1565b611ebb565b005b348015610e1a57600080fd5b50610e23611f25565b604051610e309190613f4b565b60405180910390f35b348015610e4557600080fd5b50610e4e611f51565b604051610e5b919061401c565b60405180910390f35b348015610e7057600080fd5b50610e8b6004803603810190610e869190613f66565b611f57565b005b348015610e9957600080fd5b50610ea2611fdb565b604051610eaf919061401c565b60405180910390f35b348015610ec457600080fd5b50610ecd611fe1565b604051610eda919061401c565b60405180910390f35b348015610eef57600080fd5b50610ef8611fe7565b604051610f05919061401c565b60405180910390f35b348015610f1a57600080fd5b50610f23611fed565b604051610f3091906140c6565b60405180910390f35b606060038054610f489061434c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f749061434c565b8015610fc15780601f10610f9657610100808354040283529160200191610fc1565b820191906000526020600020905b815481529060010190602001808311610fa457829003601f168201915b5050505050905090565b600080610fd6612013565b9050610fe381858561201b565b600191505092915050565b60236020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6110446121e6565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f5481565b6111126121e6565b670de0b6b3a76400006103e86001611128611032565b61113291906143ad565b61113c9190614436565b6111469190614436565b811015611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906144d9565b60405180910390fd5b670de0b6b3a76400008161119c91906143ad565b600b8190555050565b6000806111b0612013565b90506111bd858285612264565b6111c88585856122f0565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b6112086121e6565b8360158190555082601681905550816017819055508060188190555060185460175460165460155461123a91906144f9565b61124491906144f9565b61124e91906144f9565b6014819055506063601454111561126457600080fd5b50505050565b601a5481565b60006012905090565b600080611284612013565b90506112a58185856112968589611e0e565b6112a091906144f9565b61201b565b600191505092915050565b7f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df981565b600e60009054906101000a900460ff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b6000602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61139d6121e6565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fceaa6f1f2115d0f5eb9934026e3a197b010d8bc98f70fe27bbfb441d6fe4a69c60405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b61146b6121e6565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61158e6121e6565b6115986000613272565b565b6115a26121e6565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0308c4544315dbf7c7c2fdbcdf1dd8a57df22fddf234ee3c941eefec5c2287ba60405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061166c6121e6565b6000600e60006101000a81548160ff0219169083151502179055506001905090565b6116966121e6565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6116f96121e6565b600e60019054906101000a900460ff1615611749576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117409061459b565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550436011819055506001600e60026101000a81548160ff0219169083151502179055508060128190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117e86121e6565b80600e60026101000a81548160ff02191690831515021790555050565b6060600480546118149061434c565b80601f01602080910402602001604051908101604052809291908181526020018280546118409061434c565b801561188d5780601f106118625761010080835404028352916020019161188d565b820191906000526020600020905b81548152906001019060200180831161187057829003601f168201915b5050505050905090565b61189f6121e6565b7f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119259061462d565b60405180910390fd5b6119388282613338565b5050565b601e5481565b60175481565b60205481565b601c5481565b60008061195f612013565b9050600061196d8286611e0e565b9050838110156119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a9906146bf565b60405180910390fd5b6119bf828686840361201b565b60019250505092915050565b6000806119d6612013565b90506119e38185856122f0565b600191505092915050565b6119f66121e6565b60005b83839050811015611b83576000848483818110611a1957611a186146df565b5b9050602002016020810190611a2e9190613f66565b90503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015611aba5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611b1257507f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b15611b6f5782601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b508080611b7b9061470e565b9150506119f9565b50505050565b60246020528060005260406000206000915054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b611bc46121e6565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c619190613f4b565b60405180910390a25050565b60155481565b611c7b6121e6565b670de0b6b3a76400006103e86005611c91611032565b611c9b91906143ad565b611ca59190614436565b611caf9190614436565b811015611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906147c9565b60405180910390fd5b670de0b6b3a764000081611d0591906143ad565b600d8190555050565b601060009054906101000a900460ff1681565b600b5481565b6000611d316121e6565b620186a06001611d3f611032565b611d4991906143ad565b611d539190614436565b821015611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c9061485b565b60405180910390fd5b6103e86005611da2611032565b611dac91906143ad565b611db69190614436565b821115611df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611def906148ed565b60405180910390fd5b81600c8190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611ec36121e6565b83601a8190555082601b8190555081601c8190555080601d81905550601d54601c54601b54601a54611ef591906144f9565b611eff91906144f9565b611f0991906144f9565b60198190555060636019541115611f1f57600080fd5b50505050565b6000611f2f6121e6565b6000601060006101000a81548160ff0219169083151502179055506001905090565b60165481565b611f5f6121e6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc69061497f565b60405180910390fd5b611fd881613272565b50565b601b5481565b600d5481565b60215481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290614a11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290614aa3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121d9919061401c565b60405180910390a3505050565b6121ee612013565b73ffffffffffffffffffffffffffffffffffffffff1661220c611790565b73ffffffffffffffffffffffffffffffffffffffff1614612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614b0f565b60405180910390fd5b565b60006122708484611e0e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146122ea57818110156122dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d390614b7b565b60405180910390fd5b6122e9848484840361201b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235790614c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790614c9f565b60405180910390fd5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614d0b565b60405180910390fd5b600081141561247757612472838360006133d9565b61326d565b600e60009054906101000a900460ff1615612d2f57612494611790565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561250257506124d2611790565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612575575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258e5750600660149054906101000a900460ff16155b15612d2e57600e60019054906101000a900460ff1661268857602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126485750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90614d77565b60405180910390fd5b5b60125460115461269891906144f9565b43111580156126f257507f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b801561274c5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278457503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc57507f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561287d576001601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb90badc1cf1c52268f4fa9afb5276aebf640bcca3300cdfc9cf37db17daa13e260405160405180910390a25b601060009054906101000a900460ff1615612a455761289a611790565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561292157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561297957507f0000000000000000000000008eeae625615ed5acc8b96a8f26c228ff51bf2df973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a445743600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f690614e2f565b60405180910390fd5b43600f60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ae85750602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b8f57600b54811115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614ec1565b60405180910390fd5b600d54612b3e8361153e565b82612b4991906144f9565b1115612b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8190614f2d565b60405180910390fd5b612d2d565b602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c325750602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8157600b54811115612c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7390614fbf565b60405180910390fd5b612d2c565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d2b57600d54612cde8361153e565b82612ce991906144f9565b1115612d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2190614f2d565b60405180910390fd5b5b5b5b5b5b6000612d3a3061153e565b90506000600c548210159050808015612d5f5750600e60029054906101000a900460ff165b8015612d785750600660149054906101000a900460ff16155b8015612dce5750602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e245750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e7a5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ebe576001600660146101000a81548160ff021916908315150217905550612ea2613651565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f745750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f7e57600090505b6000811561325d57602460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fe157506000601954115b156130e15761300e606461300060195488613a1290919063ffffffff16565b613a2890919063ffffffff16565b9050601954601b548261302191906143ad565b61302b9190614436565b601f600082825461303c91906144f9565b92505081905550601954601c548261305491906143ad565b61305e9190614436565b6020600082825461306f91906144f9565b92505081905550601954601a548261308791906143ad565b6130919190614436565b601e60008282546130a291906144f9565b92505081905550601954601d54826130ba91906143ad565b6130c49190614436565b602160008282546130d591906144f9565b92505081905550613239565b602460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561313c57506000601454115b1561323857613169606461315b60145488613a1290919063ffffffff16565b613a2890919063ffffffff16565b90506014546016548261317c91906143ad565b6131869190614436565b601f600082825461319791906144f9565b92505081905550601454601754826131af91906143ad565b6131b99190614436565b602060008282546131ca91906144f9565b92505081905550601454601554826131e291906143ad565b6131ec9190614436565b601e60008282546131fd91906144f9565b925050819055506014546018548261321591906143ad565b61321f9190614436565b6021600082825461323091906144f9565b925050819055505b5b600081111561324e5761324d8730836133d9565b5b808561325a9190614fdf565b94505b6132688787876133d9565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344090614c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090614c9f565b60405180910390fd5b6134c4838383613a3e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561354a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354190615085565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613638919061401c565b60405180910390a361364b848484613a43565b50505050565b600061365c3061153e565b90506000602154602054601e54601f5461367691906144f9565b61368091906144f9565b61368a91906144f9565b905060008083148061369c5750600082145b156136a957505050613a10565b6014600c546136b891906143ad565b8311156136d1576014600c546136ce91906143ad565b92505b6000600283601f54866136e491906143ad565b6136ee9190614436565b6136f89190614436565b9050600061370f8286613a4890919063ffffffff16565b9050600047905061371f82613a5e565b60006137348247613a4890919063ffffffff16565b9050600061375f87613751601e5485613a1290919063ffffffff16565b613a2890919063ffffffff16565b9050600061378a8861377c60205486613a1290919063ffffffff16565b613a2890919063ffffffff16565b905060006137b5896137a760215487613a1290919063ffffffff16565b613a2890919063ffffffff16565b90506000818385876137c79190614fdf565b6137d19190614fdf565b6137db9190614fdf565b90506000601f819055506000601e8190555060006020819055506000602181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613843906150d6565b60006040518083038185875af1925050503d8060008114613880576040519150601f19603f3d011682016040523d82523d6000602084013e613885565b606091505b50508099505060008811801561389b5750600081115b156138e8576138aa8882613c9b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601f546040516138df939291906150eb565b60405180910390a15b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161392e906150d6565b60006040518083038185875af1925050503d806000811461396b576040519150601f19603f3d011682016040523d82523d6000602084013e613970565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139bc906150d6565b60006040518083038185875af1925050503d80600081146139f9576040519150601f19603f3d011682016040523d82523d6000602084013e6139fe565b606091505b50508099505050505050505050505050505b565b60008183613a2091906143ad565b905092915050565b60008183613a369190614436565b905092915050565b505050565b505050565b60008183613a569190614fdf565b905092915050565b6000600267ffffffffffffffff811115613a7b57613a7a615122565b5b604051908082528060200260200182016040528015613aa95781602001602082028036833780820191505090505b5090503081600081518110613ac157613ac06146df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b8a9190615166565b81600181518110613b9e57613b9d6146df565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c03307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461201b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c6595949392919061528c565b600060405180830381600087803b158015613c7f57600080fd5b505af1158015613c93573d6000803e3d6000fd5b505050505050565b613cc6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461201b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d4d969594939291906152e6565b60606040518083038185885af1158015613d6b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d90919061535c565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd1578082015181840152602081019050613db6565b83811115613de0576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e0282613d97565b613e0c8185613da2565b9350613e1c818560208601613db3565b613e2581613de6565b840191505092915050565b60006020820190508181036000830152613e4a8184613df7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8782613e5c565b9050919050565b613e9781613e7c565b8114613ea257600080fd5b50565b600081359050613eb481613e8e565b92915050565b6000819050919050565b613ecd81613eba565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613e52565b5b6000613f1585828601613ea5565b9250506020613f2685828601613edb565b9150509250929050565b60008115159050919050565b613f4581613f30565b82525050565b6000602082019050613f606000830184613f3c565b92915050565b600060208284031215613f7c57613f7b613e52565b5b6000613f8a84828501613ea5565b91505092915050565b6000819050919050565b6000613fb8613fb3613fae84613e5c565b613f93565b613e5c565b9050919050565b6000613fca82613f9d565b9050919050565b6000613fdc82613fbf565b9050919050565b613fec81613fd1565b82525050565b60006020820190506140076000830184613fe3565b92915050565b61401681613eba565b82525050565b6000602082019050614031600083018461400d565b92915050565b60006020828403121561404d5761404c613e52565b5b600061405b84828501613edb565b91505092915050565b60008060006060848603121561407d5761407c613e52565b5b600061408b86828701613ea5565b935050602061409c86828701613ea5565b92505060406140ad86828701613edb565b9150509250925092565b6140c081613e7c565b82525050565b60006020820190506140db60008301846140b7565b92915050565b600080600080608085870312156140fb576140fa613e52565b5b600061410987828801613edb565b945050602061411a87828801613edb565b935050604061412b87828801613edb565b925050606061413c87828801613edb565b91505092959194509250565b600060ff82169050919050565b61415e81614148565b82525050565b60006020820190506141796000830184614155565b92915050565b61418881613f30565b811461419357600080fd5b50565b6000813590506141a58161417f565b92915050565b600080604083850312156141c2576141c1613e52565b5b60006141d085828601613ea5565b92505060206141e185828601614196565b9150509250929050565b60006020828403121561420157614200613e52565b5b600061420f84828501614196565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261423d5761423c614218565b5b8235905067ffffffffffffffff81111561425a5761425961421d565b5b60208301915083602082028301111561427657614275614222565b5b9250929050565b60008060006040848603121561429657614295613e52565b5b600084013567ffffffffffffffff8111156142b4576142b3613e57565b5b6142c086828701614227565b935093505060206142d386828701614196565b9150509250925092565b600080604083850312156142f4576142f3613e52565b5b600061430285828601613ea5565b925050602061431385828601613ea5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061436457607f821691505b602082108114156143785761437761431d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006143b882613eba565b91506143c383613eba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143fc576143fb61437e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061444182613eba565b915061444c83613eba565b92508261445c5761445b614407565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006144c3602f83613da2565b91506144ce82614467565b604082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b600061450482613eba565b915061450f83613eba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145445761454361437e565b5b828201905092915050565b7f546f6b656e206c61756e63686564000000000000000000000000000000000000600082015250565b6000614585600e83613da2565b91506145908261454f565b602082019050919050565b600060208201905081810360008301526145b481614578565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614617603983613da2565b9150614622826145bb565b604082019050919050565b600060208201905081810360008301526146468161460a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146a9602583613da2565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061471982613eba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561474c5761474b61437e565b5b600182019050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147b3602483613da2565b91506147be82614757565b604082019050919050565b600060208201905081810360008301526147e2816147a6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614845603583613da2565b9150614850826147e9565b604082019050919050565b6000602082019050818103600083015261487481614838565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148d7603483613da2565b91506148e28261487b565b604082019050919050565b60006020820190508181036000830152614906816148ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614969602683613da2565b91506149748261490d565b604082019050919050565b600060208201905081810360008301526149988161495c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149fb602483613da2565b9150614a068261499f565b604082019050919050565b60006020820190508181036000830152614a2a816149ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a8d602283613da2565b9150614a9882614a31565b604082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af9602083613da2565b9150614b0482614ac3565b602082019050919050565b60006020820190508181036000830152614b2881614aec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614b65601d83613da2565b9150614b7082614b2f565b602082019050919050565b60006020820190508181036000830152614b9481614b58565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614bf7602583613da2565b9150614c0282614b9b565b604082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614c89602383613da2565b9150614c9482614c2d565b604082019050919050565b60006020820190508181036000830152614cb881614c7c565b9050919050565b7f536e6970657220626c6f636b6564000000000000000000000000000000000000600082015250565b6000614cf5600e83613da2565b9150614d0082614cbf565b602082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d61601683613da2565b9150614d6c82614d2b565b602082019050919050565b60006020820190508181036000830152614d9081614d54565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e204f6e6c79206f6e652070757263686173652070657220626c6f636b2060208201527f616c6c6f7765642e000000000000000000000000000000000000000000000000604082015250565b6000614e19604883613da2565b9150614e2482614d97565b606082019050919050565b60006020820190508181036000830152614e4881614e0c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614eab603583613da2565b9150614eb682614e4f565b604082019050919050565b60006020820190508181036000830152614eda81614e9e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f17601383613da2565b9150614f2282614ee1565b602082019050919050565b60006020820190508181036000830152614f4681614f0a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fa9603683613da2565b9150614fb482614f4d565b604082019050919050565b60006020820190508181036000830152614fd881614f9c565b9050919050565b6000614fea82613eba565b9150614ff583613eba565b9250828210156150085761500761437e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061506f602683613da2565b915061507a82615013565b604082019050919050565b6000602082019050818103600083015261509e81615062565b9050919050565b600081905092915050565b50565b60006150c06000836150a5565b91506150cb826150b0565b600082019050919050565b60006150e1826150b3565b9150819050919050565b6000606082019050615100600083018661400d565b61510d602083018561400d565b61511a604083018461400d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061516081613e8e565b92915050565b60006020828403121561517c5761517b613e52565b5b600061518a84828501615151565b91505092915050565b6000819050919050565b60006151b86151b36151ae84615193565b613f93565b613eba565b9050919050565b6151c88161519d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61520381613e7c565b82525050565b600061521583836151fa565b60208301905092915050565b6000602082019050919050565b6000615239826151ce565b61524381856151d9565b935061524e836151ea565b8060005b8381101561527f5781516152668882615209565b975061527183615221565b925050600181019050615252565b5085935050505092915050565b600060a0820190506152a1600083018861400d565b6152ae60208301876151bf565b81810360408301526152c0818661522e565b90506152cf60608301856140b7565b6152dc608083018461400d565b9695505050505050565b600060c0820190506152fb60008301896140b7565b615308602083018861400d565b61531560408301876151bf565b61532260608301866151bf565b61532f60808301856140b7565b61533c60a083018461400d565b979650505050505050565b60008151905061535681613ec4565b92915050565b60008060006060848603121561537557615374613e52565b5b600061538386828701615347565b935050602061539486828701615347565b92505060406153a586828701615347565b915050925092509256fea2646970667358221220f37f08f3a572b5c783d8a5cfabd83f3436e278ac34ebadc4f5bcbfd578d0895764736f6c634300080a0033

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.