ETH Price: $3,410.23 (+0.75%)
Gas: 3 Gwei

Token

Bruce MemeCoin (Bruce)
 

Overview

Max Total Supply

1,000,000,000 Bruce

Holders

121

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000420210822 Bruce

Value
$0.00
0x6fa1974371a909f7daf04f394ea5c9781abe18f0
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:
BruceMemeCoin

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

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

BBBBBB      RRRRRR      UUU   UUU    CCCCCCC     EEEEEEEE
BB    BB    RR    RR    UUU   UUU    CC          EE      
BB    BB    RR    RR    UUU   UUU    CC          EE      
BBBBBB      RRRRRR      UUU   UUU    CC          EEEEE   
BB    BB    RR  RR      UUU   UUU    CC          EE      
BB    BB    RR   RR     UUU   UUU    CC          EE      
BBBBBB      RR    RR     UUUUUUU      CCCCCCC     EEEEEEEE

Socials:
https://t.me/BruceMemecoin
https://x.com/BruceMemecoin
https://brucememe.com


*/


// SPDX-License-Identifier: MIT
pragma solidity 0.8.25;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

contract BruceMemeCoin is Context, ERC20, Ownable {
    using SafeERC20 for IERC20;
    using Address for address;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    uint256 public buyTaxes;
    uint256 public sellTaxes;

    mapping(address => bool) public pair;
    mapping (address => bool) public _isExcludedFromFees;

    uint256 private start;
    uint256 private end;

    uint256 public swapTokensAtAmount;
    uint256 public initialDeploymentTime;

    bool public swapping;
    bool public taxDisabled;

    uint256 private maxWalletTimer;
    uint256 private started;
    uint256 private maxWallet;
    uint256 private _supply;

    address payable teamWallet;

    event TaxesSent(
        address taxWallet,
        uint256 ETHAmount
    );

    event TaxesReduce(
        uint256 oldBuyTax,
        uint256 oldSellTax,
        uint256 newBuyTax,
        uint256 newSellTax
    );

    event TradingPairAdded(
        address indexed newPair
    );

    constructor(address payable _teamWallet, uint256 _maxWalletTimer) ERC20("Bruce MemeCoin", "Bruce") Ownable(msg.sender) {

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Router address for Uniswap Mainnet
        uniswapV2Pair = address(0);

        teamWallet = _teamWallet;
        _supply = 1 * 10 ** 9 * 10 ** decimals();
        buyTaxes = 300;
        sellTaxes = 300;
        maxWallet = ((_supply * 95) / 10000); // Max wallet of 0.95% of total supply
        maxWalletTimer = 30 minutes;
        swapTokensAtAmount = ((_supply * 25) / 10000); // Swap 0.25% of total supply
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[owner()] = true;

        _mint(owner(), _supply);
    }

    receive() external payable {

  	}
    
    function addPair(address toPair) public onlyOwner {
        
        uniswapV2Pair = toPair;
        start = block.number;
        initialDeploymentTime = block.timestamp;
        pair[toPair] = true;

        emit TradingPairAdded(toPair);
    }

    function checkTaxes() private {
        uint256 swapTime = block.timestamp;
        uint256 _buyTaxes = buyTaxes;
        uint256 _sellTaxes = sellTaxes;

        if(swapTime > initialDeploymentTime + 30 minutes) {
            buyTaxes = 0;
            sellTaxes = 0;
            taxDisabled = true;

            emit TaxesReduce(_buyTaxes, _sellTaxes, buyTaxes, sellTaxes);
        } else if(swapTime > initialDeploymentTime + 20 minutes) {
            buyTaxes = 100;
            sellTaxes = 100;

            emit TaxesReduce(_buyTaxes, _sellTaxes, buyTaxes, sellTaxes);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

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

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {

        if(uniswapV2Pair != address(0) && !taxDisabled && to != owner()) {
            checkTaxes();
        }
        
        if(uniswapV2Pair == address(0) && from != owner() && to != owner()) {
            revert("Trading is not yet active");
        }

        if((block.timestamp < (initialDeploymentTime + maxWalletTimer)) && to != address(0) && to != uniswapV2Pair && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) {
            uint256 balance = balanceOf(to);
            require(balance + amount <= maxWallet, "Transfer amount exceeds maximum wallet");
        }

		uint256 contractTokenBalance = (balanceOf(address(this)));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(taxDisabled && contractTokenBalance > 0) {
            canSwap = true;
        }
		
		if(canSwap && !swapping && pair[to] && from != address(uniswapV2Router) && from != owner() && to != owner() && !_isExcludedFromFees[to] && !_isExcludedFromFees[from]) {

		   contractTokenBalance = contractTokenBalance > swapTokensAtAmount ? swapTokensAtAmount : contractTokenBalance;
            swapping = true;
                
            swapTokensForEth(contractTokenBalance);

            uint256 taxAmount = address(this).balance;
            (bool success, ) = address(teamWallet).call{value: taxAmount}("");
            require(success, "Failed to send marketing fee");

            emit TaxesSent(address(teamWallet), taxAmount);

            swapping = false;
        }

        bool takeFee = !swapping;

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

        else if(!pair[to] && !pair[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            takeFee = false;
            super._update(from, to, amount);
        }

        if(takeFee) {

            uint256 BuyFees = ((amount * buyTaxes) / 1000);
            uint256 SellFees = ((amount * sellTaxes) / 1000);

            // if sell
            if(pair[to] && sellTaxes > 0) {
                amount -= SellFees;
                
                super._update(from, address(this), SellFees);
                super._update(from, to, amount);
            }

            // if buy transfer
            else if(pair[from] && buyTaxes > 0) {
                amount -= BuyFees;

                super._update(from, address(this), BuyFees);
                super._update(from, to, amount);
                }

            else {
                super._update(from, to, amount);
            }
        }
    }

    function sellRemainingTaxTokens() external onlyOwner {
        require(buyTaxes == 0 && sellTaxes == 0, "Tax period not yet over");

        uint256 amount = balanceOf(address(this));
        swapTokensForEth(amount);

        (bool success, ) = address(teamWallet).call{value: address(this).balance}("");
            require(success, "Failed to send marketing fee");
    }

    function sellPortionOfContractTokens(uint256 amount) external onlyOwner {
        require(buyTaxes == 0 && sellTaxes == 0, "Tax period not yet over");

        amount *= 10**decimals();
        swapTokensForEth(amount);

        (bool success, ) = address(teamWallet).call{value: address(this).balance}("");
            require(success, "Failed to send marketing fee");
    }
}

File 2 of 13 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 3 of 13 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

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

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

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

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

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

pragma solidity ^0.8.20;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_teamWallet","type":"address"},{"internalType":"uint256","name":"_maxWalletTimer","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldBuyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldSellTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"TaxesReduce","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"taxWallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"TaxesSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPair","type":"address"}],"name":"TradingPairAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toPair","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialDeploymentTime","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":[{"internalType":"address","name":"","type":"address"}],"name":"pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sellPortionOfContractTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellRemainingTaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f80fd5b50604051614fc0380380614fc08339818101604052810190610031919061181b565b336040518060400160405280600e81526020017f4272756365204d656d65436f696e0000000000000000000000000000000000008152506040518060400160405280600581526020017f427275636500000000000000000000000000000000000000000000000000000081525081600390816100ad9190611a8a565b5080600490816100bd9190611a8a565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610130575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101279190611b79565b60405180910390fd5b61013f8161037f60201b60201c565b50737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061022261044260201b60201c565b600a61022e9190611cfa565b633b9aca0061023d9190611d44565b60148190555061012c60088190555061012c600981905550612710605f6014546102679190611d44565b6102719190611db2565b60138190555061070860118190555061271060196014546102929190611d44565b61029c9190611db2565b600e819055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f61030a61044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555061037861036a61044a60201b60201c565b60145461047260201b60201c565b5050612288565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104e2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016104d99190611b79565b60405180910390fd5b6104f35f83836104f760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156105615750601060019054906101000a900460ff16155b80156105a6575061057661044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156105ba576105b961100460201b60201c565b5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801561064f575061061f61044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610694575061066461044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb90611e3c565b60405180910390fd5b601154600f546106e49190611e5a565b4210801561071e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610777575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156107ca5750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561081d5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610886575f6108328361110960201b60201c565b905060135482826108439190611e5a565b1115610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90611efd565b60405180910390fd5b505b5f6108963061110960201b60201c565b90505f600e548210159050601060019054906101000a900460ff1680156108bc57505f82115b156108c657600190505b8080156108df575060105f9054906101000a900460ff16155b80156109315750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561098a575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156109cf575061099f61044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015610a1457506109e461044a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015610a675750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610aba5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610c4057600e548211610ace5781610ad2565b600e545b9150600160105f6101000a81548160ff021916908315150217905550610afd8261114e60201b60201c565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610b4790611f48565b5f6040518083038185875af1925050503d805f8114610b81576040519150601f19603f3d011682016040523d82523d5f602084013e610b86565b606091505b5050905080610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190611fa6565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051610c1c929190611fd3565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610cee5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80610d055750601060019054906101000a900460ff165b15610d23575f9050610d1e86868661138a60201b60201c565b610e82565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015610dc15750600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610e145750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610e675750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610e81575f9050610e8086868661138a60201b60201c565b5b5b8015610ffc575f6103e860085486610e9a9190611d44565b610ea49190611db2565b90505f6103e860095487610eb89190611d44565b610ec29190611db2565b9050600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610f1b57505f600954115b15610f55578086610f2c9190611ffa565b9550610f3f88308361138a60201b60201c565b610f5088888861138a60201b60201c565b610ff9565b600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015610fac57505f600854115b15610fe6578186610fbd9190611ffa565b9550610fd088308461138a60201b60201c565b610fe188888861138a60201b60201c565b610ff8565b610ff788888861138a60201b60201c565b5b5b50505b505050505050565b5f4290505f60085490505f6009549050610708600f546110249190611e5a565b83111561109a575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de697242828260085460095460405161108d949392919061202d565b60405180910390a1611104565b6104b0600f546110aa9190611e5a565b83111561110357606460088190555060646009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de69724282826008546009546040516110fa949392919061202d565b60405180910390a15b5b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f600267ffffffffffffffff81111561116a57611169611863565b5b6040519080825280602002602001820160405280156111985781602001602082028036833780820191505090505b50905030815f815181106111af576111ae612070565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611253573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127791906120c7565b8160018151811061128b5761128a612070565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506112f73060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115a360201b60201c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016113599594939291906121e2565b5f604051808303815f87803b158015611370575f80fd5b505af1158015611382573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da578060025f8282546113ce9190611e5a565b925050819055506114a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611463578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161145a9392919061223a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ef578060025f8282540392505081905550611539565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611596919061226f565b60405180910390a3505050565b6115b683838360016115bb60201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361162b575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016116229190611b79565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361169b575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016116929190611b79565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611784578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161177b919061226f565b60405180910390a35b50505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117b78261178e565b9050919050565b6117c7816117ad565b81146117d1575f80fd5b50565b5f815190506117e2816117be565b92915050565b5f819050919050565b6117fa816117e8565b8114611804575f80fd5b50565b5f81519050611815816117f1565b92915050565b5f80604083850312156118315761183061178a565b5b5f61183e858286016117d4565b925050602061184f85828601611807565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118d457607f821691505b6020821081036118e7576118e6611890565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026119497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261190e565b611953868361190e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61198e611989611984846117e8565b61196b565b6117e8565b9050919050565b5f819050919050565b6119a783611974565b6119bb6119b382611995565b84845461191a565b825550505050565b5f90565b6119cf6119c3565b6119da81848461199e565b505050565b5b818110156119fd576119f25f826119c7565b6001810190506119e0565b5050565b601f821115611a4257611a13816118ed565b611a1c846118ff565b81016020851015611a2b578190505b611a3f611a37856118ff565b8301826119df565b50505b505050565b5f82821c905092915050565b5f611a625f1984600802611a47565b1980831691505092915050565b5f611a7a8383611a53565b9150826002028217905092915050565b611a9382611859565b67ffffffffffffffff811115611aac57611aab611863565b5b611ab682546118bd565b611ac1828285611a01565b5f60209050601f831160018114611af2575f8415611ae0578287015190505b611aea8582611a6f565b865550611b51565b601f198416611b00866118ed565b5f5b82811015611b2757848901518255600182019150602085019450602081019050611b02565b86831015611b445784890151611b40601f891682611a53565b8355505b6001600288020188555050505b505050505050565b5f611b638261178e565b9050919050565b611b7381611b59565b82525050565b5f602082019050611b8c5f830184611b6a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115611c1457808604811115611bf057611bef611b92565b5b6001851615611bff5780820291505b8081029050611c0d85611bbf565b9450611bd4565b94509492505050565b5f82611c2c5760019050611ce7565b81611c39575f9050611ce7565b8160018114611c4f5760028114611c5957611c88565b6001915050611ce7565b60ff841115611c6b57611c6a611b92565b5b8360020a915084821115611c8257611c81611b92565b5b50611ce7565b5060208310610133831016604e8410600b8410161715611cbd5782820a905083811115611cb857611cb7611b92565b5b611ce7565b611cca8484846001611bcb565b92509050818404811115611ce157611ce0611b92565b5b81810290505b9392505050565b5f60ff82169050919050565b5f611d04826117e8565b9150611d0f83611cee565b9250611d3c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611c1d565b905092915050565b5f611d4e826117e8565b9150611d59836117e8565b9250828202611d67816117e8565b91508282048414831517611d7e57611d7d611b92565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611dbc826117e8565b9150611dc7836117e8565b925082611dd757611dd6611d85565b5b828204905092915050565b5f82825260208201905092915050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f611e26601983611de2565b9150611e3182611df2565b602082019050919050565b5f6020820190508181035f830152611e5381611e1a565b9050919050565b5f611e64826117e8565b9150611e6f836117e8565b9250828201905080821115611e8757611e86611b92565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f611ee7602683611de2565b9150611ef282611e8d565b604082019050919050565b5f6020820190508181035f830152611f1481611edb565b9050919050565b5f81905092915050565b50565b5f611f335f83611f1b565b9150611f3e82611f25565b5f82019050919050565b5f611f5282611f28565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f611f90601c83611de2565b9150611f9b82611f5c565b602082019050919050565b5f6020820190508181035f830152611fbd81611f84565b9050919050565b611fcd816117e8565b82525050565b5f604082019050611fe65f830185611b6a565b611ff36020830184611fc4565b9392505050565b5f612004826117e8565b915061200f836117e8565b925082820390508181111561202757612026611b92565b5b92915050565b5f6080820190506120405f830187611fc4565b61204d6020830186611fc4565b61205a6040830185611fc4565b6120676060830184611fc4565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6120a681611b59565b81146120b0575f80fd5b50565b5f815190506120c18161209d565b92915050565b5f602082840312156120dc576120db61178a565b5b5f6120e9848285016120b3565b91505092915050565b5f819050919050565b5f61211561211061210b846120f2565b61196b565b6117e8565b9050919050565b612125816120fb565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61215d81611b59565b82525050565b5f61216e8383612154565b60208301905092915050565b5f602082019050919050565b5f6121908261212b565b61219a8185612135565b93506121a583612145565b805f5b838110156121d55781516121bc8882612163565b97506121c78361217a565b9250506001810190506121a8565b5085935050505092915050565b5f60a0820190506121f55f830188611fc4565b612202602083018761211c565b81810360408301526122148186612186565b90506122236060830185611b6a565b6122306080830184611fc4565b9695505050505050565b5f60608201905061224d5f830186611b6a565b61225a6020830185611fc4565b6122676040830184611fc4565b949350505050565b5f6020820190506122825f830184611fc4565b92915050565b612d2b806122955f395ff3fe608060405260043610610169575f3560e01c80637fb992f7116100d0578063b9eadf3c11610089578063e0bf7fd111610063578063e0bf7fd114610526578063e2f4560514610562578063f2fde38b1461058c578063f66895a3146105b457610170565b8063b9eadf3c14610498578063c2b7bbb6146104c2578063dd62ed3e146104ea57610170565b80637fb992f714610378578063864701a5146103b45780638da5cb5b146103de57806395d89b41146104085780639a07579a14610432578063a9059cbb1461045c57610170565b806323b872dd1161012257806323b872dd1461026e578063313ce567146102aa57806349bd5a5e146102d457806370a08231146102fe578063715018a61461033a5780637817516e1461035057610170565b806306fdde0314610174578063095ea7b31461019e5780631694505e146101da5780631732cded1461020457806318160ddd1461022e5780631b555cf01461025857610170565b3661017057005b5f80fd5b34801561017f575f80fd5b506101886105de565b6040516101959190612269565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf919061231a565b61066e565b6040516101d19190612372565b60405180910390f35b3480156101e5575f80fd5b506101ee610690565b6040516101fb91906123e6565b60405180910390f35b34801561020f575f80fd5b506102186106b5565b6040516102259190612372565b60405180910390f35b348015610239575f80fd5b506102426106c7565b60405161024f919061240e565b60405180910390f35b348015610263575f80fd5b5061026c6106d0565b005b348015610279575f80fd5b50610294600480360381019061028f9190612427565b61080b565b6040516102a19190612372565b60405180910390f35b3480156102b5575f80fd5b506102be610839565b6040516102cb9190612492565b60405180910390f35b3480156102df575f80fd5b506102e8610841565b6040516102f591906124ba565b60405180910390f35b348015610309575f80fd5b50610324600480360381019061031f91906124d3565b610866565b604051610331919061240e565b60405180910390f35b348015610345575f80fd5b5061034e6108ab565b005b34801561035b575f80fd5b50610376600480360381019061037191906124fe565b6108be565b005b348015610383575f80fd5b5061039e600480360381019061039991906124d3565b610a0e565b6040516103ab9190612372565b60405180910390f35b3480156103bf575f80fd5b506103c8610a2b565b6040516103d5919061240e565b60405180910390f35b3480156103e9575f80fd5b506103f2610a31565b6040516103ff91906124ba565b60405180910390f35b348015610413575f80fd5b5061041c610a59565b6040516104299190612269565b60405180910390f35b34801561043d575f80fd5b50610446610ae9565b6040516104539190612372565b60405180910390f35b348015610467575f80fd5b50610482600480360381019061047d919061231a565b610afc565b60405161048f9190612372565b60405180910390f35b3480156104a3575f80fd5b506104ac610b1e565b6040516104b9919061240e565b60405180910390f35b3480156104cd575f80fd5b506104e860048036038101906104e391906124d3565b610b24565b005b3480156104f5575f80fd5b50610510600480360381019061050b9190612529565b610c15565b60405161051d919061240e565b60405180910390f35b348015610531575f80fd5b5061054c600480360381019061054791906124d3565b610c97565b6040516105599190612372565b60405180910390f35b34801561056d575f80fd5b50610576610cb4565b604051610583919061240e565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad91906124d3565b610cba565b005b3480156105bf575f80fd5b506105c8610d3e565b6040516105d5919061240e565b60405180910390f35b6060600380546105ed90612594565b80601f016020809104026020016040519081016040528092919081815260200182805461061990612594565b80156106645780601f1061063b57610100808354040283529160200191610664565b820191905f5260205f20905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b5f80610678610d44565b9050610685818585610d4b565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105f9054906101000a900460ff1681565b5f600254905090565b6106d8610d5d565b5f6008541480156106ea57505f600954145b610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061260e565b60405180910390fd5b5f61073330610866565b905061073e81610de4565b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161078490612659565b5f6040518083038185875af1925050503d805f81146107be576040519150601f19603f3d011682016040523d82523d5f602084013e6107c3565b606091505b5050905080610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906126b7565b60405180910390fd5b5050565b5f80610815610d44565b905061082285828561101a565b61082d8585856110ac565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108b3610d5d565b6108bc5f61119c565b565b6108c6610d5d565b5f6008541480156108d857505f600954145b610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e9061260e565b60405180910390fd5b61091f610839565b600a61092b9190612831565b81610936919061287b565b905061094181610de4565b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161098790612659565b5f6040518083038185875af1925050503d805f81146109c1576040519150601f19603f3d011682016040523d82523d5f602084013e6109c6565b606091505b5050905080610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a01906126b7565b60405180910390fd5b5050565b600a602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6890612594565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490612594565b8015610adf5780601f10610ab657610100808354040283529160200191610adf565b820191905f5260205f20905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b5f80610b06610d44565b9050610b138185856110ac565b600191505092915050565b600f5481565b610b2c610d5d565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600c8190555042600f819055506001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e960405160405180910390a250565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b610cc2610d5d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d32575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d2991906124ba565b60405180910390fd5b610d3b8161119c565b50565b60095481565b5f33905090565b610d58838383600161125f565b505050565b610d65610d44565b73ffffffffffffffffffffffffffffffffffffffff16610d83610a31565b73ffffffffffffffffffffffffffffffffffffffff1614610de257610da6610d44565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dd991906124ba565b60405180910390fd5b565b5f600267ffffffffffffffff811115610e0057610dff6128bc565b5b604051908082528060200260200182016040528015610e2e5781602001602082028036833780820191505090505b50905030815f81518110610e4557610e446128e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d919061292a565b81600181518110610f2157610f206128e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610f873060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d4b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401610fe9959493929190612a45565b5f604051808303815f87803b158015611000575f80fd5b505af1158015611012573d5f803e3d5ffd5b505050505050565b5f6110258484610c15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a65781811015611097578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161108e93929190612a9d565b60405180910390fd5b6110a584848484035f61125f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161111391906124ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161118391906124ba565b60405180910390fd5b61119783838361142e565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112cf575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112c691906124ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133f575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161133691906124ba565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611428578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161141f919061240e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156114985750601060019054906101000a900460ff16155b80156114d757506114a7610a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156114e5576114e4611edb565b5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156115745750611544610a31565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115b35750611583610a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90612b1c565b60405180910390fd5b601154600f546116039190612b3a565b4210801561163d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611696575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116e95750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561173c5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561179f575f61174b83610866565b9050601354828261175c9190612b3a565b111561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490612bdd565b60405180910390fd5b505b5f6117a930610866565b90505f600e548210159050601060019054906101000a900460ff1680156117cf57505f82115b156117d957600190505b8080156117f2575060105f9054906101000a900460ff16155b80156118445750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561189d575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118dc57506118ac610a31565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561191b57506118eb610a31565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561196e5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156119c15750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b4157600e5482116119d557816119d9565b600e545b9150600160105f6101000a81548160ff0219169083151502179055506119fe82610de4565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611a4890612659565b5f6040518083038185875af1925050503d805f8114611a82576040519150601f19603f3d011682016040523d82523d5f602084013e611a87565b606091505b5050905080611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac2906126b7565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611b1d929190612bfb565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611bef5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611c065750601060019054906101000a900460ff165b15611c1e575f9050611c19868686611fe0565b611d77565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611cbc5750600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611d0f5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611d625750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d76575f9050611d75868686611fe0565b5b5b8015611ed3575f6103e860085486611d8f919061287b565b611d999190612c4f565b90505f6103e860095487611dad919061287b565b611db79190612c4f565b9050600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e1057505f600954115b15611e3e578086611e219190612c7f565b9550611e2e883083611fe0565b611e39888888611fe0565b611ed0565b600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e9557505f600854115b15611ec3578186611ea69190612c7f565b9550611eb3883084611fe0565b611ebe888888611fe0565b611ecf565b611ece888888611fe0565b5b5b50505b505050505050565b5f4290505f60085490505f6009549050610708600f54611efb9190612b3a565b831115611f71575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611f649493929190612cb2565b60405180910390a1611fdb565b6104b0600f54611f819190612b3a565b831115611fda57606460088190555060646009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611fd19493929190612cb2565b60405180910390a15b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612030578060025f8282546120249190612b3a565b925050819055506120fe565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120b9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016120b093929190612a9d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612145578060025f828254039250508190555061218f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121ec919061240e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61223b826121f9565b6122458185612203565b9350612255818560208601612213565b61225e81612221565b840191505092915050565b5f6020820190508181035f8301526122818184612231565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122b68261228d565b9050919050565b6122c6816122ac565b81146122d0575f80fd5b50565b5f813590506122e1816122bd565b92915050565b5f819050919050565b6122f9816122e7565b8114612303575f80fd5b50565b5f81359050612314816122f0565b92915050565b5f80604083850312156123305761232f612289565b5b5f61233d858286016122d3565b925050602061234e85828601612306565b9150509250929050565b5f8115159050919050565b61236c81612358565b82525050565b5f6020820190506123855f830184612363565b92915050565b5f819050919050565b5f6123ae6123a96123a48461228d565b61238b565b61228d565b9050919050565b5f6123bf82612394565b9050919050565b5f6123d0826123b5565b9050919050565b6123e0816123c6565b82525050565b5f6020820190506123f95f8301846123d7565b92915050565b612408816122e7565b82525050565b5f6020820190506124215f8301846123ff565b92915050565b5f805f6060848603121561243e5761243d612289565b5b5f61244b868287016122d3565b935050602061245c868287016122d3565b925050604061246d86828701612306565b9150509250925092565b5f60ff82169050919050565b61248c81612477565b82525050565b5f6020820190506124a55f830184612483565b92915050565b6124b4816122ac565b82525050565b5f6020820190506124cd5f8301846124ab565b92915050565b5f602082840312156124e8576124e7612289565b5b5f6124f5848285016122d3565b91505092915050565b5f6020828403121561251357612512612289565b5b5f61252084828501612306565b91505092915050565b5f806040838503121561253f5761253e612289565b5b5f61254c858286016122d3565b925050602061255d858286016122d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125ab57607f821691505b6020821081036125be576125bd612567565b5b50919050565b7f54617820706572696f64206e6f7420796574206f7665720000000000000000005f82015250565b5f6125f8601783612203565b9150612603826125c4565b602082019050919050565b5f6020820190508181035f830152612625816125ec565b9050919050565b5f81905092915050565b50565b5f6126445f8361262c565b915061264f82612636565b5f82019050919050565b5f61266382612639565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f6126a1601c83612203565b91506126ac8261266d565b602082019050919050565b5f6020820190508181035f8301526126ce81612695565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561275757808604811115612733576127326126d5565b5b60018516156127425780820291505b808102905061275085612702565b9450612717565b94509492505050565b5f8261276f576001905061282a565b8161277c575f905061282a565b8160018114612792576002811461279c576127cb565b600191505061282a565b60ff8411156127ae576127ad6126d5565b5b8360020a9150848211156127c5576127c46126d5565b5b5061282a565b5060208310610133831016604e8410600b84101617156128005782820a9050838111156127fb576127fa6126d5565b5b61282a565b61280d848484600161270e565b92509050818404811115612824576128236126d5565b5b81810290505b9392505050565b5f61283b826122e7565b915061284683612477565b92506128737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612760565b905092915050565b5f612885826122e7565b9150612890836122e7565b925082820261289e816122e7565b915082820484148315176128b5576128b46126d5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612924816122bd565b92915050565b5f6020828403121561293f5761293e612289565b5b5f61294c84828501612916565b91505092915050565b5f819050919050565b5f61297861297361296e84612955565b61238b565b6122e7565b9050919050565b6129888161295e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129c0816122ac565b82525050565b5f6129d183836129b7565b60208301905092915050565b5f602082019050919050565b5f6129f38261298e565b6129fd8185612998565b9350612a08836129a8565b805f5b83811015612a38578151612a1f88826129c6565b9750612a2a836129dd565b925050600181019050612a0b565b5085935050505092915050565b5f60a082019050612a585f8301886123ff565b612a65602083018761297f565b8181036040830152612a7781866129e9565b9050612a8660608301856124ab565b612a9360808301846123ff565b9695505050505050565b5f606082019050612ab05f8301866124ab565b612abd60208301856123ff565b612aca60408301846123ff565b949350505050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f612b06601983612203565b9150612b1182612ad2565b602082019050919050565b5f6020820190508181035f830152612b3381612afa565b9050919050565b5f612b44826122e7565b9150612b4f836122e7565b9250828201905080821115612b6757612b666126d5565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f612bc7602683612203565b9150612bd282612b6d565b604082019050919050565b5f6020820190508181035f830152612bf481612bbb565b9050919050565b5f604082019050612c0e5f8301856124ab565b612c1b60208301846123ff565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c59826122e7565b9150612c64836122e7565b925082612c7457612c73612c22565b5b828204905092915050565b5f612c89826122e7565b9150612c94836122e7565b9250828203905081811115612cac57612cab6126d5565b5b92915050565b5f608082019050612cc55f8301876123ff565b612cd260208301866123ff565b612cdf60408301856123ff565b612cec60608301846123ff565b9594505050505056fea2646970667358221220878c23ffeb7322606f2bdcd1042d81e78c42b72e69f7b4b909ec42eb1ac5073564736f6c6343000819003300000000000000000000000089feb73c647cc540780909f82a58e856cd3d497a0000000000000000000000000000000000000000000000000000000000000708

Deployed Bytecode

0x608060405260043610610169575f3560e01c80637fb992f7116100d0578063b9eadf3c11610089578063e0bf7fd111610063578063e0bf7fd114610526578063e2f4560514610562578063f2fde38b1461058c578063f66895a3146105b457610170565b8063b9eadf3c14610498578063c2b7bbb6146104c2578063dd62ed3e146104ea57610170565b80637fb992f714610378578063864701a5146103b45780638da5cb5b146103de57806395d89b41146104085780639a07579a14610432578063a9059cbb1461045c57610170565b806323b872dd1161012257806323b872dd1461026e578063313ce567146102aa57806349bd5a5e146102d457806370a08231146102fe578063715018a61461033a5780637817516e1461035057610170565b806306fdde0314610174578063095ea7b31461019e5780631694505e146101da5780631732cded1461020457806318160ddd1461022e5780631b555cf01461025857610170565b3661017057005b5f80fd5b34801561017f575f80fd5b506101886105de565b6040516101959190612269565b60405180910390f35b3480156101a9575f80fd5b506101c460048036038101906101bf919061231a565b61066e565b6040516101d19190612372565b60405180910390f35b3480156101e5575f80fd5b506101ee610690565b6040516101fb91906123e6565b60405180910390f35b34801561020f575f80fd5b506102186106b5565b6040516102259190612372565b60405180910390f35b348015610239575f80fd5b506102426106c7565b60405161024f919061240e565b60405180910390f35b348015610263575f80fd5b5061026c6106d0565b005b348015610279575f80fd5b50610294600480360381019061028f9190612427565b61080b565b6040516102a19190612372565b60405180910390f35b3480156102b5575f80fd5b506102be610839565b6040516102cb9190612492565b60405180910390f35b3480156102df575f80fd5b506102e8610841565b6040516102f591906124ba565b60405180910390f35b348015610309575f80fd5b50610324600480360381019061031f91906124d3565b610866565b604051610331919061240e565b60405180910390f35b348015610345575f80fd5b5061034e6108ab565b005b34801561035b575f80fd5b50610376600480360381019061037191906124fe565b6108be565b005b348015610383575f80fd5b5061039e600480360381019061039991906124d3565b610a0e565b6040516103ab9190612372565b60405180910390f35b3480156103bf575f80fd5b506103c8610a2b565b6040516103d5919061240e565b60405180910390f35b3480156103e9575f80fd5b506103f2610a31565b6040516103ff91906124ba565b60405180910390f35b348015610413575f80fd5b5061041c610a59565b6040516104299190612269565b60405180910390f35b34801561043d575f80fd5b50610446610ae9565b6040516104539190612372565b60405180910390f35b348015610467575f80fd5b50610482600480360381019061047d919061231a565b610afc565b60405161048f9190612372565b60405180910390f35b3480156104a3575f80fd5b506104ac610b1e565b6040516104b9919061240e565b60405180910390f35b3480156104cd575f80fd5b506104e860048036038101906104e391906124d3565b610b24565b005b3480156104f5575f80fd5b50610510600480360381019061050b9190612529565b610c15565b60405161051d919061240e565b60405180910390f35b348015610531575f80fd5b5061054c600480360381019061054791906124d3565b610c97565b6040516105599190612372565b60405180910390f35b34801561056d575f80fd5b50610576610cb4565b604051610583919061240e565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad91906124d3565b610cba565b005b3480156105bf575f80fd5b506105c8610d3e565b6040516105d5919061240e565b60405180910390f35b6060600380546105ed90612594565b80601f016020809104026020016040519081016040528092919081815260200182805461061990612594565b80156106645780601f1061063b57610100808354040283529160200191610664565b820191905f5260205f20905b81548152906001019060200180831161064757829003601f168201915b5050505050905090565b5f80610678610d44565b9050610685818585610d4b565b600191505092915050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105f9054906101000a900460ff1681565b5f600254905090565b6106d8610d5d565b5f6008541480156106ea57505f600954145b610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061260e565b60405180910390fd5b5f61073330610866565b905061073e81610de4565b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161078490612659565b5f6040518083038185875af1925050503d805f81146107be576040519150601f19603f3d011682016040523d82523d5f602084013e6107c3565b606091505b5050905080610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe906126b7565b60405180910390fd5b5050565b5f80610815610d44565b905061082285828561101a565b61082d8585856110ac565b60019150509392505050565b5f6012905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108b3610d5d565b6108bc5f61119c565b565b6108c6610d5d565b5f6008541480156108d857505f600954145b610917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090e9061260e565b60405180910390fd5b61091f610839565b600a61092b9190612831565b81610936919061287b565b905061094181610de4565b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161098790612659565b5f6040518083038185875af1925050503d805f81146109c1576040519150601f19603f3d011682016040523d82523d5f602084013e6109c6565b606091505b5050905080610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a01906126b7565b60405180910390fd5b5050565b600a602052805f5260405f205f915054906101000a900460ff1681565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6890612594565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9490612594565b8015610adf5780601f10610ab657610100808354040283529160200191610adf565b820191905f5260205f20905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b5f80610b06610d44565b9050610b138185856110ac565b600191505092915050565b600f5481565b610b2c610d5d565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600c8190555042600f819055506001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8b100428088c24d83fb53c36f9e0d15fbacd418536208a138837b7b90d9ae2e960405160405180910390a250565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b600e5481565b610cc2610d5d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d32575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d2991906124ba565b60405180910390fd5b610d3b8161119c565b50565b60095481565b5f33905090565b610d58838383600161125f565b505050565b610d65610d44565b73ffffffffffffffffffffffffffffffffffffffff16610d83610a31565b73ffffffffffffffffffffffffffffffffffffffff1614610de257610da6610d44565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610dd991906124ba565b60405180910390fd5b565b5f600267ffffffffffffffff811115610e0057610dff6128bc565b5b604051908082528060200260200182016040528015610e2e5781602001602082028036833780820191505090505b50905030815f81518110610e4557610e446128e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0d919061292a565b81600181518110610f2157610f206128e9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610f873060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610d4b565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401610fe9959493929190612a45565b5f604051808303815f87803b158015611000575f80fd5b505af1158015611012573d5f803e3d5ffd5b505050505050565b5f6110258484610c15565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a65781811015611097578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161108e93929190612a9d565b60405180910390fd5b6110a584848484035f61125f565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161111391906124ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161118391906124ba565b60405180910390fd5b61119783838361142e565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036112cf575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016112c691906124ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133f575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161133691906124ba565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611428578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161141f919061240e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156114985750601060019054906101000a900460ff16155b80156114d757506114a7610a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156114e5576114e4611edb565b5b5f73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156115745750611544610a31565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115b35750611583610a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90612b1c565b60405180910390fd5b601154600f546116039190612b3a565b4210801561163d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611696575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116e95750600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561173c5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561179f575f61174b83610866565b9050601354828261175c9190612b3a565b111561179d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179490612bdd565b60405180910390fd5b505b5f6117a930610866565b90505f600e548210159050601060019054906101000a900460ff1680156117cf57505f82115b156117d957600190505b8080156117f2575060105f9054906101000a900460ff16155b80156118445750600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b801561189d575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118dc57506118ac610a31565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561191b57506118eb610a31565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561196e5750600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156119c15750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b4157600e5482116119d557816119d9565b600e545b9150600160105f6101000a81548160ff0219169083151502179055506119fe82610de4565b5f4790505f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611a4890612659565b5f6040518083038185875af1925050503d805f8114611a82576040519150601f19603f3d011682016040523d82523d5f602084013e611a87565b606091505b5050905080611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac2906126b7565b60405180910390fd5b7ff72b186c56dd49d50d68088bc3e82e03989c98f3ff7ed48033c45e36cb9fa33360155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683604051611b1d929190612bfb565b60405180910390a15f60105f6101000a81548160ff02191690831515021790555050505b5f60105f9054906101000a900460ff16159050600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611bef5750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611c065750601060019054906101000a900460ff165b15611c1e575f9050611c19868686611fe0565b611d77565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611cbc5750600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611d0f5750600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611d625750600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d76575f9050611d75868686611fe0565b5b5b8015611ed3575f6103e860085486611d8f919061287b565b611d999190612c4f565b90505f6103e860095487611dad919061287b565b611db79190612c4f565b9050600a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e1057505f600954115b15611e3e578086611e219190612c7f565b9550611e2e883083611fe0565b611e39888888611fe0565b611ed0565b600a5f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611e9557505f600854115b15611ec3578186611ea69190612c7f565b9550611eb3883084611fe0565b611ebe888888611fe0565b611ecf565b611ece888888611fe0565b5b5b50505b505050505050565b5f4290505f60085490505f6009549050610708600f54611efb9190612b3a565b831115611f71575f6008819055505f6009819055506001601060016101000a81548160ff0219169083151502179055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611f649493929190612cb2565b60405180910390a1611fdb565b6104b0600f54611f819190612b3a565b831115611fda57606460088190555060646009819055507fe374103a7ac61db3dfd27c2591e4f40a97f60e6c8ea6e8bd58b72fb5de6972428282600854600954604051611fd19493929190612cb2565b60405180910390a15b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612030578060025f8282546120249190612b3a565b925050819055506120fe565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156120b9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016120b093929190612a9d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612145578060025f828254039250508190555061218f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121ec919061240e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61223b826121f9565b6122458185612203565b9350612255818560208601612213565b61225e81612221565b840191505092915050565b5f6020820190508181035f8301526122818184612231565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6122b68261228d565b9050919050565b6122c6816122ac565b81146122d0575f80fd5b50565b5f813590506122e1816122bd565b92915050565b5f819050919050565b6122f9816122e7565b8114612303575f80fd5b50565b5f81359050612314816122f0565b92915050565b5f80604083850312156123305761232f612289565b5b5f61233d858286016122d3565b925050602061234e85828601612306565b9150509250929050565b5f8115159050919050565b61236c81612358565b82525050565b5f6020820190506123855f830184612363565b92915050565b5f819050919050565b5f6123ae6123a96123a48461228d565b61238b565b61228d565b9050919050565b5f6123bf82612394565b9050919050565b5f6123d0826123b5565b9050919050565b6123e0816123c6565b82525050565b5f6020820190506123f95f8301846123d7565b92915050565b612408816122e7565b82525050565b5f6020820190506124215f8301846123ff565b92915050565b5f805f6060848603121561243e5761243d612289565b5b5f61244b868287016122d3565b935050602061245c868287016122d3565b925050604061246d86828701612306565b9150509250925092565b5f60ff82169050919050565b61248c81612477565b82525050565b5f6020820190506124a55f830184612483565b92915050565b6124b4816122ac565b82525050565b5f6020820190506124cd5f8301846124ab565b92915050565b5f602082840312156124e8576124e7612289565b5b5f6124f5848285016122d3565b91505092915050565b5f6020828403121561251357612512612289565b5b5f61252084828501612306565b91505092915050565b5f806040838503121561253f5761253e612289565b5b5f61254c858286016122d3565b925050602061255d858286016122d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125ab57607f821691505b6020821081036125be576125bd612567565b5b50919050565b7f54617820706572696f64206e6f7420796574206f7665720000000000000000005f82015250565b5f6125f8601783612203565b9150612603826125c4565b602082019050919050565b5f6020820190508181035f830152612625816125ec565b9050919050565b5f81905092915050565b50565b5f6126445f8361262c565b915061264f82612636565b5f82019050919050565b5f61266382612639565b9150819050919050565b7f4661696c656420746f2073656e64206d61726b6574696e6720666565000000005f82015250565b5f6126a1601c83612203565b91506126ac8261266d565b602082019050919050565b5f6020820190508181035f8301526126ce81612695565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561275757808604811115612733576127326126d5565b5b60018516156127425780820291505b808102905061275085612702565b9450612717565b94509492505050565b5f8261276f576001905061282a565b8161277c575f905061282a565b8160018114612792576002811461279c576127cb565b600191505061282a565b60ff8411156127ae576127ad6126d5565b5b8360020a9150848211156127c5576127c46126d5565b5b5061282a565b5060208310610133831016604e8410600b84101617156128005782820a9050838111156127fb576127fa6126d5565b5b61282a565b61280d848484600161270e565b92509050818404811115612824576128236126d5565b5b81810290505b9392505050565b5f61283b826122e7565b915061284683612477565b92506128737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612760565b905092915050565b5f612885826122e7565b9150612890836122e7565b925082820261289e816122e7565b915082820484148315176128b5576128b46126d5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612924816122bd565b92915050565b5f6020828403121561293f5761293e612289565b5b5f61294c84828501612916565b91505092915050565b5f819050919050565b5f61297861297361296e84612955565b61238b565b6122e7565b9050919050565b6129888161295e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129c0816122ac565b82525050565b5f6129d183836129b7565b60208301905092915050565b5f602082019050919050565b5f6129f38261298e565b6129fd8185612998565b9350612a08836129a8565b805f5b83811015612a38578151612a1f88826129c6565b9750612a2a836129dd565b925050600181019050612a0b565b5085935050505092915050565b5f60a082019050612a585f8301886123ff565b612a65602083018761297f565b8181036040830152612a7781866129e9565b9050612a8660608301856124ab565b612a9360808301846123ff565b9695505050505050565b5f606082019050612ab05f8301866124ab565b612abd60208301856123ff565b612aca60408301846123ff565b949350505050565b7f54726164696e67206973206e6f742079657420616374697665000000000000005f82015250565b5f612b06601983612203565b9150612b1182612ad2565b602082019050919050565b5f6020820190508181035f830152612b3381612afa565b9050919050565b5f612b44826122e7565b9150612b4f836122e7565b9250828201905080821115612b6757612b666126d5565b5b92915050565b7f5472616e7366657220616d6f756e742065786365656473206d6178696d756d205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f612bc7602683612203565b9150612bd282612b6d565b604082019050919050565b5f6020820190508181035f830152612bf481612bbb565b9050919050565b5f604082019050612c0e5f8301856124ab565b612c1b60208301846123ff565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c59826122e7565b9150612c64836122e7565b925082612c7457612c73612c22565b5b828204905092915050565b5f612c89826122e7565b9150612c94836122e7565b9250828203905081811115612cac57612cab6126d5565b5b92915050565b5f608082019050612cc55f8301876123ff565b612cd260208301866123ff565b612cdf60408301856123ff565b612cec60608301846123ff565b9594505050505056fea2646970667358221220878c23ffeb7322606f2bdcd1042d81e78c42b72e69f7b4b909ec42eb1ac5073564736f6c63430008190033

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

00000000000000000000000089feb73c647cc540780909f82a58e856cd3d497a0000000000000000000000000000000000000000000000000000000000000708

-----Decoded View---------------
Arg [0] : _teamWallet (address): 0x89feb73C647Cc540780909F82a58E856Cd3d497a
Arg [1] : _maxWalletTimer (uint256): 1800

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000089feb73c647cc540780909f82a58e856cd3d497a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000708


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.