ETH Price: $2,414.23 (+0.13%)

Token

KING Token (KING)
 

Overview

Max Total Supply

9,788,267.99999999999992995 KING

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 KING

Value
$0.00
0xc213C4f71C1eA1349865CdfaA8014DD517f7C86E
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:
KingToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Copy_KING.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

// Interface for interacting with V2 router contract
interface IRouter {
    function factory() external pure returns (address);

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

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

// Interface for interacting with factory contract
interface IFactory {
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

contract KingToken is ERC20Burnable, Ownable {
    constructor(
        address _teamWallet
    )
    ERC20("KING Token", "KING")
    Ownable(msg.sender)
    {
        _mint(msg.sender, 10000000 * 10 ** 18);
        setSwapAtPercentage(10); 
        setThreshold(1 * 10 ** 17);
        setTax(300, 100);
        setExcludedFromTaxStatus(msg.sender, true);
        setExcludedFromTaxStatus(address(this), true);
        setTeamWallet(_teamWallet);
        _approve(address(this), address(ROUTER), ~uint256(0));
    }

    mapping (address => bool) public isPair;
    mapping (address => bool) public isExcludedFromTax;
    uint256 public threshold;
    address payable public teamWallet;
    address public swapPair;
    // WETH contract
    address private constant WETH = 
        0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    // PREME Token contract
    address private constant PREME =
        0x7d0C49057c09501595A8ce23b773BB36A40b521F;
    // deadWallet used by PREME Token
    address private constant DEAD_WALLET =
        0xdEAD000000000000000042069420694206942069;
    // UniSwap RouterV2
    IRouter private constant ROUTER =
        IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    uint16 public totalTax;
    uint16 public burnTax;
    uint8 public swapAtPercentage;
    bool inSwapAndLiquify;
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    } 

    event SetTax(
        uint16 indexed totalTax,
        uint16 indexed burnTax
    );
    event SetThreshold(uint256 indexed threshold);
    event FailedToSwap(address indexed token, uint256 amount);
    event FailedToPayout(address indexed payoutaddress);
    event SetSwapAtPercentage(uint8 indexed swapAtPercentage);
    event SetTeamWallet(address indexed teamwallet);
    event SetMarketingWallet(address indexed marketingWallet);
    event SetPair(address indexed pair, bool indexed value);
    event SetExcludeFromTaxStatus(
        address indexed account,
        bool indexed isExcluded
    );

    function _update(
        address from,
        address to,
        uint256 value
    ) internal override {
        if (
            totalTax != 0 && !(isExcludedFromTax[from] || isExcludedFromTax[to])
        ) {
            if (swapPair == address(0)) setSwapPair();
            if (isPair[to] || isPair[from]) {
                if (
                    balanceOf(address(this)) > balanceOf(swapPair) *
                        swapAtPercentage / 10000 &&
                    isPair[to] &&
                    !inSwapAndLiquify
                ) handleTax();
                uint256 extraFee = value * totalTax / 10000;
                super._update(from, address(this), extraFee);
                value -= extraFee;
            }   
        }     
        super._update(from, to, value);
    }

    // Internal function to handle and distribute the collected tax
    function handleTax() private lockTheSwap {
        /* Sets maxAmount to 1% of swapPair holdings and
        swapAmount to maxAmount if balance > maxAmount */
        uint256 maxAmount = balanceOf(swapPair) / 100;
        uint256 swapAmount =
            balanceOf(address(this)) > maxAmount
                ? maxAmount
                : balanceOf(address(this));
        swapTokensForETH(swapAmount);
        if (address(this).balance > threshold) {
            if (burnTax != 0) burnPREME(address(this).balance * burnTax / totalTax);
            // Remaining funds are team tax (total tax - marketing tax)
            if (address(this).balance != 0) {
                (bool succeed, ) = teamWallet.call {
                    value: address(this).balance
                }('');
                // If transfer fails, the contract will proceed
                if (!succeed) emit FailedToPayout (teamWallet);
            }
        }
    }

    // Internal function to swap collected tax to ETH
    function swapTokensForETH(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;
        try
            ROUTER.swapExactTokensForETH(
                amount,
                0, 
                path,
                address(this),
                block.timestamp
            )
        {} catch {
            // If swap fails, the contract will proceed
            emit FailedToSwap(address(this), amount);
            return;
        } 
    }

    // Internal function to buy and burn PREME (receiver is deadWallet)
    function burnPREME(uint256 amount) private {
        address[] memory path = new address[](2);
        path[0] = WETH;
        path[1] = PREME;
        try
            ROUTER.swapExactETHForTokensSupportingFeeOnTransferTokens{
                value: amount
            }(0, path, DEAD_WALLET, block.timestamp)
        {} catch {
            // If swap fails, the contract will proceed
            emit FailedToSwap(PREME, amount);
            return;
        }          
    }

    // Internal function to set SwapPair 
    function setSwapPair() private {
        swapPair = IFactory(ROUTER.factory()).getPair(
            address(this),
            WETH
        );
        if (swapPair != address(0)) {
            isPair[swapPair] = true;
            emit SetPair(swapPair, true);
        }
    }

    // Function to set taxed pair status
    function setPair(address pair, bool value) public onlyOwner {
        require(
            isPair[pair] != value,
            "Pair is already set to this value"
        );
        isPair[pair] = value;
        emit SetPair(pair, value);
    }

    /* Function to set the threshold for automatically swap
    (percentage of swapPair holdings max. 50 ≙ 0.5%) */
    function setSwapAtPercentage(uint8 newPercentage) public onlyOwner {
        require(
            newPercentage != swapAtPercentage,
            "SwapAtPercentage is already set to this value"
        );
        require(
            newPercentage <= 50,
            "SwapAtPercentage can't exceed 50 (0.5%)"
        );
        swapAtPercentage = newPercentage;
        emit SetSwapAtPercentage(newPercentage);
    }

    // Function to set the ETH threshold for distribution (in WEI, max. 1 ETH)
    function setThreshold(uint256 newThreshold) public onlyOwner {
        require(
            newThreshold != threshold,
            "Threshold is already set to this value"
        );
        require(
            newThreshold <= 1 * 10 ** 18,
            "Threshold can't exceed 1 ETH"
        );
        threshold = newThreshold;
        emit SetThreshold(newThreshold);
    }

    // Function to set tax (max 300 ≙ 3%)
    function setTax(
        uint16 newTotalTax,
        uint16 newBurnTax
    ) public onlyOwner {
        require(
            /* As long as PREME burn period isn't finished,
            marketing tax is used for it and can't be changed */
            block.timestamp > 1785520800 || newBurnTax == 100,
            "PREME burn isn't finished"
        );
        require(
            newBurnTax <= newTotalTax && newTotalTax <= 300,
            "Total can't exceed 3%"
        );
        totalTax = newTotalTax;
        burnTax = newBurnTax;
        emit SetTax(newTotalTax, newBurnTax);
    }

    // Function to make team tax transparent (not used in code)
    function teamTax() external view returns(uint16){
        return totalTax - burnTax;
    }

