ETH Price: $2,300.81 (+0.53%)

Token

ØERO PROTOCOL (ZERO)
 

Overview

Max Total Supply

950,000,000 ZERO

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
256,852.15 ZERO

Value
$0.00
0x534136da89bb192c34abccd51c9da658b978daa7
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:
ZeroProtocol

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : zkInu.sol
/**


WELCOME TO ØERO PROTOCOL! 

ØERO PROTOCOL is a decentralized cryptocurrency that is built on a foundation of trustlessness, decentralization, and transparency. At the core of our technology is the ZK-SNARK protocol, a sophisticated type of zero-knowledge proof system that enables the creation of concise and efficient proofs that third parties can easily verify. Essentially, ZK-SNARK transforms a complex computation into proof that a third party can quickly and securely verify, providing a relatively high degree of speed and privacy for transactions.

TOKENOMICS!
-Supply: 1,000,000,000
-Max Wallet: 3%
-Tax: 4/6



JOIN OUR COMMUNITY!
-Telegram: https://t.me/zeroprotocolofficial 
-Twitter: https://twitter.com/0EROPROTOCOL/
-Website: https://oprotocol.net/
-Mixer Dapp  Link: https://app.oprotocol.net/mixer/deposit
*/

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);
}
 
 
 
 
 
 
 
pragma solidity ^0.8.0;
 
