ETH Price: $2,430.37 (+1.40%)
Gas: 4.54 Gwei
 

Overview

Max Total Supply

10,000,000 FUTO

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
34,488.5647019 FUTO

Value
$0.00
0xF8EAf56E3734E7062F414c75569dB67fa0BD02E2
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:
FUTOROBET

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : FutoroBet.sol
// SPDX-License-Identifier: MIT

//Experience a transparent decentralized autonomous gambling platform that turns players into partners. With every bid, you earn a share of our revenue. Play, stake, and win together.
// WEBSITE: https://www.futoro.bet/
// X (Twitter): https://x.com/futorobet
// Telegram: https://t.me/futoroportal

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private swapping;

    address private operationsWallet;
    address public stakingWallet;

    uint256 public maxTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    mapping(address => uint256) private _holderLastTransferBlock;
    bool public transferDelayEnabled = true;
    uint256 public launchBlockNumber;

    uint256 public buyFees;
    uint256 public sellFees;
    uint256 private _maxSwapableTokens;

    uint256 public _preventSwapBefore = 20;
    uint256 public _removeLimitsAt = 50;
    uint256 public _totalBuys = 0;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxTransaction;
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    event StakingWalletUpdated(
        address indexed newStakingWallet,
        address indexed oldStakingWallet
    );

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

    constructor(address _operationsWallet) ERC20("FUTOROBET", "FUTO", 8) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

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

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

        uint256 totalSupply = 10_000_000 * 10 ** decimals();

        maxTransaction = (totalSupply * 150) / 10_000; // 1.5% max transaction at launch
        maxWallet = (totalSupply * 150) / 10_000; // 1.5% max wallet at launch
        swapTokensAtAmount = (totalSupply * 50) / 10_000; // 0.5%
        _maxSwapableTokens = (totalSupply * 100) / 10_000; // 1%

        buyFees = 2_900; // INITIAL BUY FEES
        sellFees = 2_900; // INITIAL SELL FEES

        operationsWallet = _operationsWallet;

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

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

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

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

    function removeLimits() internal returns (bool) {
        limitsInEffect = false;
        buyFees = 500;
        sellFees = 500;
        return true;
    }

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

    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 100) / 10_000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTransaction(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 10_000),
            "Cannot set maxTransaction lower than 0.1%"
        );
        maxTransaction = newNum * (10 ** decimals());
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 50) / 10_000),
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10 ** decimals());
    }

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

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

    function updateBuyFee(uint256 _newOperationsFee) external onlyOwner {
        buyFees = _newOperationsFee;
        require(buyFees <= 2_000);
    }

    function updateSellFee(uint256 _newOperationsFee) external onlyOwner {
        sellFees = _newOperationsFee;
        require(sellFees <= 2_000);
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationsWallet(
        address newOperationsWallet
    ) external onlyOwner {
        emit operationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

    function updateStakingWallet(address newStakingWallet) external onlyOwner {
        emit StakingWalletUpdated(newStakingWallet, stakingWallet);
        stakingWallet = newStakingWallet;
    }

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

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferBlock[tx.origin] < block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferBlock[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] &&
            _totalBuys > _preventSwapBefore
        ) {
            swapping = true;
            swapBack(min(contractTokenBalance, _maxSwapableTokens));
            swapping = false;
        }

        bool takeFee = !swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFees > 0) {
                fees = amount.mul(sellFees).div(10_000);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                fees = amount.mul(buyFees).div(10_000);
                _totalBuys++;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        if (_totalBuys >= _removeLimitsAt && limitsInEffect) {
            removeLimits();
        }
    }

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

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

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

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

    function swapBack(uint256 amount) private {
        bool success;

        if (amount == 0) {
            return;
        }

        uint256 amountToSwapForETH = amount;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;

        uint256 operationsPart = ethBalance.mul(8_500).div(10_000); // 85% to operations
        uint256 stakingPart = ethBalance.mul(1_500).div(10_000); // 15% to staking

        (success, ) = address(operationsWallet).call{value: operationsPart}("");
        require(success, "Failed to send ETH to operations wallet");

        (success, ) = address(stakingWallet).call{value: stakingPart}("");
        require(success, "Failed to send ETH to staking wallet");
    }
}

File 2 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 3 of 9 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT 
pragma solidity ^0.8.0;
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

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

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

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

File 4 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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);
    }
}

