ETH Price: $2,441.51 (+5.66%)

Token

OpenGRID (GRID)
 

Overview

Max Total Supply

100,000,000 GRID

Holders

437

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,540.286461297910998723 GRID

Value
$0.00
0x084ccB62224abedc66a34B51c8b0AD756eFFe712
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:
OpenGRID

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-17
*/

/*
Experience AI node rentals, GPU sharing, and tokenized incentives through OpenGRID’s decentralized infrastructure.

Website: https://opengrid.tech/
DOCS: https://opengrid.gitbook.io/opengrid-docs

TG: https://t.me/OpenGRID
X: https://x.com/OpenGRID_ERC

*/


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

pragma solidity >=0.6.2;

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

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

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

pragma solidity >=0.6.2;


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

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



pragma solidity 0.8.27;

contract OpenGRID is ERC20, ERC20Burnable, Ownable2Step {

    uint16 public swapThresholdRatio;

    uint256 private _taxwalletPending;

    address public taxwalletAddress;
    uint16[3] public taxwalletFees;

    mapping (address => bool) public isExcludedFromFees;

    uint16[3] public totalFees;
    bool private _swapping;

    IUniswapV2Router02 public routerV2;
    address public pairV2;
    mapping (address => bool) public AMMPairs;

    mapping (address => bool) public isExcludedFromLimits;

    uint256 public maxWalletAmount;

    uint256 public maxBuyAmount;

    event SwapThresholdUpdated(uint16 swapThresholdRatio);

    event taxwalletAddressUpdated(address taxwalletAddress);
    event taxwalletFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event taxwalletFeeSent(address recipient, uint256 amount);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event RouterV2Updated(address indexed routerV2);
    event AMMPairsUpdated(address indexed AMMPair, bool isPair);

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event MaxWalletAmountUpdated(uint256 maxWalletAmount);

    event MaxBuyAmountUpdated(uint256 maxBuyAmount);

    constructor()
        ERC20(unicode"OpenGRID", unicode"GRID")
    {
        address supplyRecipient = 0x4DDA8A63c804aAC89F0FDBCB04A2b39207a9A2B6;

        updateSwapThreshold(50);

        taxwalletAddressSetup(0xb063F95A7f200c7064A0b1a2Ff26F2Fe4398ffB0);
        taxwalletFeesSetup(3000, 3000, 0);

        excludeFromFees(supplyRecipient, true);
        excludeFromFees(address(this), true);

        _excludeFromLimits(supplyRecipient, true);
        _excludeFromLimits(address(this), true);
        _excludeFromLimits(address(0), true);

        updateMaxWalletAmount(1999999000000000000000000);

        updateMaxBuyAmount(1999999000000000000000000);

        _mint(supplyRecipient, 100000000000000000000000000);
        _transferOwnership(0x4DDA8A63c804aAC89F0FDBCB04A2b39207a9A2B6);
    }


    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 18;
    }

    function _swapTokensForCoin(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = routerV2.WETH();

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

        routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner {
        require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold");
        swapThresholdRatio = _swapThresholdRatio;

        emit SwapThresholdUpdated(_swapThresholdRatio);
    }

    function getSwapThresholdAmount() public view returns (uint256) {
        return balanceOf(pairV2) * swapThresholdRatio / 10000;
    }

    function getAllPending() public view returns (uint256) {
        return 0 + _taxwalletPending;
    }

    function taxwalletAddressSetup(address _newAddress) public onlyOwner {
        require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address");

        taxwalletAddress = _newAddress;
        excludeFromFees(_newAddress, true);
        _excludeFromLimits(_newAddress, true);

        emit taxwalletAddressUpdated(_newAddress);
    }

    function taxwalletFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        totalFees[0] = totalFees[0] - taxwalletFees[0] + _buyFee;
        totalFees[1] = totalFees[1] - taxwalletFees[1] + _sellFee;
        totalFees[2] = totalFees[2] - taxwalletFees[2] + _transferFee;
        require(totalFees[0] <= 5000 && totalFees[1] <= 5000 && totalFees[2] <= 5000, "TaxesDefaultRouter: Cannot exceed max total fee of 50%");

        taxwalletFees = [_buyFee, _sellFee, _transferFee];

        emit taxwalletFeesUpdated(_buyFee, _sellFee, _transferFee);
    }

    function excludeFromFees(address account, bool isExcluded) public onlyOwner {
        isExcludedFromFees[account] = isExcluded;

        emit ExcludeFromFees(account, isExcluded);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            uint256 fees = 0;
            uint8 txType = 3;

            if (AMMPairs[from]) {
                if (totalFees[0] > 0) txType = 0;
            }
            else if (AMMPairs[to]) {
                if (totalFees[1] > 0) txType = 1;
            }
            else if (totalFees[2] > 0) txType = 2;

            if (txType < 3) {

                fees = amount * totalFees[txType] / 10000;
                amount -= fees;

                _taxwalletPending += fees * taxwalletFees[txType] / totalFees[txType];


            }

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

    uint256 swapThresholdAmount = getSwapThresholdAmount();
    bool canSwap = getAllPending() >= swapThresholdAmount && balanceOf(pairV2) > 0;

    if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) {
        _swapping = true;

    if (false || swapThresholdAmount > 0) {
        uint256 token2Swap = 0 + swapThresholdAmount;
        bool success = false;

        _swapTokensForCoin(token2Swap);
        uint256 coinsReceived = address(this).balance;

        uint256 taxwalletPortion = coinsReceived * swapThresholdAmount / token2Swap;
        if (taxwalletPortion > 0) {
            success = payable(taxwalletAddress).send(taxwalletPortion);
            if (success) {
                emit taxwalletFeeSent(taxwalletAddress, taxwalletPortion);
            }
        }
        _taxwalletPending -= swapThresholdAmount;

        }

            _swapping = false;
        }

        super._transfer(from, to, amount);

    }

    function updateRouterV2(address router) external onlyOwner {
        routerV2 = IUniswapV2Router02(router);
        pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());

        _excludeFromLimits(router, true);

        _setAMMPair(pairV2, true);

        emit RouterV2Updated(router);
    }

    function setAMMPair(address pair, bool isPair) external onlyOwner {
        require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list");

        _setAMMPair(pair, isPair);
    }

    function _setAMMPair(address pair, bool isPair) private {
        AMMPairs[pair] = isPair;

        if (isPair) {
            _excludeFromLimits(pair, true);

        }

        emit AMMPairsUpdated(pair, isPair);
    }

    function excludeFromLimits(address account, bool isExcluded) external onlyOwner {
        _excludeFromLimits(account, isExcluded);
    }

    function _excludeFromLimits(address account, bool isExcluded) internal {
        isExcludedFromLimits[account] = isExcluded;

        emit ExcludeFromLimits(account, isExcluded);
    }

    function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low");
        maxWalletAmount = _maxWalletAmount;

        emit MaxWalletAmountUpdated(_maxWalletAmount);
    }

    function _maxWalletSafeLimit() private view returns (uint256) {
        return totalSupply() / 1000;
    }

    function _maxTxSafeLimit() private view returns (uint256) {
        return totalSupply() * 5 / 10000;
    }

    function updateMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner {
        require(_maxBuyAmount >= _maxTxSafeLimit(), "MaxTx: Limit too low");
        maxBuyAmount = _maxBuyAmount;

        emit MaxBuyAmountUpdated(_maxBuyAmount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (AMMPairs[from] && !isExcludedFromLimits[to]) { // BUY
            require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit");
        }

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

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (!isExcludedFromLimits[to]) {
            require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit");
        }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"taxwalletAddress","type":"address"}],"name":"taxwalletAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"taxwalletFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"taxwalletFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxwalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"taxwalletAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxwalletFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"taxwalletFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"updateRouterV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f5ffd5b506040518060400160405280600881526020017f4f70656e475249440000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4752494400000000000000000000000000000000000000000000000000000000815250816003908161008b919061123a565b50806004908161009b919061123a565b5050506100ba6100af6101e560201b60201c565b6101ec60201b60201c565b5f734dda8a63c804aac89f0fdbcb04a2b39207a9a2b690506100e2603261022260201b60201c565b61010573b063f95a7f200c7064a0b1a2ff26f2fe4398ffb06102df60201b60201c565b610118610bb8805f6103f760201b60201c565b61012981600161078360201b60201c565b61013a30600161078360201b60201c565b61014b81600161083760201b60201c565b61015c30600161083760201b60201c565b61016d5f600161083760201b60201c565b6101876a01a78429bce3279a9c00006108dd60201b60201c565b6101a16a01a78429bce3279a9c000061097c60201b60201c565b6101bc816a52b7d2dcc80cd2e4000000610a1b60201b60201c565b6101df734dda8a63c804aac89f0fdbcb04a2b39207a9a2b66101ec60201b60201c565b50611a7d565b5f33905090565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561021f81610b7560201b60201c565b50565b610230610c3860201b60201c565b5f8161ffff1611801561024957506101f48161ffff1611155b610288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027f906113af565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720816040516102d491906113e9565b60405180910390a150565b6102ed610c3860201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361035b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035290611498565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103ac81600161078360201b60201c565b6103bd81600161083760201b60201c565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac816040516103ec91906114f5565b60405180910390a150565b610405610c3860201b60201c565b8260095f6003811061041a5761041961150e565b5b601091828204019190066002029054906101000a900461ffff16600b5f600381106104485761044761150e565b5b601091828204019190066002029054906101000a900461ffff1661046c9190611568565b610476919061159d565b600b5f6003811061048a5761048961150e565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106104c5576104c461150e565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106104f4576104f361150e565b5b601091828204019190066002029054906101000a900461ffff166105189190611568565b610522919061159d565b600b6001600381106105375761053661150e565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508060096002600381106105725761057161150e565b5b601091828204019190066002029054906101000a900461ffff16600b6002600381106105a1576105a061150e565b5b601091828204019190066002029054906101000a900461ffff166105c59190611568565b6105cf919061159d565b600b6002600381106105e4576105e361150e565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f600381106106205761061f61150e565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156106805750611388600b60016003811061065f5761065e61150e565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156106c05750611388600b60026003811061069f5761069e61150e565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6106ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f690611642565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610742929190610f46565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df483838360405161077693929190611660565b60405180910390a1505050565b610791610c3860201b60201c565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161082b91906116af565b60405180910390a25050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516108d191906116af565b60405180910390a25050565b6108eb610c3860201b60201c565b6108f9610cc260201b60201c565b81101561093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093290611712565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00181604051610971919061173f565b60405180910390a150565b61098a610c3860201b60201c565b610998610ce360201b60201c565b8110156109da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d1906117a2565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610a10919061173f565b60405180910390a150565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061180a565b60405180910390fd5b610a9a5f8383610d1060201b60201c565b8060025f828254610aab9190611828565b92505081905550805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b58919061173f565b60405180910390a3610b715f8383610e0e60201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610c466101e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16610c6a610ec660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906118a5565b60405180910390fd5b565b5f6103e8610cd4610eee60201b60201c565b610cde91906118f0565b905090565b5f6127106005610cf7610eee60201b60201c565b610d019190611920565b610d0b91906118f0565b905090565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610dad5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610df857601154811115610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee906119d1565b60405180910390fd5b5b610e09838383610ef760201b60201c565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610eb057601054610e6e83610efc60201b60201c565b1115610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea690611a5f565b60405180910390fd5b5b610ec1838383610f4160201b60201c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f600254905090565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b505050565b826003600f01601090048101928215610fd1579160200282015f5b83821115610fa157835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302610f61565b8015610fcf5782816101000a81549061ffff0219169055600201602081600101049283019260010302610fa1565b505b509050610fde9190610fe2565b5090565b5b80821115610ff9575f815f905550600101610fe3565b5090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061107857607f821691505b60208210810361108b5761108a611034565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826110b2565b6110f786836110b2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61113b6111366111318461110f565b611118565b61110f565b9050919050565b5f819050919050565b61115483611121565b61116861116082611142565b8484546110be565b825550505050565b5f5f905090565b61117f611170565b61118a81848461114b565b505050565b5b818110156111ad576111a25f82611177565b600181019050611190565b5050565b601f8211156111f2576111c381611091565b6111cc846110a3565b810160208510156111db578190505b6111ef6111e7856110a3565b83018261118f565b50505b505050565b5f82821c905092915050565b5f6112125f19846008026111f7565b1980831691505092915050565b5f61122a8383611203565b9150826002028217905092915050565b61124382610ffd565b67ffffffffffffffff81111561125c5761125b611007565b5b6112668254611061565b6112718282856111b1565b5f60209050601f8311600181146112a2575f8415611290578287015190505b61129a858261121f565b865550611301565b601f1984166112b086611091565b5f5b828110156112d7578489015182556001820191506020850194506020810190506112b2565b868310156112f457848901516112f0601f891682611203565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f611399604b83611309565b91506113a482611319565b606082019050919050565b5f6020820190508181035f8301526113c68161138d565b9050919050565b5f61ffff82169050919050565b6113e3816113cd565b82525050565b5f6020820190506113fc5f8301846113da565b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f611482604683611309565b915061148d82611402565b606082019050919050565b5f6020820190508181035f8301526114af81611476565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114df826114b6565b9050919050565b6114ef816114d5565b82525050565b5f6020820190506115085f8301846114e6565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611572826113cd565b915061157d836113cd565b9250828203905061ffff8111156115975761159661153b565b5b92915050565b5f6115a7826113cd565b91506115b2836113cd565b9250828201905061ffff8111156115cc576115cb61153b565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f61162c603683611309565b9150611637826115d2565b604082019050919050565b5f6020820190508181035f83015261165981611620565b9050919050565b5f6060820190506116735f8301866113da565b61168060208301856113da565b61168d60408301846113da565b949350505050565b5f8115159050919050565b6116a981611695565b82525050565b5f6020820190506116c25f8301846116a0565b92915050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f6116fc601883611309565b9150611707826116c8565b602082019050919050565b5f6020820190508181035f830152611729816116f0565b9050919050565b6117398161110f565b82525050565b5f6020820190506117525f830184611730565b92915050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f61178c601483611309565b915061179782611758565b602082019050919050565b5f6020820190508181035f8301526117b981611780565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6117f4601f83611309565b91506117ff826117c0565b602082019050919050565b5f6020820190508181035f830152611821816117e8565b9050919050565b5f6118328261110f565b915061183d8361110f565b92508282019050808211156118555761185461153b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61188f602083611309565b915061189a8261185b565b602082019050919050565b5f6020820190508181035f8301526118bc81611883565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6118fa8261110f565b91506119058361110f565b925082611915576119146118c3565b5b828204905092915050565b5f61192a8261110f565b91506119358361110f565b92508282026119438161110f565b9150828204841483151761195a5761195961153b565b5b5092915050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119bb602283611309565b91506119c682611961565b604082019050919050565b5f6020820190508181035f8301526119e8816119af565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f611a49602983611309565b9150611a54826119ef565b604082019050919050565b5f6020820190508181035f830152611a7681611a3d565b9050919050565b61425280611a8a5f395ff3fe60806040526004361061023e575f3560e01c806379ba50971161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e14610891578063e30c3978146108cd578063f112ba72146108f7578063f2fde38b14610921578063f7d3eca51461094957610245565b8063c0246668146107c5578063c0a904a2146107ed578063c18bc19514610815578063c1d4212d1461083d578063d94775261461086757610245565b806395d89b41116100f157806395d89b41146106d1578063a457c2d7146106fb578063a9059cbb14610737578063aa4bde2814610773578063afbfcbbc1461079d57610245565b806379ba50971461061557806379cc67901461062b57806388e765ff146106535780638da5cb5b1461067d5780638fffabed146106a757610245565b806342966c68116101bb5780635cce86cd1161017f5780635cce86cd1461050f57806370a082311461054b578063715018a61461058757806375c211e01461059d57806376856557146105d957610245565b806342966c681461042f5780634f011b83146104575780634fbee19314610481578063502f7446146104bd57806356417fef146104e757610245565b80632be32b61116102025780632be32b611461033d5780632d99d32e14610365578063313ce5671461038d57806339509351146103b7578063408ccbdf146103f357610245565b806306fdde0314610249578063095ea7b31461027357806318160ddd146102af5780631a0e718c146102d957806323b872dd1461030157610245565b3661024557005b5f5ffd5b348015610254575f5ffd5b5061025d610971565b60405161026a9190612f42565b60405180910390f35b34801561027e575f5ffd5b5061029960048036038101906102949190612ff3565b610a01565b6040516102a6919061304b565b60405180910390f35b3480156102ba575f5ffd5b506102c3610a23565b6040516102d09190613073565b60405180910390f35b3480156102e4575f5ffd5b506102ff60048036038101906102fa91906130c3565b610a2c565b005b34801561030c575f5ffd5b50610327600480360381019061032291906130ee565b610ae3565b604051610334919061304b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e919061313e565b610b11565b005b348015610370575f5ffd5b5061038b60048036038101906103869190613193565b610ba4565b005b348015610398575f5ffd5b506103a1610c49565b6040516103ae91906131ec565b60405180910390f35b3480156103c2575f5ffd5b506103dd60048036038101906103d89190612ff3565b610c51565b6040516103ea919061304b565b60405180910390f35b3480156103fe575f5ffd5b506104196004803603810190610414919061313e565b610c87565b6040516104269190613214565b60405180910390f35b34801561043a575f5ffd5b506104556004803603810190610450919061313e565b610cb4565b005b348015610462575f5ffd5b5061046b610cc8565b6040516104789190613214565b60405180910390f35b34801561048c575f5ffd5b506104a760048036038101906104a2919061322d565b610cdc565b6040516104b4919061304b565b60405180910390f35b3480156104c8575f5ffd5b506104d1610cf9565b6040516104de91906132b3565b60405180910390f35b3480156104f2575f5ffd5b5061050d6004803603810190610508919061322d565b610d1f565b005b34801561051a575f5ffd5b506105356004803603810190610530919061322d565b610e25565b604051610542919061304b565b60405180910390f35b348015610556575f5ffd5b50610571600480360381019061056c919061322d565b610e42565b60405161057e9190613073565b60405180910390f35b348015610592575f5ffd5b5061059b610e87565b005b3480156105a8575f5ffd5b506105c360048036038101906105be919061313e565b610e9a565b6040516105d09190613214565b60405180910390f35b3480156105e4575f5ffd5b506105ff60048036038101906105fa919061322d565b610ec7565b60405161060c919061304b565b60405180910390f35b348015610620575f5ffd5b50610629610ee4565b005b348015610636575f5ffd5b50610651600480360381019061064c9190612ff3565b610f70565b005b34801561065e575f5ffd5b50610667610f90565b6040516106749190613073565b60405180910390f35b348015610688575f5ffd5b50610691610f96565b60405161069e91906132db565b60405180910390f35b3480156106b2575f5ffd5b506106bb610fbe565b6040516106c891906132db565b60405180910390f35b3480156106dc575f5ffd5b506106e5610fe3565b6040516106f29190612f42565b60405180910390f35b348015610706575f5ffd5b50610721600480360381019061071c9190612ff3565b611073565b60405161072e919061304b565b60405180910390f35b348015610742575f5ffd5b5061075d60048036038101906107589190612ff3565b6110e8565b60405161076a919061304b565b60405180910390f35b34801561077e575f5ffd5b5061078761110a565b6040516107949190613073565b60405180910390f35b3480156107a8575f5ffd5b506107c360048036038101906107be919061322d565b611110565b005b3480156107d0575f5ffd5b506107eb60048036038101906107e69190613193565b6113ac565b005b3480156107f8575f5ffd5b50610813600480360381019061080e9190613193565b61145a565b005b348015610820575f5ffd5b5061083b6004803603810190610836919061313e565b611470565b005b348015610848575f5ffd5b50610851611503565b60405161085e91906132db565b60405180910390f35b348015610872575f5ffd5b5061087b611528565b6040516108889190613073565b60405180910390f35b34801561089c575f5ffd5b506108b760048036038101906108b291906132f4565b611584565b6040516108c49190613073565b60405180910390f35b3480156108d8575f5ffd5b506108e1611606565b6040516108ee91906132db565b60405180910390f35b348015610902575f5ffd5b5061090b61162e565b6040516109189190613073565b60405180910390f35b34801561092c575f5ffd5b506109476004803603810190610942919061322d565b611642565b005b348015610954575f5ffd5b5061096f600480360381019061096a9190613332565b6116ee565b005b606060038054610980906133af565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906133af565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b5f5f610a0b611a74565b9050610a18818585611a7b565b600191505092915050565b5f600254905090565b610a34611c3e565b5f8161ffff16118015610a4d57506101f48161ffff1611155b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390613475565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad89190613214565b60405180910390a150565b5f5f610aed611a74565b9050610afa858285611cbc565b610b05858585611d47565b60019150509392505050565b610b19611c3e565b610b21612372565b811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906134dd565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b999190613073565b60405180910390a150565b610bac611c3e565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061356b565b60405180910390fd5b610c458282612399565b5050565b5f6012905090565b5f5f610c5b611a74565b9050610c7c818585610c6d8589611584565b610c7791906135b6565b611a7b565b600191505092915050565b600b8160038110610c96575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc5610cbf611a74565b82612451565b50565b600660149054906101000a900461ffff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d27611c3e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061367f565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de08160016113ac565b610deb816001612614565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e1a91906132db565b60405180910390a150565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e8f611c3e565b610e985f6126ba565b565b60098160038110610ea9575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f610eed611a74565b90508073ffffffffffffffffffffffffffffffffffffffff16610f0e611606565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061370d565b60405180910390fd5b610f6d816126ba565b50565b610f8282610f7c611a74565b83611cbc565b610f8c8282612451565b5050565b60115481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ff2906133af565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906133af565b80156110695780601f1061104057610100808354040283529160200191611069565b820191905f5260205f20905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b5f5f61107d611a74565b90505f61108a8286611584565b9050838110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061379b565b60405180910390fd5b6110dc8286868403611a7b565b60019250505092915050565b5f5f6110f2611a74565b90506110ff818585611d47565b600191505092915050565b60105481565b611118611c3e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e891906137cd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129391906137cd565b6040518363ffffffff1660e01b81526004016112b09291906137f8565b6020604051808303815f875af11580156112cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f091906137cd565b600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061133a816001612614565b611366600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612399565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6113b4611c3e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144e919061304b565b60405180910390a25050565b611462611c3e565b61146c8282612614565b5050565b611478611c3e565b6114806126ea565b8110156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613869565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001816040516114f89190613073565b60405180910390a150565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f612710600660149054906101000a900461ffff1661ffff1661156b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b6115759190613887565b61157f91906138f5565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6007545f61163d91906135b6565b905090565b61164a611c3e565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166116a9610f96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f6611c3e565b8260095f6003811061170b5761170a613925565b5b601091828204019190066002029054906101000a900461ffff16600b5f6003811061173957611738613925565b5b601091828204019190066002029054906101000a900461ffff1661175d9190613952565b6117679190613987565b600b5f6003811061177b5761177a613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106117b6576117b5613925565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106117e5576117e4613925565b5b601091828204019190066002029054906101000a900461ffff166118099190613952565b6118139190613987565b600b60016003811061182857611827613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555080600960026003811061186357611862613925565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061189257611891613925565b5b601091828204019190066002029054906101000a900461ffff166118b69190613952565b6118c09190613987565b600b6002600381106118d5576118d4613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f6003811061191157611910613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156119715750611388600b6001600381106119505761194f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156119b15750611388600b6002600381106119905761198f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613a2c565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003611a33929190612e1b565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df4838383604051611a6793929190613a4a565b60405180910390a1505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613aef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b7d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c319190613073565b60405180910390a3505050565b611c46611a74565b73ffffffffffffffffffffffffffffffffffffffff16611c64610f96565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613be5565b60405180910390fd5b565b5f611cc78484611584565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d415781811015611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613c4d565b60405180910390fd5b611d408484848403611a7b565b5b50505050565b600c5f9054906101000a900460ff16158015611d6257505f81115b8015611dbc5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0f5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e625750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ec575f5f90505f60039050600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f01575f600b5f60038110611ed457611ed3613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611efc575f90505b611fd5565b600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f94575f600b600160038110611f6657611f65613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611f8f57600190505b611fd4565b5f600b600260038110611faa57611fa9613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611fd357600290505b5b5b60038160ff1610156120d557612710600b8260ff1660038110611ffb57611ffa613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16846120249190613887565b61202e91906138f5565b9150818361203c9190613c6b565b9250600b8160ff166003811061205557612054613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061208a57612089613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16836120b39190613887565b6120bd91906138f5565b60075f8282546120cd91906135b6565b925050819055505b5f8211156120e9576120e8853084612705565b5b50505b5f6120f5611528565b90505f8161210161162e565b1015801561213757505f612135600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b115b9050600c5f9054906101000a900460ff1615801561219c5750600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156121f65750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156121ff5750805b15612360576001600c5f6101000a81548160ff0219169083151502179055505f8061222957505f82115b15612346575f825f61223b91906135b6565b90505f5f905061224a82612971565b5f4790505f83868361225c9190613887565b61226691906138f5565b90505f8111156123295760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505092508215612328577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161231f929190613c9e565b60405180910390a15b5b8560075f82825461233a9190613c6b565b92505081905550505050505b5f600c5f6101000a81548160ff0219169083151502179055505b61236b858585612705565b5050505050565b5f6127106005612380610a23565b61238a9190613887565b61239491906138f5565b905090565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080156123ff576123fe826001612614565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051612445919061304b565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613d35565b60405180910390fd5b6124ca825f83612baa565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490613dc3565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc9190613073565b60405180910390a361260f835f84612ca2565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516126ae919061304b565b60405180910390a25050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556126e781612d4e565b50565b5f6103e86126f6610a23565b61270091906138f5565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613e51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890613edf565b60405180910390fd5b6127ec838383612baa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613f6d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129589190613073565b60405180910390a361296b848484612ca2565b50505050565b5f600267ffffffffffffffff81111561298d5761298c613f8b565b5b6040519080825280602002602001820160405280156129bb5781602001602082028036833780820191505090505b50905030815f815181106129d2576129d1613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b91906137cd565b81600181518110612aaf57612aae613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b1630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a7b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b799594939291906140a8565b5f604051808303815f87803b158015612b90575f5ffd5b505af1158015612ba2573d5f5f3e3d5ffd5b505050505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c475750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c9257601154811115612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890614170565b60405180910390fd5b5b612c9d838383612e11565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612d3e57601054612cfc83610e42565b1115612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d34906141fe565b60405180910390fd5b5b612d49838383612e16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b826003600f01601090048101928215612ea6579160200282015f5b83821115612e7657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612e36565b8015612ea45782816101000a81549061ffff0219169055600201602081600101049283019260010302612e76565b505b509050612eb39190612eb7565b5090565b5b80821115612ece575f815f905550600101612eb8565b5090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612f1482612ed2565b612f1e8185612edc565b9350612f2e818560208601612eec565b612f3781612efa565b840191505092915050565b5f6020820190508181035f830152612f5a8184612f0a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8f82612f66565b9050919050565b612f9f81612f85565b8114612fa9575f5ffd5b50565b5f81359050612fba81612f96565b92915050565b5f819050919050565b612fd281612fc0565b8114612fdc575f5ffd5b50565b5f81359050612fed81612fc9565b92915050565b5f5f6040838503121561300957613008612f62565b5b5f61301685828601612fac565b925050602061302785828601612fdf565b9150509250929050565b5f8115159050919050565b61304581613031565b82525050565b5f60208201905061305e5f83018461303c565b92915050565b61306d81612fc0565b82525050565b5f6020820190506130865f830184613064565b92915050565b5f61ffff82169050919050565b6130a28161308c565b81146130ac575f5ffd5b50565b5f813590506130bd81613099565b92915050565b5f602082840312156130d8576130d7612f62565b5b5f6130e5848285016130af565b91505092915050565b5f5f5f6060848603121561310557613104612f62565b5b5f61311286828701612fac565b935050602061312386828701612fac565b925050604061313486828701612fdf565b9150509250925092565b5f6020828403121561315357613152612f62565b5b5f61316084828501612fdf565b91505092915050565b61317281613031565b811461317c575f5ffd5b50565b5f8135905061318d81613169565b92915050565b5f5f604083850312156131a9576131a8612f62565b5b5f6131b685828601612fac565b92505060206131c78582860161317f565b9150509250929050565b5f60ff82169050919050565b6131e6816131d1565b82525050565b5f6020820190506131ff5f8301846131dd565b92915050565b61320e8161308c565b82525050565b5f6020820190506132275f830184613205565b92915050565b5f6020828403121561324257613241612f62565b5b5f61324f84828501612fac565b91505092915050565b5f819050919050565b5f61327b61327661327184612f66565b613258565b612f66565b9050919050565b5f61328c82613261565b9050919050565b5f61329d82613282565b9050919050565b6132ad81613293565b82525050565b5f6020820190506132c65f8301846132a4565b92915050565b6132d581612f85565b82525050565b5f6020820190506132ee5f8301846132cc565b92915050565b5f5f6040838503121561330a57613309612f62565b5b5f61331785828601612fac565b925050602061332885828601612fac565b9150509250929050565b5f5f5f6060848603121561334957613348612f62565b5b5f613356868287016130af565b9350506020613367868287016130af565b9250506040613378868287016130af565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806133c657607f821691505b6020821081036133d9576133d8613382565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f61345f604b83612edc565b915061346a826133df565b606082019050919050565b5f6020820190508181035f83015261348c81613453565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f6134c7601483612edc565b91506134d282613493565b602082019050919050565b5f6020820190508181035f8301526134f4816134bb565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e695f8201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b5f613555603383612edc565b9150613560826134fb565b604082019050919050565b5f6020820190508181035f83015261358281613549565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135c082612fc0565b91506135cb83612fc0565b92508282019050808211156135e3576135e2613589565b5b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f613669604683612edc565b9150613674826135e9565b606082019050919050565b5f6020820190508181035f8301526136968161365d565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6136f7602983612edc565b91506137028261369d565b604082019050919050565b5f6020820190508181035f830152613724816136eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613785602583612edc565b91506137908261372b565b604082019050919050565b5f6020820190508181035f8301526137b281613779565b9050919050565b5f815190506137c781612f96565b92915050565b5f602082840312156137e2576137e1612f62565b5b5f6137ef848285016137b9565b91505092915050565b5f60408201905061380b5f8301856132cc565b61381860208301846132cc565b9392505050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f613853601883612edc565b915061385e8261381f565b602082019050919050565b5f6020820190508181035f83015261388081613847565b9050919050565b5f61389182612fc0565b915061389c83612fc0565b92508282026138aa81612fc0565b915082820484148315176138c1576138c0613589565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138ff82612fc0565b915061390a83612fc0565b92508261391a576139196138c8565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61395c8261308c565b91506139678361308c565b9250828203905061ffff81111561398157613980613589565b5b92915050565b5f6139918261308c565b915061399c8361308c565b9250828201905061ffff8111156139b6576139b5613589565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f613a16603683612edc565b9150613a21826139bc565b604082019050919050565b5f6020820190508181035f830152613a4381613a0a565b9050919050565b5f606082019050613a5d5f830186613205565b613a6a6020830185613205565b613a776040830184613205565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad9602483612edc565b9150613ae482613a7f565b604082019050919050565b5f6020820190508181035f830152613b0681613acd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b67602283612edc565b9150613b7282613b0d565b604082019050919050565b5f6020820190508181035f830152613b9481613b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613bcf602083612edc565b9150613bda82613b9b565b602082019050919050565b5f6020820190508181035f830152613bfc81613bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c37601d83612edc565b9150613c4282613c03565b602082019050919050565b5f6020820190508181035f830152613c6481613c2b565b9050919050565b5f613c7582612fc0565b9150613c8083612fc0565b9250828203905081811115613c9857613c97613589565b5b92915050565b5f604082019050613cb15f8301856132cc565b613cbe6020830184613064565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1f602183612edc565b9150613d2a82613cc5565b604082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613dad602283612edc565b9150613db882613d53565b604082019050919050565b5f6020820190508181035f830152613dda81613da1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e3b602583612edc565b9150613e4682613de1565b604082019050919050565b5f6020820190508181035f830152613e6881613e2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ec9602383612edc565b9150613ed482613e6f565b604082019050919050565b5f6020820190508181035f830152613ef681613ebd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f57602683612edc565b9150613f6282613efd565b604082019050919050565b5f6020820190508181035f830152613f8481613f4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f613fdb613fd6613fd184613fb8565b613258565b612fc0565b9050919050565b613feb81613fc1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61402381612f85565b82525050565b5f614034838361401a565b60208301905092915050565b5f602082019050919050565b5f61405682613ff1565b6140608185613ffb565b935061406b8361400b565b805f5b8381101561409b5781516140828882614029565b975061408d83614040565b92505060018101905061406e565b5085935050505092915050565b5f60a0820190506140bb5f830188613064565b6140c86020830187613fe2565b81810360408301526140da818661404c565b90506140e960608301856132cc565b6140f66080830184613064565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f61415a602283612edc565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f6141e8602983612edc565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b905091905056fea264697066735822122091cdf74778ac199d2cc6e0db1f3c6694549542ff3c3b03ae084d8c9ca9ef50bf64736f6c634300081b0033