/**
 * @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);
}
 
 
 
 
 
 
 
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;
    }
}
 
 
 
 
 
 
 
pragma solidity ^0.8.0;
 
 
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
 
        _afterTokenTransfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;
 
        emit Transfer(account, address(0), amount);
 
        _afterTokenTransfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev 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 {}
}
 
 
 
 
 
 
 
pragma solidity ^0.8.0;
 
 
/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
}
 
 
/**
 * @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);
    }
}
 
 
 
 
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;
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;
 
    function initialize(address, address) external;
}
 
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);
}
 
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;
}
 
interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}
 
 
interface IUniswapV2ERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
 
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}
 
 
 
 
 
 
pragma solidity ^0.8.15;
 
 
 
 
contract ZeroProtocol is ERC20Burnable, Ownable {
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000e18;
    address public marketingWallet;
    uint256 public maxPercentToSwap = 5;
    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;
 
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
 
    bool private swapping;
    uint256 public swapTokensAtAmount;
    bool public isTradingEnabled;
 
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
 
    event ExcludeFromFees(address indexed account);
    event FeesUpdated(uint256 sellFee, uint256 buyFee);
    event MarketingWalletChanged(address marketingWallet);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSend);
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    uint256 public sellFee;
    uint256 public buyFee;
 
 
    bool public isBotProtectionDisabledPermanently;
    uint256 public maxTxAmount;
    uint256 public maxHolding;
    mapping(address => bool) public isExempt;
 
    constructor (address router, address operator) ERC20(unicode"ØERO PROTOCOL", "ZERO")
    {
        _mint(owner(), TOTAL_SUPPLY);
 
        swapTokensAtAmount = TOTAL_SUPPLY / 1000;
        maxHolding = TOTAL_SUPPLY / 100;
        maxTxAmount = TOTAL_SUPPLY / 100;
        marketingWallet = operator;
        sellFee = 6;
        buyFee = 4;
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
 
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);
 
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[DEAD] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(uniswapV2Router)] = true;
 
 
        isExempt[address(uniswapV2Router)] = true;
        isExempt[owner()] = true;
    }
 
    receive() external payable {
    }
 
    function openTrade() public onlyOwner {
        require(isTradingEnabled == false, "Trading is already open!");
        isTradingEnabled = true;
    }
 
    function claimStuckTokens(address token) external onlyOwner {
        require(token != address(this), "Owner cannot claim native tokens");
        if (token == address(0x0)) {
            payable(msg.sender).transfer(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.transfer(msg.sender, balance);
    }
 
    function sendETH(address payable recipient, uint256 amount) internal {
 
        recipient.call{gas : 2300, value : amount}("");
    }
 
    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 {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    //=======FeeManagement=======//
    function excludeFromFees(address account) external onlyOwner {
        require(!_isExcludedFromFees[account], "Account is already the value of true");
        _isExcludedFromFees[account] = true;
 
        emit ExcludeFromFees(account);
    }
 
    function includeInFees(address account) external onlyOwner {
        require(_isExcludedFromFees[account], "Account already included");
        _isExcludedFromFees[account] = false;
    }
 
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }
 
    function updateFees(uint256 _sellFee, uint256 _buyFee) external onlyOwner {
        require(_sellFee <= 10, "Fees must be less than 10%");
        require(_buyFee <= 10, "Fees must be less than 10%");
        sellFee = _sellFee;
        buyFee = _buyFee;
 
        emit FeesUpdated(sellFee, buyFee);
    }
 
    function changeMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != marketingWallet, "Marketing wallet is already that address");
        marketingWallet = _marketingWallet;
        emit MarketingWalletChanged(marketingWallet);
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        if (!swapping) {
            _check(from, to, amount);
        }
 
        uint _buyFee = buyFee;
        uint _sellFee = sellFee;
 
        if (!isExempt[from] && !isExempt[to]) {
            require(isTradingEnabled, "Trade is not open");
        }
 
        if (amount == 0) {
            return;
        }
 
        bool takeFee = !swapping;
 
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 toSwap = balanceOf(address(this));
 
        bool canSwap = toSwap >= swapTokensAtAmount && toSwap > 0 && !automatedMarketMakerPairs[from] && takeFee;
        if (canSwap &&
            !swapping) {
            swapping = true;
            uint256 pairBalance = balanceOf(uniswapV2Pair);
            if (toSwap > pairBalance * maxPercentToSwap / 100) {
                toSwap = pairBalance * maxPercentToSwap / 100;
            }
            swapAndSendMarketing(toSwap);
            swapping = false;
        }
 
        if (takeFee && to == uniswapV2Pair && _sellFee > 0) {
            uint256 fees = (amount * _sellFee) / 100;
            amount = amount - fees;
 
            super._transfer(from, address(this), fees);
        }
        else if (takeFee && from == uniswapV2Pair && _buyFee > 0) {
            uint256 fees = (amount * _buyFee) / 100;
            amount = amount - fees;
 
            super._transfer(from, address(this), fees);
        }
 
        super._transfer(from, to, amount);
    }
 
    //=======Swap=======//
    function swapAndSendMarketing(uint256 tokenAmount) private {
 
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        try uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp) {}
        catch {
        }
 
        uint256 newBalance = address(this).balance;
        sendETH(payable(marketingWallet), newBalance);
 
        emit SwapAndSendMarketing(tokenAmount, newBalance);
    }
 
    function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(newAmount > 0);
        swapTokensAtAmount = newAmount;
    }
 
    function setMaxPercentToSwap(uint256 newAmount) external onlyOwner {
        require(newAmount > 1, "too low");
        require(newAmount <= 10, "too high");
        maxPercentToSwap = newAmount;
    }
 
    function _check(
        address from,
        address to,
        uint256 amount
    ) internal {
 
        if (!isBotProtectionDisabledPermanently) {
 
            if (!isSpecialAddresses(from, to) && !isExempt[to]) {
                _checkMaxTxAmount(to, amount);
 
                _checkMaxHoldingLimit(to, amount);
            }
        }
    }
 
    function _checkMaxTxAmount(address to, uint256 amount) internal view {
        require(amount <= maxTxAmount, "Amount exceeds max");
 
    }
 
    function _checkMaxHoldingLimit(address to, uint256 amount) internal view {
        if (to == uniswapV2Pair) {
            return;
        }
 
        require(balanceOf(to) + amount <= maxHolding, "Max holding exceeded max");
 
    }
 
    function isSpecialAddresses(address from, address to) view public returns (bool){
 
        return (from == owner() || to == owner() || from == address(this) || to == address(this));
    }
 
    function disableBotProtectionPermanently() external onlyOwner {
        isBotProtectionDisabledPermanently = true;
    }
 
    function setMaxTxAmount(uint256 maxTxAmount_) external onlyOwner {
        maxTxAmount = maxTxAmount_;
    }
 
    function setMaxHolding(uint256 maxHolding_) external onlyOwner {
        maxHolding = maxHolding_;
    }
 
    function setExempt(address who, bool status) public onlyOwner {
        isExempt[who] = status;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"}],"name":"FeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletChanged","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":"bnbSend","type":"uint256"}],"name":"SwapAndSendMarketing","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"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":"disableBotProtectionPermanently","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isBotProtectionDisabledPermanently","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"isSpecialAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPercentToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","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":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxHolding_","type":"uint256"}],"name":"setMaxHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxPercentToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount_","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260056007553480156200001657600080fd5b50604051620055873803806200558783398181016040528101906200003c919062000c91565b6040518060400160405280600e81526020017fc39845524f2050524f544f434f4c0000000000000000000000000000000000008152506040518060400160405280600481526020017f5a45524f000000000000000000000000000000000000000000000000000000008152508160039081620000b9919062000f52565b508060049081620000cb919062000f52565b505050620000ee620000e2620006a660201b60201c565b620006ae60201b60201c565b6200011b620001026200077460201b60201c565b6b033b2e3c9fd0803ce80000006200079e60201b60201c565b6103e86b033b2e3c9fd0803ce800000062000137919062001097565b600a8190555060646b033b2e3c9fd0803ce800000062000158919062001097565b60128190555060646b033b2e3c9fd0803ce800000062000179919062001097565b60118190555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506006600e819055506004600f81905550600082905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000223573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002499190620010cf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d79190620010cf565b6040518363ffffffff1660e01b8152600401620002f692919062001112565b6020604051808303816000875af115801562000316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033c9190620010cf565b905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200041530600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200091660201b60201c565b6200042881600162000ae760201b60201c565b6001600c60006200043e6200077460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360006200064b6200077460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050620013f3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000810576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080790620011a0565b60405180910390fd5b620008246000838362000c1d60201b60201c565b8060026000828254620008389190620011c2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200088f9190620011c2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008f691906200120e565b60405180910390a3620009126000838362000c2260201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097f90620012a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f19062001339565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ada91906200120e565b60405180910390a3505050565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000b7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b7390620013d1565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c598262000c2c565b9050919050565b62000c6b8162000c4c565b811462000c7757600080fd5b50565b60008151905062000c8b8162000c60565b92915050565b6000806040838503121562000cab5762000caa62000c27565b5b600062000cbb8582860162000c7a565b925050602062000cce8582860162000c7a565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d5a57607f821691505b60208210810362000d705762000d6f62000d12565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dda7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d9b565b62000de6868362000d9b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e3362000e2d62000e278462000dfe565b62000e08565b62000dfe565b9050919050565b6000819050919050565b62000e4f8362000e12565b62000e6762000e5e8262000e3a565b84845462000da8565b825550505050565b600090565b62000e7e62000e6f565b62000e8b81848462000e44565b505050565b5b8181101562000eb35762000ea760008262000e74565b60018101905062000e91565b5050565b601f82111562000f025762000ecc8162000d76565b62000ed78462000d8b565b8101602085101562000ee7578190505b62000eff62000ef68562000d8b565b83018262000e90565b50505b505050565b600082821c905092915050565b600062000f276000198460080262000f07565b1980831691505092915050565b600062000f42838362000f14565b9150826002028217905092915050565b62000f5d8262000cd8565b67ffffffffffffffff81111562000f795762000f7862000ce3565b5b62000f85825462000d41565b62000f9282828562000eb7565b600060209050601f83116001811462000fca576000841562000fb5578287015190505b62000fc1858262000f34565b86555062001031565b601f19841662000fda8662000d76565b60005b82811015620010045784890151825560018201915060208501945060208101905062000fdd565b8683101562001024578489015162001020601f89168262000f14565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010a48262000dfe565b9150620010b18362000dfe565b925082620010c457620010c362001039565b5b828204905092915050565b600060208284031215620010e857620010e762000c27565b5b6000620010f88482850162000c7a565b91505092915050565b6200110c8162000c4c565b82525050565b600060408201905062001129600083018562001101565b62001138602083018462001101565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001188601f836200113f565b9150620011958262001150565b602082019050919050565b60006020820190508181036000830152620011bb8162001179565b9050919050565b6000620011cf8262000dfe565b9150620011dc8362000dfe565b9250828201905080821115620011f757620011f662001068565b5b92915050565b620012088162000dfe565b82525050565b6000602082019050620012256000830184620011fd565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620012896024836200113f565b915062001296826200122b565b604082019050919050565b60006020820190508181036000830152620012bc816200127a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620013216022836200113f565b91506200132e82620012c3565b604082019050919050565b60006020820190508181036000830152620013548162001312565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000620013b96038836200113f565b9150620013c6826200135b565b604082019050919050565b60006020820190508181036000830152620013ec81620013aa565b9050919050565b61418480620014036000396000f3fe6080604052600436106102605760003560e01c80638c0b5e2211610144578063b62496f5116100b6578063e57f14e11161007a578063e57f14e114610943578063ec11ba341461096c578063ec28438a14610983578063f2fde38b146109ac578063f9d0831a146109d5578063fb201b1d146109fe57610267565b8063b62496f514610838578063bb85c6d114610875578063dd62ed3e1461089e578063e2f45605146108db578063e3084d9e1461090657610267565b80639c7d15a2116101085780639c7d15a2146107045780639fde54f51461072f578063a457c2d714610758578063a9059cbb14610795578063ad5dff73146107d2578063afa4f3b21461080f57610267565b80638c0b5e22146106315780638da5cb5b1461065c57806395d89b41146106875780639a7a23d6146106b25780639bc7c8c0146106db57610267565b8063333e6f06116101dd57806349bd5a5e116101a157806349bd5a5e146105215780634fbee1931461054c5780636db794371461058957806370a08231146105b2578063715018a6146105ef57806375f0a8741461060657610267565b8063333e6f061461043a578063395093511461046557806342966c68146104a25780634589aaea146104cb57806347062402146104f657610267565b806318160ddd1161022457806318160ddd14610353578063205187581461037e57806323b872dd146103a75780632b14ca56146103e4578063313ce5671461040f57610267565b8063064a59d01461026c57806306fdde0314610297578063095ea7b3146102c25780631694505e146102ff57806316a2f82a1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a15565b60405161028e9190612c54565b60405180910390f35b3480156102a357600080fd5b506102ac610a28565b6040516102b99190612cff565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612dba565b610aba565b6040516102f69190612c54565b60405180910390f35b34801561030b57600080fd5b50610314610add565b6040516103219190612e59565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612e74565b610b03565b005b34801561035f57600080fd5b50610368610bf2565b6040516103759190612eb0565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612ecb565b610bfc565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612ef8565b610c95565b6040516103db9190612c54565b60405180910390f35b3480156103f057600080fd5b506103f9610cc4565b6040516104069190612eb0565b60405180910390f35b34801561041b57600080fd5b50610424610cca565b6040516104319190612f67565b60405180910390f35b34801561044657600080fd5b5061044f610cd3565b60405161045c9190612eb0565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612dba565b610cd9565b6040516104999190612c54565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612ecb565b610d10565b005b3480156104d757600080fd5b506104e0610d24565b6040516104ed9190612c54565b60405180910390f35b34801561050257600080fd5b5061050b610d37565b6040516105189190612eb0565b60405180910390f35b34801561052d57600080fd5b50610536610d3d565b6040516105439190612f91565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612e74565b610d63565b6040516105809190612c54565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612fac565b610db9565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612e74565b610e98565b6040516105e69190612eb0565b60405180910390f35b3480156105fb57600080fd5b50610604610ee0565b005b34801561061257600080fd5b5061061b610ef4565b6040516106289190612f91565b60405180910390f35b34801561063d57600080fd5b50610646610f1a565b6040516106539190612eb0565b60405180910390f35b34801561066857600080fd5b50610671610f20565b60405161067e9190612f91565b60405180910390f35b34801561069357600080fd5b5061069c610f4a565b6040516106a99190612cff565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613018565b610fdc565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612ecb565b611082565b005b34801561071057600080fd5b50610719611094565b6040516107269190612eb0565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613018565b61109a565b005b34801561076457600080fd5b5061077f600480360381019061077a9190612dba565b6110fd565b60405161078c9190612c54565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612dba565b611174565b6040516107c99190612c54565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612e74565b611197565b6040516108069190612c54565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612ecb565b6111b7565b005b34801561084457600080fd5b5061085f600480360381019061085a9190612e74565b6111d6565b60405161086c9190612c54565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190612e74565b6111f6565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613058565b61132b565b6040516108d29190612eb0565b60405180910390f35b3480156108e757600080fd5b506108f06113b2565b6040516108fd9190612eb0565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613058565b6113b8565b60405161093a9190612c54565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190612e74565b6114a1565b005b34801561097857600080fd5b506109816115d4565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190612ecb565b6115f9565b005b3480156109b857600080fd5b506109d360048036038101906109ce9190612e74565b61160b565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190612e74565b61168e565b005b348015610a0a57600080fd5b50610a1361188c565b005b600b60009054906101000a900460ff1681565b606060038054610a37906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906130c7565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b600080610ac5611907565b9050610ad281858561190f565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b0b611ad8565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90613144565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b610c04611ad8565b60018111610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906131b0565b60405180910390fd5b600a811115610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c829061321c565b60405180910390fd5b8060078190555050565b600080610ca0611907565b9050610cad858285611b56565b610cb8858585611be2565b60019150509392505050565b600e5481565b60006012905090565b60125481565b600080610ce4611907565b9050610d05818585610cf6858961132b565b610d00919061326b565b61190f565b600191505092915050565b610d21610d1b611907565b82612164565b50565b601060009054906101000a900460ff1681565b600f5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dc1611ad8565b600a821115610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906132eb565b60405180910390fd5b600a811115610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906132eb565b60405180910390fd5b81600e8190555080600f819055507f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a1600e54600f54604051610e8c92919061330b565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee8611ad8565b610ef2600061233a565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f59906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906130c7565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b610fe4611ad8565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906133a6565b60405180910390fd5b61107e8282612400565b5050565b61108a611ad8565b8060128190555050565b60075481565b6110a2611ad8565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611108611907565b90506000611116828661132b565b90508381101561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613438565b60405180910390fd5b611168828686840361190f565b60019250505092915050565b60008061117f611907565b905061118c818585611be2565b600191505092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b6111bf611ad8565b600081116111cc57600080fd5b80600a8190555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6111fe611ad8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906134ca565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113209190612f91565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60006113c2610f20565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142d57506113fe610f20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061146357503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061149957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905092915050565b6114a9611ad8565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d9061355c565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d93660405160405180910390a250565b6115dc611ad8565b6001601060006101000a81548160ff021916908315150217905550565b611601611ad8565b8060118190555050565b611613611ad8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906135ee565b60405180910390fd5b61168b8161233a565b50565b611696611ad8565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb9061365a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611784573373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177e573d6000803e3d6000fd5b50611889565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117c49190612f91565b602060405180830381865afa1580156117e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611805919061368f565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016118429291906136bc565b6020604051808303816000875af1158015611861573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188591906136fa565b5050505b50565b611894611ad8565b60001515600b60009054906101000a900460ff161515146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613773565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613805565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613897565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611acb9190612eb0565b60405180910390a3505050565b611ae0611907565b73ffffffffffffffffffffffffffffffffffffffff16611afe610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613903565b60405180910390fd5b565b6000611b62848461132b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bdc5781811015611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc59061396f565b60405180910390fd5b611bdb848484840361190f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790613a93565b60405180910390fd5b600960149054906101000a900460ff16611ce057611cdf838383612533565b5b6000600f5490506000600e549050601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d925750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611de757600b60009054906101000a900460ff16611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613aff565b60405180910390fd5b5b60008303611df657505061215f565b6000600960149054906101000a900460ff16159050600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eac5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611eb657600090505b6000611ec130610e98565b90506000600a548210158015611ed75750600082115b8015611f2d5750600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f365750825b9050808015611f525750600960149054906101000a900460ff16155b15612005576001600960146101000a81548160ff0219169083151502179055506000611f9f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e98565b9050606460075482611fb19190613b1f565b611fbb9190613b90565b831115611fdf57606460075482611fd29190613b1f565b611fdc9190613b90565b92505b611fe8836125c8565b6000600960146101000a81548160ff021916908315150217905550505b82801561205f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b801561206b5750600084115b156120ab576000606485886120809190613b1f565b61208a9190613b90565b905080876120989190613bc1565b96506120a5893083612843565b5061214e565b8280156121055750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16145b80156121115750600085115b1561214d576000606486886121269190613b1f565b6121309190613b90565b9050808761213e9190613bc1565b965061214b893083612843565b505b5b612159888888612843565b50505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613c67565b60405180910390fd5b6121df82600083612ac2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90613cf9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546122bc9190613bc1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123219190612eb0565b60405180910390a361233583600084612ac7565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990613d8b565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b601060009054906101000a900460ff166125c35761255183836113b8565b1580156125a85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125c2576125b78282612acc565b6125c18282612b15565b5b5b505050565b6000600267ffffffffffffffff8111156125e5576125e4613dab565b5b6040519080825280602002602001820160405280156126135781602001602082028036833780820191505090505b509050308160008151811061262b5761262a613dda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f69190613e1e565b8160018151811061270a57612709613dda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127a8959493929190613f44565b600060405180830381600087803b1580156127c257600080fd5b505af19250505080156127d3575060015b506000479050612805600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612bc8565b7f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e62999838260405161283692919061330b565b60405180910390a1505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a990613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890613a93565b60405180910390fd5b61292c838383612ac2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614010565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a45919061326b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aa99190612eb0565b60405180910390a3612abc848484612ac7565b50505050565b505050565b505050565b601154811115612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b089061407c565b60405180910390fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160315612bc45760125481612b7884610e98565b612b82919061326b565b1115612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba906140e8565b60405180910390fd5b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc82604051612bef90614139565b600060405180830381858888f193505050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b5050505050565b60008115159050919050565b612c4e81612c39565b82525050565b6000602082019050612c696000830184612c45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca9578082015181840152602081019050612c8e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cd182612c6f565b612cdb8185612c7a565b9350612ceb818560208601612c8b565b612cf481612cb5565b840191505092915050565b60006020820190508181036000830152612d198184612cc6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5182612d26565b9050919050565b612d6181612d46565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b6000819050919050565b612d9781612d84565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b60008060408385031215612dd157612dd0612d21565b5b6000612ddf85828601612d6f565b9250506020612df085828601612da5565b9150509250929050565b6000819050919050565b6000612e1f612e1a612e1584612d26565b612dfa565b612d26565b9050919050565b6000612e3182612e04565b9050919050565b6000612e4382612e26565b9050919050565b612e5381612e38565b82525050565b6000602082019050612e6e6000830184612e4a565b92915050565b600060208284031215612e8a57612e89612d21565b5b6000612e9884828501612d6f565b91505092915050565b612eaa81612d84565b82525050565b6000602082019050612ec56000830184612ea1565b92915050565b600060208284031215612ee157612ee0612d21565b5b6000612eef84828501612da5565b91505092915050565b600080600060608486031215612f1157612f10612d21565b5b6000612f1f86828701612d6f565b9350506020612f3086828701612d6f565b9250506040612f4186828701612da5565b9150509250925092565b600060ff82169050919050565b612f6181612f4b565b82525050565b6000602082019050612f7c6000830184612f58565b92915050565b612f8b81612d46565b82525050565b6000602082019050612fa66000830184612f82565b92915050565b60008060408385031215612fc357612fc2612d21565b5b6000612fd185828601612da5565b9250506020612fe285828601612da5565b9150509250929050565b612ff581612c39565b811461300057600080fd5b50565b60008135905061301281612fec565b92915050565b6000806040838503121561302f5761302e612d21565b5b600061303d85828601612d6f565b925050602061304e85828601613003565b9150509250929050565b6000806040838503121561306f5761306e612d21565b5b600061307d85828601612d6f565b925050602061308e85828601612d6f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130df57607f821691505b6020821081036130f2576130f1613098565b5b50919050565b7f4163636f756e7420616c726561647920696e636c756465640000000000000000600082015250565b600061312e601883612c7a565b9150613139826130f8565b602082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b7f746f6f206c6f7700000000000000000000000000000000000000000000000000600082015250565b600061319a600783612c7a565b91506131a582613164565b602082019050919050565b600060208201905081810360008301526131c98161318d565b9050919050565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b6000613206600883612c7a565b9150613211826131d0565b602082019050919050565b60006020820190508181036000830152613235816131f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061327682612d84565b915061328183612d84565b92508282019050808211156132995761329861323c565b5b92915050565b7f46656573206d757374206265206c657373207468616e20313025000000000000600082015250565b60006132d5601a83612c7a565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60006040820190506133206000830185612ea1565b61332d6020830184612ea1565b9392505050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613390603983612c7a565b915061339b82613334565b604082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613422602583612c7a565b915061342d826133c6565b604082019050919050565b6000602082019050818103600083015261345181613415565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006134b4602883612c7a565b91506134bf82613458565b604082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f7472756500000000000000000000000000000000000000000000000000000000602082015250565b6000613546602483612c7a565b9150613551826134ea565b604082019050919050565b6000602082019050818103600083015261357581613539565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d8602683612c7a565b91506135e38261357c565b604082019050919050565b60006020820190508181036000830152613607816135cb565b9050919050565b7f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e73600082015250565b6000613644602083612c7a565b915061364f8261360e565b602082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b60008151905061368981612d8e565b92915050565b6000602082840312156136a5576136a4612d21565b5b60006136b38482850161367a565b91505092915050565b60006040820190506136d16000830185612f82565b6136de6020830184612ea1565b9392505050565b6000815190506136f481612fec565b92915050565b6000602082840312156137105761370f612d21565b5b600061371e848285016136e5565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e210000000000000000600082015250565b600061375d601883612c7a565b915061376882613727565b602082019050919050565b6000602082019050818103600083015261378c81613750565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137ef602483612c7a565b91506137fa82613793565b604082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613881602283612c7a565b915061388c82613825565b604082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138ed602083612c7a565b91506138f8826138b7565b602082019050919050565b6000602082019050818103600083015261391c816138e0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613959601d83612c7a565b915061396482613923565b602082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139eb602583612c7a565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7d602383612c7a565b9150613a8882613a21565b604082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f5472616465206973206e6f74206f70656e000000000000000000000000000000600082015250565b6000613ae9601183612c7a565b9150613af482613ab3565b602082019050919050565b60006020820190508181036000830152613b1881613adc565b9050919050565b6000613b2a82612d84565b9150613b3583612d84565b9250828202613b4381612d84565b91508282048414831517613b5a57613b5961323c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b9b82612d84565b9150613ba683612d84565b925082613bb657613bb5613b61565b5b828204905092915050565b6000613bcc82612d84565b9150613bd783612d84565b9250828203905081811115613bef57613bee61323c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c51602183612c7a565b9150613c5c82613bf5565b604082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602283612c7a565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613d75603883612c7a565b9150613d8082613d19565b604082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613e1881612d58565b92915050565b600060208284031215613e3457613e33612d21565b5b6000613e4284828501613e09565b91505092915050565b6000819050919050565b6000613e70613e6b613e6684613e4b565b612dfa565b612d84565b9050919050565b613e8081613e55565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ebb81612d46565b82525050565b6000613ecd8383613eb2565b60208301905092915050565b6000602082019050919050565b6000613ef182613e86565b613efb8185613e91565b9350613f0683613ea2565b8060005b83811015613f37578151613f1e8882613ec1565b9750613f2983613ed9565b925050600181019050613f0a565b5085935050505092915050565b600060a082019050613f596000830188612ea1565b613f666020830187613e77565b8181036040830152613f788186613ee6565b9050613f876060830185612f82565b613f946080830184612ea1565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ffa602683612c7a565b915061400582613f9e565b604082019050919050565b6000602082019050818103600083015261402981613fed565b9050919050565b7f416d6f756e742065786365656473206d61780000000000000000000000000000600082015250565b6000614066601283612c7a565b915061407182614030565b602082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b7f4d617820686f6c64696e67206578636565646564206d61780000000000000000600082015250565b60006140d2601883612c7a565b91506140dd8261409c565b602082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b600081905092915050565b50565b6000614123600083614108565b915061412e82614113565b600082019050919050565b600061414482614116565b915081905091905056fea264697066735822122003fd845ac83fb505348f48dd49bb9a82dfb449c92f5ef176bcd9390a5ec8466264736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000507354eab5f836ed0df542b2d96d72d326b87b0

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638c0b5e2211610144578063b62496f5116100b6578063e57f14e11161007a578063e57f14e114610943578063ec11ba341461096c578063ec28438a14610983578063f2fde38b146109ac578063f9d0831a146109d5578063fb201b1d146109fe57610267565b8063b62496f514610838578063bb85c6d114610875578063dd62ed3e1461089e578063e2f45605146108db578063e3084d9e1461090657610267565b80639c7d15a2116101085780639c7d15a2146107045780639fde54f51461072f578063a457c2d714610758578063a9059cbb14610795578063ad5dff73146107d2578063afa4f3b21461080f57610267565b80638c0b5e22146106315780638da5cb5b1461065c57806395d89b41146106875780639a7a23d6146106b25780639bc7c8c0146106db57610267565b8063333e6f06116101dd57806349bd5a5e116101a157806349bd5a5e146105215780634fbee1931461054c5780636db794371461058957806370a08231146105b2578063715018a6146105ef57806375f0a8741461060657610267565b8063333e6f061461043a578063395093511461046557806342966c68146104a25780634589aaea146104cb57806347062402146104f657610267565b806318160ddd1161022457806318160ddd14610353578063205187581461037e57806323b872dd146103a75780632b14ca56146103e4578063313ce5671461040f57610267565b8063064a59d01461026c57806306fdde0314610297578063095ea7b3146102c25780631694505e146102ff57806316a2f82a1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a15565b60405161028e9190612c54565b60405180910390f35b3480156102a357600080fd5b506102ac610a28565b6040516102b99190612cff565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612dba565b610aba565b6040516102f69190612c54565b60405180910390f35b34801561030b57600080fd5b50610314610add565b6040516103219190612e59565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612e74565b610b03565b005b34801561035f57600080fd5b50610368610bf2565b6040516103759190612eb0565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612ecb565b610bfc565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612ef8565b610c95565b6040516103db9190612c54565b60405180910390f35b3480156103f057600080fd5b506103f9610cc4565b6040516104069190612eb0565b60405180910390f35b34801561041b57600080fd5b50610424610cca565b6040516104319190612f67565b60405180910390f35b34801561044657600080fd5b5061044f610cd3565b60405161045c9190612eb0565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612dba565b610cd9565b6040516104999190612c54565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c49190612ecb565b610d10565b005b3480156104d757600080fd5b506104e0610d24565b6040516104ed9190612c54565b60405180910390f35b34801561050257600080fd5b5061050b610d37565b6040516105189190612eb0565b60405180910390f35b34801561052d57600080fd5b50610536610d3d565b6040516105439190612f91565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612e74565b610d63565b6040516105809190612c54565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612fac565b610db9565b005b3480156105be57600080fd5b506105d960048036038101906105d49190612e74565b610e98565b6040516105e69190612eb0565b60405180910390f35b3480156105fb57600080fd5b50610604610ee0565b005b34801561061257600080fd5b5061061b610ef4565b6040516106289190612f91565b60405180910390f35b34801561063d57600080fd5b50610646610f1a565b6040516106539190612eb0565b60405180910390f35b34801561066857600080fd5b50610671610f20565b60405161067e9190612f91565b60405180910390f35b34801561069357600080fd5b5061069c610f4a565b6040516106a99190612cff565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190613018565b610fdc565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612ecb565b611082565b005b34801561071057600080fd5b50610719611094565b6040516107269190612eb0565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613018565b61109a565b005b34801561076457600080fd5b5061077f600480360381019061077a9190612dba565b6110fd565b60405161078c9190612c54565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612dba565b611174565b6040516107c99190612c54565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612e74565b611197565b6040516108069190612c54565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612ecb565b6111b7565b005b34801561084457600080fd5b5061085f600480360381019061085a9190612e74565b6111d6565b60405161086c9190612c54565b60405180910390f35b34801561088157600080fd5b5061089c60048036038101906108979190612e74565b6111f6565b005b3480156108aa57600080fd5b506108c560048036038101906108c09190613058565b61132b565b6040516108d29190612eb0565b60405180910390f35b3480156108e757600080fd5b506108f06113b2565b6040516108fd9190612eb0565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613058565b6113b8565b60405161093a9190612c54565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190612e74565b6114a1565b005b34801561097857600080fd5b506109816115d4565b005b34801561098f57600080fd5b506109aa60048036038101906109a59190612ecb565b6115f9565b005b3480156109b857600080fd5b506109d360048036038101906109ce9190612e74565b61160b565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190612e74565b61168e565b005b348015610a0a57600080fd5b50610a1361188c565b005b600b60009054906101000a900460ff1681565b606060038054610a37906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a63906130c7565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b600080610ac5611907565b9050610ad281858561190f565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b0b611ad8565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90613144565b60405180910390fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b610c04611ad8565b60018111610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906131b0565b60405180910390fd5b600a811115610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c829061321c565b60405180910390fd5b8060078190555050565b600080610ca0611907565b9050610cad858285611b56565b610cb8858585611be2565b60019150509392505050565b600e5481565b60006012905090565b60125481565b600080610ce4611907565b9050610d05818585610cf6858961132b565b610d00919061326b565b61190f565b600191505092915050565b610d21610d1b611907565b82612164565b50565b601060009054906101000a900460ff1681565b600f5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610dc1611ad8565b600a821115610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc906132eb565b60405180910390fd5b600a811115610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906132eb565b60405180910390fd5b81600e8190555080600f819055507f5c6323bf1c2d7aaea2c091a4751c1c87af7f2864650c336507a77d0557af37a1600e54600f54604051610e8c92919061330b565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee8611ad8565b610ef2600061233a565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f59906130c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610f85906130c7565b8015610fd25780601f10610fa757610100808354040283529160200191610fd2565b820191906000526020600020905b815481529060010190602001808311610fb557829003601f168201915b5050505050905090565b610fe4611ad8565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906133a6565b60405180910390fd5b61107e8282612400565b5050565b61108a611ad8565b8060128190555050565b60075481565b6110a2611ad8565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080611108611907565b90506000611116828661132b565b90508381101561115b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115290613438565b60405180910390fd5b611168828686840361190f565b60019250505092915050565b60008061117f611907565b905061118c818585611be2565b600191505092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b6111bf611ad8565b600081116111cc57600080fd5b80600a8190555050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6111fe611ad8565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361128e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611285906134ca565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113209190612f91565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60006113c2610f20565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142d57506113fe610f20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061146357503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061149957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905092915050565b6114a9611ad8565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d9061355c565b60405180910390fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d93660405160405180910390a250565b6115dc611ad8565b6001601060006101000a81548160ff021916908315150217905550565b611601611ad8565b8060118190555050565b611613611ad8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906135ee565b60405180910390fd5b61168b8161233a565b50565b611696611ad8565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb9061365a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611784573373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561177e573d6000803e3d6000fd5b50611889565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117c49190612f91565b602060405180830381865afa1580156117e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611805919061368f565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016118429291906136bc565b6020604051808303816000875af1158015611861573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188591906136fa565b5050505b50565b611894611ad8565b60001515600b60009054906101000a900460ff161515146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e190613773565b60405180910390fd5b6001600b60006101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613805565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613897565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611acb9190612eb0565b60405180910390a3505050565b611ae0611907565b73ffffffffffffffffffffffffffffffffffffffff16611afe610f20565b73ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90613903565b60405180910390fd5b565b6000611b62848461132b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611bdc5781811015611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc59061396f565b60405180910390fd5b611bdb848484840361190f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790613a93565b60405180910390fd5b600960149054906101000a900460ff16611ce057611cdf838383612533565b5b6000600f5490506000600e549050601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611d925750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611de757600b60009054906101000a900460ff16611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd90613aff565b60405180910390fd5b5b60008303611df657505061215f565b6000600960149054906101000a900460ff16159050600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611eac5750600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611eb657600090505b6000611ec130610e98565b90506000600a548210158015611ed75750600082115b8015611f2d5750600d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f365750825b9050808015611f525750600960149054906101000a900460ff16155b15612005576001600960146101000a81548160ff0219169083151502179055506000611f9f600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e98565b9050606460075482611fb19190613b1f565b611fbb9190613b90565b831115611fdf57606460075482611fd29190613b1f565b611fdc9190613b90565b92505b611fe8836125c8565b6000600960146101000a81548160ff021916908315150217905550505b82801561205f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16145b801561206b5750600084115b156120ab576000606485886120809190613b1f565b61208a9190613b90565b905080876120989190613bc1565b96506120a5893083612843565b5061214e565b8280156121055750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16145b80156121115750600085115b1561214d576000606486886121269190613b1f565b6121309190613b90565b9050808761213e9190613bc1565b965061214b893083612843565b505b5b612159888888612843565b50505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90613c67565b60405180910390fd5b6121df82600083612ac2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225c90613cf9565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546122bc9190613bc1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123219190612eb0565b60405180910390a361233583600084612ac7565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990613d8b565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b601060009054906101000a900460ff166125c35761255183836113b8565b1580156125a85750601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125c2576125b78282612acc565b6125c18282612b15565b5b5b505050565b6000600267ffffffffffffffff8111156125e5576125e4613dab565b5b6040519080825280602002602001820160405280156126135781602001602082028036833780820191505090505b509050308160008151811061262b5761262a613dda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f69190613e1e565b8160018151811061270a57612709613dda565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016127a8959493929190613f44565b600060405180830381600087803b1580156127c257600080fd5b505af19250505080156127d3575060015b506000479050612805600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612bc8565b7f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e62999838260405161283692919061330b565b60405180910390a1505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036128b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a990613a01565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890613a93565b60405180910390fd5b61292c838383612ac2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614010565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a45919061326b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612aa99190612eb0565b60405180910390a3612abc848484612ac7565b50505050565b505050565b505050565b601154811115612b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b089061407c565b60405180910390fd5b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160315612bc45760125481612b7884610e98565b612b82919061326b565b1115612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba906140e8565b60405180910390fd5b5b5050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc82604051612bef90614139565b600060405180830381858888f193505050503d8060008114612c2d576040519150601f19603f3d011682016040523d82523d6000602084013e612c32565b606091505b5050505050565b60008115159050919050565b612c4e81612c39565b82525050565b6000602082019050612c696000830184612c45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca9578082015181840152602081019050612c8e565b60008484015250505050565b6000601f19601f8301169050919050565b6000612cd182612c6f565b612cdb8185612c7a565b9350612ceb818560208601612c8b565b612cf481612cb5565b840191505092915050565b60006020820190508181036000830152612d198184612cc6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5182612d26565b9050919050565b612d6181612d46565b8114612d6c57600080fd5b50565b600081359050612d7e81612d58565b92915050565b6000819050919050565b612d9781612d84565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b60008060408385031215612dd157612dd0612d21565b5b6000612ddf85828601612d6f565b9250506020612df085828601612da5565b9150509250929050565b6000819050919050565b6000612e1f612e1a612e1584612d26565b612dfa565b612d26565b9050919050565b6000612e3182612e04565b9050919050565b6000612e4382612e26565b9050919050565b612e5381612e38565b82525050565b6000602082019050612e6e6000830184612e4a565b92915050565b600060208284031215612e8a57612e89612d21565b5b6000612e9884828501612d6f565b91505092915050565b612eaa81612d84565b82525050565b6000602082019050612ec56000830184612ea1565b92915050565b600060208284031215612ee157612ee0612d21565b5b6000612eef84828501612da5565b91505092915050565b600080600060608486031215612f1157612f10612d21565b5b6000612f1f86828701612d6f565b9350506020612f3086828701612d6f565b9250506040612f4186828701612da5565b9150509250925092565b600060ff82169050919050565b612f6181612f4b565b82525050565b6000602082019050612f7c6000830184612f58565b92915050565b612f8b81612d46565b82525050565b6000602082019050612fa66000830184612f82565b92915050565b60008060408385031215612fc357612fc2612d21565b5b6000612fd185828601612da5565b9250506020612fe285828601612da5565b9150509250929050565b612ff581612c39565b811461300057600080fd5b50565b60008135905061301281612fec565b92915050565b6000806040838503121561302f5761302e612d21565b5b600061303d85828601612d6f565b925050602061304e85828601613003565b9150509250929050565b6000806040838503121561306f5761306e612d21565b5b600061307d85828601612d6f565b925050602061308e85828601612d6f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806130df57607f821691505b6020821081036130f2576130f1613098565b5b50919050565b7f4163636f756e7420616c726561647920696e636c756465640000000000000000600082015250565b600061312e601883612c7a565b9150613139826130f8565b602082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b7f746f6f206c6f7700000000000000000000000000000000000000000000000000600082015250565b600061319a600783612c7a565b91506131a582613164565b602082019050919050565b600060208201905081810360008301526131c98161318d565b9050919050565b7f746f6f2068696768000000000000000000000000000000000000000000000000600082015250565b6000613206600883612c7a565b9150613211826131d0565b602082019050919050565b60006020820190508181036000830152613235816131f9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061327682612d84565b915061328183612d84565b92508282019050808211156132995761329861323c565b5b92915050565b7f46656573206d757374206265206c657373207468616e20313025000000000000600082015250565b60006132d5601a83612c7a565b91506132e08261329f565b602082019050919050565b60006020820190508181036000830152613304816132c8565b9050919050565b60006040820190506133206000830185612ea1565b61332d6020830184612ea1565b9392505050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613390603983612c7a565b915061339b82613334565b604082019050919050565b600060208201905081810360008301526133bf81613383565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613422602583612c7a565b915061342d826133c6565b604082019050919050565b6000602082019050818103600083015261345181613415565b9050919050565b7f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006134b4602883612c7a565b91506134bf82613458565b604082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b7f4163636f756e7420697320616c7265616479207468652076616c7565206f662060008201527f7472756500000000000000000000000000000000000000000000000000000000602082015250565b6000613546602483612c7a565b9150613551826134ea565b604082019050919050565b6000602082019050818103600083015261357581613539565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d8602683612c7a565b91506135e38261357c565b604082019050919050565b60006020820190508181036000830152613607816135cb565b9050919050565b7f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e73600082015250565b6000613644602083612c7a565b915061364f8261360e565b602082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b60008151905061368981612d8e565b92915050565b6000602082840312156136a5576136a4612d21565b5b60006136b38482850161367a565b91505092915050565b60006040820190506136d16000830185612f82565b6136de6020830184612ea1565b9392505050565b6000815190506136f481612fec565b92915050565b6000602082840312156137105761370f612d21565b5b600061371e848285016136e5565b91505092915050565b7f54726164696e6720697320616c7265616479206f70656e210000000000000000600082015250565b600061375d601883612c7a565b915061376882613727565b602082019050919050565b6000602082019050818103600083015261378c81613750565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137ef602483612c7a565b91506137fa82613793565b604082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613881602283612c7a565b915061388c82613825565b604082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138ed602083612c7a565b91506138f8826138b7565b602082019050919050565b6000602082019050818103600083015261391c816138e0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613959601d83612c7a565b915061396482613923565b602082019050919050565b600060208201905081810360008301526139888161394c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139eb602583612c7a565b91506139f68261398f565b604082019050919050565b60006020820190508181036000830152613a1a816139de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7d602383612c7a565b9150613a8882613a21565b604082019050919050565b60006020820190508181036000830152613aac81613a70565b9050919050565b7f5472616465206973206e6f74206f70656e000000000000000000000000000000600082015250565b6000613ae9601183612c7a565b9150613af482613ab3565b602082019050919050565b60006020820190508181036000830152613b1881613adc565b9050919050565b6000613b2a82612d84565b9150613b3583612d84565b9250828202613b4381612d84565b91508282048414831517613b5a57613b5961323c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b9b82612d84565b9150613ba683612d84565b925082613bb657613bb5613b61565b5b828204905092915050565b6000613bcc82612d84565b9150613bd783612d84565b9250828203905081811115613bef57613bee61323c565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c51602183612c7a565b9150613c5c82613bf5565b604082019050919050565b60006020820190508181036000830152613c8081613c44565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce3602283612c7a565b9150613cee82613c87565b604082019050919050565b60006020820190508181036000830152613d1281613cd6565b9050919050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613d75603883612c7a565b9150613d8082613d19565b604082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613e1881612d58565b92915050565b600060208284031215613e3457613e33612d21565b5b6000613e4284828501613e09565b91505092915050565b6000819050919050565b6000613e70613e6b613e6684613e4b565b612dfa565b612d84565b9050919050565b613e8081613e55565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613ebb81612d46565b82525050565b6000613ecd8383613eb2565b60208301905092915050565b6000602082019050919050565b6000613ef182613e86565b613efb8185613e91565b9350613f0683613ea2565b8060005b83811015613f37578151613f1e8882613ec1565b9750613f2983613ed9565b925050600181019050613f0a565b5085935050505092915050565b600060a082019050613f596000830188612ea1565b613f666020830187613e77565b8181036040830152613f788186613ee6565b9050613f876060830185612f82565b613f946080830184612ea1565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ffa602683612c7a565b915061400582613f9e565b604082019050919050565b6000602082019050818103600083015261402981613fed565b9050919050565b7f416d6f756e742065786365656473206d61780000000000000000000000000000600082015250565b6000614066601283612c7a565b915061407182614030565b602082019050919050565b6000602082019050818103600083015261409581614059565b9050919050565b7f4d617820686f6c64696e67206578636565646564206d61780000000000000000600082015250565b60006140d2601883612c7a565b91506140dd8261409c565b602082019050919050565b60006020820190508181036000830152614101816140c5565b9050919050565b600081905092915050565b50565b6000614123600083614108565b915061412e82614113565b600082019050919050565b600061414482614116565b915081905091905056fea264697066735822122003fd845ac83fb505348f48dd49bb9a82dfb449c92f5ef176bcd9390a5ec8466264736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000000507354eab5f836ed0df542b2d96d72d326b87b0

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : operator (address): 0x0507354eAB5F836ED0dF542B2D96D72D326b87b0

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000507354eab5f836ed0df542b2d96d72d326b87b0


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.