    // Function to set excluded from tax status
    function setExcludedFromTaxStatus(
        address account,
        bool isExcluded
    ) public onlyOwner {
        require(
            isExcludedFromTax[account] != isExcluded,
            "Account is already set to this value"
        );
        require(
            account != address(this) || isExcluded,
            "Contract needs to stay excluded"
        );
        isExcludedFromTax[account] = isExcluded;
        emit SetExcludeFromTaxStatus(account, isExcluded);
    }

    // Function to set payout address for project
    function setTeamWallet(address newAddress) public onlyOwner {
        require(
            newAddress != teamWallet,
            "Team wallet is already set to this value"
        );
        if (isExcludedFromTax[teamWallet]) {
            setExcludedFromTaxStatus(teamWallet, false);
            setExcludedFromTaxStatus(newAddress, true);
        }
        teamWallet = payable(newAddress);
        emit SetTeamWallet(newAddress);
    }

    // Function to transfer ownership
    function transferOwnership(address newOwner) public override onlyOwner {
        if (isExcludedFromTax[owner()]) {
            setExcludedFromTaxStatus(owner(), false);
            setExcludedFromTaxStatus(newOwner, true);
        }
        super.transferOwnership(newOwner);
    }

    // Function to manually swap the collected tax
    function manualSwap() external onlyOwner {
        require(
            balanceOf(address(this)) != 0,
            "No tokens available to swap"
        );
        handleTax();
    }