Deployed Bytecode

0x60806040526004361061023e575f3560e01c806379ba50971161012d578063c0246668116100aa578063dd62ed3e1161006e578063dd62ed3e14610891578063e30c3978146108cd578063f112ba72146108f7578063f2fde38b14610921578063f7d3eca51461094957610245565b8063c0246668146107c5578063c0a904a2146107ed578063c18bc19514610815578063c1d4212d1461083d578063d94775261461086757610245565b806395d89b41116100f157806395d89b41146106d1578063a457c2d7146106fb578063a9059cbb14610737578063aa4bde2814610773578063afbfcbbc1461079d57610245565b806379ba50971461061557806379cc67901461062b57806388e765ff146106535780638da5cb5b1461067d5780638fffabed146106a757610245565b806342966c68116101bb5780635cce86cd1161017f5780635cce86cd1461050f57806370a082311461054b578063715018a61461058757806375c211e01461059d57806376856557146105d957610245565b806342966c681461042f5780634f011b83146104575780634fbee19314610481578063502f7446146104bd57806356417fef146104e757610245565b80632be32b61116102025780632be32b611461033d5780632d99d32e14610365578063313ce5671461038d57806339509351146103b7578063408ccbdf146103f357610245565b806306fdde0314610249578063095ea7b31461027357806318160ddd146102af5780631a0e718c146102d957806323b872dd1461030157610245565b3661024557005b5f5ffd5b348015610254575f5ffd5b5061025d610971565b60405161026a9190612f42565b60405180910390f35b34801561027e575f5ffd5b5061029960048036038101906102949190612ff3565b610a01565b6040516102a6919061304b565b60405180910390f35b3480156102ba575f5ffd5b506102c3610a23565b6040516102d09190613073565b60405180910390f35b3480156102e4575f5ffd5b506102ff60048036038101906102fa91906130c3565b610a2c565b005b34801561030c575f5ffd5b50610327600480360381019061032291906130ee565b610ae3565b604051610334919061304b565b60405180910390f35b348015610348575f5ffd5b50610363600480360381019061035e919061313e565b610b11565b005b348015610370575f5ffd5b5061038b60048036038101906103869190613193565b610ba4565b005b348015610398575f5ffd5b506103a1610c49565b6040516103ae91906131ec565b60405180910390f35b3480156103c2575f5ffd5b506103dd60048036038101906103d89190612ff3565b610c51565b6040516103ea919061304b565b60405180910390f35b3480156103fe575f5ffd5b506104196004803603810190610414919061313e565b610c87565b6040516104269190613214565b60405180910390f35b34801561043a575f5ffd5b506104556004803603810190610450919061313e565b610cb4565b005b348015610462575f5ffd5b5061046b610cc8565b6040516104789190613214565b60405180910390f35b34801561048c575f5ffd5b506104a760048036038101906104a2919061322d565b610cdc565b6040516104b4919061304b565b60405180910390f35b3480156104c8575f5ffd5b506104d1610cf9565b6040516104de91906132b3565b60405180910390f35b3480156104f2575f5ffd5b5061050d6004803603810190610508919061322d565b610d1f565b005b34801561051a575f5ffd5b506105356004803603810190610530919061322d565b610e25565b604051610542919061304b565b60405180910390f35b348015610556575f5ffd5b50610571600480360381019061056c919061322d565b610e42565b60405161057e9190613073565b60405180910390f35b348015610592575f5ffd5b5061059b610e87565b005b3480156105a8575f5ffd5b506105c360048036038101906105be919061313e565b610e9a565b6040516105d09190613214565b60405180910390f35b3480156105e4575f5ffd5b506105ff60048036038101906105fa919061322d565b610ec7565b60405161060c919061304b565b60405180910390f35b348015610620575f5ffd5b50610629610ee4565b005b348015610636575f5ffd5b50610651600480360381019061064c9190612ff3565b610f70565b005b34801561065e575f5ffd5b50610667610f90565b6040516106749190613073565b60405180910390f35b348015610688575f5ffd5b50610691610f96565b60405161069e91906132db565b60405180910390f35b3480156106b2575f5ffd5b506106bb610fbe565b6040516106c891906132db565b60405180910390f35b3480156106dc575f5ffd5b506106e5610fe3565b6040516106f29190612f42565b60405180910390f35b348015610706575f5ffd5b50610721600480360381019061071c9190612ff3565b611073565b60405161072e919061304b565b60405180910390f35b348015610742575f5ffd5b5061075d60048036038101906107589190612ff3565b6110e8565b60405161076a919061304b565b60405180910390f35b34801561077e575f5ffd5b5061078761110a565b6040516107949190613073565b60405180910390f35b3480156107a8575f5ffd5b506107c360048036038101906107be919061322d565b611110565b005b3480156107d0575f5ffd5b506107eb60048036038101906107e69190613193565b6113ac565b005b3480156107f8575f5ffd5b50610813600480360381019061080e9190613193565b61145a565b005b348015610820575f5ffd5b5061083b6004803603810190610836919061313e565b611470565b005b348015610848575f5ffd5b50610851611503565b60405161085e91906132db565b60405180910390f35b348015610872575f5ffd5b5061087b611528565b6040516108889190613073565b60405180910390f35b34801561089c575f5ffd5b506108b760048036038101906108b291906132f4565b611584565b6040516108c49190613073565b60405180910390f35b3480156108d8575f5ffd5b506108e1611606565b6040516108ee91906132db565b60405180910390f35b348015610902575f5ffd5b5061090b61162e565b6040516109189190613073565b60405180910390f35b34801561092c575f5ffd5b506109476004803603810190610942919061322d565b611642565b005b348015610954575f5ffd5b5061096f600480360381019061096a9190613332565b6116ee565b005b606060038054610980906133af565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac906133af565b80156109f75780601f106109ce576101008083540402835291602001916109f7565b820191905f5260205f20905b8154815290600101906020018083116109da57829003601f168201915b5050505050905090565b5f5f610a0b611a74565b9050610a18818585611a7b565b600191505092915050565b5f600254905090565b610a34611c3e565b5f8161ffff16118015610a4d57506101f48161ffff1611155b610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390613475565b60405180910390fd5b80600660146101000a81548161ffff021916908361ffff1602179055507fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172081604051610ad89190613214565b60405180910390a150565b5f5f610aed611a74565b9050610afa858285611cbc565b610b05858585611d47565b60019150509392505050565b610b19611c3e565b610b21612372565b811015610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a906134dd565b60405180910390fd5b806011819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d81604051610b999190613073565b60405180910390a150565b610bac611c3e565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c329061356b565b60405180910390fd5b610c458282612399565b5050565b5f6012905090565b5f5f610c5b611a74565b9050610c7c818585610c6d8589611584565b610c7791906135b6565b611a7b565b600191505092915050565b600b8160038110610c96575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b610cc5610cbf611a74565b82612451565b50565b600660149054906101000a900461ffff1681565b600a602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d27611c3e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c9061367f565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610de08160016113ac565b610deb816001612614565b7f6e25174a1c60e9d62c82eed735a7d443dd0b6ea68bc2d0d936273e08fb532cac81604051610e1a91906132db565b60405180910390a150565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e8f611c3e565b610e985f6126ba565b565b60098160038110610ea9575f80fd5b60109182820401919006600202915054906101000a900461ffff1681565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f610eed611a74565b90508073ffffffffffffffffffffffffffffffffffffffff16610f0e611606565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061370d565b60405180910390fd5b610f6d816126ba565b50565b610f8282610f7c611a74565b83611cbc565b610f8c8282612451565b5050565b60115481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ff2906133af565b80601f016020809104026020016040519081016040528092919081815260200182805461101e906133af565b80156110695780601f1061104057610100808354040283529160200191611069565b820191905f5260205f20905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b5f5f61107d611a74565b90505f61108a8286611584565b9050838110156110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c69061379b565b60405180910390fd5b6110dc8286868403611a7b565b60019250505092915050565b5f5f6110f2611a74565b90506110ff818585611d47565b600191505092915050565b60105481565b611118611c3e565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e891906137cd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561126f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129391906137cd565b6040518363ffffffff1660e01b81526004016112b09291906137f8565b6020604051808303815f875af11580156112cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f091906137cd565b600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061133a816001612614565b611366600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612399565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b6113b4611c3e565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161144e919061304b565b60405180910390a25050565b611462611c3e565b61146c8282612614565b5050565b611478611c3e565b6114806126ea565b8110156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613869565b60405180910390fd5b806010819055507f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e001816040516114f89190613073565b60405180910390a150565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f612710600660149054906101000a900461ffff1661ffff1661156b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b6115759190613887565b61157f91906138f5565b905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6007545f61163d91906135b6565b905090565b61164a611c3e565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff166116a9610f96565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6116f6611c3e565b8260095f6003811061170b5761170a613925565b5b601091828204019190066002029054906101000a900461ffff16600b5f6003811061173957611738613925565b5b601091828204019190066002029054906101000a900461ffff1661175d9190613952565b6117679190613987565b600b5f6003811061177b5761177a613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055508160096001600381106117b6576117b5613925565b5b601091828204019190066002029054906101000a900461ffff16600b6001600381106117e5576117e4613925565b5b601091828204019190066002029054906101000a900461ffff166118099190613952565b6118139190613987565b600b60016003811061182857611827613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555080600960026003811061186357611862613925565b5b601091828204019190066002029054906101000a900461ffff16600b60026003811061189257611891613925565b5b601091828204019190066002029054906101000a900461ffff166118b69190613952565b6118c09190613987565b600b6002600381106118d5576118d4613925565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550611388600b5f6003811061191157611910613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156119715750611388600b6001600381106119505761194f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156119b15750611388600b6002600381106119905761198f613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613a2c565b60405180910390fd5b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003611a33929190612e1b565b507f4963431b187ee291501376bba89c8c815c04c831b33839c8b2ec099899153df4838383604051611a6793929190613a4a565b60405180910390a1505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613aef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613b7d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c319190613073565b60405180910390a3505050565b611c46611a74565b73ffffffffffffffffffffffffffffffffffffffff16611c64610f96565b73ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613be5565b60405180910390fd5b565b5f611cc78484611584565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d415781811015611d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2a90613c4d565b60405180910390fd5b611d408484848403611a7b565b5b50505050565b600c5f9054906101000a900460ff16158015611d6257505f81115b8015611dbc5750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0f5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e625750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ec575f5f90505f60039050600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f01575f600b5f60038110611ed457611ed3613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611efc575f90505b611fd5565b600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611f94575f600b600160038110611f6657611f65613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611f8f57600190505b611fd4565b5f600b600260038110611faa57611fa9613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611fd357600290505b5b5b60038160ff1610156120d557612710600b8260ff1660038110611ffb57611ffa613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16846120249190613887565b61202e91906138f5565b9150818361203c9190613c6b565b9250600b8160ff166003811061205557612054613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff166003811061208a57612089613925565b5b601091828204019190066002029054906101000a900461ffff1661ffff16836120b39190613887565b6120bd91906138f5565b60075f8282546120cd91906135b6565b925050819055505b5f8211156120e9576120e8853084612705565b5b50505b5f6120f5611528565b90505f8161210161162e565b1015801561213757505f612135600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e42565b115b9050600c5f9054906101000a900460ff1615801561219c5750600e5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156121f65750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156121ff5750805b15612360576001600c5f6101000a81548160ff0219169083151502179055505f8061222957505f82115b15612346575f825f61223b91906135b6565b90505f5f905061224a82612971565b5f4790505f83868361225c9190613887565b61226691906138f5565b90505f8111156123295760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505092508215612328577ff7a420e2cb7d3033ead185c897359ebf9011c07c771221fe5dbc21ca43cb684a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161231f929190613c9e565b60405180910390a15b5b8560075f82825461233a9190613c6b565b92505081905550505050505b5f600c5f6101000a81548160ff0219169083151502179055505b61236b858585612705565b5050505050565b5f6127106005612380610a23565b61238a9190613887565b61239491906138f5565b905090565b80600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080156123ff576123fe826001612614565b5b8173ffffffffffffffffffffffffffffffffffffffff167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a845582604051612445919061304b565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b690613d35565b60405180910390fd5b6124ca825f83612baa565b5f5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561254d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254490613dc3565b60405180910390fd5b8181035f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc9190613073565b60405180910390a361260f835f84612ca2565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516126ae919061304b565b60405180910390a25050565b60065f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556126e781612d4e565b50565b5f6103e86126f6610a23565b61270091906138f5565b905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613e51565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890613edf565b60405180910390fd5b6127ec838383612baa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561286f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286690613f6d565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129589190613073565b60405180910390a361296b848484612ca2565b50505050565b5f600267ffffffffffffffff81111561298d5761298c613f8b565b5b6040519080825280602002602001820160405280156129bb5781602001602082028036833780820191505090505b50905030815f815181106129d2576129d1613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a9b91906137cd565b81600181518110612aaf57612aae613925565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b1630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a7b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612b799594939291906140a8565b5f604051808303815f87803b158015612b90575f5ffd5b505af1158015612ba2573d5f5f3e3d5ffd5b505050505050565b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c475750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612c9257601154811115612c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8890614170565b60405180910390fd5b5b612c9d838383612e11565b505050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612d3e57601054612cfc83610e42565b1115612d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d34906141fe565b60405180910390fd5b5b612d49838383612e16565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b826003600f01601090048101928215612ea6579160200282015f5b83821115612e7657835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302612e36565b8015612ea45782816101000a81549061ffff0219169055600201602081600101049283019260010302612e76565b505b509050612eb39190612eb7565b5090565b5b80821115612ece575f815f905550600101612eb8565b5090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612f1482612ed2565b612f1e8185612edc565b9350612f2e818560208601612eec565b612f3781612efa565b840191505092915050565b5f6020820190508181035f830152612f5a8184612f0a565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f8f82612f66565b9050919050565b612f9f81612f85565b8114612fa9575f5ffd5b50565b5f81359050612fba81612f96565b92915050565b5f819050919050565b612fd281612fc0565b8114612fdc575f5ffd5b50565b5f81359050612fed81612fc9565b92915050565b5f5f6040838503121561300957613008612f62565b5b5f61301685828601612fac565b925050602061302785828601612fdf565b9150509250929050565b5f8115159050919050565b61304581613031565b82525050565b5f60208201905061305e5f83018461303c565b92915050565b61306d81612fc0565b82525050565b5f6020820190506130865f830184613064565b92915050565b5f61ffff82169050919050565b6130a28161308c565b81146130ac575f5ffd5b50565b5f813590506130bd81613099565b92915050565b5f602082840312156130d8576130d7612f62565b5b5f6130e5848285016130af565b91505092915050565b5f5f5f6060848603121561310557613104612f62565b5b5f61311286828701612fac565b935050602061312386828701612fac565b925050604061313486828701612fdf565b9150509250925092565b5f6020828403121561315357613152612f62565b5b5f61316084828501612fdf565b91505092915050565b61317281613031565b811461317c575f5ffd5b50565b5f8135905061318d81613169565b92915050565b5f5f604083850312156131a9576131a8612f62565b5b5f6131b685828601612fac565b92505060206131c78582860161317f565b9150509250929050565b5f60ff82169050919050565b6131e6816131d1565b82525050565b5f6020820190506131ff5f8301846131dd565b92915050565b61320e8161308c565b82525050565b5f6020820190506132275f830184613205565b92915050565b5f6020828403121561324257613241612f62565b5b5f61324f84828501612fac565b91505092915050565b5f819050919050565b5f61327b61327661327184612f66565b613258565b612f66565b9050919050565b5f61328c82613261565b9050919050565b5f61329d82613282565b9050919050565b6132ad81613293565b82525050565b5f6020820190506132c65f8301846132a4565b92915050565b6132d581612f85565b82525050565b5f6020820190506132ee5f8301846132cc565b92915050565b5f5f6040838503121561330a57613309612f62565b5b5f61331785828601612fac565b925050602061332885828601612fac565b9150509250929050565b5f5f5f6060848603121561334957613348612f62565b5b5f613356868287016130af565b9350506020613367868287016130af565b9250506040613378868287016130af565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806133c657607f821691505b6020821081036133d9576133d8613382565b5b50919050565b7f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d5f8201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160208201527f70207468726573686f6c64000000000000000000000000000000000000000000604082015250565b5f61345f604b83612edc565b915061346a826133df565b606082019050919050565b5f6020820190508181035f83015261348c81613453565b9050919050565b7f4d617854783a204c696d697420746f6f206c6f770000000000000000000000005f82015250565b5f6134c7601483612edc565b91506134d282613493565b602082019050919050565b5f6020820190508181035f8301526134f4816134bb565b9050919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e695f8201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b5f613555603383612edc565b9150613560826134fb565b604082019050919050565b5f6020820190508181035f83015261358281613549565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135c082612fc0565b91506135cb83612fc0565b92508282019050808211156135e3576135e2613589565b5b92915050565b7f546178657344656661756c74526f7574657257616c6c65743a2057616c6c65745f8201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160208201527f6464726573730000000000000000000000000000000000000000000000000000604082015250565b5f613669604683612edc565b9150613674826135e9565b606082019050919050565b5f6020820190508181035f8301526136968161365d565b9050919050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865205f8201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b5f6136f7602983612edc565b91506137028261369d565b604082019050919050565b5f6020820190508181035f830152613724816136eb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613785602583612edc565b91506137908261372b565b604082019050919050565b5f6020820190508181035f8301526137b281613779565b9050919050565b5f815190506137c781612f96565b92915050565b5f602082840312156137e2576137e1612f62565b5b5f6137ef848285016137b9565b91505092915050565b5f60408201905061380b5f8301856132cc565b61381860208301846132cc565b9392505050565b7f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000005f82015250565b5f613853601883612edc565b915061385e8261381f565b602082019050919050565b5f6020820190508181035f83015261388081613847565b9050919050565b5f61389182612fc0565b915061389c83612fc0565b92508282026138aa81612fc0565b915082820484148315176138c1576138c0613589565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6138ff82612fc0565b915061390a83612fc0565b92508261391a576139196138c8565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61395c8261308c565b91506139678361308c565b9250828203905061ffff81111561398157613980613589565b5b92915050565b5f6139918261308c565b915061399c8361308c565b9250828201905061ffff8111156139b6576139b5613589565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f742065786365655f8201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b5f613a16603683612edc565b9150613a21826139bc565b604082019050919050565b5f6020820190508181035f830152613a4381613a0a565b9050919050565b5f606082019050613a5d5f830186613205565b613a6a6020830185613205565b613a776040830184613205565b949350505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad9602483612edc565b9150613ae482613a7f565b604082019050919050565b5f6020820190508181035f830152613b0681613acd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b67602283612edc565b9150613b7282613b0d565b604082019050919050565b5f6020820190508181035f830152613b9481613b5b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613bcf602083612edc565b9150613bda82613b9b565b602082019050919050565b5f6020820190508181035f830152613bfc81613bc3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613c37601d83612edc565b9150613c4282613c03565b602082019050919050565b5f6020820190508181035f830152613c6481613c2b565b9050919050565b5f613c7582612fc0565b9150613c8083612fc0565b9250828203905081811115613c9857613c97613589565b5b92915050565b5f604082019050613cb15f8301856132cc565b613cbe6020830184613064565b9392505050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d1f602183612edc565b9150613d2a82613cc5565b604082019050919050565b5f6020820190508181035f830152613d4c81613d13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613dad602283612edc565b9150613db882613d53565b604082019050919050565b5f6020820190508181035f830152613dda81613da1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613e3b602583612edc565b9150613e4682613de1565b604082019050919050565b5f6020820190508181035f830152613e6881613e2f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ec9602383612edc565b9150613ed482613e6f565b604082019050919050565b5f6020820190508181035f830152613ef681613ebd565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613f57602683612edc565b9150613f6282613efd565b604082019050919050565b5f6020820190508181035f830152613f8481613f4b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050919050565b5f613fdb613fd6613fd184613fb8565b613258565b612fc0565b9050919050565b613feb81613fc1565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61402381612f85565b82525050565b5f614034838361401a565b60208301905092915050565b5f602082019050919050565b5f61405682613ff1565b6140608185613ffb565b935061406b8361400b565b805f5b8381101561409b5781516140828882614029565b975061408d83614040565b92505060018101905061406e565b5085935050505092915050565b5f60a0820190506140bb5f830188613064565b6140c86020830187613fe2565b81810360408301526140da818661404c565b90506140e960608301856132cc565b6140f66080830184613064565b9695505050505050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d5f8201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b5f61415a602283612edc565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c5f8201527f6c6574206c696d69740000000000000000000000000000000000000000000000602082015250565b5f6141e8602983612edc565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b905091905056fea264697066735822122091cdf74778ac199d2cc6e0db1f3c6694549542ff3c3b03ae084d8c9ca9ef50bf64736f6c634300081b0033

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.