File 6 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

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;
    uint8 private _decimals;

    constructor(string memory name_, string memory symbol_, uint8 decimals_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newStakingWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldStakingWallet","type":"address"}],"name":"StakingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preventSwapBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_removeLimitsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newOperationsFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newOperationsFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newStakingWallet","type":"address"}],"name":"updateStakingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff0219169083151502179055506001600e5f6101000a81548160ff021916908315150217905550601460135560326014555f6015553480156100d9575f80fd5b5060405161562e38038061562e83398181016040528101906100fb9190610a88565b6040518060400160405280600981526020017f4655544f524f42455400000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4655544f00000000000000000000000000000000000000000000000000000000815250600882600390816101789190610ced565b5081600490816101889190610ced565b508060055f6101000a81548160ff021916908360ff1602179055505050506101c26101b761057160201b60201c565b61057860201b60201c565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506101f881600161063d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610275573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102999190610a88565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102fe573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103229190610a88565b6040518363ffffffff1660e01b815260040161033f929190610dcb565b6020604051808303815f875af115801561035b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f9190610a88565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506103c560a051600161063d60201b60201c565b6103d860a05160016106a360201b60201c565b5f6103e761074160201b60201c565b600a6103f39190610f5a565b629896806104019190610fa4565b90506127106096826104139190610fa4565b61041d9190611012565b6009819055506127106096826104339190610fa4565b61043d9190611012565b600b819055506127106032826104539190610fa4565b61045d9190611012565b600a819055506127106064826104739190610fa4565b61047d9190611012565b601281905550610b54601081905550610b546011819055508260075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104f36104e661075660201b60201c565b600161077f60201b60201c565b61050430600161077f60201b60201c565b61051761dead600161077f60201b60201c565b61053561052861075660201b60201c565b600161063d60201b60201c565b61054630600161063d60201b60201c565b61055961dead600161063d60201b60201c565b610569338261083360201b60201c565b5050506111b0565b5f33905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61064b61099660201b60201c565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900460ff16905090565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61078d61099660201b60201c565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610827919061105c565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906110cf565b60405180910390fd5b6108b25f8383610a2060201b60201c565b8060025f8282546108c391906110ed565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461091591906110ed565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610979919061112f565b60405180910390a36109925f8383610a2560201b60201c565b5050565b6109a461057160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166109c861075660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1590611192565b60405180910390fd5b565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a5782610a2e565b9050919050565b610a6781610a4d565b8114610a71575f80fd5b50565b5f81519050610a8281610a5e565b92915050565b5f60208284031215610a9d57610a9c610a2a565b5b5f610aaa84828501610a74565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610b2e57607f821691505b602082108103610b4157610b40610aea565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610ba37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610b68565b610bad8683610b68565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610bf1610bec610be784610bc5565b610bce565b610bc5565b9050919050565b5f819050919050565b610c0a83610bd7565b610c1e610c1682610bf8565b848454610b74565b825550505050565b5f90565b610c32610c26565b610c3d818484610c01565b505050565b5b81811015610c6057610c555f82610c2a565b600181019050610c43565b5050565b601f821115610ca557610c7681610b47565b610c7f84610b59565b81016020851015610c8e578190505b610ca2610c9a85610b59565b830182610c42565b50505b505050565b5f82821c905092915050565b5f610cc55f1984600802610caa565b1980831691505092915050565b5f610cdd8383610cb6565b9150826002028217905092915050565b610cf682610ab3565b67ffffffffffffffff811115610d0f57610d0e610abd565b5b610d198254610b17565b610d24828285610c64565b5f60209050601f831160018114610d55575f8415610d43578287015190505b610d4d8582610cd2565b865550610db4565b601f198416610d6386610b47565b5f5b82811015610d8a57848901518255600182019150602085019450602081019050610d65565b86831015610da75784890151610da3601f891682610cb6565b8355505b6001600288020188555050505b505050505050565b610dc581610a4d565b82525050565b5f604082019050610dde5f830185610dbc565b610deb6020830184610dbc565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115610e7457808604811115610e5057610e4f610df2565b5b6001851615610e5f5780820291505b8081029050610e6d85610e1f565b9450610e34565b94509492505050565b5f82610e8c5760019050610f47565b81610e99575f9050610f47565b8160018114610eaf5760028114610eb957610ee8565b6001915050610f47565b60ff841115610ecb57610eca610df2565b5b8360020a915084821115610ee257610ee1610df2565b5b50610f47565b5060208310610133831016604e8410600b8410161715610f1d5782820a905083811115610f1857610f17610df2565b5b610f47565b610f2a8484846001610e2b565b92509050818404811115610f4157610f40610df2565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610f6482610bc5565b9150610f6f83610f4e565b9250610f9c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610e7d565b905092915050565b5f610fae82610bc5565b9150610fb983610bc5565b9250828202610fc781610bc5565b91508282048414831517610fde57610fdd610df2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61101c82610bc5565b915061102783610bc5565b92508261103757611036610fe5565b5b828204905092915050565b5f8115159050919050565b61105681611042565b82525050565b5f60208201905061106f5f83018461104d565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6110b9601f83611075565b91506110c482611085565b602082019050919050565b5f6020820190508181035f8301526110e6816110ad565b9050919050565b5f6110f782610bc5565b915061110283610bc5565b925082820190508082111561111a57611119610df2565b5b92915050565b61112981610bc5565b82525050565b5f6020820190506111425f830184611120565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61117c602083611075565b915061118782611148565b602082019050919050565b5f6020820190508181035f8301526111a981611170565b9050919050565b60805160a0516144336111fb5f395f8181610fb3015281816112950152611e4b01525f8181610c3b01528181611df301528181612d3401528181612e130152612e3a01526144335ff3fe60806040526004361061028b575f3560e01c80638a8c523c11610159578063c876d0b9116100c0578063e4748b9e11610079578063e4748b9e146109dc578063e884f26014610a06578063edbb3b2c14610a30578063f2fde38b14610a58578063f887ea4014610a80578063f8b45b0514610aaa57610292565b8063c876d0b9146108aa578063d257b34f146108d4578063dd62ed3e14610910578063e0f3ccf51461094c578063e1bc339414610976578063e2f45605146109b257610292565b8063a9059cbb11610112578063a9059cbb1461078c578063b62496f5146107c8578063bbc0c74214610804578063c02466681461082e578063c3f70b5214610856578063c81d92461461088057610292565b80638a8c523c146106965780638da5cb5b146106ac578063924de9b7146106d657806395d89b41146106fe5780639a7a23d614610728578063a457c2d71461075057610292565b806339509351116101fd5780636ddd1713116101b65780636ddd17131461059e57806370a08231146105c8578063715018a61461060457806373a942921461061a5780637571336a1461064457806384e92c001461066c57610292565b80633950935114610480578063467abe0a146104bc57806349bd5a5e146104e45780634a62bb651461050e5780634fbee19314610538578063680182261461057457610292565b806318160ddd1161024f57806318160ddd146103785780631c499ab0146103a25780631d933a4a146103ca57806323b872dd146103f257806330d5d18d1461042e578063313ce5671461045657610292565b80630517d13d1461029657806306ee6ad8146102be57806306fdde03146102e8578063095ea7b3146103125780631694505e1461034e57610292565b3661029257005b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190612f01565b610ad4565b005b3480156102c9575f80fd5b506102d2610b67565b6040516102df9190612f6b565b60405180910390f35b3480156102f3575f80fd5b506102fc610b8c565b6040516103099190612ff4565b60405180910390f35b34801561031d575f80fd5b506103386004803603810190610333919061303e565b610c1c565b6040516103459190613096565b60405180910390f35b348015610359575f80fd5b50610362610c39565b60405161036f919061310a565b60405180910390f35b348015610383575f80fd5b5061038c610c5d565b6040516103999190613132565b60405180910390f35b3480156103ad575f80fd5b506103c860048036038101906103c39190612f01565b610c66565b005b3480156103d5575f80fd5b506103f060048036038101906103eb9190612f01565b610cf9565b005b3480156103fd575f80fd5b506104186004803603810190610413919061314b565b610d1b565b6040516104259190613096565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f919061319b565b610e0d565b005b348015610461575f80fd5b5061046a610ed3565b60405161047791906131e1565b60405180910390f35b34801561048b575f80fd5b506104a660048036038101906104a1919061303e565b610ee8565b6040516104b39190613096565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd9190612f01565b610f8f565b005b3480156104ef575f80fd5b506104f8610fb1565b6040516105059190612f6b565b60405180910390f35b348015610519575f80fd5b50610522610fd5565b60405161052f9190613096565b60405180910390f35b348015610543575f80fd5b5061055e6004803603810190610559919061319b565b610fe7565b60405161056b9190613096565b60405180910390f35b34801561057f575f80fd5b50610588611039565b6040516105959190613132565b60405180910390f35b3480156105a9575f80fd5b506105b261103f565b6040516105bf9190613096565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e9919061319b565b611052565b6040516105fb9190613132565b60405180910390f35b34801561060f575f80fd5b50610618611097565b005b348015610625575f80fd5b5061062e6110aa565b60405161063b9190613132565b60405180910390f35b34801561064f575f80fd5b5061066a60048036038101906106659190613224565b6110b0565b005b348015610677575f80fd5b50610680611110565b60405161068d9190613132565b60405180910390f35b3480156106a1575f80fd5b506106aa611116565b005b3480156106b7575f80fd5b506106c06111ad565b6040516106cd9190612f6b565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f79190613262565b6111d6565b005b348015610709575f80fd5b506107126111fb565b60405161071f9190612ff4565b60405180910390f35b348015610733575f80fd5b5061074e60048036038101906107499190613224565b61128b565b005b34801561075b575f80fd5b506107766004803603810190610771919061303e565b61132f565b6040516107839190613096565b60405180910390f35b348015610797575f80fd5b506107b260048036038101906107ad919061303e565b611415565b6040516107bf9190613096565b60405180910390f35b3480156107d3575f80fd5b506107ee60048036038101906107e9919061319b565b611432565b6040516107fb9190613096565b60405180910390f35b34801561080f575f80fd5b5061081861144f565b6040516108259190613096565b60405180910390f35b348015610839575f80fd5b50610854600480360381019061084f9190613224565b611462565b005b348015610861575f80fd5b5061086a611510565b6040516108779190613132565b60405180910390f35b34801561088b575f80fd5b50610894611516565b6040516108a19190613132565b60405180910390f35b3480156108b5575f80fd5b506108be61151c565b6040516108cb9190613096565b60405180910390f35b3480156108df575f80fd5b506108fa60048036038101906108f59190612f01565b61152e565b6040516109079190613096565b60405180910390f35b34801561091b575f80fd5b506109366004803603810190610931919061328d565b61160e565b6040516109439190613132565b60405180910390f35b348015610957575f80fd5b50610960611690565b60405161096d9190613132565b60405180910390f35b348015610981575f80fd5b5061099c6004803603810190610997919061319b565b611696565b6040516109a99190613096565b60405180910390f35b3480156109bd575f80fd5b506109c66116b3565b6040516109d39190613132565b60405180910390f35b3480156109e7575f80fd5b506109f06116b9565b6040516109fd9190613132565b60405180910390f35b348015610a11575f80fd5b50610a1a6116bf565b604051610a279190613096565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a51919061319b565b6116e8565b005b348015610a63575f80fd5b50610a7e6004803603810190610a79919061319b565b6117ae565b005b348015610a8b575f80fd5b50610a94611830565b604051610aa19190612f6b565b60405180910390f35b348015610ab5575f80fd5b50610abe611855565b604051610acb9190613132565b60405180910390f35b610adc61185b565b612710600a610ae9610c5d565b610af391906132f8565b610afd9190613366565b811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613406565b60405180910390fd5b610b47610ed3565b600a610b539190613553565b81610b5e91906132f8565b60098190555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b9b906135ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906135ca565b8015610c125780601f10610be957610100808354040283529160200191610c12565b820191905f5260205f20905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b5f610c2f610c286118d9565b84846118e0565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610c6e61185b565b6127106032610c7b610c5d565b610c8591906132f8565b610c8f9190613366565b811015610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc89061366a565b60405180910390fd5b610cd9610ed3565b600a610ce59190613553565b81610cf091906132f8565b600b8190555050565b610d0161185b565b806011819055506107d06011541115610d18575f80fd5b50565b5f610d27848484611aa3565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d6e6118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906136f8565b60405180910390fd5b610e0185610df96118d9565b8584036118e0565b60019150509392505050565b610e1561185b565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900460ff16905090565b5f610f85610ef46118d9565b848460015f610f016118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f809190613716565b6118e0565b6001905092915050565b610f9761185b565b806010819055506107d06010541115610fae575f80fd5b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5f9054906101000a900460ff1681565b5f60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61109f61185b565b6110a85f61262c565b565b60155481565b6110b861185b565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600f5481565b61111e61185b565b600c60019054906101000a900460ff161561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613793565b60405180910390fd5b6001600c60016101000a81548160ff02191690831515021790555043600f819055506001600c60026101000a81548160ff021916908315150217905550565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111de61185b565b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461120a906135ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611236906135ca565b80156112815780601f1061125857610100808354040283529160200191611281565b820191905f5260205f20905b81548152906001019060200180831161126457829003601f168201915b5050505050905090565b61129361185b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890613821565b60405180910390fd5b61132b82826126f1565b5050565b5f8060015f61133c6118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906138af565b60405180910390fd5b61140a6114016118d9565b858584036118e0565b600191505092915050565b5f6114286114216118d9565b8484611aa3565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b61146a61185b565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115049190613096565b60405180910390a25050565b60095481565b60135481565b600e5f9054906101000a900460ff1681565b5f61153761185b565b620186a06001611545610c5d565b61154f91906132f8565b6115599190613366565b82101561159b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115929061393d565b60405180910390fd5b61271060646115a8610c5d565b6115b291906132f8565b6115bc9190613366565b8211156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906139cb565b60405180910390fd5b81600a8190555060019050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b6017602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b60105481565b5f6116c861185b565b5f600e5f6101000a81548160ff0219169083151502179055506001905090565b6116f061185b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0b2d487c578ee8721e04056e667d57d860842931c083fecd93631e22510ec36b60405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117b661185b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90613a59565b60405180910390fd5b61182d8161262c565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6118636118d9565b73ffffffffffffffffffffffffffffffffffffffff166118816111ad565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613ac1565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613b4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390613bdd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a969190613132565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613c6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613cf9565b60405180910390fd5b5f8103611b9657611b9183835f61278f565b612627565b600c5f9054906101000a900460ff161561223d57611bb26111ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c205750611bf06111ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c5857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c92575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cab5750600660149054906101000a900460ff16155b1561223c57600c60019054906101000a900460ff16611d9f5760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d5f575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590613d61565b60405180910390fd5b5b600e5f9054906101000a900460ff1615611f6257611dbb6111ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e4257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f615743600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613e15565b60405180910390fd5b43600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611fff575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120a657600954811115612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090613ea3565b60405180910390fd5b600b5461205583611052565b826120609190613716565b11156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613f0b565b60405180910390fd5b61223b565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612143575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121925760095481111561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613f99565b60405180910390fd5b61223a565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661223957600b546121ec83611052565b826121f79190613716565b1115612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90613f0b565b60405180910390fd5b5b5b5b5b5b5f61224730611052565b90505f600a54821015905080801561226b5750600c60029054906101000a900460ff165b80156122845750600660149054906101000a900460ff16155b80156122d7575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561232a575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561237d575060165f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561238c5750601354601554115b156123db576001600660146101000a81548160ff0219169083151502179055506123c06123bb83601254612a04565b612a1c565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061248a575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612493575f90505b5f81156125e95760185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124f157505f601154115b156125265761251f61271061251160115488612c3090919063ffffffff16565b612c4590919063ffffffff16565b90506125c6565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561257d57505f601054115b156125c5576125ab61271061259d60105488612c3090919063ffffffff16565b612c4590919063ffffffff16565b905060155f8154809291906125bf90613fb7565b91905055505b5b5f8111156125da576125d987308361278f565b5b80856125e69190613ffe565b94505b6125f487878761278f565b601454601554101580156126135750600c5f9054906101000a900460ff165b1561262257612620612c5a565b505b505050505b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490613c6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290613cf9565b60405180910390fd5b612876838383612c8d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f0906140a1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546129879190613716565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129eb9190613132565b60405180910390a36129fe848484612c92565b50505050565b5f818311612a125782612a14565b815b905092915050565b5f808203612a2a5750612c2d565b5f829050612a3781612c97565b5f4790505f612a65612710612a5761213485612c3090919063ffffffff16565b612c4590919063ffffffff16565b90505f612a91612710612a836105dc86612c3090919063ffffffff16565b612c4590919063ffffffff16565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612ad8906140ec565b5f6040518083038185875af1925050503d805f8114612b12576040519150601f19603f3d011682016040523d82523d5f602084013e612b17565b606091505b50508095505084612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490614170565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612ba2906140ec565b5f6040518083038185875af1925050503d805f8114612bdc576040519150601f19603f3d011682016040523d82523d5f602084013e612be1565b606091505b50508095505084612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e906141fe565b60405180910390fd5b50505050505b50565b5f8183612c3d91906132f8565b905092915050565b5f8183612c529190613366565b905092915050565b5f80600c5f6101000a81548160ff0219169083151502179055506101f46010819055506101f46011819055506001905090565b505050565b505050565b5f600267ffffffffffffffff811115612cb357612cb261421c565b5b604051908082528060200260200182016040528015612ce15781602001602082028036833780820191505090505b50905030815f81518110612cf857612cf7614249565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dbf919061428a565b81600181518110612dd357612dd2614249565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e38307f0000000000000000000000000000000000000000000000000000000000000000846118e0565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e999594939291906143a5565b5f604051808303815f87803b158015612eb0575f80fd5b505af1158015612ec2573d5f803e3d5ffd5b505050505050565b5f80fd5b5f819050919050565b612ee081612ece565b8114612eea575f80fd5b50565b5f81359050612efb81612ed7565b92915050565b5f60208284031215612f1657612f15612eca565b5b5f612f2384828501612eed565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f5582612f2c565b9050919050565b612f6581612f4b565b82525050565b5f602082019050612f7e5f830184612f5c565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612fc682612f84565b612fd08185612f8e565b9350612fe0818560208601612f9e565b612fe981612fac565b840191505092915050565b5f6020820190508181035f83015261300c8184612fbc565b905092915050565b61301d81612f4b565b8114613027575f80fd5b50565b5f8135905061303881613014565b92915050565b5f806040838503121561305457613053612eca565b5b5f6130618582860161302a565b925050602061307285828601612eed565b9150509250929050565b5f8115159050919050565b6130908161307c565b82525050565b5f6020820190506130a95f830184613087565b92915050565b5f819050919050565b5f6130d26130cd6130c884612f2c565b6130af565b612f2c565b9050919050565b5f6130e3826130b8565b9050919050565b5f6130f4826130d9565b9050919050565b613104816130ea565b82525050565b5f60208201905061311d5f8301846130fb565b92915050565b61312c81612ece565b82525050565b5f6020820190506131455f830184613123565b92915050565b5f805f6060848603121561316257613161612eca565b5b5f61316f8682870161302a565b93505060206131808682870161302a565b925050604061319186828701612eed565b9150509250925092565b5f602082840312156131b0576131af612eca565b5b5f6131bd8482850161302a565b91505092915050565b5f60ff82169050919050565b6131db816131c6565b82525050565b5f6020820190506131f45f8301846131d2565b92915050565b6132038161307c565b811461320d575f80fd5b50565b5f8135905061321e816131fa565b92915050565b5f806040838503121561323a57613239612eca565b5b5f6132478582860161302a565b925050602061325885828601613210565b9150509250929050565b5f6020828403121561327757613276612eca565b5b5f61328484828501613210565b91505092915050565b5f80604083850312156132a3576132a2612eca565b5b5f6132b08582860161302a565b92505060206132c18582860161302a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61330282612ece565b915061330d83612ece565b925082820261331b81612ece565b91508282048414831517613332576133316132cb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61337082612ece565b915061337b83612ece565b92508261338b5761338a613339565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f6133f0602983612f8e565b91506133fb82613396565b604082019050919050565b5f6020820190508181035f83015261341d816133e4565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561347957808604811115613455576134546132cb565b5b60018516156134645780820291505b808102905061347285613424565b9450613439565b94509492505050565b5f82613491576001905061354c565b8161349e575f905061354c565b81600181146134b457600281146134be576134ed565b600191505061354c565b60ff8411156134d0576134cf6132cb565b5b8360020a9150848211156134e7576134e66132cb565b5b5061354c565b5060208310610133831016604e8410600b84101617156135225782820a90508381111561351d5761351c6132cb565b5b61354c565b61352f8484846001613430565b92509050818404811115613546576135456132cb565b5b81810290505b9392505050565b5f61355d82612ece565b9150613568836131c6565b92506135957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613482565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806135e157607f821691505b6020821081036135f4576135f361359d565b5b50919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613654602483612f8e565b915061365f826135fa565b604082019050919050565b5f6020820190508181035f83015261368181613648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6136e2602883612f8e565b91506136ed82613688565b604082019050919050565b5f6020820190508181035f83015261370f816136d6565b9050919050565b5f61372082612ece565b915061372b83612ece565b9250828201905080821115613743576137426132cb565b5b92915050565b7f546f6b656e206c61756e636865640000000000000000000000000000000000005f82015250565b5f61377d600e83612f8e565b915061378882613749565b602082019050919050565b5f6020820190508181035f8301526137aa81613771565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61380b603983612f8e565b9150613816826137b1565b604082019050919050565b5f6020820190508181035f830152613838816137ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613899602583612f8e565b91506138a48261383f565b604082019050919050565b5f6020820190508181035f8301526138c68161388d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613927603583612f8e565b9150613932826138cd565b604082019050919050565b5f6020820190508181035f8301526139548161391b565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f6139b5603283612f8e565b91506139c08261395b565b604082019050919050565b5f6020820190508181035f8301526139e2816139a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a43602683612f8e565b9150613a4e826139e9565b604082019050919050565b5f6020820190508181035f830152613a7081613a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aab602083612f8e565b9150613ab682613a77565b602082019050919050565b5f6020820190508181035f830152613ad881613a9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613b39602483612f8e565b9150613b4482613adf565b604082019050919050565b5f6020820190508181035f830152613b6681613b2d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613bc7602283612f8e565b9150613bd282613b6d565b604082019050919050565b5f6020820190508181035f830152613bf481613bbb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c55602583612f8e565b9150613c6082613bfb565b604082019050919050565b5f6020820190508181035f830152613c8281613c49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ce3602383612f8e565b9150613cee82613c89565b604082019050919050565b5f6020820190508181035f830152613d1081613cd7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613d4b601683612f8e565b9150613d5682613d17565b602082019050919050565b5f6020820190508181035f830152613d7881613d3f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613dff604983612f8e565b9150613e0a82613d7f565b606082019050919050565b5f6020820190508181035f830152613e2c81613df3565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b5f613e8d602f83612f8e565b9150613e9882613e33565b604082019050919050565b5f6020820190508181035f830152613eba81613e81565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613ef5601383612f8e565b9150613f0082613ec1565b602082019050919050565b5f6020820190508181035f830152613f2281613ee9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b5f613f83603083612f8e565b9150613f8e82613f29565b604082019050919050565b5f6020820190508181035f830152613fb081613f77565b9050919050565b5f613fc182612ece565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ff357613ff26132cb565b5b600182019050919050565b5f61400882612ece565b915061401383612ece565b925082820390508181111561402b5761402a6132cb565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61408b602683612f8e565b915061409682614031565b604082019050919050565b5f6020820190508181035f8301526140b88161407f565b9050919050565b5f81905092915050565b50565b5f6140d75f836140bf565b91506140e2826140c9565b5f82019050919050565b5f6140f6826140cc565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206f7065726174696f6e735f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f61415a602783612f8e565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4661696c656420746f2073656e642045544820746f207374616b696e672077615f8201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b5f6141e8602483612f8e565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061428481613014565b92915050565b5f6020828403121561429f5761429e612eca565b5b5f6142ac84828501614276565b91505092915050565b5f819050919050565b5f6142d86142d36142ce846142b5565b6130af565b612ece565b9050919050565b6142e8816142be565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61432081612f4b565b82525050565b5f6143318383614317565b60208301905092915050565b5f602082019050919050565b5f614353826142ee565b61435d81856142f8565b935061436883614308565b805f5b8381101561439857815161437f8882614326565b975061438a8361433d565b92505060018101905061436b565b5085935050505092915050565b5f60a0820190506143b85f830188613123565b6143c560208301876142df565b81810360408301526143d78186614349565b90506143e66060830185612f5c565b6143f36080830184613123565b969550505050505056fea264697066735822122019f78df2cc58c0a02f2ab9a4e3e70a3371c5550b2f1e9fe292811961b911c50b64736f6c634300081a00330000000000000000000000002aba95d284aea97e0a83ed837ea4fd8186304b0f

Deployed Bytecode

0x60806040526004361061028b575f3560e01c80638a8c523c11610159578063c876d0b9116100c0578063e4748b9e11610079578063e4748b9e146109dc578063e884f26014610a06578063edbb3b2c14610a30578063f2fde38b14610a58578063f887ea4014610a80578063f8b45b0514610aaa57610292565b8063c876d0b9146108aa578063d257b34f146108d4578063dd62ed3e14610910578063e0f3ccf51461094c578063e1bc339414610976578063e2f45605146109b257610292565b8063a9059cbb11610112578063a9059cbb1461078c578063b62496f5146107c8578063bbc0c74214610804578063c02466681461082e578063c3f70b5214610856578063c81d92461461088057610292565b80638a8c523c146106965780638da5cb5b146106ac578063924de9b7146106d657806395d89b41146106fe5780639a7a23d614610728578063a457c2d71461075057610292565b806339509351116101fd5780636ddd1713116101b65780636ddd17131461059e57806370a08231146105c8578063715018a61461060457806373a942921461061a5780637571336a1461064457806384e92c001461066c57610292565b80633950935114610480578063467abe0a146104bc57806349bd5a5e146104e45780634a62bb651461050e5780634fbee19314610538578063680182261461057457610292565b806318160ddd1161024f57806318160ddd146103785780631c499ab0146103a25780631d933a4a146103ca57806323b872dd146103f257806330d5d18d1461042e578063313ce5671461045657610292565b80630517d13d1461029657806306ee6ad8146102be57806306fdde03146102e8578063095ea7b3146103125780631694505e1461034e57610292565b3661029257005b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190612f01565b610ad4565b005b3480156102c9575f80fd5b506102d2610b67565b6040516102df9190612f6b565b60405180910390f35b3480156102f3575f80fd5b506102fc610b8c565b6040516103099190612ff4565b60405180910390f35b34801561031d575f80fd5b506103386004803603810190610333919061303e565b610c1c565b6040516103459190613096565b60405180910390f35b348015610359575f80fd5b50610362610c39565b60405161036f919061310a565b60405180910390f35b348015610383575f80fd5b5061038c610c5d565b6040516103999190613132565b60405180910390f35b3480156103ad575f80fd5b506103c860048036038101906103c39190612f01565b610c66565b005b3480156103d5575f80fd5b506103f060048036038101906103eb9190612f01565b610cf9565b005b3480156103fd575f80fd5b506104186004803603810190610413919061314b565b610d1b565b6040516104259190613096565b60405180910390f35b348015610439575f80fd5b50610454600480360381019061044f919061319b565b610e0d565b005b348015610461575f80fd5b5061046a610ed3565b60405161047791906131e1565b60405180910390f35b34801561048b575f80fd5b506104a660048036038101906104a1919061303e565b610ee8565b6040516104b39190613096565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd9190612f01565b610f8f565b005b3480156104ef575f80fd5b506104f8610fb1565b6040516105059190612f6b565b60405180910390f35b348015610519575f80fd5b50610522610fd5565b60405161052f9190613096565b60405180910390f35b348015610543575f80fd5b5061055e6004803603810190610559919061319b565b610fe7565b60405161056b9190613096565b60405180910390f35b34801561057f575f80fd5b50610588611039565b6040516105959190613132565b60405180910390f35b3480156105a9575f80fd5b506105b261103f565b6040516105bf9190613096565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e9919061319b565b611052565b6040516105fb9190613132565b60405180910390f35b34801561060f575f80fd5b50610618611097565b005b348015610625575f80fd5b5061062e6110aa565b60405161063b9190613132565b60405180910390f35b34801561064f575f80fd5b5061066a60048036038101906106659190613224565b6110b0565b005b348015610677575f80fd5b50610680611110565b60405161068d9190613132565b60405180910390f35b3480156106a1575f80fd5b506106aa611116565b005b3480156106b7575f80fd5b506106c06111ad565b6040516106cd9190612f6b565b60405180910390f35b3480156106e1575f80fd5b506106fc60048036038101906106f79190613262565b6111d6565b005b348015610709575f80fd5b506107126111fb565b60405161071f9190612ff4565b60405180910390f35b348015610733575f80fd5b5061074e60048036038101906107499190613224565b61128b565b005b34801561075b575f80fd5b506107766004803603810190610771919061303e565b61132f565b6040516107839190613096565b60405180910390f35b348015610797575f80fd5b506107b260048036038101906107ad919061303e565b611415565b6040516107bf9190613096565b60405180910390f35b3480156107d3575f80fd5b506107ee60048036038101906107e9919061319b565b611432565b6040516107fb9190613096565b60405180910390f35b34801561080f575f80fd5b5061081861144f565b6040516108259190613096565b60405180910390f35b348015610839575f80fd5b50610854600480360381019061084f9190613224565b611462565b005b348015610861575f80fd5b5061086a611510565b6040516108779190613132565b60405180910390f35b34801561088b575f80fd5b50610894611516565b6040516108a19190613132565b60405180910390f35b3480156108b5575f80fd5b506108be61151c565b6040516108cb9190613096565b60405180910390f35b3480156108df575f80fd5b506108fa60048036038101906108f59190612f01565b61152e565b6040516109079190613096565b60405180910390f35b34801561091b575f80fd5b506109366004803603810190610931919061328d565b61160e565b6040516109439190613132565b60405180910390f35b348015610957575f80fd5b50610960611690565b60405161096d9190613132565b60405180910390f35b348015610981575f80fd5b5061099c6004803603810190610997919061319b565b611696565b6040516109a99190613096565b60405180910390f35b3480156109bd575f80fd5b506109c66116b3565b6040516109d39190613132565b60405180910390f35b3480156109e7575f80fd5b506109f06116b9565b6040516109fd9190613132565b60405180910390f35b348015610a11575f80fd5b50610a1a6116bf565b604051610a279190613096565b60405180910390f35b348015610a3b575f80fd5b50610a566004803603810190610a51919061319b565b6116e8565b005b348015610a63575f80fd5b50610a7e6004803603810190610a79919061319b565b6117ae565b005b348015610a8b575f80fd5b50610a94611830565b604051610aa19190612f6b565b60405180910390f35b348015610ab5575f80fd5b50610abe611855565b604051610acb9190613132565b60405180910390f35b610adc61185b565b612710600a610ae9610c5d565b610af391906132f8565b610afd9190613366565b811015610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613406565b60405180910390fd5b610b47610ed3565b600a610b539190613553565b81610b5e91906132f8565b60098190555050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b9b906135ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906135ca565b8015610c125780601f10610be957610100808354040283529160200191610c12565b820191905f5260205f20905b815481529060010190602001808311610bf557829003601f168201915b5050505050905090565b5f610c2f610c286118d9565b84846118e0565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610c6e61185b565b6127106032610c7b610c5d565b610c8591906132f8565b610c8f9190613366565b811015610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc89061366a565b60405180910390fd5b610cd9610ed3565b600a610ce59190613553565b81610cf091906132f8565b600b8190555050565b610d0161185b565b806011819055506107d06011541115610d18575f80fd5b50565b5f610d27848484611aa3565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610d6e6118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906136f8565b60405180910390fd5b610e0185610df96118d9565b8584036118e0565b60019150509392505050565b610e1561185b565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a38060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900460ff16905090565b5f610f85610ef46118d9565b848460015f610f016118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f809190613716565b6118e0565b6001905092915050565b610f9761185b565b806010819055506107d06010541115610fae575f80fd5b50565b7f00000000000000000000000046c6dea1473100ee3e1be007cae88c6ec7166ce481565b600c5f9054906101000a900460ff1681565b5f60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61109f61185b565b6110a85f61262c565b565b60155481565b6110b861185b565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600f5481565b61111e61185b565b600c60019054906101000a900460ff161561116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613793565b60405180910390fd5b6001600c60016101000a81548160ff02191690831515021790555043600f819055506001600c60026101000a81548160ff021916908315150217905550565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111de61185b565b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461120a906135ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611236906135ca565b80156112815780601f1061125857610100808354040283529160200191611281565b820191905f5260205f20905b81548152906001019060200180831161126457829003601f168201915b5050505050905090565b61129361185b565b7f00000000000000000000000046c6dea1473100ee3e1be007cae88c6ec7166ce473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890613821565b60405180910390fd5b61132b82826126f1565b5050565b5f8060015f61133c6118d9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906138af565b60405180910390fd5b61140a6114016118d9565b858584036118e0565b600191505092915050565b5f6114286114216118d9565b8484611aa3565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b61146a61185b565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115049190613096565b60405180910390a25050565b60095481565b60135481565b600e5f9054906101000a900460ff1681565b5f61153761185b565b620186a06001611545610c5d565b61154f91906132f8565b6115599190613366565b82101561159b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115929061393d565b60405180910390fd5b61271060646115a8610c5d565b6115b291906132f8565b6115bc9190613366565b8211156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906139cb565b60405180910390fd5b81600a8190555060019050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b6017602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b60105481565b5f6116c861185b565b5f600e5f6101000a81548160ff0219169083151502179055506001905090565b6116f061185b565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0b2d487c578ee8721e04056e667d57d860842931c083fecd93631e22510ec36b60405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117b661185b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b90613a59565b60405180910390fd5b61182d8161262c565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6118636118d9565b73ffffffffffffffffffffffffffffffffffffffff166118816111ad565b73ffffffffffffffffffffffffffffffffffffffff16146118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90613ac1565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613b4f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b390613bdd565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a969190613132565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890613c6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613cf9565b60405180910390fd5b5f8103611b9657611b9183835f61278f565b612627565b600c5f9054906101000a900460ff161561223d57611bb26111ad565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611c205750611bf06111ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c5857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c92575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cab5750600660149054906101000a900460ff16155b1561223c57600c60019054906101000a900460ff16611d9f5760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d5f575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9590613d61565b60405180910390fd5b5b600e5f9054906101000a900460ff1615611f6257611dbb6111ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e4257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e9a57507f00000000000000000000000046c6dea1473100ee3e1be007cae88c6ec7166ce473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611f615743600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590613e15565b60405180910390fd5b43600d5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611fff575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120a657600954811115612049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204090613ea3565b60405180910390fd5b600b5461205583611052565b826120609190613716565b11156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890613f0b565b60405180910390fd5b61223b565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612143575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121925760095481111561218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613f99565b60405180910390fd5b61223a565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661223957600b546121ec83611052565b826121f79190613716565b1115612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90613f0b565b60405180910390fd5b5b5b5b5b5b5f61224730611052565b90505f600a54821015905080801561226b5750600c60029054906101000a900460ff165b80156122845750600660149054906101000a900460ff16155b80156122d7575060185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561232a575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561237d575060165f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561238c5750601354601554115b156123db576001600660146101000a81548160ff0219169083151502179055506123c06123bb83601254612a04565b612a1c565b5f600660146101000a81548160ff0219169083151502179055505b5f600660149054906101000a900460ff1615905060165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061248a575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612493575f90505b5f81156125e95760185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156124f157505f601154115b156125265761251f61271061251160115488612c3090919063ffffffff16565b612c4590919063ffffffff16565b90506125c6565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561257d57505f601054115b156125c5576125ab61271061259d60105488612c3090919063ffffffff16565b612c4590919063ffffffff16565b905060155f8154809291906125bf90613fb7565b91905055505b5b5f8111156125da576125d987308361278f565b5b80856125e69190613ffe565b94505b6125f487878761278f565b601454601554101580156126135750600c5f9054906101000a900460ff165b1561262257612620612c5a565b505b505050505b505050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f490613c6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361286b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286290613cf9565b60405180910390fd5b612876838383612c8d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f0906140a1565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546129879190613716565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129eb9190613132565b60405180910390a36129fe848484612c92565b50505050565b5f818311612a125782612a14565b815b905092915050565b5f808203612a2a5750612c2d565b5f829050612a3781612c97565b5f4790505f612a65612710612a5761213485612c3090919063ffffffff16565b612c4590919063ffffffff16565b90505f612a91612710612a836105dc86612c3090919063ffffffff16565b612c4590919063ffffffff16565b905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612ad8906140ec565b5f6040518083038185875af1925050503d805f8114612b12576040519150601f19603f3d011682016040523d82523d5f602084013e612b17565b606091505b50508095505084612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5490614170565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612ba2906140ec565b5f6040518083038185875af1925050503d805f8114612bdc576040519150601f19603f3d011682016040523d82523d5f602084013e612be1565b606091505b50508095505084612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e906141fe565b60405180910390fd5b50505050505b50565b5f8183612c3d91906132f8565b905092915050565b5f8183612c529190613366565b905092915050565b5f80600c5f6101000a81548160ff0219169083151502179055506101f46010819055506101f46011819055506001905090565b505050565b505050565b5f600267ffffffffffffffff811115612cb357612cb261421c565b5b604051908082528060200260200182016040528015612ce15781602001602082028036833780820191505090505b50905030815f81518110612cf857612cf7614249565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dbf919061428a565b81600181518110612dd357612dd2614249565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612e38307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118e0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612e999594939291906143a5565b5f604051808303815f87803b158015612eb0575f80fd5b505af1158015612ec2573d5f803e3d5ffd5b505050505050565b5f80fd5b5f819050919050565b612ee081612ece565b8114612eea575f80fd5b50565b5f81359050612efb81612ed7565b92915050565b5f60208284031215612f1657612f15612eca565b5b5f612f2384828501612eed565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612f5582612f2c565b9050919050565b612f6581612f4b565b82525050565b5f602082019050612f7e5f830184612f5c565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612fc682612f84565b612fd08185612f8e565b9350612fe0818560208601612f9e565b612fe981612fac565b840191505092915050565b5f6020820190508181035f83015261300c8184612fbc565b905092915050565b61301d81612f4b565b8114613027575f80fd5b50565b5f8135905061303881613014565b92915050565b5f806040838503121561305457613053612eca565b5b5f6130618582860161302a565b925050602061307285828601612eed565b9150509250929050565b5f8115159050919050565b6130908161307c565b82525050565b5f6020820190506130a95f830184613087565b92915050565b5f819050919050565b5f6130d26130cd6130c884612f2c565b6130af565b612f2c565b9050919050565b5f6130e3826130b8565b9050919050565b5f6130f4826130d9565b9050919050565b613104816130ea565b82525050565b5f60208201905061311d5f8301846130fb565b92915050565b61312c81612ece565b82525050565b5f6020820190506131455f830184613123565b92915050565b5f805f6060848603121561316257613161612eca565b5b5f61316f8682870161302a565b93505060206131808682870161302a565b925050604061319186828701612eed565b9150509250925092565b5f602082840312156131b0576131af612eca565b5b5f6131bd8482850161302a565b91505092915050565b5f60ff82169050919050565b6131db816131c6565b82525050565b5f6020820190506131f45f8301846131d2565b92915050565b6132038161307c565b811461320d575f80fd5b50565b5f8135905061321e816131fa565b92915050565b5f806040838503121561323a57613239612eca565b5b5f6132478582860161302a565b925050602061325885828601613210565b9150509250929050565b5f6020828403121561327757613276612eca565b5b5f61328484828501613210565b91505092915050565b5f80604083850312156132a3576132a2612eca565b5b5f6132b08582860161302a565b92505060206132c18582860161302a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61330282612ece565b915061330d83612ece565b925082820261331b81612ece565b91508282048414831517613332576133316132cb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61337082612ece565b915061337b83612ece565b92508261338b5761338a613339565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f6133f0602983612f8e565b91506133fb82613396565b604082019050919050565b5f6020820190508181035f83015261341d816133e4565b9050919050565b5f8160011c9050919050565b5f808291508390505b600185111561347957808604811115613455576134546132cb565b5b60018516156134645780820291505b808102905061347285613424565b9450613439565b94509492505050565b5f82613491576001905061354c565b8161349e575f905061354c565b81600181146134b457600281146134be576134ed565b600191505061354c565b60ff8411156134d0576134cf6132cb565b5b8360020a9150848211156134e7576134e66132cb565b5b5061354c565b5060208310610133831016604e8410600b84101617156135225782820a90508381111561351d5761351c6132cb565b5b61354c565b61352f8484846001613430565b92509050818404811115613546576135456132cb565b5b81810290505b9392505050565b5f61355d82612ece565b9150613568836131c6565b92506135957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613482565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806135e157607f821691505b6020821081036135f4576135f361359d565b5b50919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613654602483612f8e565b915061365f826135fa565b604082019050919050565b5f6020820190508181035f83015261368181613648565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6136e2602883612f8e565b91506136ed82613688565b604082019050919050565b5f6020820190508181035f83015261370f816136d6565b9050919050565b5f61372082612ece565b915061372b83612ece565b9250828201905080821115613743576137426132cb565b5b92915050565b7f546f6b656e206c61756e636865640000000000000000000000000000000000005f82015250565b5f61377d600e83612f8e565b915061378882613749565b602082019050919050565b5f6020820190508181035f8301526137aa81613771565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f61380b603983612f8e565b9150613816826137b1565b604082019050919050565b5f6020820190508181035f830152613838816137ff565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613899602583612f8e565b91506138a48261383f565b604082019050919050565b5f6020820190508181035f8301526138c68161388d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613927603583612f8e565b9150613932826138cd565b604082019050919050565b5f6020820190508181035f8301526139548161391b565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b5f6139b5603283612f8e565b91506139c08261395b565b604082019050919050565b5f6020820190508181035f8301526139e2816139a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a43602683612f8e565b9150613a4e826139e9565b604082019050919050565b5f6020820190508181035f830152613a7081613a37565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aab602083612f8e565b9150613ab682613a77565b602082019050919050565b5f6020820190508181035f830152613ad881613a9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613b39602483612f8e565b9150613b4482613adf565b604082019050919050565b5f6020820190508181035f830152613b6681613b2d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613bc7602283612f8e565b9150613bd282613b6d565b604082019050919050565b5f6020820190508181035f830152613bf481613bbb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c55602583612f8e565b9150613c6082613bfb565b604082019050919050565b5f6020820190508181035f830152613c8281613c49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ce3602383612f8e565b9150613cee82613c89565b604082019050919050565b5f6020820190508181035f830152613d1081613cd7565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613d4b601683612f8e565b9150613d5682613d17565b602082019050919050565b5f6020820190508181035f830152613d7881613d3f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c5f8201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b5f613dff604983612f8e565b9150613e0a82613d7f565b606082019050919050565b5f6020820190508181035f830152613e2c81613df3565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e2e0000000000000000000000000000000000602082015250565b5f613e8d602f83612f8e565b9150613e9882613e33565b604082019050919050565b5f6020820190508181035f830152613eba81613e81565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613ef5601383612f8e565b9150613f0082613ec1565b602082019050919050565b5f6020820190508181035f830152613f2281613ee9565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e2e00000000000000000000000000000000602082015250565b5f613f83603083612f8e565b9150613f8e82613f29565b604082019050919050565b5f6020820190508181035f830152613fb081613f77565b9050919050565b5f613fc182612ece565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ff357613ff26132cb565b5b600182019050919050565b5f61400882612ece565b915061401383612ece565b925082820390508181111561402b5761402a6132cb565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61408b602683612f8e565b915061409682614031565b604082019050919050565b5f6020820190508181035f8301526140b88161407f565b9050919050565b5f81905092915050565b50565b5f6140d75f836140bf565b91506140e2826140c9565b5f82019050919050565b5f6140f6826140cc565b9150819050919050565b7f4661696c656420746f2073656e642045544820746f206f7065726174696f6e735f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f61415a602783612f8e565b915061416582614100565b604082019050919050565b5f6020820190508181035f8301526141878161414e565b9050919050565b7f4661696c656420746f2073656e642045544820746f207374616b696e672077615f8201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b5f6141e8602483612f8e565b91506141f38261418e565b604082019050919050565b5f6020820190508181035f830152614215816141dc565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061428481613014565b92915050565b5f6020828403121561429f5761429e612eca565b5b5f6142ac84828501614276565b91505092915050565b5f819050919050565b5f6142d86142d36142ce846142b5565b6130af565b612ece565b9050919050565b6142e8816142be565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61432081612f4b565b82525050565b5f6143318383614317565b60208301905092915050565b5f602082019050919050565b5f614353826142ee565b61435d81856142f8565b935061436883614308565b805f5b8381101561439857815161437f8882614326565b975061438a8361433d565b92505060018101905061436b565b5085935050505092915050565b5f60a0820190506143b85f830188613123565b6143c560208301876142df565b81810360408301526143d78186614349565b90506143e66060830185612f5c565b6143f36080830184613123565b969550505050505056fea264697066735822122019f78df2cc58c0a02f2ab9a4e3e70a3371c5550b2f1e9fe292811961b911c50b64736f6c634300081a0033

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

0000000000000000000000002aba95d284aea97e0a83ed837ea4fd8186304b0f

-----Decoded View---------------
Arg [0] : _operationsWallet (address): 0x2abA95d284aEA97E0a83Ed837Ea4Fd8186304B0F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002aba95d284aea97e0a83ed837ea4fd8186304b0f


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.