    // To receive ETH (only during swap)
    receive() external payable { 
        require(
            inSwapAndLiquify,
            "You can't send ETH to the contract"
        );
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @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 a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of 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
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

File 4 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 5 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 6 of 8 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 7 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

File 8 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"payoutaddress","type":"address"}],"name":"FailedToPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FailedToSwap","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":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetExcludeFromTaxStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"SetMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"swapAtPercentage","type":"uint8"}],"name":"SetSwapAtPercentage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"totalTax","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"burnTax","type":"uint16"}],"name":"SetTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"teamwallet","type":"address"}],"name":"SetTeamWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"SetThreshold","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"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcludedFromTaxStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newPercentage","type":"uint8"}],"name":"setSwapAtPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newTotalTax","type":"uint16"},{"internalType":"uint16","name":"newBurnTax","type":"uint16"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"setThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAtPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b50604051620061ca380380620061ca833981810160405281019062000036919062001bd9565b336040518060400160405280600a81526020017f4b494e4720546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494e47000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062001e6d565b508060049081620000c6919062001e6d565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000133919062001f62565b60405180910390fd5b6200014d816200021160201b60201c565b506200016b336a084595161401484a000000620002d460201b60201c565b6200017d600a6200035e60201b60201c565b6200019667016345785d8a00006200046060201b60201c565b620001ab61012c60646200053c60201b60201c565b620001be3360016200067a60201b60201c565b620001d13060016200067a60201b60201c565b620001e2816200083560201b60201c565b6200020a30737a250d5630b4cf539739df2c5dacb4c659f2488d5f1962000a1560201b60201c565b50620029f7565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000347575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200033e919062001f62565b60405180910390fd5b6200035a5f838362000a2f60201b60201c565b5050565b6200036e62000d6360201b60201c565b600a60189054906101000a900460ff1660ff168160ff1603620003c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bf9062002001565b60405180910390fd5b60328160ff16111562000412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004099062002095565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b6200047062000d6360201b60201c565b6008548103620004b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ae9062002129565b60405180910390fd5b670de0b6b3a764000081111562000505576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fc9062002197565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b6200054c62000d6360201b60201c565b636a6ce2a042118062000563575060648161ffff16145b620005a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059c9062002205565b60405180910390fd5b8161ffff168161ffff1611158015620005c4575061012c8261ffff1611155b62000606576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005fd9062002273565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b6200068a62000d6360201b60201c565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515036200071c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007139062002307565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580620007555750805b62000797576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078e9062002375565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b6200084562000d6360201b60201c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620008d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ce9062002409565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156200098f576200097b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f6200067a60201b60201c565b6200098e8160016200067a60201b60201c565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b62000a2a838383600162000e0560201b60201c565b505050565b5f600a60149054906101000a900461ffff1661ffff161415801562000aed575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168062000aeb575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b1562000d4b575f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160362000b595762000b5862000fdd60201b60201c565b5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168062000bf5575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1562000d4a57612710600a60189054906101000a900460ff1660ff1662000c43600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200126860201b60201c565b62000c4f919062002456565b62000c5b9190620024cd565b62000c6c306200126860201b60201c565b11801562000cc0575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801562000cda5750600a60199054906101000a900460ff16155b1562000cf15762000cf0620012ad60201b60201c565b5b5f612710600a60149054906101000a900461ffff1661ffff168362000d17919062002456565b62000d239190620024cd565b905062000d38843083620014ec60201b60201c565b808262000d46919062002504565b9150505b5b62000d5e838383620014ec60201b60201c565b505050565b62000d736200171060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000d996200171760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000e035762000dc56200171060201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000dfa919062001f62565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000e78575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000e6f919062001f62565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000eeb575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000ee2919062001f62565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801562000fd7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000fce91906200254f565b60405180910390a35b50505050565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200103b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001061919062001bd9565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620010b19291906200256a565b602060405180830381865afa158015620010cd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620010f3919062001bd9565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200126657600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060011515600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35b565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6001600a60196101000a81548160ff0219169083151502179055505f6064620012fd600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200126860201b60201c565b620013099190620024cd565b90505f816200131e306200126860201b60201c565b116200133b5762001335306200126860201b60201c565b6200133d565b815b905062001350816200173f60201b60201c565b600854471115620014ce575f600a60169054906101000a900461ffff1661ffff1614620013cb57620013ca600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff1647620013b2919062002456565b620013be9190620024cd565b6200194160201b60201c565b5b5f4714620014cd575f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516200141b90620025c6565b5f6040518083038185875af1925050503d805f811462001457576040519150601f19603f3d011682016040523d82523d5f602084013e6200145c565b606091505b5050905080620014cb5760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a60196101000a81548160ff021916908315150217905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001540578060025f828254620015339190620025dc565b9250508190555062001611565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620015cc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620015c39392919062002616565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200165a578060025f8282540392505081905550620016a4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200170391906200254f565b60405180910390a3505050565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600267ffffffffffffffff8111156200175e576200175d62001c13565b5b6040519080825280602002602001820160405280156200178d5781602001602082028036833780820191505090505b50905030815f81518110620017a757620017a662002651565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106200180d576200180c62002651565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b81526004016200189e95949392919062002786565b5f604051808303815f875af1925050508015620018df57506040513d5f823e3d601f19601f82011682018060405250810190620018dc919062002956565b60015b6200193b573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f836040516200192c91906200254f565b60405180910390a2506200193e565b50505b50565b5f600267ffffffffffffffff81111562001960576200195f62001c13565b5b6040519080825280602002602001820160405280156200198f5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f81518110620019bd57620019bc62002651565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f8160018151811062001a235762001a2262002651565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b815260040162001ac79493929190620029a5565b5f604051808303818588803b15801562001adf575f80fd5b505af19350505050801562001af2575060015b62001b6257737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405162001b5391906200254f565b60405180910390a25062001b64565b505b50565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001ba38262001b78565b9050919050565b62001bb58162001b97565b811462001bc0575f80fd5b50565b5f8151905062001bd38162001baa565b92915050565b5f6020828403121562001bf15762001bf062001b70565b5b5f62001c008482850162001bc3565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062001c8557607f821691505b60208210810362001c9b5762001c9a62001c40565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262001cff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001cc2565b62001d0b868362001cc2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62001d5562001d4f62001d498462001d23565b62001d2c565b62001d23565b9050919050565b5f819050919050565b62001d708362001d35565b62001d8862001d7f8262001d5c565b84845462001cce565b825550505050565b5f90565b62001d9e62001d90565b62001dab81848462001d65565b505050565b5b8181101562001dd25762001dc65f8262001d94565b60018101905062001db1565b5050565b601f82111562001e215762001deb8162001ca1565b62001df68462001cb3565b8101602085101562001e06578190505b62001e1e62001e158562001cb3565b83018262001db0565b50505b505050565b5f82821c905092915050565b5f62001e435f198460080262001e26565b1980831691505092915050565b5f62001e5d838362001e32565b9150826002028217905092915050565b62001e788262001c09565b67ffffffffffffffff81111562001e945762001e9362001c13565b5b62001ea0825462001c6d565b62001ead82828562001dd6565b5f60209050601f83116001811462001ee3575f841562001ece578287015190505b62001eda858262001e50565b86555062001f49565b601f19841662001ef38662001ca1565b5f5b8281101562001f1c5784890151825560018201915060208501945060208101905062001ef5565b8683101562001f3c578489015162001f38601f89168262001e32565b8355505b6001600288020188555050505b505050505050565b62001f5c8162001b97565b82525050565b5f60208201905062001f775f83018462001f51565b92915050565b5f82825260208201905092915050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f62001fe9602d8362001f7d565b915062001ff68262001f8d565b604082019050919050565b5f6020820190508181035f8301526200201a8162001fdb565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f6200207d60278362001f7d565b91506200208a8262002021565b604082019050919050565b5f6020820190508181035f830152620020ae816200206f565b9050919050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f6200211160268362001f7d565b91506200211e82620020b5565b604082019050919050565b5f6020820190508181035f830152620021428162002103565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448000000005f82015250565b5f6200217f601c8362001f7d565b91506200218c8262002149565b602082019050919050565b5f6020820190508181035f830152620021b08162002171565b9050919050565b7f5052454d45206275726e2069736e27742066696e6973686564000000000000005f82015250565b5f620021ed60198362001f7d565b9150620021fa82620021b7565b602082019050919050565b5f6020820190508181035f8301526200221e81620021df565b9050919050565b7f546f74616c2063616e27742065786365656420332500000000000000000000005f82015250565b5f6200225b60158362001f7d565b9150620022688262002225565b602082019050919050565b5f6020820190508181035f8301526200228c816200224d565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f620022ef60248362001f7d565b9150620022fc8262002293565b604082019050919050565b5f6020820190508181035f8301526200232081620022e1565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f6200235d601f8362001f7d565b91506200236a8262002327565b602082019050919050565b5f6020820190508181035f8301526200238e816200234f565b9050919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f620023f160288362001f7d565b9150620023fe8262002395565b604082019050919050565b5f6020820190508181035f8301526200242281620023e3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620024628262001d23565b91506200246f8362001d23565b92508282026200247f8162001d23565b9150828204841483151762002499576200249862002429565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620024d98262001d23565b9150620024e68362001d23565b925082620024f957620024f8620024a0565b5b828204905092915050565b5f620025108262001d23565b91506200251d8362001d23565b925082820390508181111562002538576200253762002429565b5b92915050565b620025498162001d23565b82525050565b5f602082019050620025645f8301846200253e565b92915050565b5f6040820190506200257f5f83018562001f51565b6200258e602083018462001f51565b9392505050565b5f81905092915050565b50565b5f620025af5f8362002595565b9150620025bc826200259f565b5f82019050919050565b5f620025d282620025a2565b9150819050919050565b5f620025e88262001d23565b9150620025f58362001d23565b925082820190508082111562002610576200260f62002429565b5b92915050565b5f6060820190506200262b5f83018662001f51565b6200263a60208301856200253e565b6200264960408301846200253e565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f620026a7620026a16200269b846200267e565b62001d2c565b62001d23565b9050919050565b620026b98162002687565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b620026f38162001b97565b82525050565b5f620027068383620026e8565b60208301905092915050565b5f602082019050919050565b5f6200272a82620026bf565b620027368185620026c9565b93506200274383620026d9565b805f5b83811015620027795781516200275d8882620026f9565b97506200276a8362002712565b92505060018101905062002746565b5085935050505092915050565b5f60a0820190506200279b5f8301886200253e565b620027aa6020830187620026ae565b8181036040830152620027be81866200271e565b9050620027cf606083018562001f51565b620027de60808301846200253e565b9695505050505050565b5f80fd5b5f601f19601f8301169050919050565b6200280782620027ec565b810181811067ffffffffffffffff8211171562002829576200282862001c13565b5b80604052505050565b5f6200283d62001b67565b90506200284b8282620027fc565b919050565b5f67ffffffffffffffff8211156200286d576200286c62001c13565b5b602082029050602081019050919050565b5f80fd5b6200288d8162001d23565b811462002898575f80fd5b50565b5f81519050620028ab8162002882565b92915050565b5f620028c7620028c18462002850565b62002832565b90508083825260208201905060208402830185811115620028ed57620028ec6200287e565b5b835b818110156200291a57806200290588826200289b565b845260208401935050602081019050620028ef565b5050509392505050565b5f82601f8301126200293b576200293a620027e8565b5b81516200294d848260208601620028b1565b91505092915050565b5f602082840312156200296e576200296d62001b70565b5b5f82015167ffffffffffffffff8111156200298e576200298d62001b74565b5b6200299c8482850162002924565b91505092915050565b5f608082019050620029ba5f830187620026ae565b8181036020830152620029ce81866200271e565b9050620029df604083018562001f51565b620029ee60608301846200253e565b95945050505050565b6137c58062002a055f395ff3fe6080604052600436106101d0575f3560e01c806379cc6790116100f6578063cb4ca63111610094578063e796712e11610063578063e796712e146106b6578063f2855785146106de578063f2fde38b14610708578063fe85b42b1461073057610226565b8063cb4ca631146105da578063cd5d89ca14610616578063dd62ed3e1461063e578063e5e31b131461067a57610226565b8063932733c7116100d0578063932733c71461052257806395d89b411461054c578063960bfe0414610576578063a9059cbb1461059e57610226565b806379cc6790146104a857806386a22eff146104d05780638da5cb5b146104f857610226565b8063313ce5671161016e57806357654e7e1161013d57806357654e7e14610404578063599270441461042c57806370a0823114610456578063715018a61461049257610226565b8063313ce5671461037257806342966c681461039c57806342cde4e8146103c457806351bc3c85146103ee57610226565b806318160ddd116101aa57806318160ddd146102b85780631d4eaead146102e257806323b872dd1461030c57806326991cc81461034857610226565b806306fdde031461022a578063095ea7b3146102545780631525ff7d1461029057610226565b3661022657600a60199054906101000a900460ff16610224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021b9061276f565b60405180910390fd5b005b5f80fd5b348015610235575f80fd5b5061023e61075a565b60405161024b9190612807565b60405180910390f35b34801561025f575f80fd5b5061027a600480360381019061027591906128c5565b6107ea565b604051610287919061291d565b60405180910390f35b34801561029b575f80fd5b506102b660048036038101906102b19190612936565b61080c565b005b3480156102c3575f80fd5b506102cc6109d0565b6040516102d99190612970565b60405180910390f35b3480156102ed575f80fd5b506102f66109d9565b60405161030391906129a5565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d91906129be565b6109ed565b60405161033f919061291d565b60405180910390f35b348015610353575f80fd5b5061035c610a1b565b6040516103699190612a1d565b60405180910390f35b34801561037d575f80fd5b50610386610a40565b6040516103939190612a51565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd9190612a6a565b610a48565b005b3480156103cf575f80fd5b506103d8610a5c565b6040516103e59190612970565b60405180910390f35b3480156103f9575f80fd5b50610402610a62565b005b34801561040f575f80fd5b5061042a60048036038101906104259190612abf565b610abe565b005b348015610437575f80fd5b50610440610bec565b60405161044d9190612b1d565b60405180910390f35b348015610461575f80fd5b5061047c60048036038101906104779190612936565b610c11565b6040516104899190612970565b60405180910390f35b34801561049d575f80fd5b506104a6610c56565b005b3480156104b3575f80fd5b506104ce60048036038101906104c991906128c5565b610c69565b005b3480156104db575f80fd5b506104f660048036038101906104f19190612b60565b610c89565b005b348015610503575f80fd5b5061050c610dbe565b6040516105199190612a1d565b60405180910390f35b34801561052d575f80fd5b50610536610de6565b60405161054391906129a5565b60405180910390f35b348015610557575f80fd5b50610560610e18565b60405161056d9190612807565b60405180910390f35b348015610581575f80fd5b5061059c60048036038101906105979190612a6a565b610ea8565b005b3480156105a9575f80fd5b506105c460048036038101906105bf91906128c5565b610f76565b6040516105d1919061291d565b60405180910390f35b3480156105e5575f80fd5b5061060060048036038101906105fb9190612936565b610f98565b60405161060d919061291d565b60405180910390f35b348015610621575f80fd5b5061063c60048036038101906106379190612b60565b610fb5565b005b348015610649575f80fd5b50610664600480360381019061065f9190612b9e565b611161565b6040516106719190612970565b60405180910390f35b348015610685575f80fd5b506106a0600480360381019061069b9190612936565b6111e3565b6040516106ad919061291d565b60405180910390f35b3480156106c1575f80fd5b506106dc60048036038101906106d79190612c06565b611200565b005b3480156106e9575f80fd5b506106f26112f4565b6040516106ff9190612a51565b60405180910390f35b348015610713575f80fd5b5061072e60048036038101906107299190612936565b611307565b005b34801561073b575f80fd5b5061074461138e565b60405161075191906129a5565b60405180910390f35b60606003805461076990612c5e565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612c5e565b80156107e05780601f106107b7576101008083540402835291602001916107e0565b820191905f5260205f20905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b5f806107f46113a2565b90506108018185856113a9565b600191505092915050565b6108146113bb565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612cfe565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561094a5761093e60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f610fb5565b610949816001610fb5565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b5f600254905090565b600a60169054906101000a900461ffff1681565b5f806109f76113a2565b9050610a04858285611442565b610a0f8585856114d4565b60019150509392505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610a59610a536113a2565b826115c4565b50565b60085481565b610a6a6113bb565b5f610a7430610c11565b03610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90612d66565b60405180910390fd5b610abc611643565b565b610ac66113bb565b636a6ce2a0421180610adc575060648161ffff16145b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612dce565b60405180910390fd5b8161ffff168161ffff1611158015610b39575061012c8261ffff1611155b610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90612e36565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c5e6113bb565b610c675f61184a565b565b610c7b82610c756113a2565b83611442565b610c8582826115c4565b5050565b610c916113bb565b80151560065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612ec4565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600a60169054906101000a900461ffff16600a60149054906101000a900461ffff16610e139190612f0f565b905090565b606060048054610e2790612c5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5390612c5e565b8015610e9e5780601f10610e7557610100808354040283529160200191610e9e565b820191905f5260205f20905b815481529060010190602001808311610e8157829003601f168201915b5050505050905090565b610eb06113bb565b6008548103610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612fb4565b60405180910390fd5b670de0b6b3a7640000811115610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f369061301c565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b5f80610f806113a2565b9050610f8d8185856114d4565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b610fbd6113bb565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906130aa565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415806110845750805b6110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613112565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6112086113bb565b600a60189054906101000a900460ff1660ff168160ff160361125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906131a0565b60405180910390fd5b60328160ff1611156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061322e565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b600a60189054906101000a900460ff1681565b61130f6113bb565b60075f61131a610dbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561138257611376611370610dbe565b5f610fb5565b611381816001610fb5565b5b61138b8161190d565b50565b600a60149054906101000a900461ffff1681565b5f33905090565b6113b68383836001611991565b505050565b6113c36113a2565b73ffffffffffffffffffffffffffffffffffffffff166113e1610dbe565b73ffffffffffffffffffffffffffffffffffffffff1614611440576114046113a2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114379190612a1d565b60405180910390fd5b565b5f61144d8484611161565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114ce57818110156114bf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016114b69392919061324c565b60405180910390fd5b6114cd84848484035f611991565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611544575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161153b9190612a1d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115ab9190612a1d565b60405180910390fd5b6115bf838383611b60565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611634575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161162b9190612a1d565b60405180910390fd5b61163f825f83611b60565b5050565b6001600a60196101000a81548160ff0219169083151502179055505f606461168b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c11565b61169591906132ae565b90505f816116a230610c11565b116116b5576116b030610c11565b6116b7565b815b90506116c281611e51565b60085447111561182c575f600a60169054906101000a900461ffff1661ffff161461172f5761172e600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff164761171f91906132de565b61172991906132ae565b612040565b5b5f471461182b575f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161177c9061334c565b5f6040518083038185875af1925050503d805f81146117b6576040519150601f19603f3d011682016040523d82523d5f602084013e6117bb565b606091505b50509050806118295760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a60196101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119156113bb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611985575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161197c9190612a1d565b60405180910390fd5b61198e8161184a565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a01575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119f89190612a1d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a71575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a689190612a1d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611b5a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b519190612970565b60405180910390a35b50505050565b5f600a60149054906101000a900461ffff1661ffff1614158015611c1c575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c1a575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b15611e41575f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c7e57611c7d612254565b5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d19575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611e4057612710600a60189054906101000a900460ff1660ff16611d5e600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c11565b611d6891906132de565b611d7291906132ae565b611d7b30610c11565b118015611dce575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611de75750600a60199054906101000a900460ff16155b15611df557611df4611643565b5b5f612710600a60149054906101000a900461ffff1661ffff1683611e1991906132de565b611e2391906132ae565b9050611e308430836124d6565b8082611e3c9190613360565b9150505b5b611e4c8383836124d6565b505050565b5f600267ffffffffffffffff811115611e6d57611e6c613393565b5b604051908082528060200260200182016040528015611e9b5781602001602082028036833780820191505090505b50905030815f81518110611eb257611eb16133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611f1557611f146133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b8152600401611fa49594939291906134e6565b5f604051808303815f875af1925050508015611fe257506040513d5f823e3d601f19601f82011682018060405250810190611fdf9190613665565b60015b61203a573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405161202c9190612970565b60405180910390a25061203d565b50505b50565b5f600267ffffffffffffffff81111561205c5761205b613393565b5b60405190808252806020026020018201604052801561208a5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f815181106120b5576120b46133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f81600181518110612118576121176133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b81526004016121ba94939291906136ac565b5f604051808303818588803b1580156121d1575f80fd5b505af1935050505080156121e3575060015b61224f57737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f836040516122419190612970565b60405180910390a250612251565b505b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d5919061370a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401612323929190613735565b602060405180830381865afa15801561233e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612362919061370a565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d457600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060011515600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612526578060025f82825461251a919061375c565b925050819055506125f4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156125af578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016125a69392919061324c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361263b578060025f8282540392505081905550612685565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126e29190612970565b60405180910390a3505050565b5f82825260208201905092915050565b7f596f752063616e27742073656e642045544820746f2074686520636f6e7472615f8201527f6374000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127596022836126ef565b9150612764826126ff565b604082019050919050565b5f6020820190508181035f8301526127868161274d565b9050919050565b5f81519050919050565b5f5b838110156127b4578082015181840152602081019050612799565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6127d98261278d565b6127e381856126ef565b93506127f3818560208601612797565b6127fc816127bf565b840191505092915050565b5f6020820190508181035f83015261281f81846127cf565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61286182612838565b9050919050565b61287181612857565b811461287b575f80fd5b50565b5f8135905061288c81612868565b92915050565b5f819050919050565b6128a481612892565b81146128ae575f80fd5b50565b5f813590506128bf8161289b565b92915050565b5f80604083850312156128db576128da612830565b5b5f6128e88582860161287e565b92505060206128f9858286016128b1565b9150509250929050565b5f8115159050919050565b61291781612903565b82525050565b5f6020820190506129305f83018461290e565b92915050565b5f6020828403121561294b5761294a612830565b5b5f6129588482850161287e565b91505092915050565b61296a81612892565b82525050565b5f6020820190506129835f830184612961565b92915050565b5f61ffff82169050919050565b61299f81612989565b82525050565b5f6020820190506129b85f830184612996565b92915050565b5f805f606084860312156129d5576129d4612830565b5b5f6129e28682870161287e565b93505060206129f38682870161287e565b9250506040612a04868287016128b1565b9150509250925092565b612a1781612857565b82525050565b5f602082019050612a305f830184612a0e565b92915050565b5f60ff82169050919050565b612a4b81612a36565b82525050565b5f602082019050612a645f830184612a42565b92915050565b5f60208284031215612a7f57612a7e612830565b5b5f612a8c848285016128b1565b91505092915050565b612a9e81612989565b8114612aa8575f80fd5b50565b5f81359050612ab981612a95565b92915050565b5f8060408385031215612ad557612ad4612830565b5b5f612ae285828601612aab565b9250506020612af385828601612aab565b9150509250929050565b5f612b0782612838565b9050919050565b612b1781612afd565b82525050565b5f602082019050612b305f830184612b0e565b92915050565b612b3f81612903565b8114612b49575f80fd5b50565b5f81359050612b5a81612b36565b92915050565b5f8060408385031215612b7657612b75612830565b5b5f612b838582860161287e565b9250506020612b9485828601612b4c565b9150509250929050565b5f8060408385031215612bb457612bb3612830565b5b5f612bc18582860161287e565b9250506020612bd28582860161287e565b9150509250929050565b612be581612a36565b8114612bef575f80fd5b50565b5f81359050612c0081612bdc565b92915050565b5f60208284031215612c1b57612c1a612830565b5b5f612c2884828501612bf2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c7557607f821691505b602082108103612c8857612c87612c31565b5b50919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f612ce86028836126ef565b9150612cf382612c8e565b604082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4e6f20746f6b656e7320617661696c61626c6520746f207377617000000000005f82015250565b5f612d50601b836126ef565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f5052454d45206275726e2069736e27742066696e6973686564000000000000005f82015250565b5f612db86019836126ef565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b7f546f74616c2063616e27742065786365656420332500000000000000000000005f82015250565b5f612e206015836126ef565b9150612e2b82612dec565b602082019050919050565b5f6020820190508181035f830152612e4d81612e14565b9050919050565b7f5061697220697320616c72656164792073657420746f20746869732076616c755f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f612eae6021836126ef565b9150612eb982612e54565b604082019050919050565b5f6020820190508181035f830152612edb81612ea2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f1982612989565b9150612f2483612989565b9250828203905061ffff811115612f3e57612f3d612ee2565b5b92915050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f612f9e6026836126ef565b9150612fa982612f44565b604082019050919050565b5f6020820190508181035f830152612fcb81612f92565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448000000005f82015250565b5f613006601c836126ef565b915061301182612fd2565b602082019050919050565b5f6020820190508181035f83015261303381612ffa565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f6130946024836126ef565b915061309f8261303a565b604082019050919050565b5f6020820190508181035f8301526130c181613088565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f6130fc601f836126ef565b9150613107826130c8565b602082019050919050565b5f6020820190508181035f830152613129816130f0565b9050919050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f61318a602d836126ef565b915061319582613130565b604082019050919050565b5f6020820190508181035f8301526131b78161317e565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f6132186027836126ef565b9150613223826131be565b604082019050919050565b5f6020820190508181035f8301526132458161320c565b9050919050565b5f60608201905061325f5f830186612a0e565b61326c6020830185612961565b6132796040830184612961565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132b882612892565b91506132c383612892565b9250826132d3576132d2613281565b5b828204905092915050565b5f6132e882612892565b91506132f383612892565b925082820261330181612892565b9150828204841483151761331857613317612ee2565b5b5092915050565b5f81905092915050565b50565b5f6133375f8361331f565b915061334282613329565b5f82019050919050565b5f6133568261332c565b9150819050919050565b5f61336a82612892565b915061337583612892565b925082820390508181111561338d5761338c612ee2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f61341961341461340f846133ed565b6133f6565b612892565b9050919050565b613429816133ff565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61346181612857565b82525050565b5f6134728383613458565b60208301905092915050565b5f602082019050919050565b5f6134948261342f565b61349e8185613439565b93506134a983613449565b805f5b838110156134d95781516134c08882613467565b97506134cb8361347e565b9250506001810190506134ac565b5085935050505092915050565b5f60a0820190506134f95f830188612961565b6135066020830187613420565b8181036040830152613518818661348a565b90506135276060830185612a0e565b6135346080830184612961565b9695505050505050565b5f80fd5b61354b826127bf565b810181811067ffffffffffffffff8211171561356a57613569613393565b5b80604052505050565b5f61357c612827565b90506135888282613542565b919050565b5f67ffffffffffffffff8211156135a7576135a6613393565b5b602082029050602081019050919050565b5f80fd5b5f815190506135ca8161289b565b92915050565b5f6135e26135dd8461358d565b613573565b90508083825260208201905060208402830185811115613605576136046135b8565b5b835b8181101561362e578061361a88826135bc565b845260208401935050602081019050613607565b5050509392505050565b5f82601f83011261364c5761364b61353e565b5b815161365c8482602086016135d0565b91505092915050565b5f6020828403121561367a57613679612830565b5b5f82015167ffffffffffffffff81111561369757613696612834565b5b6136a384828501613638565b91505092915050565b5f6080820190506136bf5f830187613420565b81810360208301526136d1818661348a565b90506136e06040830185612a0e565b6136ed6060830184612961565b95945050505050565b5f8151905061370481612868565b92915050565b5f6020828403121561371f5761371e612830565b5b5f61372c848285016136f6565b91505092915050565b5f6040820190506137485f830185612a0e565b6137556020830184612a0e565b9392505050565b5f61376682612892565b915061377183612892565b925082820190508082111561378957613788612ee2565b5b9291505056fea2646970667358221220ec83feb0dd144463d9559eb87740d3b6b83e235be37e77ec4fa8e07e26e2667d64736f6c634300081400330000000000000000000000005222eefbb7e5dfe97dd1cd67562699f8609d7f91

Deployed Bytecode

0x6080604052600436106101d0575f3560e01c806379cc6790116100f6578063cb4ca63111610094578063e796712e11610063578063e796712e146106b6578063f2855785146106de578063f2fde38b14610708578063fe85b42b1461073057610226565b8063cb4ca631146105da578063cd5d89ca14610616578063dd62ed3e1461063e578063e5e31b131461067a57610226565b8063932733c7116100d0578063932733c71461052257806395d89b411461054c578063960bfe0414610576578063a9059cbb1461059e57610226565b806379cc6790146104a857806386a22eff146104d05780638da5cb5b146104f857610226565b8063313ce5671161016e57806357654e7e1161013d57806357654e7e14610404578063599270441461042c57806370a0823114610456578063715018a61461049257610226565b8063313ce5671461037257806342966c681461039c57806342cde4e8146103c457806351bc3c85146103ee57610226565b806318160ddd116101aa57806318160ddd146102b85780631d4eaead146102e257806323b872dd1461030c57806326991cc81461034857610226565b806306fdde031461022a578063095ea7b3146102545780631525ff7d1461029057610226565b3661022657600a60199054906101000a900460ff16610224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021b9061276f565b60405180910390fd5b005b5f80fd5b348015610235575f80fd5b5061023e61075a565b60405161024b9190612807565b60405180910390f35b34801561025f575f80fd5b5061027a600480360381019061027591906128c5565b6107ea565b604051610287919061291d565b60405180910390f35b34801561029b575f80fd5b506102b660048036038101906102b19190612936565b61080c565b005b3480156102c3575f80fd5b506102cc6109d0565b6040516102d99190612970565b60405180910390f35b3480156102ed575f80fd5b506102f66109d9565b60405161030391906129a5565b60405180910390f35b348015610317575f80fd5b50610332600480360381019061032d91906129be565b6109ed565b60405161033f919061291d565b60405180910390f35b348015610353575f80fd5b5061035c610a1b565b6040516103699190612a1d565b60405180910390f35b34801561037d575f80fd5b50610386610a40565b6040516103939190612a51565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd9190612a6a565b610a48565b005b3480156103cf575f80fd5b506103d8610a5c565b6040516103e59190612970565b60405180910390f35b3480156103f9575f80fd5b50610402610a62565b005b34801561040f575f80fd5b5061042a60048036038101906104259190612abf565b610abe565b005b348015610437575f80fd5b50610440610bec565b60405161044d9190612b1d565b60405180910390f35b348015610461575f80fd5b5061047c60048036038101906104779190612936565b610c11565b6040516104899190612970565b60405180910390f35b34801561049d575f80fd5b506104a6610c56565b005b3480156104b3575f80fd5b506104ce60048036038101906104c991906128c5565b610c69565b005b3480156104db575f80fd5b506104f660048036038101906104f19190612b60565b610c89565b005b348015610503575f80fd5b5061050c610dbe565b6040516105199190612a1d565b60405180910390f35b34801561052d575f80fd5b50610536610de6565b60405161054391906129a5565b60405180910390f35b348015610557575f80fd5b50610560610e18565b60405161056d9190612807565b60405180910390f35b348015610581575f80fd5b5061059c60048036038101906105979190612a6a565b610ea8565b005b3480156105a9575f80fd5b506105c460048036038101906105bf91906128c5565b610f76565b6040516105d1919061291d565b60405180910390f35b3480156105e5575f80fd5b5061060060048036038101906105fb9190612936565b610f98565b60405161060d919061291d565b60405180910390f35b348015610621575f80fd5b5061063c60048036038101906106379190612b60565b610fb5565b005b348015610649575f80fd5b50610664600480360381019061065f9190612b9e565b611161565b6040516106719190612970565b60405180910390f35b348015610685575f80fd5b506106a0600480360381019061069b9190612936565b6111e3565b6040516106ad919061291d565b60405180910390f35b3480156106c1575f80fd5b506106dc60048036038101906106d79190612c06565b611200565b005b3480156106e9575f80fd5b506106f26112f4565b6040516106ff9190612a51565b60405180910390f35b348015610713575f80fd5b5061072e60048036038101906107299190612936565b611307565b005b34801561073b575f80fd5b5061074461138e565b60405161075191906129a5565b60405180910390f35b60606003805461076990612c5e565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612c5e565b80156107e05780601f106107b7576101008083540402835291602001916107e0565b820191905f5260205f20905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b5f806107f46113a2565b90506108018185856113a9565b600191505092915050565b6108146113bb565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a90612cfe565b60405180910390fd5b60075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561094a5761093e60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff165f610fb5565b610949816001610fb5565b5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fc6a5dd316fe9d0339f2769deab7e31f64c8f5b101ffd85dfc9a83dbeaf2e69da60405160405180910390a250565b5f600254905090565b600a60169054906101000a900461ffff1681565b5f806109f76113a2565b9050610a04858285611442565b610a0f8585856114d4565b60019150509392505050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610a59610a536113a2565b826115c4565b50565b60085481565b610a6a6113bb565b5f610a7430610c11565b03610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aab90612d66565b60405180910390fd5b610abc611643565b565b610ac66113bb565b636a6ce2a0421180610adc575060648161ffff16145b610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612dce565b60405180910390fd5b8161ffff168161ffff1611158015610b39575061012c8261ffff1611155b610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f90612e36565b60405180910390fd5b81600a60146101000a81548161ffff021916908361ffff16021790555080600a60166101000a81548161ffff021916908361ffff1602179055508061ffff168261ffff167fe7c1815e2fde01dbf39b1398f4178377b7c6709a2ff5354234a80c04be8be96960405160405180910390a35050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610c5e6113bb565b610c675f61184a565b565b610c7b82610c756113a2565b83611442565b610c8582826115c4565b5050565b610c916113bb565b80151560065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790612ec4565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600a60169054906101000a900461ffff16600a60149054906101000a900461ffff16610e139190612f0f565b905090565b606060048054610e2790612c5e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5390612c5e565b8015610e9e5780601f10610e7557610100808354040283529160200191610e9e565b820191905f5260205f20905b815481529060010190602001808311610e8157829003601f168201915b5050505050905090565b610eb06113bb565b6008548103610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612fb4565b60405180910390fd5b670de0b6b3a7640000811115610f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f369061301c565b60405180910390fd5b80600881905550807f46e8115bf463f9c29a9424fe152addef1bfaf2b43180d19bb7c2c78cc0ff1ebf60405160405180910390a250565b5f80610f806113a2565b9050610f8d8185856114d4565b600191505092915050565b6007602052805f5260405f205f915054906101000a900460ff1681565b610fbd6113bb565b80151560075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906130aa565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415806110845750805b6110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613112565b60405180910390fd5b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167f6b8f4f35f1d56250908e430133b4145bf1bee87efd3d5ce502acfca0b8d356c960405160405180910390a35050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6112086113bb565b600a60189054906101000a900460ff1660ff168160ff160361125f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611256906131a0565b60405180910390fd5b60328160ff1611156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d9061322e565b60405180910390fd5b80600a60186101000a81548160ff021916908360ff1602179055508060ff167fd993e88411e8d896bbbe51121e41b519b2d88b3d9af231f0ea13a5dfe0e54eac60405160405180910390a250565b600a60189054906101000a900460ff1681565b61130f6113bb565b60075f61131a610dbe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561138257611376611370610dbe565b5f610fb5565b611381816001610fb5565b5b61138b8161190d565b50565b600a60149054906101000a900461ffff1681565b5f33905090565b6113b68383836001611991565b505050565b6113c36113a2565b73ffffffffffffffffffffffffffffffffffffffff166113e1610dbe565b73ffffffffffffffffffffffffffffffffffffffff1614611440576114046113a2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016114379190612a1d565b60405180910390fd5b565b5f61144d8484611161565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114ce57818110156114bf578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016114b69392919061324c565b60405180910390fd5b6114cd84848484035f611991565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611544575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161153b9190612a1d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b4575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115ab9190612a1d565b60405180910390fd5b6115bf838383611b60565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611634575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161162b9190612a1d565b60405180910390fd5b61163f825f83611b60565b5050565b6001600a60196101000a81548160ff0219169083151502179055505f606461168b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c11565b61169591906132ae565b90505f816116a230610c11565b116116b5576116b030610c11565b6116b7565b815b90506116c281611e51565b60085447111561182c575f600a60169054906101000a900461ffff1661ffff161461172f5761172e600a60149054906101000a900461ffff1661ffff16600a60169054906101000a900461ffff1661ffff164761171f91906132de565b61172991906132ae565b612040565b5b5f471461182b575f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161177c9061334c565b5f6040518083038185875af1925050503d805f81146117b6576040519150601f19603f3d011682016040523d82523d5f602084013e6117bb565b606091505b50509050806118295760095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167faae6f49a69d34825354babc54f6bc380b03be17523d79c360166d42e83098a5460405160405180910390a25b505b5b50505f600a60196101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119156113bb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611985575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161197c9190612a1d565b60405180910390fd5b61198e8161184a565b50565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a01575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016119f89190612a1d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a71575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611a689190612a1d565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611b5a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b519190612970565b60405180910390a35b50505050565b5f600a60149054906101000a900461ffff1661ffff1614158015611c1c575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611c1a575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b155b15611e41575f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c7e57611c7d612254565b5b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d19575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611e4057612710600a60189054906101000a900460ff1660ff16611d5e600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610c11565b611d6891906132de565b611d7291906132ae565b611d7b30610c11565b118015611dce575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8015611de75750600a60199054906101000a900460ff16155b15611df557611df4611643565b5b5f612710600a60149054906101000a900461ffff1661ffff1683611e1991906132de565b611e2391906132ae565b9050611e308430836124d6565b8082611e3c9190613360565b9150505b5b611e4c8383836124d6565b505050565b5f600267ffffffffffffffff811115611e6d57611e6c613393565b5b604051908082528060200260200182016040528015611e9b5781602001602082028036833780820191505090505b50905030815f81518110611eb257611eb16133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110611f1557611f146133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff166318cbafe5835f8430426040518663ffffffff1660e01b8152600401611fa49594939291906134e6565b5f604051808303815f875af1925050508015611fe257506040513d5f823e3d601f19601f82011682018060405250810190611fdf9190613665565b60015b61203a573073ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f8360405161202c9190612970565b60405180910390a25061203d565b50505b50565b5f600267ffffffffffffffff81111561205c5761205b613393565b5b60405190808252806020026020018201604052801561208a5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2815f815181106120b5576120b46133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737d0c49057c09501595a8ce23b773bb36a40b521f81600181518110612118576121176133c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8473dead000000000000000042069420694206942069426040518663ffffffff1660e01b81526004016121ba94939291906136ac565b5f604051808303818588803b1580156121d1575f80fd5b505af1935050505080156121e3575060015b61224f57737d0c49057c09501595a8ce23b773bb36a40b521f73ffffffffffffffffffffffffffffffffffffffff167f0bcd847fc84cd9af704fdf07905bd612b70921cd04019b6e72b145bb7c48f26f836040516122419190612970565b60405180910390a250612251565b505b50565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d5919061370a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401612323929190613735565b602060405180830381865afa15801561233e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612362919061370a565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124d457600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060011515600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a35b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612526578060025f82825461251a919061375c565b925050819055506125f4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156125af578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016125a69392919061324c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361263b578060025f8282540392505081905550612685565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126e29190612970565b60405180910390a3505050565b5f82825260208201905092915050565b7f596f752063616e27742073656e642045544820746f2074686520636f6e7472615f8201527f6374000000000000000000000000000000000000000000000000000000000000602082015250565b5f6127596022836126ef565b9150612764826126ff565b604082019050919050565b5f6020820190508181035f8301526127868161274d565b9050919050565b5f81519050919050565b5f5b838110156127b4578082015181840152602081019050612799565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6127d98261278d565b6127e381856126ef565b93506127f3818560208601612797565b6127fc816127bf565b840191505092915050565b5f6020820190508181035f83015261281f81846127cf565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61286182612838565b9050919050565b61287181612857565b811461287b575f80fd5b50565b5f8135905061288c81612868565b92915050565b5f819050919050565b6128a481612892565b81146128ae575f80fd5b50565b5f813590506128bf8161289b565b92915050565b5f80604083850312156128db576128da612830565b5b5f6128e88582860161287e565b92505060206128f9858286016128b1565b9150509250929050565b5f8115159050919050565b61291781612903565b82525050565b5f6020820190506129305f83018461290e565b92915050565b5f6020828403121561294b5761294a612830565b5b5f6129588482850161287e565b91505092915050565b61296a81612892565b82525050565b5f6020820190506129835f830184612961565b92915050565b5f61ffff82169050919050565b61299f81612989565b82525050565b5f6020820190506129b85f830184612996565b92915050565b5f805f606084860312156129d5576129d4612830565b5b5f6129e28682870161287e565b93505060206129f38682870161287e565b9250506040612a04868287016128b1565b9150509250925092565b612a1781612857565b82525050565b5f602082019050612a305f830184612a0e565b92915050565b5f60ff82169050919050565b612a4b81612a36565b82525050565b5f602082019050612a645f830184612a42565b92915050565b5f60208284031215612a7f57612a7e612830565b5b5f612a8c848285016128b1565b91505092915050565b612a9e81612989565b8114612aa8575f80fd5b50565b5f81359050612ab981612a95565b92915050565b5f8060408385031215612ad557612ad4612830565b5b5f612ae285828601612aab565b9250506020612af385828601612aab565b9150509250929050565b5f612b0782612838565b9050919050565b612b1781612afd565b82525050565b5f602082019050612b305f830184612b0e565b92915050565b612b3f81612903565b8114612b49575f80fd5b50565b5f81359050612b5a81612b36565b92915050565b5f8060408385031215612b7657612b75612830565b5b5f612b838582860161287e565b9250506020612b9485828601612b4c565b9150509250929050565b5f8060408385031215612bb457612bb3612830565b5b5f612bc18582860161287e565b9250506020612bd28582860161287e565b9150509250929050565b612be581612a36565b8114612bef575f80fd5b50565b5f81359050612c0081612bdc565b92915050565b5f60208284031215612c1b57612c1a612830565b5b5f612c2884828501612bf2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c7557607f821691505b602082108103612c8857612c87612c31565b5b50919050565b7f5465616d2077616c6c657420697320616c72656164792073657420746f2074685f8201527f69732076616c7565000000000000000000000000000000000000000000000000602082015250565b5f612ce86028836126ef565b9150612cf382612c8e565b604082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4e6f20746f6b656e7320617661696c61626c6520746f207377617000000000005f82015250565b5f612d50601b836126ef565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f5052454d45206275726e2069736e27742066696e6973686564000000000000005f82015250565b5f612db86019836126ef565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b7f546f74616c2063616e27742065786365656420332500000000000000000000005f82015250565b5f612e206015836126ef565b9150612e2b82612dec565b602082019050919050565b5f6020820190508181035f830152612e4d81612e14565b9050919050565b7f5061697220697320616c72656164792073657420746f20746869732076616c755f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f612eae6021836126ef565b9150612eb982612e54565b604082019050919050565b5f6020820190508181035f830152612edb81612ea2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612f1982612989565b9150612f2483612989565b9250828203905061ffff811115612f3e57612f3d612ee2565b5b92915050565b7f5468726573686f6c6420697320616c72656164792073657420746f20746869735f8201527f2076616c75650000000000000000000000000000000000000000000000000000602082015250565b5f612f9e6026836126ef565b9150612fa982612f44565b604082019050919050565b5f6020820190508181035f830152612fcb81612f92565b9050919050565b7f5468726573686f6c642063616e277420657863656564203120455448000000005f82015250565b5f613006601c836126ef565b915061301182612fd2565b602082019050919050565b5f6020820190508181035f83015261303381612ffa565b9050919050565b7f4163636f756e7420697320616c72656164792073657420746f207468697320765f8201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b5f6130946024836126ef565b915061309f8261303a565b604082019050919050565b5f6020820190508181035f8301526130c181613088565b9050919050565b7f436f6e7472616374206e6565647320746f2073746179206578636c75646564005f82015250565b5f6130fc601f836126ef565b9150613107826130c8565b602082019050919050565b5f6020820190508181035f830152613129816130f0565b9050919050565b7f53776170417450657263656e7461676520697320616c726561647920736574205f8201527f746f20746869732076616c756500000000000000000000000000000000000000602082015250565b5f61318a602d836126ef565b915061319582613130565b604082019050919050565b5f6020820190508181035f8301526131b78161317e565b9050919050565b7f53776170417450657263656e746167652063616e2774206578636565642035305f8201527f2028302e35252900000000000000000000000000000000000000000000000000602082015250565b5f6132186027836126ef565b9150613223826131be565b604082019050919050565b5f6020820190508181035f8301526132458161320c565b9050919050565b5f60608201905061325f5f830186612a0e565b61326c6020830185612961565b6132796040830184612961565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132b882612892565b91506132c383612892565b9250826132d3576132d2613281565b5b828204905092915050565b5f6132e882612892565b91506132f383612892565b925082820261330181612892565b9150828204841483151761331857613317612ee2565b5b5092915050565b5f81905092915050565b50565b5f6133375f8361331f565b915061334282613329565b5f82019050919050565b5f6133568261332c565b9150819050919050565b5f61336a82612892565b915061337583612892565b925082820390508181111561338d5761338c612ee2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f819050919050565b5f61341961341461340f846133ed565b6133f6565b612892565b9050919050565b613429816133ff565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61346181612857565b82525050565b5f6134728383613458565b60208301905092915050565b5f602082019050919050565b5f6134948261342f565b61349e8185613439565b93506134a983613449565b805f5b838110156134d95781516134c08882613467565b97506134cb8361347e565b9250506001810190506134ac565b5085935050505092915050565b5f60a0820190506134f95f830188612961565b6135066020830187613420565b8181036040830152613518818661348a565b90506135276060830185612a0e565b6135346080830184612961565b9695505050505050565b5f80fd5b61354b826127bf565b810181811067ffffffffffffffff8211171561356a57613569613393565b5b80604052505050565b5f61357c612827565b90506135888282613542565b919050565b5f67ffffffffffffffff8211156135a7576135a6613393565b5b602082029050602081019050919050565b5f80fd5b5f815190506135ca8161289b565b92915050565b5f6135e26135dd8461358d565b613573565b90508083825260208201905060208402830185811115613605576136046135b8565b5b835b8181101561362e578061361a88826135bc565b845260208401935050602081019050613607565b5050509392505050565b5f82601f83011261364c5761364b61353e565b5b815161365c8482602086016135d0565b91505092915050565b5f6020828403121561367a57613679612830565b5b5f82015167ffffffffffffffff81111561369757613696612834565b5b6136a384828501613638565b91505092915050565b5f6080820190506136bf5f830187613420565b81810360208301526136d1818661348a565b90506136e06040830185612a0e565b6136ed6060830184612961565b95945050505050565b5f8151905061370481612868565b92915050565b5f6020828403121561371f5761371e612830565b5b5f61372c848285016136f6565b91505092915050565b5f6040820190506137485f830185612a0e565b6137556020830184612a0e565b9392505050565b5f61376682612892565b915061377183612892565b925082820190508082111561378957613788612ee2565b5b9291505056fea2646970667358221220ec83feb0dd144463d9559eb87740d3b6b83e235be37e77ec4fa8e07e26e2667d64736f6c63430008140033

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

0000000000000000000000005222eefbb7e5dfe97dd1cd67562699f8609d7f91

-----Decoded View---------------
Arg [0] : _teamWallet (address): 0x5222eeFBB7e5DFE97dd1cd67562699F8609d7f91

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005222eefbb7e5dfe97dd1cd67562699f8609d7f91


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.